diff --git a/src/azure-cli/azure/cli/command_modules/acs/_consts.py b/src/azure-cli/azure/cli/command_modules/acs/_consts.py index fce35b593a9..56c07bec446 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/_consts.py +++ b/src/azure-cli/azure/cli/command_modules/acs/_consts.py @@ -60,6 +60,7 @@ # ManagedClusterSKU Tier CONST_MANAGED_CLUSTER_SKU_TIER_FREE = "free" CONST_MANAGED_CLUSTER_SKU_TIER_STANDARD = "standard" +CONST_MANAGED_CLUSTER_SKU_TIER_PREMIUM = "premium" # outbound type CONST_OUTBOUND_TYPE_LOAD_BALANCER = "loadBalancer" diff --git a/src/azure-cli/azure/cli/command_modules/acs/_help.py b/src/azure-cli/azure/cli/command_modules/acs/_help.py index afe0ea626c6..f7674a14004 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/_help.py +++ b/src/azure-cli/azure/cli/command_modules/acs/_help.py @@ -427,6 +427,9 @@ - name: --node-resource-group type: string short-summary: The node resource group is the resource group where all customer's resources will be created in, such as virtual machines. + - name: --k8s-support-plan + type: string + short-summary: Choose from "KubernetesOfficial" or "AKSLongTermSupport", with "AKSLongTermSupport" you get 1 extra year of CVE patchs. - name: --enable-defender type: bool short-summary: Enable Microsoft Defender security profile. @@ -726,6 +729,9 @@ - name: --rotation-poll-interval type: string short-summary: Set interval of rotation poll. Use with azure-keyvault-secrets-provider addon. + - name: --k8s-support-plan + type: string + short-summary: Choose from "KubernetesOfficial" or "AKSLongTermSupport", with "AKSLongTermSupport" you get 1 extra year of CVE patchs. - name: --enable-windows-gmsa type: bool short-summary: Enable Windows gmsa on cluster. diff --git a/src/azure-cli/azure/cli/command_modules/acs/_params.py b/src/azure-cli/azure/cli/command_modules/acs/_params.py index 0cf835a8e15..ecc39c39fae 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/_params.py +++ b/src/azure-cli/azure/cli/command_modules/acs/_params.py @@ -17,14 +17,14 @@ CONST_GPU_INSTANCE_PROFILE_MIG3_G, CONST_GPU_INSTANCE_PROFILE_MIG4_G, CONST_GPU_INSTANCE_PROFILE_MIG7_G, CONST_LOAD_BALANCER_SKU_BASIC, CONST_LOAD_BALANCER_SKU_STANDARD, CONST_MANAGED_CLUSTER_SKU_TIER_FREE, - CONST_MANAGED_CLUSTER_SKU_TIER_STANDARD, CONST_NETWORK_DATAPLANE_AZURE, - CONST_NETWORK_DATAPLANE_CILIUM, CONST_NETWORK_PLUGIN_AZURE, - CONST_NETWORK_PLUGIN_KUBENET, CONST_NETWORK_PLUGIN_MODE_OVERLAY, - CONST_NETWORK_PLUGIN_NONE, CONST_NODE_IMAGE_UPGRADE_CHANNEL, + CONST_MANAGED_CLUSTER_SKU_TIER_STANDARD, CONST_MANAGED_CLUSTER_SKU_TIER_PREMIUM, + CONST_NETWORK_DATAPLANE_AZURE, CONST_NETWORK_DATAPLANE_CILIUM, + CONST_NETWORK_PLUGIN_AZURE, CONST_NETWORK_PLUGIN_KUBENET, + CONST_NETWORK_PLUGIN_MODE_OVERLAY, CONST_NETWORK_PLUGIN_NONE, + CONST_NODE_IMAGE_UPGRADE_CHANNEL, CONST_NONE_UPGRADE_CHANNEL, CONST_NODEPOOL_MODE_SYSTEM, CONST_NODEPOOL_MODE_USER, - CONST_NONE_UPGRADE_CHANNEL, CONST_OS_DISK_TYPE_EPHEMERAL, - CONST_OS_DISK_TYPE_MANAGED, CONST_OS_SKU_AZURELINUX, - CONST_OS_SKU_CBLMARINER, CONST_OS_SKU_MARINER, CONST_OS_SKU_UBUNTU, + CONST_OS_DISK_TYPE_EPHEMERAL, CONST_OS_DISK_TYPE_MANAGED, + CONST_OS_SKU_AZURELINUX, CONST_OS_SKU_CBLMARINER, CONST_OS_SKU_MARINER, CONST_OS_SKU_UBUNTU, CONST_OS_SKU_WINDOWS2019, CONST_OS_SKU_WINDOWS2022, CONST_OUTBOUND_TYPE_LOAD_BALANCER, CONST_OUTBOUND_TYPE_MANAGED_NAT_GATEWAY, CONST_OUTBOUND_TYPE_USER_ASSIGNED_NAT_GATEWAY, @@ -56,7 +56,7 @@ validate_pod_subnet_id, validate_ppg, validate_priority, validate_registry_name, validate_sku_tier, validate_snapshot_id, validate_snapshot_name, validate_spot_max_price, validate_ssh_key, - validate_taints, validate_vm_set_type, validate_vnet_subnet_id) + validate_taints, validate_vm_set_type, validate_vnet_subnet_id, validate_k8s_support_plan) from azure.cli.core.commands.parameters import ( edge_zone_type, file_type, get_enum_type, get_resource_name_completion_list, get_three_state_flag, name_type, @@ -67,7 +67,6 @@ # pylint: disable=line-too-long,too-many-statements # candidates for enumeration, no longer maintained -orchestrator_types = ["Custom", "DCOS", "Kubernetes", "Swarm", "DockerCE"] regions_in_preview = [ "canadacentral", "canadaeast", @@ -112,7 +111,7 @@ # consts for ManagedCluster load_balancer_skus = [CONST_LOAD_BALANCER_SKU_BASIC, CONST_LOAD_BALANCER_SKU_STANDARD] -sku_tiers = [CONST_MANAGED_CLUSTER_SKU_TIER_FREE, CONST_MANAGED_CLUSTER_SKU_TIER_STANDARD] +sku_tiers = [CONST_MANAGED_CLUSTER_SKU_TIER_FREE, CONST_MANAGED_CLUSTER_SKU_TIER_STANDARD, CONST_MANAGED_CLUSTER_SKU_TIER_PREMIUM] network_plugins = [CONST_NETWORK_PLUGIN_KUBENET, CONST_NETWORK_PLUGIN_AZURE, CONST_NETWORK_PLUGIN_NONE] network_plugin_modes = [CONST_NETWORK_PLUGIN_MODE_OVERLAY] network_dataplanes = [CONST_NETWORK_DATAPLANE_AZURE, CONST_NETWORK_DATAPLANE_CILIUM] @@ -141,6 +140,7 @@ def load_arguments(self, _): acr_arg_type = CLIArgumentType(metavar='ACR_NAME_OR_RESOURCE_ID') + k8s_support_plans = self.get_models("KubernetesSupportPlan", resource_type=ResourceType.MGMT_CONTAINERSERVICE, operation_group='managed_clusters') # AKS command argument configuration with self.argument_context('aks', resource_type=ResourceType.MGMT_CONTAINERSERVICE, operation_group='managed_clusters') as c: @@ -221,6 +221,7 @@ def load_arguments(self, _): c.argument('attach_acr', acr_arg_type) c.argument('skip_subnet_role_assignment', action='store_true') c.argument('node_resource_group') + c.argument('k8s_support_plan', arg_type=get_enum_type(k8s_support_plans), validator=validate_k8s_support_plan) c.argument('enable_defender', action='store_true') c.argument('defender_config', validator=validate_defender_config_parameter) c.argument('disable_disk_driver', action='store_true') @@ -251,6 +252,7 @@ def load_arguments(self, _): c.argument('enable_secret_rotation', action='store_true') c.argument('rotation_poll_interval') c.argument('enable_sgxquotehelper', action='store_true') + # nodepool paramerters c.argument('nodepool_name', default='nodepool1', help='Node pool name, up to 12 alphanumeric characters', validator=validate_nodepool_name) @@ -321,6 +323,7 @@ def load_arguments(self, _): c.argument('aad_tenant_id') c.argument('aad_admin_group_object_ids') c.argument('enable_oidc_issuer', action='store_true') + c.argument('k8s_support_plan', arg_type=get_enum_type(k8s_support_plans), validator=validate_k8s_support_plan) c.argument('windows_admin_password') c.argument('enable_ahub', action='store_true') c.argument('disable_ahub', action='store_true') diff --git a/src/azure-cli/azure/cli/command_modules/acs/_validators.py b/src/azure-cli/azure/cli/command_modules/acs/_validators.py index 5803622e4ce..c8f4bb28d30 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/_validators.py +++ b/src/azure-cli/azure/cli/command_modules/acs/_validators.py @@ -10,9 +10,11 @@ from ipaddress import ip_network from math import isclose, isnan +from azure.mgmt.containerservice.models import KubernetesSupportPlan from azure.cli.command_modules.acs._consts import ( CONST_MANAGED_CLUSTER_SKU_TIER_FREE, CONST_MANAGED_CLUSTER_SKU_TIER_STANDARD, + CONST_MANAGED_CLUSTER_SKU_TIER_PREMIUM, CONST_OS_SKU_AZURELINUX, CONST_OS_SKU_CBLMARINER, CONST_OS_SKU_MARINER, @@ -201,8 +203,19 @@ def validate_sku_tier(namespace): if namespace.tier is not None: if namespace.tier == '': return - if namespace.tier.lower() not in (CONST_MANAGED_CLUSTER_SKU_TIER_FREE, CONST_MANAGED_CLUSTER_SKU_TIER_STANDARD): - raise InvalidArgumentValueError("--tier can only be free or standard") + if namespace.tier.lower() not in ( + CONST_MANAGED_CLUSTER_SKU_TIER_FREE, CONST_MANAGED_CLUSTER_SKU_TIER_STANDARD, + CONST_MANAGED_CLUSTER_SKU_TIER_PREMIUM): + raise InvalidArgumentValueError("--tier can only be free, standard and premium") + + +def validate_k8s_support_plan(namespace): + if namespace.k8s_support_plan is not None: + if namespace.k8s_support_plan == '': + return + if namespace.k8s_support_plan.lower() not in ( + KubernetesSupportPlan.KUBERNETES_OFFICIAL.lower(), KubernetesSupportPlan.AKS_LONG_TERM_SUPPORT.lower()): + raise InvalidArgumentValueError("--k8s-support-plan can only be KubernetesOfficial or AKSLongTermSupport") def validate_load_balancer_outbound_ips(namespace): 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 7ad5f7a8208..1a2827a774c 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/custom.py +++ b/src/azure-cli/azure/cli/command_modules/acs/custom.py @@ -59,6 +59,7 @@ CONST_VIRTUAL_NODE_SUBNET_NAME, DecoratorEarlyExitException, ) + from azure.cli.command_modules.acs._helpers import get_snapshot_by_snapshot_id from azure.cli.command_modules.acs._resourcegroup import get_rg_location from azure.cli.command_modules.acs._validators import extract_comma_separated_string @@ -434,6 +435,7 @@ def aks_create( attach_acr=None, skip_subnet_role_assignment=False, node_resource_group=None, + k8s_support_plan=None, enable_defender=False, defender_config=None, disable_disk_driver=False, @@ -574,6 +576,7 @@ def aks_update( aad_tenant_id=None, aad_admin_group_object_ids=None, enable_oidc_issuer=False, + k8s_support_plan=None, windows_admin_password=None, enable_ahub=False, disable_ahub=False, diff --git a/src/azure-cli/azure/cli/command_modules/acs/managed_cluster_decorator.py b/src/azure-cli/azure/cli/command_modules/acs/managed_cluster_decorator.py index 6be245ffcd4..bfa09386a66 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/managed_cluster_decorator.py +++ b/src/azure-cli/azure/cli/command_modules/acs/managed_cluster_decorator.py @@ -9,11 +9,14 @@ from types import SimpleNamespace from typing import Dict, List, Optional, Tuple, TypeVar, Union +from azure.mgmt.containerservice.models import KubernetesSupportPlan + from azure.cli.command_modules.acs._consts import ( CONST_LOAD_BALANCER_SKU_BASIC, CONST_LOAD_BALANCER_SKU_STANDARD, CONST_MANAGED_CLUSTER_SKU_TIER_FREE, CONST_MANAGED_CLUSTER_SKU_TIER_STANDARD, + CONST_MANAGED_CLUSTER_SKU_TIER_PREMIUM, CONST_OUTBOUND_TYPE_LOAD_BALANCER, CONST_OUTBOUND_TYPE_MANAGED_NAT_GATEWAY, CONST_OUTBOUND_TYPE_USER_ASSIGNED_NAT_GATEWAY, @@ -4045,6 +4048,10 @@ def get_cluster_autoscaler_profile(self) -> Union[Dict[str, str], None]: """ return self._get_cluster_autoscaler_profile() + def _get_k8s_support_plan(self) -> KubernetesSupportPlan: + support_plan = self.raw_param.get("k8s_support_plan") + return support_plan + def _get_uptime_sla(self, enable_validation: bool = False) -> bool: """Internal function to obtain the value of uptime_sla. @@ -4690,6 +4697,24 @@ def get_node_resource_group(self) -> Union[str, None]: # this parameter does not need validation return node_resource_group + def get_k8s_support_plan(self) -> Union[str, None]: + """Obtain the value of kubernetes_support_plan. + + :return: string or None + """ + # default to None + support_plan = None + # try to read the property value corresponding to the parameter from the `mc` object + if self.mc and hasattr(self.mc, "support_plan") and self.mc.support_plan is not None: + support_plan = self.mc.support_plan + + # if specified by customer, use the specified value + support_plan = self.raw_param.get("k8s_support_plan") + + # this parameter does not need dynamic completion + # this parameter does not need validation + return support_plan + def get_yes(self) -> bool: """Obtain the value of yes. @@ -5811,6 +5836,12 @@ def set_up_sku(self, mc: ManagedCluster) -> ManagedCluster: name="Base", tier="Standard" ) + + if self.context.get_tier() == CONST_MANAGED_CLUSTER_SKU_TIER_PREMIUM: + mc.sku = self.models.ManagedClusterSKU( + name="Base", + tier="Premium" + ) return mc def set_up_extended_location(self, mc: ManagedCluster) -> ManagedCluster: @@ -5838,6 +5869,20 @@ def set_up_node_resource_group(self, mc: ManagedCluster) -> ManagedCluster: mc.node_resource_group = self.context.get_node_resource_group() return mc + def set_up_k8s_support_plan(self, mc: ManagedCluster) -> ManagedCluster: + """Set up supportPlan for the ManagedCluster object. + :return: the ManagedCluster object + """ + self._ensure_mc(mc) + + support_plan = self.context.get_k8s_support_plan() + if support_plan == KubernetesSupportPlan.AKS_LONG_TERM_SUPPORT: + if mc is None or mc.sku is None or mc.sku.tier.lower() != CONST_MANAGED_CLUSTER_SKU_TIER_PREMIUM.lower(): + raise AzCLIError("Long term support is only available for premium tier clusters.") + + mc.support_plan = support_plan + return mc + def set_up_azure_monitor_profile(self, mc: ManagedCluster) -> ManagedCluster: """Set up azure monitor profile for the ManagedCluster object. :return: the ManagedCluster object @@ -5926,6 +5971,8 @@ def construct_mc_profile_default(self, bypass_restore_defaults: bool = False) -> mc = self.set_up_http_proxy_config(mc) # set up workload autoscaler profile mc = self.set_up_workload_auto_scaler_profile(mc) + # setup k8s support plan + mc = self.set_up_k8s_support_plan(mc) # set up azure monitor metrics profile mc = self.set_up_azure_monitor_profile(mc) @@ -6341,6 +6388,13 @@ def update_sku(self, mc: ManagedCluster) -> ManagedCluster: """ self._ensure_mc(mc) + # Premium without LTS is ok (not vice versa) + if self.context.get_tier() == CONST_MANAGED_CLUSTER_SKU_TIER_PREMIUM: + mc.sku = self.models.ManagedClusterSKU( + name="Base", + tier="Premium" + ) + if self.context.get_uptime_sla() or self.context.get_tier() == CONST_MANAGED_CLUSTER_SKU_TIER_STANDARD: mc.sku = self.models.ManagedClusterSKU( name="Base", @@ -6469,6 +6523,7 @@ def update_windows_profile(self, mc: ManagedCluster) -> ManagedCluster: enable_windows_gmsa = self.context.get_enable_windows_gmsa() if any([enable_ahub, disable_ahub, windows_admin_password, enable_windows_gmsa]) and not mc.windows_profile: + # seems we know the error raise UnknownError( "Encounter an unexpected error while getting windows profile from the cluster in the process of update." ) @@ -6821,6 +6876,20 @@ def update_workload_identity_profile(self, mc: ManagedCluster) -> ManagedCluster return mc + def update_k8s_support_plan(self, mc: ManagedCluster) -> ManagedCluster: + """Update supportPlan for the ManagedCluster object. + :return: the ManagedCluster object + """ + self._ensure_mc(mc) + + support_plan = self.context.get_k8s_support_plan() + if support_plan == KubernetesSupportPlan.AKS_LONG_TERM_SUPPORT: + if mc is None or mc.sku is None or mc.sku.tier.lower() != CONST_MANAGED_CLUSTER_SKU_TIER_PREMIUM.lower(): + raise AzCLIError("Long term support is only available for premium tier clusters.") + + mc.support_plan = support_plan + return mc + def update_azure_keyvault_kms(self, mc: ManagedCluster) -> ManagedCluster: """Update security profile azureKeyvaultKms for the ManagedCluster object. @@ -7058,6 +7127,8 @@ def update_mc_profile_default(self) -> ManagedCluster: mc = self.update_http_proxy_config(mc) # update workload autoscaler profile mc = self.update_workload_auto_scaler_profile(mc) + # update kubernetes support plan + mc = self.update_k8s_support_plan(mc) # update azure monitor metrics profile mc = self.update_azure_monitor_profile(mc) return mc 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 index 3838e1df367..575e65d8649 100644 --- 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 17:24:02 GMT + - Thu, 29 Jun 2023 09:07:47 GMT expires: - '-1' pragma: @@ -58,12 +58,12 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --no-wait User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1039-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_abort","date":"2023-06-14T17:23:58Z","module":"acs"},"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-29T09:07:43Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -72,7 +72,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 17:24:03 GMT + - Thu, 29 Jun 2023 09:07:48 GMT expires: - '-1' pragma: @@ -88,18 +88,19 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestf4gkhnldd-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestdlklj4jle-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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {}}}' headers: Accept: - application/json @@ -110,69 +111,67 @@ interactions: Connection: - keep-alive Content-Length: - - '1751' + - '1422' Content-Type: - application/json ParameterSetName: - --resource-group --name --ssh-key-value --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestdlklj4jle-79a739\",\n \"fqdn\": \"cliakstest-clitestdlklj4jle-79a739-2h7uyfol.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestdlklj4jle-79a739-2h7uyfol.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"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/17fab46c-9401-48f3-944c-1b1c08d72239?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/96c98c0d-0673-480e-bcf9-fa3c94a84f43?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3596' + - '3267' content-type: - application/json date: - - Wed, 14 Jun 2023 17:24:10 GMT + - Thu, 29 Jun 2023 09:07:53 GMT expires: - '-1' pragma: @@ -202,61 +201,59 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestdlklj4jle-79a739\",\n \"fqdn\": \"cliakstest-clitestdlklj4jle-79a739-2h7uyfol.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestdlklj4jle-79a739-2h7uyfol.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"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: - - '3596' + - '3267' content-type: - application/json date: - - Wed, 14 Jun 2023 17:24:11 GMT + - Thu, 29 Jun 2023 09:07:54 GMT expires: - '-1' pragma: @@ -290,69 +287,66 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/abort?api-version=2023-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestdlklj4jle-79a739\",\n \"fqdn\": \"cliakstest-clitestdlklj4jle-79a739-2h7uyfol.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestdlklj4jle-79a739-2h7uyfol.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"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/5b434a39-8140-4da6-8ebd-7bb41eb10ad9?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4caac070-7b80-4b88-81fb-3a64136a007d?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3714' + - '3385' content-type: - application/json date: - - Wed, 14 Jun 2023 17:24:12 GMT + - Thu, 29 Jun 2023 09:07:54 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/4caac070-7b80-4b88-81fb-3a64136a007d?api-version=2016-03-30 pragma: - no-cache server: @@ -380,14 +374,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4caac070-7b80-4b88-81fb-3a64136a007d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"394a435b-4081-a64d-8ebd-7bb41eb10ad9\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T17:24:13.2926185Z\"\n }" + string: "{\n \"name\": \"70c0aa4c-807b-884b-81fb-3a64136a007d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:07:55.0444857Z\"\n }" headers: cache-control: - no-cache @@ -396,7 +390,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 17:24:12 GMT + - Thu, 29 Jun 2023 09:07:54 GMT expires: - '-1' pragma: @@ -428,15 +422,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4caac070-7b80-4b88-81fb-3a64136a007d?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 }" + string: "{\n \"name\": \"70c0aa4c-807b-884b-81fb-3a64136a007d\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:07:55.0444857Z\",\n \"endTime\": + \"2023-06-29T09:08:00.4455198Z\"\n }" headers: cache-control: - no-cache @@ -445,7 +439,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 17:24:42 GMT + - Thu, 29 Jun 2023 09:08:24 GMT expires: - '-1' pragma: @@ -477,10 +471,10 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/4caac070-7b80-4b88-81fb-3a64136a007d?api-version=2016-03-30 response: body: string: '' @@ -490,11 +484,11 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 17:24:42 GMT + - Thu, 29 Jun 2023 09:08:25 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/4caac070-7b80-4b88-81fb-3a64136a007d?api-version=2016-03-30 pragma: - no-cache server: @@ -520,61 +514,59 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestdlklj4jle-79a739\",\n \"fqdn\": \"cliakstest-clitestdlklj4jle-79a739-2h7uyfol.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestdlklj4jle-79a739-2h7uyfol.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"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: - - '3596' + - '3267' content-type: - application/json date: - - Wed, 14 Jun 2023 17:24:54 GMT + - Thu, 29 Jun 2023 09:08:35 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 index 87c5d68b955..e94f064b107 100644 --- 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 17:24:59 GMT + - Thu, 29 Jun 2023 09:08:39 GMT expires: - '-1' pragma: @@ -54,12 +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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "apiServerAccessProfile": {"authorizedIPRanges": + ["1.2.3.4/32"]}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -70,70 +70,69 @@ interactions: Connection: - keep-alive Content-Length: - - '1798' + - '1469' 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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\": \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-i6973t0y.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000003-i6973t0y.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"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/26c2b4d2-db9b-48a6-824c-c6a9c6e0ad21?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fdc5e226-3c57-4edc-a616-4c171909d431?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3628' + - '3299' content-type: - application/json date: - - Wed, 14 Jun 2023 17:25:06 GMT + - Thu, 29 Jun 2023 09:08:45 GMT expires: - '-1' pragma: @@ -164,14 +163,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fdc5e226-3c57-4edc-a616-4c171909d431?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d2b4c226-9bdb-a648-824c-c6a9c6e0ad21\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T17:25:06.5427879Z\"\n }" + string: "{\n \"name\": \"26e2c5fd-573c-dc4e-a616-4c171909d431\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:08:45.9196162Z\"\n }" headers: cache-control: - no-cache @@ -180,7 +179,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 17:25:06 GMT + - Thu, 29 Jun 2023 09:08:45 GMT expires: - '-1' pragma: @@ -213,14 +212,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fdc5e226-3c57-4edc-a616-4c171909d431?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d2b4c226-9bdb-a648-824c-c6a9c6e0ad21\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T17:25:06.5427879Z\"\n }" + string: "{\n \"name\": \"26e2c5fd-573c-dc4e-a616-4c171909d431\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:08:45.9196162Z\"\n }" headers: cache-control: - no-cache @@ -229,7 +228,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 17:25:36 GMT + - Thu, 29 Jun 2023 09:09:16 GMT expires: - '-1' pragma: @@ -262,14 +261,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fdc5e226-3c57-4edc-a616-4c171909d431?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d2b4c226-9bdb-a648-824c-c6a9c6e0ad21\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T17:25:06.5427879Z\"\n }" + string: "{\n \"name\": \"26e2c5fd-573c-dc4e-a616-4c171909d431\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:08:45.9196162Z\"\n }" headers: cache-control: - no-cache @@ -278,7 +277,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 17:26:07 GMT + - Thu, 29 Jun 2023 09:09:46 GMT expires: - '-1' pragma: @@ -311,14 +310,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fdc5e226-3c57-4edc-a616-4c171909d431?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d2b4c226-9bdb-a648-824c-c6a9c6e0ad21\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T17:25:06.5427879Z\"\n }" + string: "{\n \"name\": \"26e2c5fd-573c-dc4e-a616-4c171909d431\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:08:45.9196162Z\"\n }" headers: cache-control: - no-cache @@ -327,7 +326,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 17:26:37 GMT + - Thu, 29 Jun 2023 09:10:16 GMT expires: - '-1' pragma: @@ -360,14 +359,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fdc5e226-3c57-4edc-a616-4c171909d431?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d2b4c226-9bdb-a648-824c-c6a9c6e0ad21\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T17:25:06.5427879Z\"\n }" + string: "{\n \"name\": \"26e2c5fd-573c-dc4e-a616-4c171909d431\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:08:45.9196162Z\"\n }" headers: cache-control: - no-cache @@ -376,7 +375,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 17:27:07 GMT + - Thu, 29 Jun 2023 09:10:46 GMT expires: - '-1' pragma: @@ -409,14 +408,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fdc5e226-3c57-4edc-a616-4c171909d431?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d2b4c226-9bdb-a648-824c-c6a9c6e0ad21\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T17:25:06.5427879Z\"\n }" + string: "{\n \"name\": \"26e2c5fd-573c-dc4e-a616-4c171909d431\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:08:45.9196162Z\"\n }" headers: cache-control: - no-cache @@ -425,7 +424,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 17:27:37 GMT + - Thu, 29 Jun 2023 09:11:17 GMT expires: - '-1' pragma: @@ -458,14 +457,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fdc5e226-3c57-4edc-a616-4c171909d431?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d2b4c226-9bdb-a648-824c-c6a9c6e0ad21\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T17:25:06.5427879Z\"\n }" + string: "{\n \"name\": \"26e2c5fd-573c-dc4e-a616-4c171909d431\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:08:45.9196162Z\"\n }" headers: cache-control: - no-cache @@ -474,7 +473,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 17:28:07 GMT + - Thu, 29 Jun 2023 09:11:47 GMT expires: - '-1' pragma: @@ -507,14 +506,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fdc5e226-3c57-4edc-a616-4c171909d431?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d2b4c226-9bdb-a648-824c-c6a9c6e0ad21\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T17:25:06.5427879Z\"\n }" + string: "{\n \"name\": \"26e2c5fd-573c-dc4e-a616-4c171909d431\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:08:45.9196162Z\"\n }" headers: cache-control: - no-cache @@ -523,7 +522,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 17:28:38 GMT + - Thu, 29 Jun 2023 09:12:16 GMT expires: - '-1' pragma: @@ -556,15 +555,113 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fdc5e226-3c57-4edc-a616-4c171909d431?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 }" + string: "{\n \"name\": \"26e2c5fd-573c-dc4e-a616-4c171909d431\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:08:45.9196162Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:12: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 --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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fdc5e226-3c57-4edc-a616-4c171909d431?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"26e2c5fd-573c-dc4e-a616-4c171909d431\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:08:45.9196162Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:13: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 + --load-balancer-sku --api-server-authorized-ip-ranges + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fdc5e226-3c57-4edc-a616-4c171909d431?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"26e2c5fd-573c-dc4e-a616-4c171909d431\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:08:45.9196162Z\",\n \"endTime\": + \"2023-06-29T09:13:42.7189337Z\"\n }" headers: cache-control: - no-cache @@ -573,7 +670,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 17:29:08 GMT + - Thu, 29 Jun 2023 09:13:47 GMT expires: - '-1' pragma: @@ -606,67 +703,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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\": \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-i6973t0y.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000003-i6973t0y.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0b49929c-7751-47f6-a113-8933f4695a32\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.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: - - '4281' + - '3952' content-type: - application/json date: - - Wed, 14 Jun 2023 17:29:09 GMT + - Thu, 29 Jun 2023 09:13:47 GMT expires: - '-1' pragma: @@ -698,67 +792,64 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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\": \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-i6973t0y.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000003-i6973t0y.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0b49929c-7751-47f6-a113-8933f4695a32\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.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: - - '4281' + - '3952' content-type: - application/json date: - - Wed, 14 Jun 2023 17:29:09 GMT + - Thu, 29 Jun 2023 09:13:49 GMT expires: - '-1' pragma: @@ -786,14 +877,13 @@ interactions: "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"}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_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/f579f6a3-0186-44fd-922a-2b66373be77c"}]}, + "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": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0b49929c-7751-47f6-a113-8933f4695a32"}]}, "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", @@ -810,73 +900,71 @@ interactions: Connection: - keep-alive Content-Length: - - '2847' + - '2481' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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\": \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-i6973t0y.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000003-i6973t0y.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0b49929c-7751-47f6-a113-8933f4695a32\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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/139d493f-492f-461c-9d84-79b15ad87443?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/82ee606a-3be9-4954-931d-ac41326d3d52?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4190' + - '3861' content-type: - application/json date: - - Wed, 14 Jun 2023 17:29:15 GMT + - Thu, 29 Jun 2023 09:13:54 GMT expires: - '-1' pragma: @@ -910,14 +998,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/82ee606a-3be9-4954-931d-ac41326d3d52?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 }" + string: "{\n \"name\": \"6a60ee82-e93b-5449-931d-ac41326d3d52\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:13:53.9671394Z\"\n }" headers: cache-control: - no-cache @@ -926,7 +1014,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 17:29:16 GMT + - Thu, 29 Jun 2023 09:13:55 GMT expires: - '-1' pragma: @@ -958,14 +1046,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/82ee606a-3be9-4954-931d-ac41326d3d52?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 }" + string: "{\n \"name\": \"6a60ee82-e93b-5449-931d-ac41326d3d52\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:13:53.9671394Z\"\n }" headers: cache-control: - no-cache @@ -974,7 +1062,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 17:29:47 GMT + - Thu, 29 Jun 2023 09:14:24 GMT expires: - '-1' pragma: @@ -1006,14 +1094,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/82ee606a-3be9-4954-931d-ac41326d3d52?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 }" + string: "{\n \"name\": \"6a60ee82-e93b-5449-931d-ac41326d3d52\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:13:53.9671394Z\"\n }" headers: cache-control: - no-cache @@ -1022,7 +1110,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 17:30:17 GMT + - Thu, 29 Jun 2023 09:14:54 GMT expires: - '-1' pragma: @@ -1054,14 +1142,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/82ee606a-3be9-4954-931d-ac41326d3d52?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 }" + string: "{\n \"name\": \"6a60ee82-e93b-5449-931d-ac41326d3d52\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:13:53.9671394Z\"\n }" headers: cache-control: - no-cache @@ -1070,7 +1158,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 17:30:47 GMT + - Thu, 29 Jun 2023 09:15:24 GMT expires: - '-1' pragma: @@ -1102,15 +1190,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/82ee606a-3be9-4954-931d-ac41326d3d52?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"6a60ee82-e93b-5449-931d-ac41326d3d52\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:13:53.9671394Z\",\n \"endTime\": + \"2023-06-29T09:15:34.1479775Z\"\n }" headers: cache-control: - no-cache @@ -1119,7 +1207,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 17:31:17 GMT + - Thu, 29 Jun 2023 09:15:54 GMT expires: - '-1' pragma: @@ -1151,65 +1239,63 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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\": \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-i6973t0y.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000003-i6973t0y.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0b49929c-7751-47f6-a113-8933f4695a32\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4192' + - '3863' content-type: - application/json date: - - Wed, 14 Jun 2023 17:31:17 GMT + - Thu, 29 Jun 2023 09:15:55 GMT expires: - '-1' pragma: @@ -1241,65 +1327,63 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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\": \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-i6973t0y.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000003-i6973t0y.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0b49929c-7751-47f6-a113-8933f4695a32\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4192' + - '3863' content-type: - application/json date: - - Wed, 14 Jun 2023 17:31:20 GMT + - Thu, 29 Jun 2023 09:15:58 GMT expires: - '-1' pragma: @@ -1327,13 +1411,14 @@ interactions: "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_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"}]}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_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/0b49929c-7751-47f6-a113-8933f4695a32"}]}, "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"}}, @@ -1350,73 +1435,71 @@ interactions: Connection: - keep-alive Content-Length: - - '2824' + - '2495' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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\": \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-i6973t0y.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000003-i6973t0y.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0b49929c-7751-47f6-a113-8933f4695a32\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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/0cb398a0-c84d-47a7-8884-c51d23fa8d60?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f5317148-a6aa-4b23-95be-26d4326d2f56?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4190' + - '3861' content-type: - application/json date: - - Wed, 14 Jun 2023 17:31:27 GMT + - Thu, 29 Jun 2023 09:16:04 GMT expires: - '-1' pragma: @@ -1450,14 +1533,158 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f5317148-a6aa-4b23-95be-26d4326d2f56?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"487131f5-aaa6-234b-95be-26d4326d2f56\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:16:03.1861168Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:16: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 scale + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f5317148-a6aa-4b23-95be-26d4326d2f56?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"487131f5-aaa6-234b-95be-26d4326d2f56\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:16:03.1861168Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:16: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 scale + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f5317148-a6aa-4b23-95be-26d4326d2f56?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"487131f5-aaa6-234b-95be-26d4326d2f56\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:16:03.1861168Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:17: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 scale + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f5317148-a6aa-4b23-95be-26d4326d2f56?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 }" + string: "{\n \"name\": \"487131f5-aaa6-234b-95be-26d4326d2f56\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:16:03.1861168Z\"\n }" headers: cache-control: - no-cache @@ -1466,7 +1693,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 17:31:27 GMT + - Thu, 29 Jun 2023 09:17:33 GMT expires: - '-1' pragma: @@ -1498,14 +1725,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f5317148-a6aa-4b23-95be-26d4326d2f56?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 }" + string: "{\n \"name\": \"487131f5-aaa6-234b-95be-26d4326d2f56\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:16:03.1861168Z\"\n }" headers: cache-control: - no-cache @@ -1514,7 +1741,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 17:31:57 GMT + - Thu, 29 Jun 2023 09:18:04 GMT expires: - '-1' pragma: @@ -1546,14 +1773,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f5317148-a6aa-4b23-95be-26d4326d2f56?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 }" + string: "{\n \"name\": \"487131f5-aaa6-234b-95be-26d4326d2f56\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:16:03.1861168Z\"\n }" headers: cache-control: - no-cache @@ -1562,7 +1789,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 17:32:27 GMT + - Thu, 29 Jun 2023 09:18:34 GMT expires: - '-1' pragma: @@ -1594,14 +1821,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f5317148-a6aa-4b23-95be-26d4326d2f56?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 }" + string: "{\n \"name\": \"487131f5-aaa6-234b-95be-26d4326d2f56\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:16:03.1861168Z\"\n }" headers: cache-control: - no-cache @@ -1610,7 +1837,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 17:32:57 GMT + - Thu, 29 Jun 2023 09:19:04 GMT expires: - '-1' pragma: @@ -1642,14 +1869,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f5317148-a6aa-4b23-95be-26d4326d2f56?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 }" + string: "{\n \"name\": \"487131f5-aaa6-234b-95be-26d4326d2f56\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:16:03.1861168Z\"\n }" headers: cache-control: - no-cache @@ -1658,7 +1885,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 17:33:27 GMT + - Thu, 29 Jun 2023 09:19:34 GMT expires: - '-1' pragma: @@ -1690,14 +1917,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f5317148-a6aa-4b23-95be-26d4326d2f56?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 }" + string: "{\n \"name\": \"487131f5-aaa6-234b-95be-26d4326d2f56\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:16:03.1861168Z\"\n }" headers: cache-control: - no-cache @@ -1706,7 +1933,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 17:33:57 GMT + - Thu, 29 Jun 2023 09:20:04 GMT expires: - '-1' pragma: @@ -1738,14 +1965,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f5317148-a6aa-4b23-95be-26d4326d2f56?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 }" + string: "{\n \"name\": \"487131f5-aaa6-234b-95be-26d4326d2f56\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:16:03.1861168Z\"\n }" headers: cache-control: - no-cache @@ -1754,7 +1981,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 17:34:27 GMT + - Thu, 29 Jun 2023 09:20:35 GMT expires: - '-1' pragma: @@ -1786,15 +2013,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f5317148-a6aa-4b23-95be-26d4326d2f56?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 }" + string: "{\n \"name\": \"487131f5-aaa6-234b-95be-26d4326d2f56\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:16:03.1861168Z\",\n \"endTime\": + \"2023-06-29T09:20:38.308057Z\"\n }" headers: cache-control: - no-cache @@ -1803,7 +2030,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 17:34:58 GMT + - Thu, 29 Jun 2023 09:21:05 GMT expires: - '-1' pragma: @@ -1835,65 +2062,63 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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\": \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-i6973t0y.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000003-i6973t0y.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0b49929c-7751-47f6-a113-8933f4695a32\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4192' + - '3863' content-type: - application/json date: - - Wed, 14 Jun 2023 17:34:58 GMT + - Thu, 29 Jun 2023 09:21:05 GMT expires: - '-1' pragma: @@ -1925,65 +2150,63 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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\": \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-i6973t0y.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000003-i6973t0y.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0b49929c-7751-47f6-a113-8933f4695a32\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4192' + - '3863' content-type: - application/json date: - - Wed, 14 Jun 2023 17:35:00 GMT + - Thu, 29 Jun 2023 09:21:07 GMT expires: - '-1' pragma: @@ -2017,8 +2240,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -2026,17 +2249,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/73f06952-33ee-41ef-b3a1-67370116dd09?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 14 Jun 2023 17:35:01 GMT + - Thu, 29 Jun 2023 09:21:07 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/73f06952-33ee-41ef-b3a1-67370116dd09?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_availability_zones.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_availability_zones.yaml index f5a0bd5419d..0630642a485 100644 --- 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 17:35:10 GMT + - Thu, 29 Jun 2023 09:21:10 GMT expires: - '-1' pragma: @@ -54,8 +54,8 @@ interactions: "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", + {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": @@ -70,33 +70,67 @@ interactions: Connection: - keep-alive Content-Length: - - '1833' + - '1504' 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - 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 }" + 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-nty95afj.hcp.eastus.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-nty95afj.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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_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 + \ \"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/9428d179-bce7-4d5c-b798-96c551d36a45?api-version=2017-08-31 cache-control: - no-cache content-length: - - '313' + - '3113' content-type: - application/json date: - - Wed, 14 Jun 2023 17:35:13 GMT + - Thu, 29 Jun 2023 09:21:15 GMT expires: - '-1' pragma: @@ -110,96 +144,138 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' status: - code: 404 - message: Not Found + code: 201 + message: Created - request: - 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": {}}}' + 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 --zones + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/9428d179-bce7-4d5c-b798-96c551d36a45?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"79d12894-e7bc-5c4d-b798-96c551d36a45\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:21:16.0341574Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: - application/json + date: + - Thu, 29 Jun 2023 09:21: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 - Content-Length: - - '1833' - Content-Type: + ParameterSetName: + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + --service-principal --client-secret --zones + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/9428d179-bce7-4d5c-b798-96c551d36a45?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"79d12894-e7bc-5c4d-b798-96c551d36a45\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:21:16.0341574Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: - application/json + date: + - Thu, 29 Jun 2023 09:21: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 --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --zones 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-05-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/9428d179-bce7-4d5c-b798-96c551d36a45?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\": \"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 }" + string: "{\n \"name\": \"79d12894-e7bc-5c4d-b798-96c551d36a45\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:21:16.0341574Z\"\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: - - '3442' + - '126' content-type: - application/json date: - - Wed, 14 Jun 2023 17:35:22 GMT + - Thu, 29 Jun 2023 09:22:16 GMT expires: - '-1' pragma: @@ -208,13 +284,113 @@ 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: + 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 --zones + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/9428d179-bce7-4d5c-b798-96c551d36a45?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"79d12894-e7bc-5c4d-b798-96c551d36a45\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:21:16.0341574Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09: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 create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + --service-principal --client-secret --zones + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/9428d179-bce7-4d5c-b798-96c551d36a45?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"79d12894-e7bc-5c4d-b798-96c551d36a45\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:21:16.0341574Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:23: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: @@ -230,14 +406,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --zones User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/0207340f-8820-4b27-b267-8e7cc6504aa6?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/9428d179-bce7-4d5c-b798-96c551d36a45?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"0f340702-2088-274b-b267-8e7cc6504aa6\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T17:35:23.2501125Z\"\n }" + string: "{\n \"name\": \"79d12894-e7bc-5c4d-b798-96c551d36a45\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:21:16.0341574Z\"\n }" headers: cache-control: - no-cache @@ -246,7 +422,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 17:35:22 GMT + - Thu, 29 Jun 2023 09:23:45 GMT expires: - '-1' pragma: @@ -279,14 +455,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --zones User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/0207340f-8820-4b27-b267-8e7cc6504aa6?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/9428d179-bce7-4d5c-b798-96c551d36a45?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"0f340702-2088-274b-b267-8e7cc6504aa6\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T17:35:23.2501125Z\"\n }" + string: "{\n \"name\": \"79d12894-e7bc-5c4d-b798-96c551d36a45\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:21:16.0341574Z\"\n }" headers: cache-control: - no-cache @@ -295,7 +471,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 17:35:52 GMT + - Thu, 29 Jun 2023 09:24:16 GMT expires: - '-1' pragma: @@ -328,14 +504,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --zones User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/0207340f-8820-4b27-b267-8e7cc6504aa6?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/9428d179-bce7-4d5c-b798-96c551d36a45?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"0f340702-2088-274b-b267-8e7cc6504aa6\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T17:35:23.2501125Z\"\n }" + string: "{\n \"name\": \"79d12894-e7bc-5c4d-b798-96c551d36a45\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:21:16.0341574Z\"\n }" headers: cache-control: - no-cache @@ -344,7 +520,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 17:36:23 GMT + - Thu, 29 Jun 2023 09:24:46 GMT expires: - '-1' pragma: @@ -377,14 +553,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --zones User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/0207340f-8820-4b27-b267-8e7cc6504aa6?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/9428d179-bce7-4d5c-b798-96c551d36a45?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"0f340702-2088-274b-b267-8e7cc6504aa6\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T17:35:23.2501125Z\"\n }" + string: "{\n \"name\": \"79d12894-e7bc-5c4d-b798-96c551d36a45\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:21:16.0341574Z\"\n }" headers: cache-control: - no-cache @@ -393,7 +569,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 17:36:53 GMT + - Thu, 29 Jun 2023 09:25:17 GMT expires: - '-1' pragma: @@ -426,14 +602,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --zones User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/0207340f-8820-4b27-b267-8e7cc6504aa6?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/9428d179-bce7-4d5c-b798-96c551d36a45?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"0f340702-2088-274b-b267-8e7cc6504aa6\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T17:35:23.2501125Z\"\n }" + string: "{\n \"name\": \"79d12894-e7bc-5c4d-b798-96c551d36a45\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:21:16.0341574Z\"\n }" headers: cache-control: - no-cache @@ -442,7 +618,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 17:37:23 GMT + - Thu, 29 Jun 2023 09:25:46 GMT expires: - '-1' pragma: @@ -475,14 +651,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --zones User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/0207340f-8820-4b27-b267-8e7cc6504aa6?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/9428d179-bce7-4d5c-b798-96c551d36a45?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"0f340702-2088-274b-b267-8e7cc6504aa6\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T17:35:23.2501125Z\"\n }" + string: "{\n \"name\": \"79d12894-e7bc-5c4d-b798-96c551d36a45\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:21:16.0341574Z\"\n }" headers: cache-control: - no-cache @@ -491,7 +667,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 17:37:53 GMT + - Thu, 29 Jun 2023 09:26:16 GMT expires: - '-1' pragma: @@ -524,14 +700,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --zones User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/0207340f-8820-4b27-b267-8e7cc6504aa6?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/9428d179-bce7-4d5c-b798-96c551d36a45?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"0f340702-2088-274b-b267-8e7cc6504aa6\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T17:35:23.2501125Z\"\n }" + string: "{\n \"name\": \"79d12894-e7bc-5c4d-b798-96c551d36a45\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:21:16.0341574Z\"\n }" headers: cache-control: - no-cache @@ -540,7 +716,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 17:38:23 GMT + - Thu, 29 Jun 2023 09:26:52 GMT expires: - '-1' pragma: @@ -573,15 +749,162 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --zones User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/0207340f-8820-4b27-b267-8e7cc6504aa6?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/9428d179-bce7-4d5c-b798-96c551d36a45?api-version=2017-08-31 response: body: - 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 }" + string: "{\n \"name\": \"79d12894-e7bc-5c4d-b798-96c551d36a45\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:21:16.0341574Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:27: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 --dns-name-prefix --node-count --ssh-key-value + --service-principal --client-secret --zones + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/9428d179-bce7-4d5c-b798-96c551d36a45?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"79d12894-e7bc-5c4d-b798-96c551d36a45\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:21:16.0341574Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09: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 --location --dns-name-prefix --node-count --ssh-key-value + --service-principal --client-secret --zones + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/9428d179-bce7-4d5c-b798-96c551d36a45?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"79d12894-e7bc-5c4d-b798-96c551d36a45\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:21:16.0341574Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:28: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 --dns-name-prefix --node-count --ssh-key-value + --service-principal --client-secret --zones + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/9428d179-bce7-4d5c-b798-96c551d36a45?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"79d12894-e7bc-5c4d-b798-96c551d36a45\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:21:16.0341574Z\",\n \"endTime\": + \"2023-06-29T09:28:26.5697841Z\"\n }" headers: cache-control: - no-cache @@ -590,7 +913,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 17:38:54 GMT + - Thu, 29 Jun 2023 09:28:52 GMT expires: - '-1' pragma: @@ -623,62 +946,59 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --zones User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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-nty95afj.hcp.eastus.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-nty95afj.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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"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/9f8c0a77-8b7a-4fd5-b000-88824f746f35\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3705' + - '3376' content-type: - application/json date: - - Wed, 14 Jun 2023 17:38:55 GMT + - Thu, 29 Jun 2023 09:28:52 GMT expires: - '-1' pragma: @@ -710,62 +1030,59 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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-nty95afj.hcp.eastus.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-nty95afj.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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"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/9f8c0a77-8b7a-4fd5-b000-88824f746f35\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3705' + - '3376' content-type: - application/json date: - - Wed, 14 Jun 2023 17:38:55 GMT + - Thu, 29 Jun 2023 09:28:53 GMT expires: - '-1' pragma: @@ -799,24 +1116,24 @@ interactions: ParameterSetName: - -g -n --file User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ - \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMWVrTkRRWE1yWjBGM1NVSkJaMGxRUVhZMU5GSkdSVkpJVWpocFZXdzNaR0YzT1d0TlFUQkhRMU54UjFOSllqTkVVVVZDUTNkVlFVMUJNSGdLUTNwQlNrSm5UbFpDUVUxVVFXMU9hRTFEUVZoRVZFbDZUVVJaZUU1RVJUTk5hbFV4VGxadldVUjZTWGRPVkUxM1RtcEZNRTFVWTNwT1ZGVXhWMnBCVGdwTlVYTjNRMUZaUkZaUlVVUkZkMHBxV1ZSRFEwRnBTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblNWQkJSRU5EUVdkdlEyZG5TVUpCVEZnMkNtVnBOSGh6VUdWQ1IyZFhOMVYwUjJsMlNqWlNObVpQZDNobGRIaHVhekZLVEcxR2NWSTRWMFJCTUdwelNrOXVLeTgzWTJOdU5WZEtZbTFITjNrdmRGY0tXVGxDY2t4QmR5dG5kMHRWVnpOUFIzaDZUWHAwU1hGMEwyaFZiMnRGTUVWeGNHazBVRVoxUXpsdGFYWk5SVVp6U0d4eFdqaG1WR0ZqVTNFeWQxWklhd3AzY21WSlprOUdUSHBLV1ZwWU9EUnpWRmdyYUdWTGVYVnRkMkZJTnpNeE5rNXlWblpoYlVWNlFsVTJSblJaYUhjM0sycFlSbTlZTTBWMmRUZHpORzV3Q2tSUFRYTkZkbEVyTm1OVU5HMHhVVUpDTlhwMmQzZG5RbGcwU2tGdkwyUnVaMkp0TWtsTk5tRlpPRVkzTjBaTFprUjRNSHB4V1VkRE9WY3dPVkp6SzFnS1UzUlFNMWRLTHk5M2VURndhMmQ1ZEd0RWVXZFdPRXcxVkc1WVdsRTFlRXhPYjIxS01TOVViVFl5ZVZsdVdqWkxPV1V2Y3pkTlJ6YzVTVmRaZWxoTldRcGtLMkY0UmxWVmNIRjVVMFJyTWtodlVucFVWVEIzU0hKSVJtY3JNelkwV2pOeVZVeDZkVkpsZUdoVU5YZ3dOMVJ3V1ZOcVZHTnpkRU5HZUd4MlpGTjFDamRwYzNOeVNUVjNPVGRsVURRMmFtMVdkekZrUmk5UmNXcDVTREkwVFZWWE5uUk9TVFZuT0RFMlUzUjZNVFZqWVdsTFprZGpiMWhZUVhGcFRFNDRaVWNLZFRSRFozZ3haVWhpV25aSGNIWm1ORTRyVFZWVmR5dDJNVkpCU0VWcmFUSnBOa05SYWpZM055OUdhM1JhWWtobVZFNUViM2t5TkV4cU1VaFdUa014Y2dwamFub3ZWRFl5UWtwQ1V6Qk1ObHBqTlZZemJXWnVjalExUkc1VUswRldjV1Z6UTFkMFFubEplRmQxWW10SFJrVkZOMFJuUTFWS1ExSm5UV293Y0RWc0NqSjNVRTAwUkU5dlJIQTRTRVZhTWxwbFNEaFJkemhuVEZOblpsQjZkVVlyU1ZkbFJXNXhiVk5tZWxCRU5ETTBTMUZNV0ZFdk0yOWxXbmdyVWpkdlZYTUthV0ZrWlZkSVNVZFdXVzFNZFhkbmRqbG9WMlZyVldWbmRtWnNhRXQyTVhVcmNVOVZSRVUzVmtGblRVSkJRVWRxVVdwQ1FVMUJORWRCTVZWa1JIZEZRZ292ZDFGRlFYZEpRM0JFUVZCQ1owNVdTRkpOUWtGbU9FVkNWRUZFUVZGSUwwMUNNRWRCTVZWa1JHZFJWMEpDVVhkdFYxQTBRa01yUldjNE9IaGthMm9yQ25wYWVrOVJTQ3RKVjBSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlFVOURRV2RGUVdwWE9TdEtRVzR6VkhnMVpVOW5TRFF3TmsxV1RITjROMXBZWlZjS1JsUlZWREJxWldrNFZYUllRV042ZVVoeWEyWnVlbVoyTUdsamJFSTBOVzl6YWtsV1duUkNhbVZxVlVwcVdYaHJZMHBoVFhSVGVtVndVMlF5VTIwcmN3cGlaVzU1ZDB0T2FYZzRWbTFNUjFOS1ozTlpNMFkyYkNzelFYRlROVkpETUZwaGJrVlNWVVowWnk5MGVFZGthelJSYVVGTFkyRmFhRkJuY1RkUU1FbFFDa2w1VFVGSWIwbDNZVVpKTlZCMVFubDVLMUJ6ZGpsSFMweDRja1UwVmpORFRVVjZkelY0TkVkNFpUQkZZMGsyYlVsMlJqQk5aemRFTkZwbVRYbHRTRGdLV1VwUmQxcERjbGRYWm1OU2FrMUxMMWRwVUN0a2FXMVNRbVJMUlRCdmVtZ3daV1V2U0VWcGFWaHFOMmQyTlV4SE0yaDNPRTF6YmtZelRESkxZMDFLZVFwSVRUWnVVV2RMZFVSb2RqVmxhelJGTTI5U1NIRXpWMEoxUm1SWlZpOUxiRFZpZW5aQ2RVTTBjVFp2ZG5WNk1uQkpLM2h5UVdWWVlsSkdTR3MyYmxWMkNpOVRhbmMzVVVjMVdqWmtRMFpGUm1neVNHRkVOMnc0Y2t0S1ZtNXRNU3RzVDNsaUx6VmhhM2xJYlcxME9GbGFiQzlTYjI1a2MweFJUbVpuUjNnd1pXTUtRbVJETWtnMVV6VnVXa3A1WmtKVFNEaHFZMlE1ZDBzME9WTkRWVGcyV2lzMVptSTVVSGx1WWs1WVQzbEdRMWxPYVVoelNIQXhNblpsS3psT09HMXNTZ3BrYVdoV1dXaEplVVpSUlhWQlNrUnJWMDlNUVVGdVMwZzJSMjFDTjBWb1oyRlhVakZ5Um1oRGRWYzRNVlpVTUVGclRXcExLemh5TDFseFozcHVkVWd5Q25wcWJFcENjRk13YzNOaE1YaDNabkEwYWpReGNXRlFNVk5CY25aTFIyaDVObFZ2ZW14WFdsaFdTbWx1YkhOcGMwdzVNSGhaY25sb2MzaGtjVGcwZWpRS2NteDBVa3gwUXpNd1dXaHNkVWgzV0ZOMFJYcEtMMmtyUmpCS2FISlFXVGczYmxnME5WTkxPVXhJV2tVMlRVMDJNRE5JZEVORVYzUjBTMkp5VVVWSWF3cERjVzV5YkZwc1kzUlFVbHBsV0c4OUNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc2FnbG9xYjMtb2hidHlqcDcuaGNwLmVhc3R1cy5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdGE1YW42eApjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdGE1YW42eAogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdGtndmpycDZ3MzdfY2xpYWtzdGVzdGE1YW42eAogIG5hbWU6IGNsaWFrc3Rlc3RhNWFuNngKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0YTVhbjZ4CmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdGtndmpycDZ3MzdfY2xpYWtzdGVzdGE1YW42eAogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklha05EUVhkaFowRjNTVUpCWjBsU1FVcEJlVXRITDNKcWNGWnFSVkZpZDI5NlNFczBOR2QzUkZGWlNrdHZXa2xvZG1OT1FWRkZURUpSUVhjS1JGUkZURTFCYTBkQk1WVkZRWGhOUTFreVJYZElhR05PVFdwTmQwNXFSVEJOVkdONVRsUlZNVmRvWTA1TmFsVjNUbXBGTUUxVVkzcE9WRlV4VjJwQmR3cE5VbU4zUmxGWlJGWlJVVXRGZHpWNlpWaE9NRnBYTURaaVYwWjZaRWRXZVdONlJWWk5RazFIUVRGVlJVRjRUVTFpVjBaNlpFZFdlVmt5ZUhCYVZ6VXdDazFKU1VOSmFrRk9RbWRyY1docmFVYzVkekJDUVZGRlJrRkJUME5CWnpoQlRVbEpRME5uUzBOQlowVkJlVTlzYjI1UlIyeHVNREpuUVVSVVozZG1TRUlLTlRSbU1HVlJhVVl6Y2toR1RYUlVUVXBDUVZwM1pFWXdTVmxWWkdGSE1XOVBhMEUwU2twNVZubHlhMmRXTW5sc2EwWm1kM0F3U1ROYVZGRTBTa0ZNVndwd1lYRkVlV05UZEdRd1ZHRlZNVVZFYTBoWGQxWldNRGhMVVdOVWVtUTFlVnAxWlhacFlVbENaVE5LYzB4eVRscFhTbXRsVTJFeFpUSXJiRFZLYWtzNENqWjVVSEZsV21KSk9IUTJObGhxTWxWS2MzQlVLMUEzU1dkUEwwVjZaMlk0UW5GWVoyWjJURWxxTlRFd1ZsWjNOVGRJY1hKcWJtWTFaMEpHTkM4eFJFWUtVMnBhVm1sNlJuVkZOVVIwY2pJeFNVZElWSHBxYnk5dlJISnVVME4wVkZkaFlUZzRObFkzZDJKUGVFbHFOVTVPUTA1TFVsQjNUVlJsVFhocmNWWk9hQXB5YWtGUWQyRmFTRTluVVZKc2NEWlFjemN6VlNzNWFHSXdiRmQwVkZSblZVRXdTVzlsVW1OdU0yTkVPRlZUVlRGTGEzSTBSWFp5SzJSclNIWnNZMVZrQ2tsdFNrRkRaVUpVWjNGeFNrd3dOWFo1VTBOaVEyMXpXWEJCVm1kcldGcHhka015TTBzdk4xWTJWWEZzVG00MlRWUXdkMEo0TkRsdEwxRktWVEpZVEdNS1VGaENTbFptUTBaNlFsTXhPWGRqVUZwbVIyaHdLMUI2Y0VRMWNUQk5OR3g1U0hKUWExVjZhMlkxTTNGNGRERTFZelExTVRWMFRESXphRloxYVZrMUx3b3JRazl2Y0RKdVZXMHpWMUpwSzI5WVUwSktTRE40Wm05RU5tWjFUMWRwVFRkRVZHMU1XbTVWY1hNcmFVNVNOak4zZFdGWk0yOUJhREU0V25adlRVNUhDbG9yVFZZMWNGaE1OMmx6V0c5U1ZGUmpSbWRGY25ObWFWQlVkSGN6UTFwMFpUa3dOMDlVU0hCS2JHVlhaMnRYVDJGbGVEaHJZV2hXWlRsWmJ5dDBZMU1LV0cxM01IcGFOSE5LU25CcVVXbzViblpETkV4alZrSk1UVFJNWTFSMFdYcEROVk5VU0hsNU9TOW1aVEF4YzNaM2VEZEhWVnAwUlVsQ05TOWpkMDV6ZVFwNVRtUjJlVWxPVDNjdlVWSkNlbGxzVnpNMU5VWnlUVU5CZDBWQlFXRk9WMDFHVVhkRVoxbEVWbEl3VUVGUlNDOUNRVkZFUVdkWFowMUNUVWRCTVZWa0NrcFJVVTFOUVc5SFEwTnpSMEZSVlVaQ2QwMURUVUYzUjBFeFZXUkZkMFZDTDNkUlEwMUJRWGRJZDFsRVZsSXdha0pDWjNkR2IwRlZUVXBzYWl0QlVYWUthRWxRVUUxWVdra3ZjekpqZW10Q0wybEdaM2RFVVZsS1MyOWFTV2gyWTA1QlVVVk1RbEZCUkdkblNVSkJTa3RoVnpSYU0ycDZhbkl6VUdNMk5YSTJWUW8wUTA1RldtMUZiSFZwWVdOaFZFVm5helpHU0UxdGJUWkZZamRuYlcxSWVIYzBUVTkwUjI4MVUxRkxNMlZSYkU5M2VsRlhaVkJwUjB0QmF5OHZjeTg0Q2twblExRkdlVXN5Y1ZkM05GRjNUa2cyUjBWR1NEQTVaM2RhV1NzNWNsZDRjbEpSVW5CcVRsVlhkelZ3VjNCYVIyTnBPWFphVlVONlpEaE9WREphWWtFS0wwMDNkbGt4T1ZSdWQwZEphekIwWkU5MmNHeHJMemx5TkhRdk56SkRNa2x3VG1wdWMyUnNRbWwzTUZScmIyYzVVRmgzUkdSbVVWTTRkMDlOS3poUVZBcE9abmwxT1ZGb1kyOWxTbGhrUkM5VFExWkpXVFIyTVRCeU56UnJjVzh4VTJGVmRuRmxZbHBMSzFsamRuUkxWMGxJUVhWNlZ6Um5MMDkxYWxCeWQyVktDbFpwUVRoWVVHVjVjbUpNYzJWTWQwTjRjR1I0ZEZoR1ZYSmpNVlJuVFZSRFdYcHpWVGxHYTFJMmEyMU5kSFprTTJaTGEzSlpkRzVTTUdkbFZrbEhSVllLUzNwdVRWaEtVRUZzUjA5cVRXNVhRbTF5VDBkRUsydEZhbTh3WkRoNkswUjZiRmhGVm01eFJ6aDRjbHBNUVhsd1N5OU1ZVGhXTlhreVZYZGxVelJuS3dwcWIyb3lVMmxCY1RSdVREZ3JkazFITTNndmJITldjRFZ2TjNvM1JVSlpjV0k0UW0xYVl6UlZkbTFFZWpSR2VsUnhWalZGWkVoM1RVMTBWbVZtTWpsSUNqQklVbFk0VnpkS2IySmxlakJWZFM5S0swMDJRMGRMZVRGM2RXZEpOSEZMYWtwYVNtMHlNemhYV1c5SUsyeFdUeXRUTTNFMlkyeFdhV1JCTTBWaGJVVUtVa2RoV1VkR2VWTTRlSE5qWWpsWVYzQlBUalUyU21kcU9XMDVZazFEYTJ4TlNDOXBOMjV3WlhkU1RreDJZVWhPSzJodmIyWlpWalkzWlhseVVXeGFhZ3BMZGpGbUwwUnVXRzFXZWpkcFlub3hNelZtUTJVNWVESnNkSGhNUWs1UlpEZFdTU3RqUmpWeVltNXhXbWxNTUhwSk5HaDNRa1ZYUVZwME5tdEtOM2hoQ201V1YyNVNaRWxOY1VkUE5tWmFPVGhvTmt0cmRGaHVUZ290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1NuZEpRa0ZCUzBOQlowVkJlVTlzYjI1UlIyeHVNREpuUVVSVVozZG1TRUkxTkdZd1pWRnBSak55U0VaTmRGUk5Ta0pCV25ka1JqQkpXVlZrQ21GSE1XOVBhMEUwU2twNVZubHlhMmRXTW5sc2EwWm1kM0F3U1ROYVZGRTBTa0ZNVjNCaGNVUjVZMU4wWkRCVVlWVXhSVVJyU0ZkM1ZsWXdPRXRSWTFRS2VtUTFlVnAxWlhacFlVbENaVE5LYzB4eVRscFhTbXRsVTJFeFpUSXJiRFZLYWtzNE5ubFFjV1ZhWWtrNGREWTJXR295VlVwemNGUXJVRGRKWjA4dlJRcDZaMlk0UW5GWVoyWjJURWxxTlRFd1ZsWjNOVGRJY1hKcWJtWTFaMEpHTkM4eFJFWlRhbHBXYVhwR2RVVTFSSFJ5TWpGSlIwaFVlbXB2TDI5RWNtNVRDa04wVkZkaFlUZzRObFkzZDJKUGVFbHFOVTVPUTA1TFVsQjNUVlJsVFhocmNWWk9hSEpxUVZCM1lWcElUMmRSVW14d05sQnpOek5WS3psb1lqQnNWM1FLVkZSblZVRXdTVzlsVW1OdU0yTkVPRlZUVlRGTGEzSTBSWFp5SzJSclNIWnNZMVZrU1cxS1FVTmxRbFJuY1hGS1REQTFkbmxUUTJKRGJYTlpjRUZXWndwcldGcHhka015TTBzdk4xWTJWWEZzVG00MlRWUXdkMEo0TkRsdEwxRktWVEpZVEdOUVdFSktWbVpEUm5wQ1V6RTVkMk5RV21aSGFIQXJVSHB3UkRWeENqQk5OR3g1U0hKUWExVjZhMlkxTTNGNGRERTFZelExTVRWMFRESXphRloxYVZrMUx5dENUMjl3TW01VmJUTlhVbWtyYjFoVFFrcElNM2htYjBRMlpuVUtUMWRwVFRkRVZHMU1XbTVWY1hNcmFVNVNOak4zZFdGWk0yOUJhREU0V25adlRVNUhXaXROVmpWd1dFdzNhWE5ZYjFKVVZHTkdaMFZ5YzJacFVGUjBkd296UTFwMFpUa3dOMDlVU0hCS2JHVlhaMnRYVDJGbGVEaHJZV2hXWlRsWmJ5dDBZMU5ZYlhjd2VsbzBjMHBLY0dwUmFqbHVka00wVEdOV1FreE5ORXhqQ2xSMFdYcEROVk5VU0hsNU9TOW1aVEF4YzNaM2VEZEhWVnAwUlVsQ05TOWpkMDV6ZVhsT1pIWjVTVTVQZHk5UlVrSjZXV3hYTXpVMVJuSk5RMEYzUlVFS1FWRkxRMEZuUW1GbmVsUTNSSFZRYW5Ga0x6aFdPVmwwTm1SR01tdHVlR3RFY0M5dk0wOVBMMkUzYW5kUmExTnZWMk5zWXpGS1ExVklSRFJLYVVOalF3bzNNM2haVlZORGREUnBaVkZ4VGpKc1RFdExlVTlHTVZkaksxUndlVGRGUm5SR1MwWXlaMGxXTmxCcFdFZDZOSFZ3ZDNSVldFaHFhV3hYVjNFd1NsQXpDbWxKU0hOalNHTnRZblY0UVdsMlRHNU9TRVEwTVNzd1dtUlhRa0VyZGxKSGFFNVVVUzlsUTNWV2ExZHdWMEoxVDI5S1NVbzNTSE5aWVhWYWVYaEZXVzhLVTNjMWNVUlJRamdyUldselRHWlBaVUZ3Vkc1NWJtUmtXbkpGVEVwM1JsRTNVbkoyVHpaeGNFUnhNbVJRZDNJck0yWjNiM0pxVW1aYWRGZFdNVlJ0TWdveFYzVjRWbkF5TVN0VFIwdGhVSEpCYWxrd00weGlXRzU0YzFoS05rdE5aMnhrTW1VeVNHaHZRamxWY200NGExWkZUSE5HVUdzMFRqZE5ZWFpXVWpOUkNuUTRjbWhFTTBaamVWVjBlbGN3VkRWdlFsRkdhVTU2Tnprd2NWSkNlbVpHSzNRNFdEVktSMjFFYmtjcmVrWm9ZMGR1UlhKYVJGTlpiMnRNUXpGU1JVSUtiMGRQWldZMWMySkhhRTl1V205M1V6ZDNZVlEyU205dFZVTnpiRUphZFdGeWJHVkdSbmRUUjBkemRtNXFaakJ3ZDNSNldWZHRjbk5CZVhWU2VtUndPQXBZTkdsR1NFODFSMFZwV0ZkVmFqVlNkVkY1YzJkVWQxRllWRlZoVWtOUWVuUXJiRkIxWXpWSmJXTTJNMlZXUTFwb09YcFlVbWszTmt4a04xbGpiRUo0Q25kMVQydE1OM1p4V0VSV1ZraElXRlEyYURKc1RXZE5iRTVPZVZaS2FuaE5hSGRvYVRnNFJXbFljMWRNYzFaYVlTOW1PRTgxYmtGTWExa3laSHBXZVhVS1VYaGhWVUZETmpRd2JpczVhbTFEU0c1dlJtNUVValJaZG10UVJ6RjNielZESzFsblZscHRiWFpHTVRaUVIzTTRiMmxWVVZRMWIyVm9iRFUyWVdaaVVBcElibWxzVFVGM1FUUkdaRVpNVWpCRGIxcDFOSFpyUjNreFZEbHNjVkV3VUhKdmNIVTBhMlo1U1ZsTFJWRlhkMklyVVV0RFFWRkZRVEZMV2twME1sUlBDakpUZEdkV01pOVJiMW95Vm5CQ2IxWmFXbUZVYmtaM1ZtUmhiMHMzTlcxcGFtcDJXR0YwYnk5WE1EQXpNRGx6ZVhsYWQxRXhPRTltVEZRNGNFTnNhbmtLVjJOeFQzcERUM2hpUWtkMmRVVk5TM2xIYmtoM1VFNHdTemxyYWxCRVZqSXpZbVZpYkVkMFJYSXZTSGhhTkVSRWVIRkphRzFpYTNCYVVFRlZaRVZYV0FveU1sSTFVRVp3Y2s0eFRYQlJPSFZ6TlhOSlQwdDBWRU5DWVZwNFV6ZElkVUZaTWk5WllVd3JLM2hLVTFBMmEwTnpNM2MxYnpGaFQwTTJPSGxHV2taNUNuRTJTR042VDBRMmNWb3ZjVGt3VG5adWJHdGhRWEFyYTFGQ2JIcDBNMlJzT1ZNM2JGcG5Ta3RIU0ZWdlIxUm9iRWRVVW1WUFRqTmhSRzhyVVdOamNHZ0tUazlXYVdkT2VsZFBWVTl1ZFVSVGRYUXhha1JKUTFwNE5XcFFhRU15TUdNMGJHaGxVREJrVEV4bWJXWnRjVE42UWk5TGJWUTBXV2dyUXpOV2FteHZaQXB2YjJKQ2MzQk5iWHB0TW1vMVVVdERRVkZGUVRoa05rMHphSEV6WWxsRFUyWkpiWE0wZWtoMFVtc3hPSFZaY0RKdlJWaFhkeloyWWtzNFFrRjBWSGhpQ2tvdk4yWkJjREZrUW5GWFFqZDBNWFpZTmpWa05YVnljMmxhSzFCSVYxVnRaR1pPUWtaUlF6ZHdRVGhNTnpsVlpuQllheTlJVTBaTWNISXdSalJJZUdzS1pIVllWR05uZVZVNWRrVjJiMVJES3pseFZUUXdWVTVLY2pGNGRYcG5VME5JZHpsaFVEazVhSGN3TTFSRWJWRlJjelU1VEdOYVUwVktjMHBKTnpZck1Bb3phMmxaWTI5VVlXeFRkV2RZYTJ4MVUxZEJjRlI1Wm00MVlqWnhhSEUyVWtoa1YzSlZXbFUwTTFnM2NETmxlSEE1Um10b09VeE9la2xJVVZFeE1WTlhDalF6Y1dJNVN6WkljRlpIYVN0UFFqWXhXV3hhWkhoWGFYRTJjRUp0TjNjeVprTnlTblJWZURWT2RFeFlUV1IxYzFCVVN6TXphemxhVW05SFlVNXRWVVlLVlhCbU5URm1kVWM0ZGtkRmRIQTROVTVLVGpWSldGaFFZMmRzTlVOM1VFcFpPVEptSzBWS1YzUjNTME5CVVVGdlVYSlBRMUJXZGsxVmFVbFVZU3RCWXdwUFZFZDZkVUo1UlRreFZreE1WVkZETW5kaWJrSnFaRFJ3YlhaTGJIcGxXRzFoT0ZGT1ZtZFJVVGRSVFhCalZHeFdRMlkxUWxrMFl6Um1WRmhSV1hFNUNqUjZkRnB5TldaRVEyZFFMM3BDWjJGc1UyNVBjRWhETURKaFdtcEhNSGRPTkRocVNYZ3JRa3BKZW10d1Yxb3dNSFI0SzI5UksxUlZZazVzYmxNNVkzY0tlV3hZZEhWQmIzTlNiVVpaVTNBdlVsbG5ibWhSZG1KRk5VbHNkbVYxVXpkMFIxSlBSMVJ0YUhOamRGZ3lXRTVpVlhabmQycFVSV2QyWVhsSlVHSkJNd3B1VldSdVQxTldVVE5hTTBoRlYwdFFiMFZKUVZsdFMzcFpVVmRrYjNGR1ZYTkNiUzlpUzFnelpEWnhMMHRaUnpOalFXSjRRa1puVkVrM2NtRnRkbFZWQ2sxdVRESjBWVXN2UVRsamRIQjRiVFZqSzJ0UWRVMUVXRTlrVUdWT2VXeE5jM2MwT0hkMVNsbG9kVUpzTDJka1FXSmhNRnBJYjJGME1YTlhiR2RoWVM4S1VIQk1hRUZ2U1VKQlJXOXdaMmx2VFV0U1ozcGFlbU15WnpoT05rdEtXRFExYm1sQ2R6RlFjbVJwYlhwU1ZsaEtPR3N4Wmk4eFpIQktMM0JIVWtOTWJ3cHNjMjF0VEdsTk5XUlBUamhRZVVWSWQzSnplSEUzVWxrM1UycERaVGhoV0UxdlRFMWFOVXN5WkdGeE5UZGtaRzVsUTJwWlJ6TnVNV2xJYzJNM2IxRXhDbVZtVWtRelVtOUdiVlZHV2tRemRuTnlURVZSTkhSRmFGSlFkakozTmxFNU9XRjNaemxLYjFCRGRsQTVjRkJQTldWUFJ6bHFOR3ByTWpWSGNIVk9aM0VLWXpGaVZucDZTa05uVVdkaVdsWnBiSFZQV0hCSGRXWTFMM3BxV25RMFJEZEVSSGxYTkM5dlpscHVSVUZ2VW14bVdGWmhXbEZzWW00emJrRk9TRGw1U3dwQ2NESnVVSGxNUVhCaFZVWkNhMkkyZDI1ck9VbGlkVFkxZGxKdVUxaGxUU3RLZWpaRVdITkxWbE5UWlZWbVNucG9UbE5QTjNrelprZGhWVXRLWkhaVENsRkhORFp5YWtNek1ERnNNa3BVUTBSU1VrVnBhbEp5U1RsMVkwcGxSWE5EWjJkRlFXSlpWVUZOYWsxa1JuRkhaalJ3UWxGWlNrVnVaR3BsV0daREsyMEthMWROYzBOWGJGbDRiMnhyUmtGaWVVWXlibWgwYVU5b1oxZHViVEV6ZFhsUFFrNW5NV05xYzFKUWJ6TTRaVzB6Vm5STFVrTTVWV2d2VkhoU2VXVnlhQXAxU1VWUVdHNVRTMWcwUWtkcmJrdFFaVmhMZGt0Rk0zUmlWakl2V2sxUk9EVTNaakZhUVRoSVNFSm9iM0JqYUVoM2NtZERVV3MyVEhGWllTOXlaVlF6Q25Kd1RVMUpXRFZvTkhJd1VYUk5hamR5Y1RGSFdubFJRVGgwV2twRGJESTRXbmxxT1dab09UWnFMMWt3YzBkd01WWjVjMlkzZFZsVmJsbHFMM04zYWxVS2N6Z3pZbWxrUjBoM2FWQkNTRVZ1UkN0aVVuTnBjMjlrU1hoNmNrODBNVGRxTjI5bE5FczRMMUI2UldaUlNtWjBPVEJSYzNrMWIzcHJNVXhSY1RGcWVBcHNSVXNyVUhoaEsybDVLMGw2VTNoalJIUkdSelpVVVVsME9GUkRNbFp4UkdWRVlqTmFlV1VyWkZCb1dHTm5VR2hpTkZZemQyOHZhekYzUFQwS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiB1dWMxOWVrc3YzbWx1eG54Mmg3NWdrb3N0bzV1MHV5eHB3c3c0Y3NqenZzZHM0eW42MWVhaXR3eWZrdjVhcXlkMWk1NHk1MG9hejBhcGd0ZTV4Z2ZqNmVpMDlpbnV0aHRpcTQ3YW1qdnNldHNpOTVrc2g2Mm1ldTd1aGx1ZzM0Nwo=\"\ - \n }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": + \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVV0YVpYSTNlSEI0TlhCMmJsSkZPVnAwT1VwRGNsRjNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDA1cVNUVk5SR3Q0VFZSTk0xZG9aMUJOYWtFeFRYcEJNazFxYTNkUFZFbDRUWHBrWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNuUmxjRTFDUVdoTFRXOTZTMUp1VDIxU2RXeG5jRTlVWmxsRWJGVjVVMmMzZEVSNk9GQmhTekl2TldkdmFXTjZXbTFqWmtjMFFqZG1WMUpQVGxWMmJqQUtLMW94Ums5WlVHOXhhbTA1Y0hwUmIwMHJhVXR2TkRZMFNEUjVTVTFWZFc1dWRUQlRVbmxKZURGd1FXbHhUMnBpYWtwQmJITXdlRGhJWld4eVkzZ3JSUXAzTW1GS1NHRnZla1l4T0hSNlEyWTFTazlLYTFSYWREa3ZTRkV3YTJGT1Z6aDFTeTlsVWxoMGRuTXZiUzkzZVRoaFJuaG5OM001U2s1Wk9VUnRWVVpCQ25Kb1FtVnBlblpLTURKM1FsSmxZMVZ1WkZWNWRFcExNV0pOVEUxdWQzaGtOM2RyYmpKMVRVbEZZbHBJTUhsSVIzUm9VRU0yVjJNdlIxaG1jMnREUkZJS1FUVlhaMVpwUlZBcmJrVkdZa0pJU0RkdkwwdGhNMWRyYmtwVlRHNU1lQzlLYW14bGEzVjZTelZyVmxsRU1scHplRVJGVEVweWFsWkZka1pvV0VWWVFRcFpOV3RpVTJVMFpFWTNUbEZZTTFVM2EwdERaamRuSzFaTU5uWkpRbkJPUmtWc1RVWm9TVEpLU0ZscWJHdFZZbFZTU1ZjclJIcHZkV2RLUldjeGEwNHlDbmRPWWxCRk1FcE9iMUpzVmxWYVNFVnFjamh0UkM5M1ZYcDVkVnBDYm1SQmFXMWFPRzFQTkZKTlltSlhSV04zYzNkRE1tWmxSekpRVHpCU1NuaExTa2dLVlN0WU4wTXJabkEzZVRWMlZqbHBjRlpRTjNsTWNuUXZjM2x3VXpkUFlVWkdabTR5YVcxQmVFRTJSbGd5TW5GU09HVTNOMlpxV0ZCMFlrOWhMelZOUkFweWNGRnNORGhuZG1SalZGQldUVVZOVDJ0NFdFc3dlbmxVZGpSR2JXRTFXak4wU1RodGNFOVhTRkpFU0VORGRVczJOMUJrYWk5SmNHMTVTMlJtUjJwT0NrSjNRMFZSZDA0eFQwbFNVSFZUSzBocE9Ea3hiMUJGUTNCb1UxUmlaREowVTI1VEwzWnVaMmQ1WnpsdlIxWlRWM2t6WkZjMVkxSjZVRGh0YjJSU2NHMEtTbkZqWlRKcGJrMDJkM2hxTWtsUFZUQmtRVzlVUXpsamRURnFla2hEV1dZNE0yTndLMGhKWXpGUlZVTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1NHOUZWRGxRZW1obmFHcHVMMmMzQ2pOQ01uWkNlWEIySzNkSlZVMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlFWWnBaRVEwYldSckx6SmhOSG92Wkd4SU9IVkZOalpzUWxrS1VFRllNV1pKZUZaRGFtMVdWbnAxYVRSeVpYa3lVWFoxU1Rsb1VWUk5lbXd3ZFd0NWFpdFlTMDVoTUVNek1ISllORVUyTm5OME1FTnJXRlo2VG5keU5ncGpWMGRtWVZFMGNFb3hjV1pTTmtjemRWZEVVVkV6SzBsVE5UQllXRTkxY0ZodmRWQjJha0ZtZVVkSlNrOVdURTFvU2xrM1FVTkZXakJMYlRReGVGTlpDa000WkROVWMwaExSWGx0UjNCbmFXcHFhM3BuTVhsQmEzSXlWVmRWU1hCR2VHZDBORU5MY3pKME5HZ3hjVEp2Ym5sc1JVZEVlV1JwUkZKd1dXVjRkMWdLVDJKU1RsQmxhblp1WmpGUE0xbFZUM2d2TjJOVEwyZFFkbXRNVnpaaVFUSTFTbU5XU3psWGVXNDVka2hxYlZOaVJEZHFSRTFQU0dwbk4xaFdUMnhsYWdwcVlVaFFaU3ROY0VSSkwydE1aVmhVTkZsUlJVMDFNV2hFTVN0M1pFdEJhbVZTTjFsMlpsWjNibWd4ZVM5dU1IZHBRV3czTTNoc2RFZGtkbTh5V25GTUNsaEtZVE5DWjBkbmNHZ3hOV0pZYms5S2RWUmxMM0ZsV1V4SU16QnJSM1pKWlU0d1ZFcGFlVkZhZUZBNVpVZHlVbGRqVG5sQ1JrWm5aRnBDVFdKbGJuUUtVMGxFUm0xWFEySjFZVTFZV0cwMk1WQnNVME5DZEhKWlNISTVkbVZGUVhOVFJrTTRTR0pyVGlzM1RUVXhjVTVGUmxoaVYwMDRSWGxyUW5GUWEwMDROQXA1VkVaVWNIaE9jRVkxWkdoUk5sRXhlbTFMZUhWTGNIVnRUM2RKWVhCTVRUbEtPVzFITTNaYWRFWm9PRUpXTkc4cllYWm9lV1J5T1ZoVlpuTmtjVFJ6Q2pFMFlscEljR3d2ZGpsSFprUXpaR1poUTBaelVIZzBaRU5hZEVaM1psSlBNV0Y1Wmt0aVVWRnFZMVptYUV4RU1FOXROVFZrYUhkSFZ6ZzNNSFZvZURrS1ptNWxhemN5T0dkbWNVaDBkM0pIVTA0NFVsZHhNM1ZuY2xaV1owUndjRWhOVkRBMWIwdzNRWE4yT0haTFFUWTBObWQwUVRBNVVXOVRTSGxwZEhoVmRnbzBLMDFVZVVWQ2QyNVZNbU5IWkVGcVRuYzlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5zaWNwMnJlYS1udHk5NWFmai5oY3AuZWFzdHVzLmF6bWs4cy5pbzo0NDMKICBuYW1lOiBjbGlha3N0ZXN0bHdmczI1CmNvbnRleHRzOgotIGNvbnRleHQ6CiAgICBjbHVzdGVyOiBjbGlha3N0ZXN0bHdmczI1CiAgICB1c2VyOiBjbHVzdGVyVXNlcl9jbGl0ZXN0aWN1emZ3dHBobV9jbGlha3N0ZXN0bHdmczI1CiAgbmFtZTogY2xpYWtzdGVzdGx3ZnMyNQpjdXJyZW50LWNvbnRleHQ6IGNsaWFrc3Rlc3Rsd2ZzMjUKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBjbHVzdGVyVXNlcl9jbGl0ZXN0aWN1emZ3dHBobV9jbGlha3N0ZXN0bHdmczI1CiAgdXNlcjoKICAgIGNsaWVudC1jZXJ0aWZpY2F0ZS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VaSWFrTkRRWGRoWjBGM1NVSkJaMGxTUVZCdVN6QnFZek50VEhWclkwUkVSbk4xUjBvdlpXZDNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSWFHTk9UV3BOZDA1cVNUVk5SR3Q0VFZSTk0xZG9ZMDVOYWxWM1RtcEpOVTFFYTNsTlZFMHpWMnBCZHdwTlVtTjNSbEZaUkZaUlVVdEZkelY2WlZoT01GcFhNRFppVjBaNlpFZFdlV042UlZaTlFrMUhRVEZWUlVGNFRVMWlWMFo2WkVkV2VWa3llSEJhVnpVd0NrMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQk5WYzVabG81VEVsRlNYa3hiWFpIVTNGbVdFUUtSMEpKUmpnNFZYVnBObFZxUTFjd1RUTlpRVVpXVEVoaFZVZFFTVU01YVhsR2VERmtMMDFPZGk5V0szTktZVVpMUVZrMFpVTlFXVlZZY0ZoNGMzQlhOZ3BSUWk5TmVFWjNaRmxQVjAxeVZrZzFWVU56Ums5d1lubE9NbTB3TTFWck5IVjZOa1kxUjBNclRHcDFXa1IyYzJwaWVVVXZZek5TVEhwa1JXMWFUSGx1Q213MGFHa3lUMkpKYVVaS2RrMUNlak12Wm5CYVJXaDJka3AyZW1GUlVVWnlUMlpqVDFoQlJucFJaR1p4THk5WE5HZEpSMVJEY210VWFGbFBVMGRqYVZBS2RUZEhWR04xZGpZNFFrRjBXV3RCWjBsaGVXNURPRkpZTkRGeVJsSmtLek0zVlRsblpWZFZUM1ZxVkZWSGNqZDZWak5YYWs5dU1FTlRLMmRHYjBFM2JBbzFjVWhGWldSS1oxcFFUVXd2V0ZSemJYUkpRVnBJYUhwSGIxRnNkM1pJVTBsR1NFWTBZMWszWkd0UWIwbHBOVm96YmpONFdVa3dkMFkzYjJSWmNGRXJDbTAxWlZwV2RpODJjV2Q2Y1hsc2RGVlJSMjV1VFUxRGRDOTNUM0V5UlRaTWNEazNVVTFzVUhVMldHRjZhSGxrY1hob2VYaDVSRTFYWjJJelZEUjRMeXNLZERGR1RqbDROMHMyV0VKMlVVWXZSRWwxYkVKM1NVUllVMFp6U25wQ2NGZzBNbkJrUjJzMFN6aHBiMmxMV0dSSVNUYzJWRVpMTnpsMmNHTk9kemh4YkFwQ0wwZDFTbEJpYzFJNFNISnFhMmM1T1VWT1dHY3dPR3gxVEdOQk5HYzROWGhHTTJaTVMzTnRlVll6UXpORlVIaHpLMHA1VEZaSVJXNHZOa0pxYlZobUNtSmxjMHhVVGxaVldqZGlRMGxEU0dWR2FHOXFjVEZEVVdKTVVYZHpkakkwVm1WTWFUWkRUbU5HTDJWYU5XWkNURzFxSzNsUWJrRTVMMVpKUlcxcE9GWUtNemhhYjNsUVVHUlJXR2RNWlRrdmFtMXVkMWxEWjBOMFJHNDFha2R1VW1SNFZYRnZWM0o1YURsR2NUQlpXRGRYYjNBeWJpdEVkbWszT0d0R2RUbGxjd3BsTVV4S2NqZ3lhbkJ2YkhZNE56bHBhaXRuUWtzMGMwTkJkMFZCUVdGT1YwMUdVWGRFWjFsRVZsSXdVRUZSU0M5Q1FWRkVRV2RYWjAxQ1RVZEJNVlZrQ2twUlVVMU5RVzlIUTBOelIwRlJWVVpDZDAxRFRVRjNSMEV4VldSRmQwVkNMM2RSUTAxQlFYZElkMWxFVmxJd2FrSkNaM2RHYjBGVlpXZFNVREF2VDBjS1EwZFBaaXRFZG1OSVlUaElTMjB2TjBGb1VYZEVVVmxLUzI5YVNXaDJZMDVCVVVWTVFsRkJSR2RuU1VKQlN6WXdOa1l6Y1cxM1ZFcFdkbTh6VEhZNWJBcHdjSFpXUjBkSE1IVndaREp3VlVOWlYzWnVNbTlXVW1WTk5GSTFkVU5VT0dkQlRWVk5VVlY1U2taSldFbHpZVkZKVldobU1ISmhORFIyY210RU5XVXZDakV3VVV0d1VGWkZPVEZsVlhCMFNVVjNjbEJTUkM4d2FrRjFUR1JNT0hnelIxcE9SSHBKZURaR1MwOTFTMjFSSzB4WFVGcEtNbXB1UkZsaU1DdEljV1FLVFUwemNEZEtlbFpKU2xock9UaHFValJvYkZWUWFFWllTRkJzYUZkMVZGcEpMM05hTlc5T01WTlpXbk5VYldReWVqZzNkbHBEVkdkSVJFSkdLMWxLZHdwUk0wVkhNa1JyYlZsUlNXRllVM1ZTWm5oaWVUazNRbGR1WldScFVuRndiVlE0UVVVdmJtMHlaM1V3WkdaUVluZ3ZTVFZXUlVSakwxZHZVblY2ZVdWb0NsWkpjekoyUWpSTWNIQXlNMGhaYlZFdlN5dG5UbmxqU25aSmFtb3pVVkJ6WWxwaGNubG1la0pqYmt0NVYzbDZTa3BETDFWSmVGSTNVVXhZVFhZcmExTUtPVEJKVEZOVmNTdEJObGxtZFRKbVlWVm9ka1kyVFdFMlZrMHlaME5TZDJaTFRIWnlTbUVyZW1GMU55OXFSVVFyWkZsbFVHbGhRV1J6ZVcxdWJHOXBZd3BrZERaRlQzQm1NbXg2U1VNcmVYWlhORmxIZW5WSlVGQnBNblJGU0VsS1ZpOHJUbU50UVhwWFJtb3pabEkzUVhoVVZuVm1UMkpvUVRSSWJXMDNSRlU0Q25sM1UyMVhOamhQYUUxSmVtdDNiM3AwZEVWaVdHd3JZbVl6U0ZGRFpHVXZhMmxOVmpKbE5qSTBaVEkxUmpRd1NVcGhkamRSU2poMWNFbGtZVVpTVldZS2IycFFjWGh3UzFoSWIzVlZUall4Y0RoaFlrSXlkbGxqZEcxS00yeGFRMUZKUjA1eVYwcHNObEZyVlUxQlIyNDBkbUo2WWxKTlFqWnphV3hMVEZSR2JncFNOSFl3VjFBNE5XSlJUVFUxVTB4b1dIWlNMMlowVVdReVMwRmtWWEkzTUhwQllXZDVRemh1TURkelN6aFBhV1JIY1hrNVprOXNSSEZMTjBwdk1ubFVDa3RyYm5GM05YbDZTMVZoWWpCTmJsVm9aV1I0Wnk5Sk9Rb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIGNsaWVudC1rZXktZGF0YTogTFMwdExTMUNSVWRKVGlCU1UwRWdVRkpKVmtGVVJTQkxSVmt0TFMwdExRcE5TVWxLUzBGSlFrRkJTME5CWjBWQk5WYzVabG81VEVsRlNYa3hiWFpIVTNGbVdFUkhRa2xHT0RoVmRXazJWV3BEVnpCTk0xbEJSbFpNU0dGVlIxQkpDa001YVhsR2VERmtMMDFPZGk5V0szTktZVVpMUVZrMFpVTlFXVlZZY0ZoNGMzQlhObEZDTDAxNFJuZGtXVTlYVFhKV1NEVlZRM05HVDNCaWVVNHliVEFLTTFWck5IVjZOa1kxUjBNclRHcDFXa1IyYzJwaWVVVXZZek5TVEhwa1JXMWFUSGx1YkRSb2FUSlBZa2xwUmtwMlRVSjZNeTltY0ZwRmFIWjJTblo2WVFwUlVVWnlUMlpqVDFoQlJucFJaR1p4THk5WE5HZEpSMVJEY210VWFGbFBVMGRqYVZCMU4wZFVZM1YyTmpoQ1FYUlphMEZuU1dGNWJrTTRVbGcwTVhKR0NsSmtLek0zVlRsblpWZFZUM1ZxVkZWSGNqZDZWak5YYWs5dU1FTlRLMmRHYjBFM2JEVnhTRVZsWkVwbldsQk5UQzlZVkhOdGRFbEJXa2hvZWtkdlVXd0tkM1pJVTBsR1NFWTBZMWszWkd0UWIwbHBOVm96YmpONFdVa3dkMFkzYjJSWmNGRXJiVFZsV2xaMkx6WnhaM3B4ZVd4MFZWRkhibTVOVFVOMEwzZFBjUW95UlRaTWNEazNVVTFzVUhVMldHRjZhSGxrY1hob2VYaDVSRTFYWjJJelZEUjRMeXQwTVVaT09YZzNTelpZUW5aUlJpOUVTWFZzUW5kSlJGaFRSbk5LQ25wQ2NGZzBNbkJrUjJzMFN6aHBiMmxMV0dSSVNUYzJWRVpMTnpsMmNHTk9kemh4YkVJdlIzVktVR0p6VWpoSWNtcHJaems1UlU1WVp6QTRiSFZNWTBFS05HYzROWGhHTTJaTVMzTnRlVll6UXpORlVIaHpLMHA1VEZaSVJXNHZOa0pxYlZobVltVnpURlJPVmxWYU4ySkRTVU5JWlVab2IycHhNVU5SWWt4UmR3cHpkakkwVm1WTWFUWkRUbU5HTDJWYU5XWkNURzFxSzNsUWJrRTVMMVpKUlcxcE9GWXpPRnB2ZVZCUVpGRllaMHhsT1M5cWJXNTNXVU5uUTNSRWJqVnFDa2R1VW1SNFZYRnZWM0o1YURsR2NUQlpXRGRYYjNBeWJpdEVkbWszT0d0R2RUbGxjMlV4VEVweU9ESnFjRzlzZGpnM09XbHFLMmRDU3pSelEwRjNSVUVLUVZGTFEwRm5RbkZvUlhoTmVsVlViM1ZuY2s5Q2JqRkxkbkpvTW1kc1pWWkdkVkpJU0UxSGNHSkxSbVZpUlUxT1ZWRjZSRFpoT1VWSlRGSTViWEp4TlFvd1NtODNhbUZHUlZSNE9HMXVZVFZCUW5NM2NVbHlOekZhUTBneVFqQXhkbXhFZUc1alpYSm1lRWxFTUhkVFVrdFZVek5sYjBGeVFpdFhOa2hNTnpOR0Nta3dlQzg1YkdSWE5Ya3hTMDlMZEZkc1NsWnJNV3RpTWpKalkwMTVUbkp5VkVOdGNHTkhkME5qUmtOS04zbEtVRVF2ZWpGdmMzQktRamR0WVZSaFMzb0tRVVpHWTB4cWQwSXpWR2gwU1V4eU9XSllUWE4wZVhGeVNXSjJjRXhqV1VGM2NVaGlkR2RpTnpaRU1rTndURGxuTjFOVVNXWnhiVGRwVDFCQ1NIVnllQXBOVVU5dVZ6Qk9iSEl5VlZkSk5URkhWME5qY1hsdGRHbEtZMmxEVkVoUlJrRnlRMUkzVjNsU2JsTnJSSEkxT1ZSQ1kwTmhaazlPZWtsQlYyNTZORGhLQ2tKS2EzbHFUa0pIYm1wS1J6UjZNbVY2TmpKWFRtMW1VMFJ1VlVwemEyNVRkRUkyZW1sVmFYaHRaV001UW5WVmRFSk9hU3RaU2tkT2JVTjFTMlJJZUVjS04zaEVTR0ZZYUhCd2FYaDBOaTlJWVRWYU5DOVJZelE1Vm14c1pHaHpUbTlpVTNSdWQxVnJhVzUzUlU4clNtdGFiVFJITTJOd1dUaDNkVEZwVkcxbFlncHdka2d5TDBSTlFVbDRUbXBsVW5Gb2JucHpSR1JvZFdzd1ZrSnNaa052ZFRFeFpYaEtTRzFEVGtSb2NTOUlSRFJMYUZGSGJrdHlXVVp1TkZCaVpuaGhDbGhUTUVWTVdtaFpNMnBUVG5sVGFFdHNPWFJxVjFoeWVFcFdRbEl2Wm05RWMyZHFOV05VV0U1RGFHNXJNSHBMYW5WTlMyODVWMEZ3Tm5KM1dIWXpabE1LZEhCdVoyUk5VelJQWlRkUWNHOUtXRGRIWXpKbEsxRjNPRE01YVRObmRUZE5RV05FVFhsSE5tcFhMMmxLUW5SbFNDdHBOMU5NUkZGU1VEQjNhRkZhV2dwMlVWTkpaelIwZFVkbWFITlljM2N2YzBodGIzRkZXVFpGYmxKTWNXczRPR2xHVURRckswTjRNM2t5Y2pGWlNpdHJVVXREUVZGRlFUYzBVVWRwUWxBd0NqQmtUMlJrWjFWdVoxVTFlVzQ1VjNCWUwxWXJNM2xyYlZWS0t6Vk5LME0yV2twUVVqTkxPR1UyVTBNMFdsRTBValZZU3pBMlMwY3JablZSTVRST1JIWUtZekF6VVRkWlRtOWFiMWxzUkhCMmNUTTNTRzVqUmtSaVVtdGlXRzg0UnpkRVNYaFphRmRvZFU5RE9UaFFWMEZaVXpJek0yUkVUVmRRWlhrM1JVOXFVUXBtZFdKdVkxZGhXRmh0VkROR2FqUlNZME54VjJ3M1NISk1UeXRhTW5sa01FTm1ia1ExTm05cmRXVmlOM1J0S3pSVWNVdGpMMXB3VGtaME9EQTFLMDFoQ2xSb2VVdFNhMEVyUVhoelNHZ3lUMjV6VTNwbGRURjROMFJ5ZWxOalFVcG1iRVJHUldSWFlXMVZSelo1YkZrclNHSjBka3h3UVV0a1FqSmtUakJhU1dvS1FWVktLMlkxSzBaRFVWQklZVkpLZWtSelEwcGFWM2gzZGpOWk1sbFNUbXBFWWtwVGFGQnFSR1ZJWTJJeWVFNVVSR0ZzVUc5aFJFZEhZbUpzWVZablpRcHVRV012WjJzd1JFbFBOVmxLZDB0RFFWRkZRVGxVYlRnM1IyVk1UbXM0T0RWT1UzRXJUbFp6YkV3eFVURlRTRXBMUW1aU2VHUXlORXB2YkZob1kxQjJDamR1ZFdKS2F6ZHlPVEZ2Y0ZveWRHVldjWGg2VW5FNVRFNVRhMEZyUVdSMk9Ia3JRbmRRUnpsblFuRkhkVlppWVN0dWNrUk1jM0JGUmpCUU0wMDVhM2dLUWpocFkwVTRjV0o2TXpSSFVsaENjbTUxYkhWV2VEaHlWV1p1UlROeGRFZEthMDVLU1dGRWNGVnFjV2RDUzFFeGFUaFlkRXh3TWs1WldTOHdkemhWUVFwcE1uTXpiWHBETW0xRk1rZFBkblYwT0ZZMmVVSkJkMHRIUkRocmN6TlFUMnRYTm1sak1uZHBXWE5KV2pNMllVZG5aazVsUld3eFRHZDRWbTlZWm5Jd0NubGtMelZ6WjJOb2JFeG5XVnB0TURnM05HbHhTU3MzZUdaRWVHbGhZME4wT1UxNmRVdERjVk5ZU2xRMlFqUTBTRmM1TTJoeVVYWkJZVUZaYURWd1VVY0tZVzVEVDFaQk1FUm5NbTlOU21oTmRtZG5SRUZvY1hwaWNWTkpTMHBFWnpGaVVrSllaRkkyY2k5UlMwTkJVVUZEZEdwWU1IVklWV1pKZDNjelZqbDFXUXB3VkVNM1EyOXZLMWxsVFhJeE5sWjBZVVZIUzJsMFRGSmlURTFHYTNBMFFTdGlVR04zVVc5SE1WRlBhbFp4UmpObmJFaDRNVFoxSzFoSVZYWkhlblpHQ2xoWFRubENUMWhzTTI1bVIxWTRVVVI1WVRKTVZuaG5kRVJxUnpaWlVFcFBhRWx6WkdwellqTnZObXRZYTJKVFFYZDJkR3BPTlN0VmMwUjVVMnhvZWtVS2JuUlJSbFp1UzFGSFNYUllPRVpYTDFSdU9IQmpaM0p2VTJkSGFubzVUbGR1TTNwbFJtVnRObE5xUlVreFoxSnNZU3RYU0dOd1ZFeHhXbk5RVEVrNFNBcE1abXR3TWxWRUszbHZiRVJEWTNORE5HSlNiMUJFTm10NVQwbEVhV3RRTjNsVFZWRmxSekpMU0dOaWVXUnRNR04wYkdreFRreG9ZM1pWYmpsWEszSXZDbkpUUmtjeVZWTm5UME5JVjBkcFNUQnhUSFkwTkZkV1VIUkhUVzE1YTBrNFZFOTZkREJCZDNseVYxbFFZVWRwVm5obVNsY3ZVRFZ5ZFdSR1NWRnRUREFLY200MGJFRnZTVUpCVVVOaGFFZEpaR3d2VkhCTFN6WllRbU5aYUdWMVIzSkxNSE5YYzA4MEsxaENkbkpGU2xWeVpYaHFlVU5aT1ZOa2QwcEJPV3BRVEFwTVZESjJhemhFYVROc1JGbDBhbGQxWW05TFZGQnZlREE0U0dSVE5ub3ZZbmt4YzJWNE4wczVXamhOTmpWWGNGbFBjRkV5VlVkSFRIQlJWbkpzZUhaekNtUXhNV1ZRWTAxcFdUZFpTMGxZU3pkbFlWWnhTbEZRVkhOcmQxQmhORkExVFRCWFNFSjVNVk5SUlc0clQwaHdVV2RzVUZwVk0xaFFXVFpUY2toa2RrRUtVbWRGVW1jeWNVMUVNelJrTDB4UlZIRlNNMjlGVlRKVk5TdENiVEpFYTIxbU1sZHpVR2hMT1V0WGMyRkxWREJsWjAxMU9XaENZbWRoVldVNWRrczJWZ3BPYUdKNE1qRXdkRVppUlZoaFZWVjVXV2cwYTNkeGMxb3JSazFOWW1nM1FsSlpTSGxhY2xWUFZuUlpVRzl5Y2k5RlVGbHNaM2h2ZWpCWE5YUlhZa2huQ2tOV09WVlZibmcxTjNneFp5OTFVaXRSZUhWbGVrOW5iRXM0Ym1ZeU5EZEdRVzlKUWtGSWRHRnliemNyV2xOa1pFNDJNbXh0TlVka2JuaGFXak4xVWpjS1QwaDBkMjlZYjFSMFVFRTNibFJtWlVKRWFGSkxkSHBXWjJ4T1kzWnRZbmg2Yld0cE5EWXhVVTg0VGxKbWJVaFZlR2x0V25Kc1NqWTVNRzQxU0N0b1pBcFlaVzB5V0c1eFNXY3daM3B4T0hONFJHNWFLeTgwU1ZwSWJFbzFla0p2WTFscFRHdHdNSEF5V1hZNFlteENUVEZHZFZsalMxSjZPRGRNUTA5b1ZtZFNDbmg0ZEVWelpuUmtablJSU1Vnd1ZuUldXbUpxYW1NMWNUTkRTekF2U0ZOR2VsQXdlVFZWUTBsR2MzTlNOSGxLWVRsRFFVMVJUMVkzUlVsbGEydFlTMElLZEU1b2RFWmlaMnhYVUV4WmNtWk1lVEJVZHl0SWIwRXpaR3hLTWl0eU5tUkVSbWx5VVZZdlFUQTNWRTloY1c5MFZsSnJZelY1Vm05NVNrTnpiMjFSV0FwUE9GVkNRemswWjFSMVUzSXdXR3hGSzFWWFFVOVBNVEY2Umtad1pVTkRlVVl5WVVRemNGazNORWx2YVV4aWQyUkhlWEp3ZHk4eVlrUk1hejBLTFMwdExTMUZUa1FnVWxOQklGQlNTVlpCVkVVZ1MwVlpMUzB0TFMwSwogICAgdG9rZW46IGp5ZjFjcmk0N2gxbGpqY3A3ZDBlYzB2ZzdpeXRneXppeHRtajF1cGIwdWQzZnloNTNxcHc5ZGhxZTY0M281eHd6bmZ6aWd5Z24zMDd5YTRmczBpN3RpdXppa3NjdTBnYTI1aGZrZngyeDN4aW5lazJmbjBtYXU4d3E0bmJvY3U0Cg==\"\n + \ }\n ]\n }" headers: cache-control: - no-cache content-length: - - '13072' + - '13084' content-type: - application/json date: - - Wed, 14 Jun 2023 17:38:57 GMT + - Thu, 29 Jun 2023 09:28:53 GMT expires: - '-1' pragma: @@ -825,10 +1142,6 @@ 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: @@ -850,26 +1163,26 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count --zones User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-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.25.6\",\n \"currentOrchestratorVersion\"\ - : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\"\ - ,\n \"enableEncryptionAtHost\": false,\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 }" + 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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n + }" headers: cache-control: - no-cache @@ -878,7 +1191,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 17:38:58 GMT + - Thu, 29 Jun 2023 09:28:53 GMT expires: - '-1' pragma: @@ -919,29 +1232,28 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count --zones User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.19.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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/00253d3b-efd9-4369-b35a-cb47be050a2f?api-version=2017-08-31 cache-control: - no-cache content-length: @@ -949,7 +1261,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 17:39:03 GMT + - Thu, 29 Jun 2023 09:28:59 GMT expires: - '-1' pragma: @@ -979,14 +1291,158 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count --zones User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/00253d3b-efd9-4369-b35a-cb47be050a2f?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"3b3d2500-d9ef-6943-b35a-cb47be050a2f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:28:59.6589498Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09: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.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/00253d3b-efd9-4369-b35a-cb47be050a2f?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"3b3d2500-d9ef-6943-b35a-cb47be050a2f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:28:59.6589498Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:29: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.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/00253d3b-efd9-4369-b35a-cb47be050a2f?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"3b3d2500-d9ef-6943-b35a-cb47be050a2f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:28:59.6589498Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:29: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.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/fe5edd8e-e976-4aaa-bef2-f780a43bd57f?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/00253d3b-efd9-4369-b35a-cb47be050a2f?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"8edd5efe-76e9-aa4a-bef2-f780a43bd57f\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T17:39:04.1581743Z\"\n }" + string: "{\n \"name\": \"3b3d2500-d9ef-6943-b35a-cb47be050a2f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:28:59.6589498Z\"\n }" headers: cache-control: - no-cache @@ -995,7 +1451,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 17:39:03 GMT + - Thu, 29 Jun 2023 09:30:30 GMT expires: - '-1' pragma: @@ -1027,14 +1483,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count --zones User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/fe5edd8e-e976-4aaa-bef2-f780a43bd57f?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/00253d3b-efd9-4369-b35a-cb47be050a2f?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"8edd5efe-76e9-aa4a-bef2-f780a43bd57f\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T17:39:04.1581743Z\"\n }" + string: "{\n \"name\": \"3b3d2500-d9ef-6943-b35a-cb47be050a2f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:28:59.6589498Z\"\n }" headers: cache-control: - no-cache @@ -1043,7 +1499,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 17:39:33 GMT + - Thu, 29 Jun 2023 09:30:59 GMT expires: - '-1' pragma: @@ -1075,14 +1531,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count --zones User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/fe5edd8e-e976-4aaa-bef2-f780a43bd57f?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/00253d3b-efd9-4369-b35a-cb47be050a2f?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"8edd5efe-76e9-aa4a-bef2-f780a43bd57f\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T17:39:04.1581743Z\"\n }" + string: "{\n \"name\": \"3b3d2500-d9ef-6943-b35a-cb47be050a2f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:28:59.6589498Z\"\n }" headers: cache-control: - no-cache @@ -1091,7 +1547,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 17:40:03 GMT + - Thu, 29 Jun 2023 09:31:29 GMT expires: - '-1' pragma: @@ -1123,14 +1579,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count --zones User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/fe5edd8e-e976-4aaa-bef2-f780a43bd57f?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/00253d3b-efd9-4369-b35a-cb47be050a2f?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"8edd5efe-76e9-aa4a-bef2-f780a43bd57f\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T17:39:04.1581743Z\"\n }" + string: "{\n \"name\": \"3b3d2500-d9ef-6943-b35a-cb47be050a2f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:28:59.6589498Z\"\n }" headers: cache-control: - no-cache @@ -1139,7 +1595,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 17:40:34 GMT + - Thu, 29 Jun 2023 09:31:59 GMT expires: - '-1' pragma: @@ -1171,24 +1627,24 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count --zones User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/fe5edd8e-e976-4aaa-bef2-f780a43bd57f?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/00253d3b-efd9-4369-b35a-cb47be050a2f?api-version=2017-08-31 response: body: - 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 }" + string: "{\n \"name\": \"3b3d2500-d9ef-6943-b35a-cb47be050a2f\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:28:59.6589498Z\",\n \"endTime\": + \"2023-06-29T09:32:27.1800711Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '170' content-type: - application/json date: - - Wed, 14 Jun 2023 17:46:21 GMT + - Thu, 29 Jun 2023 09:32:29 GMT expires: - '-1' pragma: @@ -1220,26 +1676,25 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count --zones User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -1248,7 +1703,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 17:46:22 GMT + - Thu, 29 Jun 2023 09:32:30 GMT expires: - '-1' pragma: @@ -1282,8 +1737,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/cliakstest000001?api-version=2023-05-01 response: @@ -1291,17 +1746,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/bb43ed00-01a7-46ea-8a4a-fc22f2fb5073?api-version=2017-08-31 cache-control: - no-cache content-length: - '0' date: - - Wed, 14 Jun 2023 17:46:24 GMT + - Thu, 29 Jun 2023 09:32:32 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operationresults/bb43ed00-01a7-46ea-8a4a-fc22f2fb5073?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_availability_zones_msi.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_availability_zones_msi.yaml index 15e495cabb5..a84341b5b98 100644 --- 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 17:46:27 GMT + - Thu, 29 Jun 2023 09:32:33 GMT expires: - '-1' pragma: @@ -55,11 +55,12 @@ interactions: "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": {}}}' + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {}}}' headers: Accept: - application/json @@ -70,71 +71,69 @@ interactions: Connection: - keep-alive Content-Length: - - '1769' + - '1440' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --zones User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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-cq73ll3y.hcp.eastus.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-cq73ll3y.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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_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 + \ \"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/dc2f9ac9-ad63-4830-9d61-3b608234b4fa?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/273e8bc6-e445-4b73-946b-a4e2e7de9731?api-version=2017-08-31 cache-control: - no-cache content-length: - - '3603' + - '3274' content-type: - application/json date: - - Wed, 14 Jun 2023 17:46:32 GMT + - Thu, 29 Jun 2023 09:32:37 GMT expires: - '-1' pragma: @@ -146,10 +145,1114 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' + 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.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/273e8bc6-e445-4b73-946b-a4e2e7de9731?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"c68b3e27-45e4-734b-946b-a4e2e7de9731\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:32:36.986814Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:32: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 --location --dns-name-prefix --node-count --ssh-key-value + --zones + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/273e8bc6-e445-4b73-946b-a4e2e7de9731?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"c68b3e27-45e4-734b-946b-a4e2e7de9731\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:32:36.986814Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:33: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 --location --dns-name-prefix --node-count --ssh-key-value + --zones + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/273e8bc6-e445-4b73-946b-a4e2e7de9731?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"c68b3e27-45e4-734b-946b-a4e2e7de9731\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:32:36.986814Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:33: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 --location --dns-name-prefix --node-count --ssh-key-value + --zones + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/273e8bc6-e445-4b73-946b-a4e2e7de9731?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"c68b3e27-45e4-734b-946b-a4e2e7de9731\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:32:36.986814Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:34: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 --location --dns-name-prefix --node-count --ssh-key-value + --zones + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/273e8bc6-e445-4b73-946b-a4e2e7de9731?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"c68b3e27-45e4-734b-946b-a4e2e7de9731\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:32:36.986814Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:34: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 --location --dns-name-prefix --node-count --ssh-key-value + --zones + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/273e8bc6-e445-4b73-946b-a4e2e7de9731?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"c68b3e27-45e4-734b-946b-a4e2e7de9731\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:32:36.986814Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:35: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 --location --dns-name-prefix --node-count --ssh-key-value + --zones + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/273e8bc6-e445-4b73-946b-a4e2e7de9731?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"c68b3e27-45e4-734b-946b-a4e2e7de9731\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:32:36.986814Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09: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 +- 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.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/273e8bc6-e445-4b73-946b-a4e2e7de9731?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"c68b3e27-45e4-734b-946b-a4e2e7de9731\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:32:36.986814Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:36: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 --location --dns-name-prefix --node-count --ssh-key-value + --zones + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/273e8bc6-e445-4b73-946b-a4e2e7de9731?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"c68b3e27-45e4-734b-946b-a4e2e7de9731\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:32:36.986814Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:36: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 --location --dns-name-prefix --node-count --ssh-key-value + --zones + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/273e8bc6-e445-4b73-946b-a4e2e7de9731?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"c68b3e27-45e4-734b-946b-a4e2e7de9731\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:32:36.986814Z\",\n \"error\": + {\n \"code\": \"ReconcileControlPlaneCertificatesError\",\n \"message\": + \"key pool is empty\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '230' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:37: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 --location --dns-name-prefix --node-count --ssh-key-value + --zones + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/273e8bc6-e445-4b73-946b-a4e2e7de9731?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"c68b3e27-45e4-734b-946b-a4e2e7de9731\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:32:36.986814Z\",\n \"error\": + {\n \"code\": \"ReconcileControlPlaneCertificatesError\",\n \"message\": + \"key pool is empty\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '230' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:37: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 + --zones + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/273e8bc6-e445-4b73-946b-a4e2e7de9731?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"c68b3e27-45e4-734b-946b-a4e2e7de9731\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:32:36.986814Z\",\n \"error\": + {\n \"code\": \"ReconcileControlPlaneCertificatesError\",\n \"message\": + \"key pool is empty\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '230' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:38: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 --dns-name-prefix --node-count --ssh-key-value + --zones + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/273e8bc6-e445-4b73-946b-a4e2e7de9731?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"c68b3e27-45e4-734b-946b-a4e2e7de9731\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:32:36.986814Z\",\n \"error\": + {\n \"code\": \"ReconcileControlPlaneCertificatesError\",\n \"message\": + \"key pool is empty\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '230' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:38: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 --location --dns-name-prefix --node-count --ssh-key-value + --zones + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/273e8bc6-e445-4b73-946b-a4e2e7de9731?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"c68b3e27-45e4-734b-946b-a4e2e7de9731\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:32:36.986814Z\",\n \"error\": + {\n \"code\": \"ReconcileControlPlaneCertificatesError\",\n \"message\": + \"key pool is empty\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '230' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:39: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 --location --dns-name-prefix --node-count --ssh-key-value + --zones + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/273e8bc6-e445-4b73-946b-a4e2e7de9731?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"c68b3e27-45e4-734b-946b-a4e2e7de9731\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:32:36.986814Z\",\n \"error\": + {\n \"code\": \"ReconcileControlPlaneCertificatesError\",\n \"message\": + \"key pool is empty\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '230' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:39: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 --location --dns-name-prefix --node-count --ssh-key-value + --zones + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/273e8bc6-e445-4b73-946b-a4e2e7de9731?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"c68b3e27-45e4-734b-946b-a4e2e7de9731\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:32:36.986814Z\",\n \"error\": + {\n \"code\": \"ReconcileControlPlaneCertificatesError\",\n \"message\": + \"key pool is empty\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '230' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:40: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 --dns-name-prefix --node-count --ssh-key-value + --zones + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/273e8bc6-e445-4b73-946b-a4e2e7de9731?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"c68b3e27-45e4-734b-946b-a4e2e7de9731\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:32:36.986814Z\",\n \"error\": + {\n \"code\": \"ReconcileControlPlaneCertificatesError\",\n \"message\": + \"key pool is empty\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '230' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:40: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 + --zones + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/273e8bc6-e445-4b73-946b-a4e2e7de9731?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"c68b3e27-45e4-734b-946b-a4e2e7de9731\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:32:36.986814Z\",\n \"error\": + {\n \"code\": \"ReconcileControlPlaneCertificatesError\",\n \"message\": + \"key pool is empty\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '230' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:41: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: 201 - message: Created + 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.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/273e8bc6-e445-4b73-946b-a4e2e7de9731?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"c68b3e27-45e4-734b-946b-a4e2e7de9731\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:32:36.986814Z\",\n \"error\": + {\n \"code\": \"ReconcileControlPlaneCertificatesError\",\n \"message\": + \"key pool is empty\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '230' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:41: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 + --zones + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/273e8bc6-e445-4b73-946b-a4e2e7de9731?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"c68b3e27-45e4-734b-946b-a4e2e7de9731\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:32:36.986814Z\",\n \"error\": + {\n \"code\": \"ReconcileControlPlaneCertificatesError\",\n \"message\": + \"key pool is empty\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '230' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:42: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 --dns-name-prefix --node-count --ssh-key-value + --zones + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/273e8bc6-e445-4b73-946b-a4e2e7de9731?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"c68b3e27-45e4-734b-946b-a4e2e7de9731\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:32:36.986814Z\",\n \"error\": + {\n \"code\": \"ReconcileControlPlaneCertificatesError\",\n \"message\": + \"key pool is empty\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '230' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:42: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 + --zones + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/273e8bc6-e445-4b73-946b-a4e2e7de9731?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"c68b3e27-45e4-734b-946b-a4e2e7de9731\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:32:36.986814Z\",\n \"error\": + {\n \"code\": \"ReconcileControlPlaneCertificatesError\",\n \"message\": + \"key pool is empty\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '230' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:43: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: @@ -165,23 +1268,25 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --zones User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/dc2f9ac9-ad63-4830-9d61-3b608234b4fa?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/273e8bc6-e445-4b73-946b-a4e2e7de9731?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"c99a2fdc-63ad-3048-9d61-3b608234b4fa\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T17:46:33.2728631Z\"\n }" + string: "{\n \"name\": \"c68b3e27-45e4-734b-946b-a4e2e7de9731\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:32:36.986814Z\",\n \"error\": + {\n \"code\": \"ReconcileControlPlaneCertificatesError\",\n \"message\": + \"key pool is empty\"\n }\n }" headers: cache-control: - no-cache content-length: - - '126' + - '230' content-type: - application/json date: - - Wed, 14 Jun 2023 17:46:33 GMT + - Thu, 29 Jun 2023 09:43:39 GMT expires: - '-1' pragma: @@ -214,24 +1319,25 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --zones User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/dc2f9ac9-ad63-4830-9d61-3b608234b4fa?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/273e8bc6-e445-4b73-946b-a4e2e7de9731?api-version=2017-08-31 response: body: - 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 }" + string: "{\n \"name\": \"c68b3e27-45e4-734b-946b-a4e2e7de9731\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:32:36.986814Z\",\n \"endTime\": + \"2023-06-29T09:43:58.511792Z\",\n \"error\": {\n \"code\": \"ReconcileControlPlaneCertificatesError\",\n + \ \"message\": \"key pool is empty\"\n }\n }" headers: cache-control: - no-cache content-length: - - '170' + - '273' content-type: - application/json date: - - Wed, 14 Jun 2023 17:52:28 GMT + - Thu, 29 Jun 2023 09:44:09 GMT expires: - '-1' pragma: @@ -264,67 +1370,64 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --zones User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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-cq73ll3y.hcp.eastus.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-cq73ll3y.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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"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/416fcaca-806d-431c-8a87-b3094f512019\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4254' + - '3925' content-type: - application/json date: - - Wed, 14 Jun 2023 17:52:29 GMT + - Thu, 29 Jun 2023 09:44:09 GMT expires: - '-1' pragma: @@ -356,67 +1459,64 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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-cq73ll3y.hcp.eastus.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-cq73ll3y.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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"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/416fcaca-806d-431c-8a87-b3094f512019\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4254' + - '3925' content-type: - application/json date: - - Wed, 14 Jun 2023 17:52:30 GMT + - Thu, 29 Jun 2023 09:44:10 GMT expires: - '-1' pragma: @@ -450,15 +1550,15 @@ interactions: ParameterSetName: - -g -n --file User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ - \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSUlhwUlVrUnRZa0pPYlRGdFRXODJaMjVxTXpoVWVrRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxVVVYaE9lazB6VFdwU1lVZEJPSGxOUkZWNlRVUlplRTVFUlROT1JHTjVUa1p2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVOaUNqSm9UVkJqVG5sdmVXRTRTbkowZFVSRlVHaFdNbFZNZDA0eGFXVnBOSFJtVUdkUVQxTmhRazFNVlZsTGFFbFdUMjFGWWpObE5GcHRWR2hUYzFKbFNIQUtjblpyV0hSVlYxTlRMMnBvTlRoMVJtUkpNMXBoVUZKTE9YbDRRakJIWmxRMlZuSlVZV2xoVURWcmJFUXJkM1JNVTBOUk9HOXBPRTFIVG10VFptWk9Ld3BDZG1KaGVteGtjamxJVWtGM1NWQm5VbVJ6S3paNVJqZE9UVE0wSzJaTVpFOW1hMnhQUTFWbk5HY3JlVTFKZFRSb2JGa3ZkbXBFYVhGaVJtaERlbnBwQ2xOaWIyZzVOME0xYmpkUGRuQlZObWRJV1RscE1Va3liME5tUkRSNmRrdHpTakpMYVhKd1pHSjRPWGxWY0VaWVowZHVTRzU2UjBNcmRHeFdVVnBrY0ZZS1ZVSXdTbWx4ZFVzcmFqVldieTloTW10U2VsSmFVVU5tTjJObldWSk1MeTl6Y0RkSVkxcHFXWFk1VUVoUUswdzBTMUpFUldWdFpsQkxXa1ExY3pacWNBcFBhbVYyYmxwcFpteDVjR3hWZG5wd0wwOUtZV0pCZVZkUGNGSlhSelJEUjNoM1UzWkJOSGRRUm5sSFYwNXpiQ3REUzNsa1JYcEVMMFk0ZG0xR0szUjRDamMzU1hsRlNIVlROUzgxTVhOb2EyUlRSbXA2UW5oc1VpOTFSbTlTYTJKT1dqY3ZNV3hRZW5RMlFqa3JORzlWZDJkSVowTk5kbWxxTW5aM1dVaGpZVzRLZEVkSFJTOHZOek5EUVZZdlZIaHROMFZIUkd0Vk0wMTFZa0paVWxBMlpEVkliak5oTTB0NFIxRXlUbWRGUjNGSWQxQjJLMlphZW1GbVMxZENTakUzUWdwS09XeFBiVnB2ZVZNMlJqQkVVVEJNWXpWSlZVNHljRnBoTUdGdGNsWkVWeTlWUVZBelMzSmFUMEpvU1U0NUwxTkdRaXRVTlRWWU16Vm9XVXcwYlVWNkNrdFplVFp0VTJkc1JEZDRTV2xyTlhGWE0yTkJkMHRyZUVST1NFdERVMk5rVjBvd2JuTnpTVFl5ZURGNlRXUlFORUpRYzJ0M1JVTk1TVGxETDNoc1ZHSUtiVUZvTDBnMWQzQjNMM2MwT0Uxd1kzSlhkRnBOVjNKT1RHbERLM1ZUTDBGWVNURlNVemg1UjB0UlNVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWS2NDc3ZkREkzTWtOelFuSlFSazF2Q2s5RlRFczFjRXRET0RoUmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGR2EzZFdiekZCTlVKbVNHc3dPRFl5YzFWbWNXVlNaSFoyWkV3S09FMUJWMWRzYm1SWmMxRk5VVEpRWmtnMlFtTldWMjlrWWtkUWMwSkJhSEZsUldOdWFqRlJXVWRLWkhwYVNuUXZkMjFZYlZOT2NVaEpTMEptSzFCVVJRcFRSRFZ3UTJkVVZIWkZZM3BXWTFNelZHZ3lXbkJMYmpCV2VVUllhM1ZhTVdVemVWcEdTUzlrWVhwNU4wUkVWRTl2Wm1saU0wdzBVVGx5VEhKeU1FNTNDbmR3UXk4eE5HWklOSGx5THpWbFIzcFlWbkpSYkM5M2NucHhTblk0U3pSS2NrdzJRVTB5YVhWd1lqQklhVkJyTTFGM1kzQmFRbUZuTWxGcGNFOWpWRGdLT1dKMlowYzVXQzlXWmtrck5qaGhTWHBHTW5GM05WRXlSa2R2TVhab01XeFdRM3BOWTFSRWJIZEJORGR6VWtSSU9HWXZhak5UTW5VeGQwRktNalJJYkFwR2NWaFpiekZ6T0hOb1dsUndTbXhrUTJ0TGVIWm9XSEExS3pKaFowMTVjeTlOSzJoVmJHNXhSMDFwVTB0R2VUTkhha3hYU21oUFIwaGpNM1pLZUdVMkNtWnJZV0UxUjIxRWVuZDJiVkozYXpkUk1tdFBhazVJTkdOclZXOU9NRTgyTTNCRVVIRlVTRTFWV0N0SWVXeExRMVpqV1VkUVJ6SkpiMmxMYzNWTUt5c0tORmNyYUhscWRDOHdaVmxFT1ZWTFZqUTBRa05zTWpWWWFHcE5OMkl5ZFhCaFlWRnhlbFJWUjNaQmMzUndRbnB0TDA0NVJGbDNiRU5tTDFWc2IzRXZjZ3AwZUZWSWJWRlNhMEpGV2xkeVJtTm9lbnBqZEVOUVlVbHhaVnByTlN0NWJFSlBWVXBpTUZaWVUyVkNhMlkwTkVvNWVtaGpTbU5QTUVkb2EwOTFTalZtQ2twUldETnZXSEZMVmxSNk1HaEJOa2N4YzBrd1pFMDJObnBhZDJ4cFVVTjNaRkJzYTBSb0swbGxkRGRNVXpacVprWlBSMm8xVUVSVWNVTktORFZpVFdVS2MydFhOMngxZWxabU9FaE5kR3RPTld4U1lVWndTa3BUU0dGVWVsSndTbXhUZWxwWE1XVkRPRXRCTVdVeGRUUkVZVVpZVW1veFUweGlka2t4VjBzelZ3cEpiMlp6TTNSRFN6QlpkMDFKZEVkR0NpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2RuczM2c29lbHctamtxZm12d2wuaGNwLmVhc3R1cy5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdHJ1cnRtMgpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdHJ1cnRtMgogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdGtyaDRqbzV1a3lfY2xpYWtzdGVzdHJ1cnRtMgogIG5hbWU6IGNsaWFrc3Rlc3RydXJ0bTIKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0cnVydG0yCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdGtyaDRqbzV1a3lfY2xpYWtzdGVzdHJ1cnRtMgogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklha05EUVhkaFowRjNTVUpCWjBsU1FVMU1WRVZoU0ZWMFpuZDBWMFJGUzNONldGbFpRMnQzUkZGWlNrdHZXa2xvZG1OT1FWRkZURUpSUVhjS1JGUkZURTFCYTBkQk1WVkZRWGhOUTFreVJYZElhR05PVFdwTmQwNXFSVEJOVkdONlRucEpNRmRvWTA1TmFsVjNUbXBGTUUxVVl6Qk9la2t3VjJwQmR3cE5VbU4zUmxGWlJGWlJVVXRGZHpWNlpWaE9NRnBYTURaaVYwWjZaRWRXZVdONlJWWk5RazFIUVRGVlJVRjRUVTFpVjBaNlpFZFdlVmt5ZUhCYVZ6VXdDazFKU1VOSmFrRk9RbWRyY1docmFVYzVkekJDUVZGRlJrRkJUME5CWnpoQlRVbEpRME5uUzBOQlowVkJkVXRHWjNwcllWTjBRVlV6UlU1NGMxSXpWVWtLTmk5elpXeFVjblJMTmtOb1YxWm5NR1J0VEhNNU5EQXhkMlUyV0RWeFowaHhNMWQ0T1VKU1ZHNDFjR01yVkhsSFVFeHFUMXBhVmtscmJXSkhkVzlRYndwNFNrOHZXazV1SzJFcllUWnNPV1pTY0c1YUwwNVZSMjlqZW1zelUwcDJUVlpCVjBjeE9FdHhkVmR4ZHpZMFNtRlpOVVJFYVZSdmRUbFNjVUpSWjJ4MkNtMTJjbTVSUkVaQ1RITXJWelZzVFRsQ2FFdzJjM0ZFVTFGYVVIY3ZaV2c0Ylc5dGFFOUROMDAwTnpkWGJVMURTRFIwTmxobmRFSndTQzgyUmpKeWEyb0tSbGczT1dSMFNuRmxObXB0V0RsUVJVUmhVMk51Y1ZZd1dIcDBaRGhoWjBGTVdqVm5Va3gwWTFJcmNsZzFhVFI0UTJ3NVVqZzRaa2xrY0ZaSVJHMTBiQW95Umk5SVlrZHBORzVYU0RKTmRVWXljMVpFYVZkYWQzVnRaakZXTW5SSlFuUkhZVlkzSzI1ak5YQXJjVVo1U0V4dk9GVkhVbTFJT0VOck5YZFBOMFZzQ2xsV05EQlZOMFpDV21kUVFtNHhWMGROTldsU2NreEdUbGhwUTA5SmQyOUZNRkJhZUROU1oySkJiSGtyY0VOWVFubHNlVUpTUkVWVk9WZFZZM1pqYW1JS2FHaHBSMFV6YVhNdmJ6aEVOMlJuU0VVek5WRmhMM1phUlhGVFNYcEpSVmd2TnpCTU4xaHpjbEpYTVdwUVJGcEJZbWswYW5wSlVrNXZNVE5MVjJKamRncFpaV3BvYjA5YWFuVjVOWGxWVm1oV1lrcDVUSGxGYm5reU9UaERiVzVMUWpabmFXMDNVeTkzT0dKQmFWbG1SSFpNZVhWNGJFdEdORGt2UmtneGFIcDRDa051V0hWMmJ6ZFFjRGRDZWpGbGNURTRUWEprUzJ4NFdsUXJSekF5U3paVlZrRmhUbVJZV0hFNWQzQnlRblpaYzI5WmFHZDFXazFMTlVGR0szaFZabWtLV21sVlFqQTVhV2M1ZWtwNmJsQklSV1paYms5VmFXWldVM2htYm5FeVFtSjZZVGh1VDNveFFtUXZPVk00U0ZSdEwwUXlRbXh3VWt0cVdFOXFNR3d4VGdwSVFYUXZRVUZCVWxselZuWkJNeTl5VUZKeFIydHJjME5CZDBWQlFXRk9WMDFHVVhkRVoxbEVWbEl3VUVGUlNDOUNRVkZFUVdkWFowMUNUVWRCTVZWa0NrcFJVVTFOUVc5SFEwTnpSMEZSVlVaQ2QwMURUVUYzUjBFeFZXUkZkMFZDTDNkUlEwMUJRWGRJZDFsRVZsSXdha0pDWjNkR2IwRlZTbkFyTDNReU56SUtRM05DY2xCR1RXOVBSVXhMTlhCTFF6ZzRVWGRFVVZsS1MyOWFTV2gyWTA1QlVVVk1RbEZCUkdkblNVSkJSRmRhTmxaT1RrRlpLMnhoZDJGVFdXOHhVd3BQU1U4NWVXUXJjakpYVFc1alR6WlBkSGRDVTNrdmVqSkZObTlvVFdSd1ExQldWRzVRVmpVd1VGcG1lbGc1WmtKM1IwSlpTV1YzU205WmFHNU1hMk4xQ21OVWNqVmtZVGxYUTNCTVoxUkxRU3QxYTNOd2RFZzRObVZPTHprM1NFTjVNMFJ4YjNWcmNtNVBTRkUwWTJsYVpWVkhRMlY1U0dSeWRDOUlRVVZMVTBjS1VqUlZlRk5tVGxWT2JTdFpaVGd2UW5CWU1HWlJhalZYYzI5eVJYWmtabWhxVTNoT1ZVWldia1pvYjBWUE1qbENlalZqVUVGV1FsQk9Sa3hpYWtOck9BcG5kalZpTTNoaFVqQllOWEZxZEVoM01qZEhOVUpuZGlzclJtMUtSbFJKUkU5Uk1ITlpkbFYxVjJKaU5raHpOSHBQTHpGb1dsTnJiekZTVjFkdWNHOVFDa3BFUWsxbmQyRnlaVmhqZEdGamRVeGhTRGsyT1hwMFZuUm9OV1VyVUdrck5WUndkVWxLTkdRMWNHWXpPR2hqV1RNMlVFZ3ZiRkV5WW5Gb2NIbDFiemdLUkhaNVp6aFNZMWgyYWt3clJHVm5lSG8wYlRZNWJqSnFXa3BHUVdoa09WSmljR1pCU1U5RE4wOXhNVEpCUjFwNGNUQmhWV1pOSzNCc1YwRnlXUzlhYndwak5GQnBZMk51Tm5KQlVFb3pTRm8wUTFCMkwyZFBZa3R2VDJNNFFYbFdTMEo1UjJzM1dYTmtTWE5wUkZNMVRsb3JielkzWWtKblJFbGhOekJJVkc1SENsazVVRU1yUWt0dVozRjZkMUUzTTNFNVZTOWlUM0lyVnpOMGFsY3lhVk5DVEdSR1pTdE5NazgxVW1sUFV6ZzBTMDFyVUZOSGFrSkRMMEpGVFZFM1NrVUtjRlJhY3l0S1lrbDBRa1U1VjA4MlZGZHFSemQyU1hsQmNWaHdSalZrZVdad1ZFaGtkM0U0VUc1amNFWnFjRXA2UnpOeGNqTkhhV0pqUm5WbWNVTnFSd3BZUWtsNFZVTkplV0oxVkRCVWRFeExjVm81ZVV0WlFtMW9UMWhKYmtORE1IWmlaVTAyZFhsSmQzWk9NMUJGYW5oSVdFVnpSbkZtYUdwM1kzWmlWWGRPQ21aVk1WbDVTbXc1TURJdldXazViWFJrVGtSd1VVZEVNUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MwRkpRa0ZCUzBOQlowVkJkVXRHWjNwcllWTjBRVlV6UlU1NGMxSXpWVWsyTDNObGJGUnlkRXMyUTJoWFZtY3daRzFNY3prME1ERjNaVFpZQ2pWeFowaHhNMWQ0T1VKU1ZHNDFjR01yVkhsSFVFeHFUMXBhVmtscmJXSkhkVzlRYjNoS1R5OWFUbTRyWVN0aE5tdzVabEp3YmxvdlRsVkhiMk42YXpNS1UwcDJUVlpCVjBjeE9FdHhkVmR4ZHpZMFNtRlpOVVJFYVZSdmRUbFNjVUpSWjJ4MmJYWnlibEZFUmtKTWN5dFhOV3hOT1VKb1REWnpjVVJUVVZwUWR3b3ZaV2c0Ylc5dGFFOUROMDAwTnpkWGJVMURTRFIwTmxobmRFSndTQzgyUmpKeWEycEdXRGM1WkhSS2NXVTJhbTFZT1ZCRlJHRlRZMjV4VmpCWWVuUmtDamhoWjBGTVdqVm5Va3gwWTFJcmNsZzFhVFI0UTJ3NVVqZzRaa2xrY0ZaSVJHMTBiREpHTDBoaVIyazBibGRJTWsxMVJqSnpWa1JwVjFwM2RXMW1NVllLTW5SSlFuUkhZVlkzSzI1ak5YQXJjVVo1U0V4dk9GVkhVbTFJT0VOck5YZFBOMFZzV1ZZME1GVTNSa0phWjFCQ2JqRlhSMDAxYVZKeVRFWk9XR2xEVHdwSmQyOUZNRkJhZUROU1oySkJiSGtyY0VOWVFubHNlVUpTUkVWVk9WZFZZM1pqYW1Kb2FHbEhSVE5wY3k5dk9FUTNaR2RJUlRNMVVXRXZkbHBGY1ZOSkNucEpSVmd2TnpCTU4xaHpjbEpYTVdwUVJGcEJZbWswYW5wSlVrNXZNVE5MVjJKamRsbGxhbWh2VDFwcWRYazFlVlZXYUZaaVNubE1lVVZ1ZVRJNU9FTUtiVzVMUWpabmFXMDNVeTkzT0dKQmFWbG1SSFpNZVhWNGJFdEdORGt2UmtneGFIcDRRMjVZZFhadk4xQndOMEo2TVdWeE1UaE5jbVJMYkhoYVZDdEhNQW95U3paVlZrRmhUbVJZV0hFNWQzQnlRblpaYzI5WmFHZDFXazFMTlVGR0szaFZabWxhYVZWQ01EbHBaemw2U25wdVVFaEZabGx1VDFWcFpsWlRlR1p1Q25FeVFtSjZZVGh1VDNveFFtUXZPVk00U0ZSdEwwUXlRbXh3VWt0cVdFOXFNR3d4VGtoQmRDOUJRVUZTV1hOV2RrRXpMM0pRVW5GSGEydHpRMEYzUlVFS1FWRkxRMEZuUlVGdFF6WlZaalZKVjB4QlNUaGpSVFYyYUdKeVJ5OTBUeTlWY0hZcmFqYzFXVWxESzJaR2NFaFdOWFp3YVM5Q1dIYzJVRTVLVm5ncmN3bzNXbGQyYXpsbFJtMVFOREZYTW0xek0yNW9aRWREWkZVeVRHOVFjVGRDYjNsMlZWRlRPVzlxY0ZSTlJVbExVamxzSzFWc2RITjJUR05NVEZOcFpFMUJDbGxYYlZsc1ZIRkhNVFpvWWxoelVXUkhSV2cwUjJodFpIWXhVRTU0VkROWlZFMVpUV2d3ZDJWbmJucE1lVTk2ZERkVWVUTTRZM1pEYTFaalNFWmpOSEFLYzBGcFRGazFSMU5wZEdaMllXRlhNVEYxU2pST1EwZ3dURTlRTjAxcFZ6VlJRelpUUkVwdFkxRm9TbTlCUTB4V05HTktXa2RKU0hwdWJFOTFlV1YwU1FwVFNEZDVkMjFwYkZOd2NEWlhObFpWUWtrclFrRmFWbkoxTUhZd05UVlBVelpvTW5KU2FscFFNalJMVWpsbVprbHBjbTg0WjNweldXZEZVVzV0V1RSU0NrOXROVmRaVmxoeWRXbE9iVWRtWnpGbmRVRlVRV3d2UkVSTlEyOUpTMGsxWW0xR2RIQXZjM0o1ZGxGVFREa3ZaMDR5TjNKUmNUSnlia0YxYVZRMmRWY0tSV053ZFhBMVdYWkhWRGhPYkRWeFJqVm1OVGRCTUVsQ1FWaFlZV3gwVlZaVVFXWklTR0ZRT0ZacmVEQm5LMEp4Y0dOT1JtczJORkExYTNSRFVFOXNjQXBVVW5JNGJHZEtWU3RxUmpnNWJqRlBWMWx4VlhCcVZIVkRlblJ3TTNrMVJHSktRVkp5YWk5MVJtaHFUeTlCYkZaalJ6RXhVVTlpVURGNmEyb3hheXRMQ21SNWQwaG1kWE56UWpGeFRHNUVjbkZGVkhZeVNuQlFiRzgwYTBwRlRVSmthV3RCZDI1SFpUQk9iM1ZNV1UxWVkyRk9lVVZWWkRCdWJqaERXa2N5VHpZS1YySktOVFJUVkV4M01FNXBZbXh3VWs5Vk5WQmpVMlpvWXpaUVRrSm5UME5OYTFGSGNYcGlWM2N6VFdKV1FYTTRWMHRvVVVoblZFOHlWMVZsTTFaWGFncFBTelZOYlVwVU0waEpaa0YzTWtKR1NYSnFObVpQUkc1QlVGSkNWM2x5VVRkU1JXVlFWbE15TVhwR2IzSkdLMWhLY1d0RFoyZEZRa0ZPV25SWk5uWnRDamxCU1ZSaFYxQm1NMWhtTTBwb1MyMVZiR1o2V0ZGMFZsVnRNVGh5TUZSeFJ6QnNXV3RuVUhaNWJGRkZiRlpoVDFCaFRIRndLek5OY0VSdmIyVm5NV3dLV0dobVJsZGxRWFpSU1RGTk5tczRORzFDVVc0ck5URTNaekZ6VldGak5sSjNha3R6V2toRU16WXZTMGxhUkN0YVZsRnFVRmR1Y0U1MmIwSjViM055VXdwME9XWmFkSEZxU0V0bFlYbHJUak5tZWpkWVpUTk1TVkJOTm5WU1pWQkxVblpqVmt0YWVTOUxLMWt2UXpGRkwzQm9TQzlRWVZWSU1VODRNSHBSZFVONUNqbGtiRlI1VmxnMmJFMWtRak5SUm5neVZuWmFRVlIyYUhkQ1RURklkbXRGVWxsNWRUQTNaWFJxT0VOT2RtcEVURTFrVDNsUmEyWndMemhoTWtkQ055c0tTVXQ2T0hOcGJFaFlXV3RpTjAxUFkyaHhWWFZGYjB4NVdrbGtSVkpIYkRGRGNuQktMMGw0TnpBMmJGWlFaVzVUUW1wbWRTdHRSa3AxZFc4d2VIRk5NQXBYWVRsRVRYUXpaMm92TUdkQlVWVkRaMmRGUWtGT2VIUkdhVEJGTmtkdVF6SkNVRzloUzNGVWJXTkdiVzV6WmxBd1ltWmhhVWhyY2tkdFltZHVVR2tyQ2t3cllqVXlNM2RuY0dSUlp6UnpXbkYxY2xJNGEwb3dkMUU0YVdSbGJHSnVkRm96Vm5OS2EwVkllWGhQVEU4MFp6VjZVbXRIUldGNVprd3ZRek5oVWt3S2VtSjRaVk5QTURkd04wVlZlbmR0YlRGaldVUTVaVzlvVFZOek5sZHNUbTUwWjNCTFNrWktiMEZaVEU0NVNFUTJMM0JsUXk5dFIzRTFTVXhEUnpSWGRBcDZaRTVKV2tzNVFXNXFaRkpsZGsxblRGVm9SR2xNTTFWVWRXSnFRMEpUWWxwRk5tWldURGsyUlNzeGJTdDFkVGsxVmxWamRWVm1lR2xUTWtoU2FERm9DbVZhTldjNVYybDJVRXRqU3pKdFkxTnBlRkZ6YzFKTFZVa3dLMDVZTmtwNGNtUm5VMW8zVkRkNU5YSXJRbTFYSzNrMFEwWkhPRmxoVW5aSFUzQk9WVzhLUTB4UlpEVmFVR1pUZWxsTmRTdFhUMHhIZVV4MGVqbHRlbEkwVEhGVU5YRklLemsxVnpkeEx6VjNPRU5uWjBWQlprRllWbE52TlZGM1FYRmxVVWxuZUFwUWNuZFRjREpNVURaa1RETkdRMFZNYUdkNFEwTXJaMnRXUXpSSlpHOUtlRlZzY3poVVZUUkZWa2xFU2taSUwza3hWR2x2VERaMFlqSjJMMjh4WjFFckNtNHZka2MwYmpsdVduWkZhRlphYzJ4Q1REaDJNalo2ZFRKQlVtbExMekJhTW1KUlRqRTRUa2RNWTNoU1JuTkNNREpVU2pBcmFqaGhNbkIzZDFSRWNURUtMelYwTUhOM1Frc3dXRlJRZW1GWFFsTXhSR1V4WkRVMlJuVjZURGxvWVN0a1pYQkphSFJuV1V4U2VUUlZkRUZZUVV3NFVHaFpkVGxMZWtOT1IxVXZVUXBWWkdaRmFuQjBaRVIzVkdFNE9XNUdSVTVpSzNwVFZYUllVWFZhY0ZodFlqRmtSMjFIWlRkT1MxSmlTSGN6VTFNemEzQm5aRlI1YW1oaGNUZEhZV3RRQ21KemFHRkVNa2wyWkhOaVNrdHFaM000VW1kS1VXSXpVM05MUlhWck9ISnFVaXRRYmpWYUx6SjJUVGxoZG00Mk5IWTVTVFoxYUdORVkwb3lOMmhDTTI4S05tOHhhVk5SUzBOQlVVRk9OSGt5VUdadmVYRkNVMWRhT0RNeVRYRmhialZRYkRkdmJHUmFVSE5CZDBSSWF6QlhhVVJaTjJ0aVpuYzFTRTFKYldkSU5BcHZSek5LVGtoWk5EUjBVVEZ2ZUVoVFRrOUhPVlZtU0cxV1RURkJhSEp5TUVSeFZGVkNLM2x3U2pGc1JVMTNRMkpGUlhKdmFrRkpWbE5TWkhSSmRVbEpDbnBTWmxOTmRHMXlSbEp5VFU5dVZXWnNVbWxXZDNGWU9HUm1iR1F5T0VkcmJsSmpNbVYzYmtwUUt6WkpPWEo0V1RWTFVGcFJlamhDWm1ORmFVeFlPRXNLVjNrM1ZUTkpWV1F4VjNSeVJXeEpObEkzYkRsdGRVTjRPVEpZWldadVJqZzViM29yYURCT1NXNXVkWEExWWxSUU1HOU1MMWhQU0U1ellYZHJaMVV6WmdvNVJsbFpVV3h1VXpGd1NEbGhjVzVwTTBSU1dGSnlVU3RPWTB0ck5qSjRSR2R3Wldsc01tVTBNME52U1hwRFZVZEhWV2RpVTJRNWNXZGhkWGxMYkVwU0NuZElSMmxJT1dZMmNYSTNUREZ6TURkb1JqWlJWMUl4VkN0RFFtOVljV3BRUVc5SlFrRkJORGhpYkVOa2MwUmhkRFUzVXpCTlUwUjZhVTg0V21kT1RXWUtaM2g2UlhaalNqTk5UWGhXYURGTlkwbGhOVXR4UXpob2VUZElkVGs0WVdGc2NsSkVPRUp6V1c1WFRuSlBPR1JMWnpGdFptd3lUbXcyVjBWV1ZHOTBRUXBRWnpGdlpWTjBXbWRSTkdSMGRHcEhXVlZQYkhCR1F6TXhNVXRuYTNOQkx6RkJjV0owVjJkUVZYUlFVRlZMVTJOU1ozTm5jVmgyV1hjNE0wWjFPV0ZVQ2xSeldqUXZXQzluYzFwQ2JrZEdRbTlQT1dWek1uaE1jMHBxWW1JMldHaGxiamxRY3pSTkt5OW5RV1ZVYmtKclkxZFhWRUpYUVZwaloxTTViMFZPTWxvS2RXSjZlbVptZFhsRGVGaHRVRlZuWmxSeE9HTllOMGN6YzFkU1RYRnJXRUpKVjBwV2FGRmxZbGcyYTFkUlFUbFJXbkZtYmpOd1dYVjFlbWx3YUdOdlVRcFJZaTloU21Jd04wZEZiMjVsUkVZNFFWQjFUVkpUYVV3MmNrOWtaM2RWYzJWQ01ERXlaM2RRWmpOVGVtODBSWHBKVVRSak9YTjRhRE56VlQwS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiB6MTVydWNodXpjNjNkZDdhNGt6dmdndnJvNmdmZHNud2N5bHA1NGszeDU3Y2ZscGlibncxODZ3MHM3OWZiOWxwd2tkcDRwN2xtNWIwbWRsbnhnaDhzNjkxdXMyczlhcHhrYm51djJ5cDY4dGltaDhlcHJmcmtkMHV6YjdxNDl2cgo=\"\ - \n }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": + \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSUVhwa2QzcFlaVXQzU3pCM1kyVmFPR2d3WVhGbVJFRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxcWEzZFBWRWt6VFhwT1lVZEJPSGxOUkZWNlRVUlplVTlVUVRWTmVtTjZUVEZ2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVNckNtcEdZV1ZSVEZaQ1VUbEpTVE5HT1hZd1dsQjRRM3BZUjNOQmNDc3pTR0pEV1VSUVIxUlhjSEJyTUc5aFNEUm1SMHhTUWxRd1dXaHhXSEpoWlRWdFJVa0tOV2hwWVhGRlEyTlhhWFkyVEVwdVZXcFphQzk0Um1KTVN6TTFNVTVJYlhORVR5dHFaRU42T0VSV2IyZGphR2x4YTFoMmJpdEdiM1pKTTI1aVZGRnRhZ3B2ZUhFeGVsSjRLMk5sTmxWWVMwaFRiV1ZSZEdkUGQxaFBMMmRJT1hSMFl6TnVlR0o1YnpBck0zWklWbXBySzJOR1YyNWFNVGRsVkZRNFZGbDZhblZ4Q21KVVdTdGtNalpOZDJWMlYzUllTV2xHVERNdlRHcDJLMmxCY201S1dqZDBlWFF3YlRocVFYVjBkV1JWVlZWelJuRnpRMGR4Y2tKWFprOXdkRlVyTm1rS1JsZDROMUZFYWxab1RHRjVNakpWV1RCb2NHUm9NSFU0Um00M1VXcDFjRlZwV21wQlZtUm9SM28wYTFGbU4ydDBWRGgxWldNMlNrNTVOSFZpU0hWR1NBcEJOVWxuYUd0WWQzUkRSa3hsZGtGWFNVODVkVmxoVURoWVVsTjBZemN3VmtkaVl6RXphV3BWZG1sak4waEZjRUUyY0ZaaVZuUXlkR2RtTm5keVMycFdDazUwU1c0d2R6VjFTV2hWVmtWSGEwMUxRbEZzVFU5dlZHa3dOMndyTUZwclJHcGhlRFU1YVZSTFZHOVlVMkp4YmxsbWFFWk9UV1l2ZURGMmRuRjNXbGNLVEUxYVZrY3JRMWhIV0RCMlFXNTRWRGhNTlU1TmFDczRXRGgwV21KS1NtRk5PV05wVG5kdkwydzJiMnh0Vml0NFFXeFFiRlJHU2psSEx6WlBSRFpHWkFwcFpHcGFOR1poYzFRM2FFODRiVzQ1Tm5NMGJsUkdTR1o0T0hoaFlYbFZRMEpWUm5aaGJrNUtUMUJQVURKS1dXcDBjekpPYlhGTGFFVTVSMjE1WWl0RUNubGhVMU5WY1N0V1RqTTFTMU12UjA5RWJrMWlaekY2TlN0SmVHUk9RVmxYYkZSRU5IWTFSRUZxWms0eU9EZHBVVUpoYm1wb1FtcFhZMFJWVDBaamJsa0tOMG8yVFV0RFpYaENUMXBCT1d0R1VtNXlSV1ZKZEU1U2RDdGpjM05GWlhCaVFtWm1kbGRNZGpSUlNVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWdUwxZENNMmxCVGpWWmMzbEVSek16Q2s0MWRFbFVSSGMwZVZScmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGQlEyNXJaWFU1VFcxbWJtZGxVbmRuWTBKSmRUTkJNR0ZzTjFVS2RESk5MelJ5TnpsVGJsZDBSSGg0V0dsb1MxRXJiVW8xV21kT1pWRmtZVkl6UlVsamJuWXphVXBWZWpoV1JuWjVhVWM1ZWtSMGJFbHZaVzE0VFRSTlZ3cHhjU3MxVFM5TFZEZzROMWwwYlhwb01tZHRibmt6WWtOemRDdHRTMUZCTDI5TGFrVnZWazlDVVcxRlQwUjVjbEo1WnpOdWVYcHlhbkpGTnlzMWJEbFRDa2RXTlRSSFVUWTFXU3RwWjB0cGVWb3JWVnBZUVZsS1RIcG1lWHBzV0ZoaFkyVmthRE0yVjI5MlV6TXJVVlJvZVdwc01tRk5XblV6UkZwM2NXRkNXbUlLWjFKdFVraEVZWFF5TjJaTU4xZHRaSHBwU3pOb2VteHVZaTlrTDNSRWNuWkZjbWxaWWl0dk9XTmxTWE5NVlRCalRUVTVNMDQ1WkVVMWRETkVXa0p1ZFFwNmQzaGxVV28zYzFBMWJVMXZUMFpKVkU4M2NEUmFWbWN3WlcxTmRVbG9jMnRNV0RKcVNVOVllRVZVVjNkUmFtWXZXVVphVW1Sc2FXVjVURWhzYVhWSUNuUjFTMHhPY0V4R1ZFNVNMMHB6YkdWc09GRnRXRFJqYVM5SWJrZENibGhEWkRoWlRrNHJRbk5EYmxReldUSXlWVTlXYUdGbVpIUlRhVWxYVUVNdk5FOEtSV1JxVWt0clNVZFNlV2MwZFhSUlIxSTJUa1ZoTjI0MFZrRkRLMWxFV1NzM1RrMUJNSFJPTlc1UFR6VjRkbmQ0UlhCNlpYbDJSSE4xTjJOUkwzVkZNd3BCTWsxT1EyeHpNWEJFYlhCMk55OXhUVkJyTUVnNWFXSlFTSGRTZW5GRGJuVm1UVlEyZGpaT2RUVnBTRzV5VW1wMlVuQXpSMnBoUVV4M1JGWk5NMVJIQ25acWNsSklaMlJ0ZFVsVVpGbEpPRkZYUjBwdWQxbHJhbVJWVldnM1ozaG5NMDVIYkRaa1VHOWtPWEZYTjFSWldXbHZjbUZoZEN0YWFsY3ZLM0J1ZUdZS1ZuRklTRk5ZYkV4MlZEZEVUVEJpYkRreE1HSk5LMU5OZHpKNmNEUkxiMWhQWlUwME5VMVlUVkoyYWpJM1pIUXlhRFIwVGpZeWNVaE5ZMGxqTmxsU1F3cHFMM0ZUTXprcmFHaExjMXA0YXpOUUNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2RuczZjbGY1amctY3E3M2xsM3kuaGNwLmVhc3R1cy5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdGpvZWZ2Zgpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdGpvZWZ2ZgogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdHd6cTZoaGdrcmVfY2xpYWtzdGVzdGpvZWZ2ZgogIG5hbWU6IGNsaWFrc3Rlc3Rqb2VmdmYKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0am9lZnZmCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdHd6cTZoaGdrcmVfY2xpYWtzdGVzdGpvZWZ2ZgogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklWRU5EUVhkWFowRjNTVUpCWjBsUlFpODRhakF4VUcxTFZucHdUVEJHY0hKVGVXUTJha0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRnpSa0ZFUVU0S1RWRnpkME5SV1VSV1VWRkVSWGRLYWxsVVFXVkdkekI1VFhwQk1rMXFhM2RQVkVrelRYcE9ZVVozTUhsT1ZFRXlUV3ByZDA5VVRUTk5lazVoVFVSQmVBcEdla0ZXUW1kT1ZrSkJiMVJFYms0MVl6TlNiR0pVY0hSWldFNHdXbGhLZWsxU1ZYZEZkMWxFVmxGUlJFVjNlSFJaV0U0d1dsaEthbUpIYkd4aWJsRjNDbWRuU1dsTlFUQkhRMU54UjFOSllqTkVVVVZDUVZGVlFVRTBTVU5FZDBGM1oyZEpTMEZ2U1VOQlVVUjBUWFZ2TjJ4aVNWWkRkMVJFUVZWR1QzSkdUMFlLTDI4elNUQXllRWRGVUd4M1VFdDRiVlpQU21kTFRrbHBkbGs1WTJRMllTOHpkaTkxTkdzeFJHNUllbVo1YUZselVYUk9XbTFzUnpOUU1VNUlhRFlyTmdwTU1WUmhaMlkyZG5SM1dIVmFUVXMwUTBSMlVFWlhSWHA1VjFoa1ZXVnlRMWhZZDJVeGFXRjZjbXhYWmxCS1dVbFRRWFkwYVdKSVlVRjVjRTV4V25sMUNsWjJXRWh4VkRocU9XTndOR2hoYTBWS2VWRndNV3hMVWswd05rOXJVemhLV1hVeE5HZzNVRkIwUlhGT1RGZzBNblZpVnpBMGNXMTNXV1JrYkdGaVRVSUtPRkpTUm1OVVltUnNhVGd5VVdRNU5GVjFhbE5IVEhwaE1HcEliR05MY0VWVmVpOTZjU3RtUzFOTFFVMHZXa1JZVDNsd1NrcFhaemxHUzBGUVdrOVRSUXB0Ykc1RlowbHhkMGN6U20xWE5IcGtVVGR3VlhGWGVIZFpNRFp2ZHpWa1pEWmhlVzkyY21oME5FVnlLMDVXY3pKSU15OHpSMkYyZVhkVFNraFFlVVZaQ2psalZsZFdMMDV1Y21WVlQwVXZZM0JRWWxaaE1VbzVVak00ZEdoT0wySndPRmhWTlZoeVdtdEhaazVhZUVsMFUzUk9lbUpuZEVKa2RWVXhSM2RUVGtvS05VRjNVelkzYmpSUlJrYzNNbUo1YVUxTVpHRldLMEpJTlhWaGEzVTBkRElyYUdzck5rUkpVRmgzUkd4TGRVUlhUa2x4TDJwTFJsbFpaM0Z3WVhSbmVBcEtlRTVOTDFGcVFucHhMMFpIUlhNMGIxRlJWSFZPVXl0UU5ubFNaVlJ2YjFKRGMzcFdiWFU1Vkhoelp6Rk1VVzUxYVVJelVYbzRSRGRzY2tSWWJFTjZDbHAwTVhOdU9XbHRLekZsZW1GSGJHWnZibUowUms1clZuWjVRMHhrYVN0UlduWk9NV3BwYjFCbWIwTlZVM05QYWtsc1VHTmlaRkZ1ZGxWWFdWQXdTbEVLV2pZNVoyRXZNM052U1VKS1MzSmhMMkpCWm1aRUx6a3pjMmhMUkhGbmJDdHZaRmxCZGxwaFlVMUxPWGt4THpKR1VUbGhTbWQwTkdNdlYxVnFLMFZpTUFwSE1qRXZaV1pRUm5SRVFWVnlaM1l5VjNSYWFEbDNTVVJCVVVGQ2J6RlpkMVpFUVU5Q1owNVdTRkU0UWtGbU9FVkNRVTFEUW1GQmQwVjNXVVJXVWpCc0NrSkJkM2REWjFsSlMzZFpRa0pSVlVoQmQwbDNSRUZaUkZaU01GUkJVVWd2UWtGSmQwRkVRV1pDWjA1V1NGTk5SVWRFUVZkblFsTm1PVmxJWlVsQk0yd0thWHBKVFdKbVl6TnRNR2hOVUVScVNrOVVRVTVDWjJ0eGFHdHBSemwzTUVKQlVYTkdRVUZQUTBGblJVRklkMVF6VTFwd1ZuWk5SRWhPYURWVlQybzVaQXB3Y1d4YVRIaEZWRU5pZWxGWGRWQmFUMVpzWTNkRGJWUndhakYzU214Mk0zcFhRMHRwU1ZWSE5uRmhRMjlHVmpoclVVUXJZa3hTY1RjMGQwWmhZWEJNQ2k5d1kxUk1jVTVPZW1kemJqRkRTekJqZG0xcmRWUnlka0pVTlhSNk9UWlRkamN5YTBOUVIwbFZTVWQ2YW5rd2EycGFTVVIzUVV4WWJUaGtORTEyVUM4S0swcDBOakpwVTBzd2JHZHJlREJWTURCaFRrWldkRE5hY1dVd1RERXlNMUJWYkVsRlkweFJjbW93UWsxNU9GWlVRVzVRU1daNFdrRTNVWEpRYVc5SE53cFZNWEZzU0RCTE9FbEJjMmgxUm5CWlEyOTVSWGcxY0RWNmN6bHdVbEJXVkVneFYwaFNaMDVLY3pkTmJrNTBSR2xNU0hreGRVWkJUR1JNZUhaeFZ6Y3ZDbXgyYWt0a05YUTBhMDl3VldSUFJXMHdaVTl0Ym1kSmVFRXhWVU5qVVdKS1duSjJiMmxTTTJJM1JsVnRiVnBCU1hCbFZVSm5ObXhuUVc1NEwzWnVjR1VLUmpsTFpraDZXRzFsVmtKTU5XNXlSMlJ6VG5OTE1tVXliR0ZUZFhCUFJVUkhURGh6TTBOWVdsTlRSVWxqUW1OSldWUk5ZVmhZTXpRMFVtbHpLM2xRZEFveU5IVkVLM1p3U1RKWVNuRmlSVUUzU1V3eFRtWTNXUzlIVnk5NFFVNWplRmRLV1VvNWRsSk5jbHBCU2xReFNHMHhhbkJrWmxSaVVUWjRWMjVhTlhGbUNsVnlVM1JWWlRZM2VtRmFPVWxOU0hSWFQwZGxjSGRvTlZsdlExRnBha0ZLWVZseVJUSkRTV3BLYTJGa1JtRjFMM1prYWtSb1FWRlhlSEJzWkZKVFExb0tNM00yV0hKM1NEUmtlVGR5TDNVelVFMUJjRXBTVFdrelpFSmxNRVJuY2tOaFJsbzBVM0Z4TDJzdlZubGpOMGQ1UVZndlV6WnpVRzV0VFVONlFrbHVkUXBEWjJkNkx6TnlhVEEzWjB0VGVGVk5OMDl4VURWQ2RTOTRkVXBVTjJaTVlVRXJTek5xUjBjd2JVTkxaamhTWVM5SVoxTnJkMmR5Tkd0T1lXUkJiRXRxQ205aE0yc3JWVXN6VjNsNU1VbFJjbkZTV2xZek1FOVZQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MwRkpRa0ZCUzBOQlowVkJOMVJNY1U4MVYzbEdVWE5GZDNkR1FsUnhlRlJvWmpaT2VVNU9jMUpvUkRWalJIbHpXbXhVYVZsRGFsTkpjakpRQ2xoSVpXMTJPVGN2TjNWS1RsRTFlRGd6T0c5WFRFVk1WRmRhY0ZKMGVqbFVValJsZG5WcE9WVXliMGdyY2pkalJqZHRWRU4xUVdjM2VuaFdhRTA0Ykd3S00xWkljWGRzTVRoSWRGbHRjelkxVm01NmVWZERSV2RNSzBsdGVESm5UWEZVWVcxamNteGlNWGcyYXk5SkwxaExaVWxYY0VKRFkydExaRnBUYTFST1R3cHFjRVYyUTFkTWRHVkpaWHA2TjFKTGFsTXhLMDV5YlRGMFQwdHdjMGRJV0ZwWGJYcEJaa1ZWVWxoRk1qTmFXWFpPYTBobVpVWk1iekJvYVRneWRFbDRDalZZUTNGU1JrMHZPRFoyYm5scmFXZEVVREpSTVhwemNWTlRWbTlRVWxOblJESlVhMmhLY0ZwNFNVTkxjMEowZVZwc2RVMHpWVTgyVmt0c2MyTkhUazhLY1UxUFdGaGxiWE54VERZMFltVkNTeTlxVm1KT2FEa3ZPWGh0Y2poelJXbFNlamhvUjFCWVJsWnNabnBhTmpOc1JHaFFNMHRVTWpGWGRGTm1WV1F2VEFwWlZHWXlObVpHTVU5V05qSmFRbTU2VjJOVFRGVnlWR015TkV4UldHSnNUbEp6UldwVFpWRk5SWFYxTlN0RlFsSjFPVzA0YjJwRE0xZHNabWRTSzJKdENuQk1kVXhrZG05YVVIVm5lVVF4T0VFMVUzSm5NV3BUUzNZMGVXaFhSMGxMY1ZkeVdVMVRZMVJVVURCSmQyTTJkbmhTYUV4UFMwVkZSVGRxVlhacUszTUthMWhyTmt0RlVYSk5NVnB5ZGxVNFlrbE9VekJLTjI5blpEQk5MMEVyTldGM01UVlJjekppWkdKS0wxbHdkblJZY3pKb2NGZzJTakkzVWxSYVJtSTRad3BwTTFsMmEwZGllbVJaTkhGRU16WkJiRVZ5Ukc5NVNsUXpSek5WU2pjeFJtMUVPVU5WUjJWMldVZDJPVGRMUTBGVFUzRXlkakozU0ROM0x5OWtOMGxUQ21jMmIwcG1jVWhYUVV3eVYyMXFRM1pqZEdZNWFGVlFWMmxaVEdWSVVERnNTUzlvUnpsQ2RIUm1NMjU2ZUdKUmQwWkxORXc1YkhKWFdXWmpRMEYzUlVFS1FWRkxRMEZuUVhoNmFYZFRkMDVpTkhocGVVVjVZMGQwZUVVNWVGcHJZbVJOVlN0a01ISnBaR3RaTDJSdFRuUkVkRFkyVURkMEsyOVhaRTVuYmtoR0t3bzViazlyZVRkdlNYWTBWWGxZUVVoSE5HSnNaekJsU1hCMFpISXpURVJOVlVGd1J6UXdZVkpyVEhwSldIUkdjbWx0Tm0xcFZuaHhWbWQ2Y2xrdmQyOTBDall5WlVzclVVMTJaMWRuTjJGMU1XZHFXVVZVZEhaQ2RVTkVlRWNyZVd3eVpVSnZlVGhqZUVkNlJVZ3lRbXRZTkhCMlJVWllhRWRVY1M5aFJtTlJiRTRLT0hGcFZqVXhVakJIYlZwVVJsZEhURVJ6UkRCelZXRnhSelo1YW5KeWVFUTNTV0pLZEd4NFNtUXdSakpKVjNGVWJYWkJhM1pzWjA1NGFqbHhVVEZUT1FwV1NUVkRSV3RtVWtWdWExVlRSemhVYkhSQmVHRjVRa1YxZW0xcloydG9lRVV4UTB4eksyVnphVWhMYldwNU9GUXdaRTVqVFdVek1WUTRVamQ1Y2tsbUNtRktVMUJPWWxwd1pFVnBibkkyZFU0NVozbzVNWGRJWTJ4bGRtSjVNV3RsTHpSNGVXSXlSbFphWkZCbloxZFRkamszWkUxdlNYaFhWamRTUVdGU01ESUtOR0l4VkdWSVlVZzJNVkJTY1M4MWJXd3JibVJGVW5wM1VqTk5NVEZ5VkdGeVFVUlpNRGRKU1hveFN6SnRVRXBMWmtaamNYZHpOVXRVTkRocmIySm5TZ3BOV1VOSllXSTNZVUpwY3pKdFJqVktLelZqUmpKNGFHUjRPV1pvYUhoRGN5OVZUMFJ0Wm1kSmFFcEtlV0oyTjFkalpHeFFXbTlzUkdwck5HMU1ibmxzQ25aa1ZTdG1kV3RXU3pFd1kyeDJaRGRFV1RoalNqY3ZMMVI2VFdWeFdHTjJlRk5DTVZOTVkweHZXV2h1SzJoTFpqbGpNMVJDWlZFM2QxcG9TVGwwV2tjS2RDdHJXbGhZUVZCWVdFZFVRMVZ1VG5ac1NtWnVLMU14VjNCRmN6UjRURVpWVTA5SE1URm1RazQwTnpjM1MxQmlLMHhJV0ZsVk5saFBUekZYYlROMlpnbzNjMlZtUTJJdllrTjBPSHByVFdkcU9FWnNObEJuZWtSQloyNVJhekJ4VEV0WVMwbHNVbEUwWTJjNFlYUk1hREl5VVV0RFFWRkZRVGd4UWpWd0t5OWFDbXMwWlVobGRtSkpTR0ZFUWxBNGRVMTFkV05ZVkVaa2VFTlBZV0Z3UlZaS2VYWTJaRlpTYlhKM056TkhSbWhqVDNWbGEwWldTazB6UVdoNVQwVlNSbkVLZFVwME1XcGtSRU5GYldWbGNtaFhkMUpaVUU5b2JFUklNM1ZMVGpoNk56azVOVzUwWW1Fd0wyUkJhU3R0V0U0eVNHdDFTbTVzV0N0UVJ6UjZNSEpvWndweFRFbFpTMlZEYW5OSVZVZFFjMjA0VnpZMlJFVjRNMUpCYmtaRVVURlRlVTlqZG5sbVRtMTNTbXhaVEhsR1FqUlJTa2h3ZEU5b2FHUkhXbkZIWTBabkNsQm1aMVJWUldOb1pVVklhVm95YUZCQmEwOUtaVFV6YW1oS1RsbzJOVnAxTVRsalMwUk5WR3RxVmtJNVJFSmpVazl6VFRSUEx6QlJZbXd2YVZCbFFYTUtNV1pKVlVsTWREUTFXVXhUVlVsdWRXWmFjamRCVm5Wb2VWUlViR3RDVVV4VlVIRkZVMVJxVjFwcVIyMDNORUZwYjJwdmMxUjBMMEppZGtWNmRHSjBid3B1ZFZwNU9GSllWR05RWkZGRVVVdERRVkZGUVN0YVJGRXZaMHBrV1d4cFIycHlWbmRoV1ZoUlIyRkhXRTF0UlRkQ1RGVjFTVzk2ZVVsTVRrWlZjblZDQ2xaa1ZVUkxXRTV5YWxab01YcG1XbkZHVjNCNk1rUkdNVFo0WjFaTllVMWhhMjVzVjBsQ05EUjJXRmx0WVZWalVGVnhZVEYwYjI1emFsVkxRbU5yWlRnS2MxSnlaV3hyZVZKcFdHMXNiRUpqVVdRd1IwYzFTazlUY25WUWMzWlNUVFpUVm0xVlEyUnhkbVYxWXk5VFRYRlZVbkpoT1U5dGMyTm5hMmNyVEhkSlpnbzJkRlV3UW5aemEwOXdValZUUjFSTk9EZG5LMFZYVEhBNWFYWnlSMHc0ZGtnNVJEQnVablZvYm1RcmFTdEJhMlpoV2t3NFYzWlZaemQyZG1KVlRuTm1Da2RMTWxKM1F6QkNiRTlXUVRSb1dUWjJjMmR5TlZoTVZUa3hibUpYUm5RM09IVXliVWhpTHl0Q1ltOTFVazgxZG5KM1RYWnZiSEpEV2tGSWFEWllOVGNLTXpWb1dEUkphREkxUVVWNFQyUTBjMEU1TDFCalVtOUNibE5wZFUweVVUQjRaalJSTVZwMk1VVjNTME5CVVVWQmMzZHBlRXM0YUV0QlkzUkZMMnMzWlFwUGVXSlNZVGMyT0VrM04zUkljMmh6Y2xFM05rWlJka015TjBvd1ZrY3dZVkJYVEVSblptVm1XakUyTWtKSFFqWndibmRoWTFOaGRYSXpNemhvYzJodkNrNVRRek15ZDB0elprMXZZWGxwZUdkc1dHMUJNVGcyZGtVeVZGcEdjek5ZUm1WMGJGUkJXbmRyUzFGdFpFUktNR0V3VkhaeWQzSnhXRTVqUnk5eVIwUUtORTVEVEUxMVNrRlVabTVuUTNNemVYZEhhRlpDVWsxeFVGZHlOMVkzUkdGak5uSXlObTlQUkhGSlpERlFlQ3RMY21oeE5UQlpLeTgwU0d4TmVFNUtRd3BLTTI1aVVGSnRPRzlVTjA5NEx6UkxjbklyTlRrMlluVnJjbFo0WlV0dVkxQnlkRTQ1TDNBeFVFSmlkbkIyZUhvdllrNXBRbmRQVVVkcVJWSmlTRUpzQ2pablRsUXJPVEI1Wkc5Mk1sUkROUzl2YTNwbk5tZzFSbTlYVm10ME0yZDVSVzF3VVcxdlVtWmtOVEV3WjNWclZVeFRNR2RVYjFoRE1uTkdXa3hHY0ZNS1FtaHhSV1JSUzBOQlVVRkZVMHhWWkhSNVMzUlFiMGhKZWpGeFNIQlVSbTFVZW5wUFRUVmpWWGhLZEhaSmJWcENiek5KYzAxdFdFMHJSMUZsWjFGdE1ncHRiVGhxVVhacFpFNHpLMWhzV0c1R2RVWnpZM2xCVkRkM1RFNHllRFkwU0hGd1EwMVFRbXRMVUZONFpsaHplVGwyUVdWSE1EWTFjMmc1TmsxVEwwbDJDbTUyVURGeU9VOXlhVWRrZEZsM09HZHBNamhVTmpsSFZGVnpUbFY1TDJzMVRHVkZURTlrWTBSM056RktNVWMzWmpKaFpXWnVVRk0xVkd0SFpsbFJOVVlLU25sc1VqQmtSVzB5WlVoUE5FcHFUbXBuUm5sSmF6UkllVTFzTmsxTmFXTmphWFJXUVV0elYxZzVlVkJJZVdkaGEyZzBOSEpDY0VScVV6Z3dWV3hHTVFwdlpETlZVVGRrYzJOUWF6TTNhRzE2ZVZWdldHOVVTbTFuUTJaaE1rOUlaV0pWZWtGRFEzWkpiMFpDWjBKQ2FsVkxTMmRrU0haMU0xbGxSVmxVU2psc0NqSktUbXQySzJsWWFFYzRSMHhSUldOR2IyVjJRVU5vWW5kaWJTdFJVR2RpUVc5SlFrRkljREUyZUc5dVpUZEZjekYwY2tjMldWSnViRWxRUzI0eVNGWUtRekJyWlVKS1RrVkVaa0V2VmpWdFNqVnZObmhTYW5sQldFeE5TbEJPZW5kUmMwSnJOVVJCV1dsNFltOXpWbmxOZHpob01VOUlhR3hUYkZneU5uRnVSd3BpVjFGc1FtNVJNM1YyUmtoNFJHdEpLMjFHVkZOQ1NTOXFRbXh1YVVsSmRraFNaMnhTV0d0SGRtcEpWRkFyZHpRMWRWSm5hRmhyY0dGbWJtNUJjMGRGQ25wRk5GcG5LMnRVZURGUVRHZHFiRlJ1U1hOemRITkZkbXMzY0VNckx6UlJRV2hEZGt4YU9Hc3hXbmRsVFRabFpHOTBURGR6TlV4SE5XWk9hVWc0YldNS2JuUkJkWG9yV0RaRGFVdzBVekZYYnpkWVNXbEVlRnBqTjJkc1prODVRbXBXTTNaRldIWlJlbXBMWlhsR1dURk9VVEZIVld4SFdVUlRPSHAzTVVwc2JBcHBXbXBxWTJveVpTdFhRVGMxTm5od1RVSnBhMHhWY0VveFkxZHpVVTl6VVhKd1VqbHdLMVZ3UVhaMU5qTktNemhMUjBSMWNrVkVVa0YyUlQwS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiBoYm5teDQzenRzc3g5bnNpbHU1ZzkybDl0aWlwNjMwdmh2dWU2NHV6NjBmZ2FtNGd2aGpreGo4NnowajA4bHYxa3hlNm1vN3k3ZDh0cml2OXIzdHB6NjM1c2NqeWFzcnBqcHYzanNucXNqZDR2bXFiamtlNXQ4c29kdTllbWxudgo=\"\n + \ }\n ]\n }" headers: cache-control: - no-cache @@ -467,7 +1567,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 17:52:31 GMT + - Thu, 29 Jun 2023 09:44:11 GMT expires: - '-1' pragma: @@ -501,26 +1601,26 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count --zones User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-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.25.6\",\n \"currentOrchestratorVersion\"\ - : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\"\ - ,\n \"enableEncryptionAtHost\": false,\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 }" + 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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n + }" headers: cache-control: - no-cache @@ -529,7 +1629,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 17:52:31 GMT + - Thu, 29 Jun 2023 09:44:11 GMT expires: - '-1' pragma: @@ -570,29 +1670,28 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count --zones User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.19.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/91be4f62-dca7-4201-8be9-1e3fd498d8f0?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/36e58189-2121-41c3-b2ac-87cab1a5cc72?api-version=2017-08-31 cache-control: - no-cache content-length: @@ -600,7 +1699,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 17:52:37 GMT + - Thu, 29 Jun 2023 09:44:16 GMT expires: - '-1' pragma: @@ -612,7 +1711,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -630,23 +1729,119 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count --zones User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/36e58189-2121-41c3-b2ac-87cab1a5cc72?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"8981e536-2121-c341-b2ac-87cab1a5cc72\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:44:16.516443Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:44: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 add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --node-count --zones + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/36e58189-2121-41c3-b2ac-87cab1a5cc72?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"8981e536-2121-c341-b2ac-87cab1a5cc72\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:44:16.516443Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:44: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 nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --node-count --zones + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/91be4f62-dca7-4201-8be9-1e3fd498d8f0?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/36e58189-2121-41c3-b2ac-87cab1a5cc72?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"624fbe91-a7dc-0142-8be9-1e3fd498d8f0\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T17:52:37.8072759Z\"\n }" + string: "{\n \"name\": \"8981e536-2121-c341-b2ac-87cab1a5cc72\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:44:16.516443Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 14 Jun 2023 17:52:37 GMT + - Thu, 29 Jun 2023 09:45:16 GMT expires: - '-1' pragma: @@ -678,23 +1873,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count --zones User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/91be4f62-dca7-4201-8be9-1e3fd498d8f0?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/36e58189-2121-41c3-b2ac-87cab1a5cc72?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"624fbe91-a7dc-0142-8be9-1e3fd498d8f0\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T17:52:37.8072759Z\"\n }" + string: "{\n \"name\": \"8981e536-2121-c341-b2ac-87cab1a5cc72\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:44:16.516443Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 14 Jun 2023 17:53:07 GMT + - Thu, 29 Jun 2023 09:45:45 GMT expires: - '-1' pragma: @@ -726,23 +1921,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count --zones User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/91be4f62-dca7-4201-8be9-1e3fd498d8f0?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/36e58189-2121-41c3-b2ac-87cab1a5cc72?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"624fbe91-a7dc-0142-8be9-1e3fd498d8f0\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T17:52:37.8072759Z\"\n }" + string: "{\n \"name\": \"8981e536-2121-c341-b2ac-87cab1a5cc72\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:44:16.516443Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 14 Jun 2023 17:53:37 GMT + - Thu, 29 Jun 2023 09:46:18 GMT expires: - '-1' pragma: @@ -774,23 +1969,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count --zones User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/91be4f62-dca7-4201-8be9-1e3fd498d8f0?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/36e58189-2121-41c3-b2ac-87cab1a5cc72?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"624fbe91-a7dc-0142-8be9-1e3fd498d8f0\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T17:52:37.8072759Z\"\n }" + string: "{\n \"name\": \"8981e536-2121-c341-b2ac-87cab1a5cc72\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:44:16.516443Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 14 Jun 2023 17:54:08 GMT + - Thu, 29 Jun 2023 09:46:48 GMT expires: - '-1' pragma: @@ -822,23 +2017,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count --zones User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/91be4f62-dca7-4201-8be9-1e3fd498d8f0?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/36e58189-2121-41c3-b2ac-87cab1a5cc72?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"624fbe91-a7dc-0142-8be9-1e3fd498d8f0\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T17:52:37.8072759Z\"\n }" + string: "{\n \"name\": \"8981e536-2121-c341-b2ac-87cab1a5cc72\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:44:16.516443Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 14 Jun 2023 17:54:38 GMT + - Thu, 29 Jun 2023 09:47:18 GMT expires: - '-1' pragma: @@ -870,23 +2065,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count --zones User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/91be4f62-dca7-4201-8be9-1e3fd498d8f0?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/36e58189-2121-41c3-b2ac-87cab1a5cc72?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"624fbe91-a7dc-0142-8be9-1e3fd498d8f0\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T17:52:37.8072759Z\"\n }" + string: "{\n \"name\": \"8981e536-2121-c341-b2ac-87cab1a5cc72\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:44:16.516443Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 14 Jun 2023 17:55:08 GMT + - Thu, 29 Jun 2023 09:47:48 GMT expires: - '-1' pragma: @@ -918,23 +2113,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count --zones User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/91be4f62-dca7-4201-8be9-1e3fd498d8f0?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/36e58189-2121-41c3-b2ac-87cab1a5cc72?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"624fbe91-a7dc-0142-8be9-1e3fd498d8f0\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T17:52:37.8072759Z\"\n }" + string: "{\n \"name\": \"8981e536-2121-c341-b2ac-87cab1a5cc72\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:44:16.516443Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 14 Jun 2023 17:55:38 GMT + - Thu, 29 Jun 2023 09:48:18 GMT expires: - '-1' pragma: @@ -966,24 +2161,24 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count --zones User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/91be4f62-dca7-4201-8be9-1e3fd498d8f0?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/36e58189-2121-41c3-b2ac-87cab1a5cc72?api-version=2017-08-31 response: body: - 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 }" + string: "{\n \"name\": \"8981e536-2121-c341-b2ac-87cab1a5cc72\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:44:16.516443Z\",\n \"endTime\": + \"2023-06-29T09:48:47.0864013Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '169' content-type: - application/json date: - - Wed, 14 Jun 2023 17:56:08 GMT + - Thu, 29 Jun 2023 09:48:48 GMT expires: - '-1' pragma: @@ -1015,26 +2210,25 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count --zones User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -1043,7 +2237,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 17:56:08 GMT + - Thu, 29 Jun 2023 09:48:49 GMT expires: - '-1' pragma: @@ -1077,8 +2271,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/cliakstest000001?api-version=2023-05-01 response: @@ -1086,17 +2280,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/f94bb4c6-ba65-4c6b-91c7-f7542debd647?api-version=2017-08-31 cache-control: - no-cache content-length: - '0' date: - - Wed, 14 Jun 2023 17:56:13 GMT + - Thu, 29 Jun 2023 09:48:50 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operationresults/f94bb4c6-ba65-4c6b-91c7-f7542debd647?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_browse.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_browse.yaml index 426a263d271..7764876f55b 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 18:12:17 GMT + - Thu, 29 Jun 2023 09:07:47 GMT expires: - '-1' pragma: @@ -58,12 +58,12 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1039-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_browse","date":"2023-06-14T18:12:14Z","module":"acs"},"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-29T09:07:43Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -72,7 +72,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 18:12:17 GMT + - Thu, 29 Jun 2023 09:07:47 GMT expires: - '-1' pragma: @@ -88,18 +88,19 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestlisvri533-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestfehbdkdu5-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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {}}}' headers: Accept: - application/json @@ -110,69 +111,67 @@ interactions: Connection: - keep-alive Content-Length: - - '1751' + - '1422' Content-Type: - application/json ParameterSetName: - --resource-group --name --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestfehbdkdu5-79a739\",\n \"fqdn\": \"cliakstest-clitestfehbdkdu5-79a739-miuhij9v.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestfehbdkdu5-79a739-miuhij9v.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"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/3e767003-a909-4d60-9287-19d7653c4db7?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ff5e7d8d-7d53-4131-9ffa-83d8b395644e?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3596' + - '3267' content-type: - application/json date: - - Wed, 14 Jun 2023 18:12:24 GMT + - Thu, 29 Jun 2023 09:07:53 GMT expires: - '-1' pragma: @@ -184,7 +183,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -202,14 +201,14 @@ interactions: ParameterSetName: - --resource-group --name --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ff5e7d8d-7d53-4131-9ffa-83d8b395644e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0370763e-09a9-604d-9287-19d7653c4db7\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T18:12:24.1589728Z\"\n }" + string: "{\n \"name\": \"8d7d5eff-537d-3141-9ffa-83d8b395644e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:07:53.6070154Z\"\n }" headers: cache-control: - no-cache @@ -218,7 +217,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:12:24 GMT + - Thu, 29 Jun 2023 09:07:54 GMT expires: - '-1' pragma: @@ -250,14 +249,14 @@ interactions: ParameterSetName: - --resource-group --name --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ff5e7d8d-7d53-4131-9ffa-83d8b395644e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0370763e-09a9-604d-9287-19d7653c4db7\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T18:12:24.1589728Z\"\n }" + string: "{\n \"name\": \"8d7d5eff-537d-3141-9ffa-83d8b395644e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:07:53.6070154Z\"\n }" headers: cache-control: - no-cache @@ -266,7 +265,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:12:54 GMT + - Thu, 29 Jun 2023 09:08:24 GMT expires: - '-1' pragma: @@ -298,14 +297,14 @@ interactions: ParameterSetName: - --resource-group --name --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ff5e7d8d-7d53-4131-9ffa-83d8b395644e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0370763e-09a9-604d-9287-19d7653c4db7\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T18:12:24.1589728Z\"\n }" + string: "{\n \"name\": \"8d7d5eff-537d-3141-9ffa-83d8b395644e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:07:53.6070154Z\"\n }" headers: cache-control: - no-cache @@ -314,7 +313,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:13:25 GMT + - Thu, 29 Jun 2023 09:08:54 GMT expires: - '-1' pragma: @@ -346,14 +345,14 @@ interactions: ParameterSetName: - --resource-group --name --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ff5e7d8d-7d53-4131-9ffa-83d8b395644e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0370763e-09a9-604d-9287-19d7653c4db7\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T18:12:24.1589728Z\"\n }" + string: "{\n \"name\": \"8d7d5eff-537d-3141-9ffa-83d8b395644e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:07:53.6070154Z\"\n }" headers: cache-control: - no-cache @@ -362,7 +361,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:13:54 GMT + - Thu, 29 Jun 2023 09:09:24 GMT expires: - '-1' pragma: @@ -394,14 +393,14 @@ interactions: ParameterSetName: - --resource-group --name --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ff5e7d8d-7d53-4131-9ffa-83d8b395644e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0370763e-09a9-604d-9287-19d7653c4db7\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T18:12:24.1589728Z\"\n }" + string: "{\n \"name\": \"8d7d5eff-537d-3141-9ffa-83d8b395644e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:07:53.6070154Z\"\n }" headers: cache-control: - no-cache @@ -410,7 +409,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:14:25 GMT + - Thu, 29 Jun 2023 09:09:54 GMT expires: - '-1' pragma: @@ -442,14 +441,14 @@ interactions: ParameterSetName: - --resource-group --name --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ff5e7d8d-7d53-4131-9ffa-83d8b395644e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0370763e-09a9-604d-9287-19d7653c4db7\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T18:12:24.1589728Z\"\n }" + string: "{\n \"name\": \"8d7d5eff-537d-3141-9ffa-83d8b395644e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:07:53.6070154Z\"\n }" headers: cache-control: - no-cache @@ -458,7 +457,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:14:55 GMT + - Thu, 29 Jun 2023 09:10:24 GMT expires: - '-1' pragma: @@ -490,14 +489,14 @@ interactions: ParameterSetName: - --resource-group --name --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ff5e7d8d-7d53-4131-9ffa-83d8b395644e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0370763e-09a9-604d-9287-19d7653c4db7\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T18:12:24.1589728Z\"\n }" + string: "{\n \"name\": \"8d7d5eff-537d-3141-9ffa-83d8b395644e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:07:53.6070154Z\"\n }" headers: cache-control: - no-cache @@ -506,7 +505,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:15:25 GMT + - Thu, 29 Jun 2023 09:10:54 GMT expires: - '-1' pragma: @@ -538,15 +537,255 @@ interactions: ParameterSetName: - --resource-group --name --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ff5e7d8d-7d53-4131-9ffa-83d8b395644e?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"8d7d5eff-537d-3141-9ffa-83d8b395644e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:07:53.6070154Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:11: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 --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ff5e7d8d-7d53-4131-9ffa-83d8b395644e?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"8d7d5eff-537d-3141-9ffa-83d8b395644e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:07:53.6070154Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:11: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 + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ff5e7d8d-7d53-4131-9ffa-83d8b395644e?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"8d7d5eff-537d-3141-9ffa-83d8b395644e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:07:53.6070154Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:12: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 create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ff5e7d8d-7d53-4131-9ffa-83d8b395644e?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"8d7d5eff-537d-3141-9ffa-83d8b395644e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:07:53.6070154Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:12: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 + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ff5e7d8d-7d53-4131-9ffa-83d8b395644e?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"8d7d5eff-537d-3141-9ffa-83d8b395644e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:07:53.6070154Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:13: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 create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ff5e7d8d-7d53-4131-9ffa-83d8b395644e?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"8d7d5eff-537d-3141-9ffa-83d8b395644e\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:07:53.6070154Z\",\n \"endTime\": + \"2023-06-29T09:13:52.2069494Z\"\n }" headers: cache-control: - no-cache @@ -555,7 +794,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:15:58 GMT + - Thu, 29 Jun 2023 09:13:55 GMT expires: - '-1' pragma: @@ -587,66 +826,63 @@ interactions: ParameterSetName: - --resource-group --name --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestfehbdkdu5-79a739\",\n \"fqdn\": \"cliakstest-clitestfehbdkdu5-79a739-miuhij9v.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestfehbdkdu5-79a739-miuhij9v.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/625d5687-b5c3-4483-9869-314e6a026892\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4249' + - '3920' content-type: - application/json date: - - Wed, 14 Jun 2023 18:15:59 GMT + - Thu, 29 Jun 2023 09:13:56 GMT expires: - '-1' pragma: @@ -678,66 +914,63 @@ interactions: ParameterSetName: - --resource-group --name --listen-address --listen-port --disable-browser User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestfehbdkdu5-79a739\",\n \"fqdn\": \"cliakstest-clitestfehbdkdu5-79a739-miuhij9v.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestfehbdkdu5-79a739-miuhij9v.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/625d5687-b5c3-4483-9869-314e6a026892\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4249' + - '3920' content-type: - application/json date: - - Wed, 14 Jun 2023 18:16:03 GMT + - Thu, 29 Jun 2023 09:13:57 GMT expires: - '-1' pragma: @@ -771,8 +1004,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -780,17 +1013,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/13eb4a58-051d-41df-9d76-7b906754d339?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 14 Jun 2023 18:16:04 GMT + - Thu, 29 Jun 2023 09:13:58 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/13eb4a58-051d-41df-9d76-7b906754d339?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 index a253250be93..0b0533d5778 100644 --- 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.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1039-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":"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"}}' + 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-06-29T09:07:43Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '381' + - '375' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 18:16:09 GMT + - Thu, 29 Jun 2023 09:07:46 GMT expires: - '-1' pragma: @@ -42,7 +42,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westcentralus"}' + body: '{"location": "westus2"}' headers: Accept: - application/json @@ -53,27 +53,27 @@ interactions: Connection: - keep-alive Content-Length: - - '29' + - '23' Content-Type: - application/json ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-msi/7.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-msi/7.0.0 Python/3.8.10 (Linux-5.15.0-1039-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/cli000003?api-version=2023-01-31 response: body: - 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"}}' + 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"}}' headers: cache-control: - no-cache content-length: - - '440' + - '434' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 18:16:14 GMT + - Thu, 29 Jun 2023 09:07:49 GMT expires: - '-1' location: @@ -103,21 +103,21 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1039-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":"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"}}' + 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-06-29T09:07:43Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '381' + - '375' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 18:16:14 GMT + - Thu, 29 Jun 2023 09:07:49 GMT expires: - '-1' pragma: @@ -132,7 +132,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westcentralus"}' + body: '{"location": "westus2"}' headers: Accept: - application/json @@ -143,27 +143,27 @@ interactions: Connection: - keep-alive Content-Length: - - '29' + - '23' Content-Type: - application/json ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-msi/7.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-msi/7.0.0 Python/3.8.10 (Linux-5.15.0-1039-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: '{"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"}}' + 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"}}' headers: cache-control: - no-cache content-length: - - '440' + - '434' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 18:16:18 GMT + - Thu, 29 Jun 2023 09:07:52 GMT expires: - '-1' location: @@ -175,7 +175,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -193,21 +193,21 @@ interactions: ParameterSetName: - -n -g --address-prefix --subnet-name --subnet-prefix User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1039-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":"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"}}' + 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-06-29T09:07:43Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '381' + - '375' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 18:16:25 GMT + - Thu, 29 Jun 2023 09:07:52 GMT expires: - '-1' pragma: @@ -222,7 +222,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westcentralus", "properties": {"addressSpace": {"addressPrefixes": + body: '{"location": "westus2", "properties": {"addressSpace": {"addressPrefixes": ["192.168.0.0/16"]}, "enableDdosProtection": false, "enableVmProtection": false, "subnets": [{"name": "clisubnet000006", "properties": {"addressPrefix": "192.168.0.0/24"}}]}}' headers: @@ -235,46 +235,44 @@ interactions: Connection: - keep-alive Content-Length: - - '255' + - '249' Content-Type: - application/json 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) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-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/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/\\\"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}" + 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/\\\"d22cec25-7d24-4eb6-a920-75fc6fad2895\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": + \"3608b88a-c76f-4c25-8a54-bdacc30d4a68\",\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/\\\"d22cec25-7d24-4eb6-a920-75fc6fad2895\\\"\",\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/westcentralus/operations/81d7aa84-e636-4f10-9a47-7181bc5e5f8a?api-version=2022-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/1865a18b-8793-4700-b17f-261fa708cc21?api-version=2022-01-01 cache-control: - no-cache content-length: - - '1264' + - '1258' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 18:16:28 GMT + - Thu, 29 Jun 2023 09:07:54 GMT expires: - '-1' pragma: @@ -287,12 +285,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - dcdfdb46-8eaa-4145-9e31-a188b222324b + - b828aa68-fffc-43b0-af32-0dd66e69c428 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: code: 201 - message: '' + message: Created - request: body: null headers: @@ -307,9 +305,9 @@ interactions: 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) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/1865a18b-8793-4700-b17f-261fa708cc21?api-version=2022-01-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -321,7 +319,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 18:16:29 GMT + - Thu, 29 Jun 2023 09:07:54 GMT expires: - '-1' pragma: @@ -338,10 +336,10 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b411128e-f7e2-4a84-aed1-37e5e422d75e + - b64a5a90-c6db-4247-9600-fa0194b5af67 status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -356,9 +354,9 @@ interactions: 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) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/1865a18b-8793-4700-b17f-261fa708cc21?api-version=2022-01-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -370,7 +368,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 18:16:39 GMT + - Thu, 29 Jun 2023 09:08:04 GMT expires: - '-1' pragma: @@ -387,10 +385,10 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 287b46e5-feff-4733-b5f7-ead90572fec1 + - 5dce1563-ad60-4860-beb1-db3d569e67e5 status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -405,38 +403,36 @@ interactions: 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) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-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?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/\\\"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}" + 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/\\\"12ed1923-22c4-4643-8d4f-8cc9a70b6b9d\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": + \"3608b88a-c76f-4c25-8a54-bdacc30d4a68\",\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/\\\"12ed1923-22c4-4643-8d4f-8cc9a70b6b9d\\\"\",\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: - - '1266' + - '1260' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 18:16:39 GMT + - Thu, 29 Jun 2023 09:08:04 GMT etag: - - W/"e9c5fbf0-0edf-44ad-b03b-74fc39e7324c" + - W/"12ed1923-22c4-4643-8d4f-8cc9a70b6b9d" expires: - '-1' pragma: @@ -453,10 +449,10 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 954e4b5b-be3a-4c80-918f-dcd06bcfc279 + - d5eef5b9-ea01-4c20-a03c-b93b63d0641e status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -472,8 +468,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -489,7 +485,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 18:16:40 GMT + - Thu, 29 Jun 2023 09:08:05 GMT expires: - '-1' pragma: @@ -518,38 +514,22 @@ 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.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/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/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"}]}' + 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"},{"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: - - '787085' + - '67809' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 18:16:42 GMT + - Thu, 29 Jun 2023 09:08:05 GMT expires: - '-1' pragma: @@ -582,21 +562,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.49.0 azsdk-python-azure-mgmt-msi/7.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-msi/7.0.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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":"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"}}' + 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"}}' headers: cache-control: - no-cache content-length: - - '440' + - '434' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 18:16:44 GMT + - Thu, 29 Jun 2023 09:08:05 GMT expires: - '-1' pragma: @@ -627,8 +607,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.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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: @@ -643,7 +623,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 18:16:44 GMT + - Thu, 29 Jun 2023 09:08:06 GMT expires: - '-1' pragma: @@ -676,25 +656,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.16 (macOS-13.4-arm64-arm-64bit) AZURECLI/2.49.0 + - python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) AZURECLI/2.49.0 method: GET - uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27182abb86-444e-46d9-bb47-1582a85b5f1d%27%29 + uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%276ec7af10-331f-4f93-ab3c-aa073ee64c91%27%29 response: body: - 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}}]}' + string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals","value":[]}' headers: cache-control: - no-cache content-length: - - '1677' + - '92' content-type: - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Wed, 14 Jun 2023 18:16:46 GMT + - Thu, 29 Jun 2023 09:08:06 GMT odata-version: - '4.0' request-id: - - f9f3cd1f-5378-43f5-909f-4cd0e6a8e18f + - 22584de0-d1b9-47d0-9f2c-047dd503ca29 strict-transport-security: - max-age=31536000 transfer-encoding: @@ -702,82 +682,65 @@ interactions: vary: - Accept-Encoding x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"North Central US","Slice":"E","Ring":"3","ScaleUnit":"002","RoleInstance":"CH01EPF0000D491"}}' + - '{"ServerInfo":{"DataCenter":"East US","Slice":"E","Ring":"5","ScaleUnit":"002","RoleInstance":"BL02EPF000028A6"}}' x-ms-resource-unit: - '1' 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"}}' + body: null 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 --enable-managed-identity --assign-identity --vnet-subnet-id User-Agent: - - 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 + - python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) AZURECLI/2.49.0 + method: GET + uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=displayName%20eq%20%276ec7af10-331f-4f93-ab3c-aa073ee64c91%27 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/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"}' + string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals","value":[]}' headers: cache-control: - no-cache content-length: - - '1045' + - '92' content-type: - - application/json; charset=utf-8 + - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Wed, 14 Jun 2023 18:16:50 GMT - expires: - - '-1' - pragma: - - no-cache + - Thu, 29 Jun 2023 09:08:06 GMT + odata-version: + - '4.0' + request-id: + - be2dac04-3cd8-4db0-be97-810c9d46ee9a strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - max-age=31536000 + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-ms-ags-diagnostic: + - '{"ServerInfo":{"DataCenter":"East US","Slice":"E","Ring":"5","ScaleUnit":"005","RoleInstance":"MN1PEPF0000347F"}}' + x-ms-resource-unit: + - '1' status: - code: 201 - message: Created + code: 200 + message: OK - request: - 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": {}}}' + body: '{"ids": ["6ec7af10-331f-4f93-ab3c-aa073ee64c91"], "types": ["user", "group", + "servicePrincipal", "directoryObjectPartnerReference"]}' headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -785,90 +748,52 @@ interactions: Connection: - keep-alive Content-Length: - - '2103' + - '132' 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.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-05-01 + - python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) AZURECLI/2.49.0 + method: POST + uri: https://graph.microsoft.com/v1.0/directoryObjects/getByIds 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\": \"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 }" + string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#directoryObjects","value":[]}' 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: - - '3833' + - '91' content-type: - - application/json + - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Wed, 14 Jun 2023 18:16:59 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx + - Thu, 29 Jun 2023 09:08:06 GMT + location: + - https://graph.microsoft.com + odata-version: + - '4.0' + request-id: + - c1cb9ade-fb4d-4e56-b246-1b0657c23bc4 strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - max-age=31536000 + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-ms-ags-diagnostic: + - '{"ServerInfo":{"DataCenter":"East US","Slice":"E","Ring":"5","ScaleUnit":"003","RoleInstance":"BL6PEPF0000BD0A"}}' + x-ms-resource-unit: + - '3' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -879,29 +804,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + 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: "{\n \"name\": \"21c37cd7-64b9-e146-b547-37473ed06639\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T18:16:58.7365839Z\"\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, 14 Jun 2023 18:16:59 GMT + - Thu, 29 Jun 2023 09:08:08 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: @@ -928,37 +853,35 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) AZURECLI/2.49.0 method: GET - 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 + uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%276ec7af10-331f-4f93-ab3c-aa073ee64c91%27%29 response: body: - string: "{\n \"name\": \"21c37cd7-64b9-e146-b547-37473ed06639\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T18:16:58.7365839Z\"\n }" + string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals","value":[]}' headers: cache-control: - no-cache content-length: - - '126' + - '92' content-type: - - application/json + - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Wed, 14 Jun 2023 18:17:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx + - Thu, 29 Jun 2023 09:08:08 GMT + odata-version: + - '4.0' + request-id: + - a11680e5-3e7c-457a-bc79-804e3dba620a 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":"East US","Slice":"E","Ring":"5","ScaleUnit":"002","RoleInstance":"BL02EPF0000C8F6"}}' + x-ms-resource-unit: + - '1' status: code: 200 message: OK @@ -977,42 +900,41 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) AZURECLI/2.49.0 method: GET - 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 + uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=displayName%20eq%20%276ec7af10-331f-4f93-ab3c-aa073ee64c91%27 response: body: - string: "{\n \"name\": \"21c37cd7-64b9-e146-b547-37473ed06639\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T18:16:58.7365839Z\"\n }" + string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals","value":[]}' headers: cache-control: - no-cache content-length: - - '126' + - '92' content-type: - - application/json + - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Wed, 14 Jun 2023 18:17:59 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx + - Thu, 29 Jun 2023 09:08:09 GMT + odata-version: + - '4.0' + request-id: + - f82dc89f-112d-4980-a0eb-127503972cfa 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":"East US","Slice":"E","Ring":"5","ScaleUnit":"002","RoleInstance":"BL02EPF00011432"}}' + x-ms-resource-unit: + - '1' status: code: 200 message: OK - request: - body: null + body: '{"ids": ["6ec7af10-331f-4f93-ab3c-aa073ee64c91"], "types": ["user", "group", + "servicePrincipal", "directoryObjectPartnerReference"]}' headers: Accept: - '*/*' @@ -1022,41 +944,45 @@ interactions: - aks create Connection: - keep-alive + Content-Length: + - '132' + 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.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/d77cc321-b964-46e1-b547-37473ed06639?api-version=2016-03-30 + - python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) AZURECLI/2.49.0 + method: POST + uri: https://graph.microsoft.com/v1.0/directoryObjects/getByIds response: body: - string: "{\n \"name\": \"21c37cd7-64b9-e146-b547-37473ed06639\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T18:16:58.7365839Z\"\n }" + string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#directoryObjects","value":[]}' headers: cache-control: - no-cache content-length: - - '126' + - '91' content-type: - - application/json + - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Wed, 14 Jun 2023 18:18:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx + - Thu, 29 Jun 2023 09:08:08 GMT + location: + - https://graph.microsoft.com + odata-version: + - '4.0' + request-id: + - 63e457c3-9ec8-49a2-9758-9d986f68ccd9 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":"East US","Slice":"E","Ring":"5","ScaleUnit":"003","RoleInstance":"BL6PEPF0000E7B9"}}' + x-ms-resource-unit: + - '3' status: code: 200 message: OK @@ -1064,7 +990,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -1075,29 +1001,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + 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: "{\n \"name\": \"21c37cd7-64b9-e146-b547-37473ed06639\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T18:16:58.7365839Z\"\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, 14 Jun 2023 18:19:00 GMT + - Thu, 29 Jun 2023 09:08:13 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: @@ -1124,37 +1050,35 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) AZURECLI/2.49.0 method: GET - 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 + uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%276ec7af10-331f-4f93-ab3c-aa073ee64c91%27%29 response: body: - string: "{\n \"name\": \"21c37cd7-64b9-e146-b547-37473ed06639\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T18:16:58.7365839Z\"\n }" + string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals","value":[]}' headers: cache-control: - no-cache content-length: - - '126' + - '92' content-type: - - application/json + - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Wed, 14 Jun 2023 18:19:30 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx + - Thu, 29 Jun 2023 09:08:13 GMT + odata-version: + - '4.0' + request-id: + - 48daa44a-3343-4678-bbdb-b3d40be2827b 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":"East US","Slice":"E","Ring":"5","ScaleUnit":"004","RoleInstance":"BL02EPF00011F22"}}' + x-ms-resource-unit: + - '1' status: code: 200 message: OK @@ -1173,42 +1097,41 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) AZURECLI/2.49.0 method: GET - 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 + uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=displayName%20eq%20%276ec7af10-331f-4f93-ab3c-aa073ee64c91%27 response: body: - string: "{\n \"name\": \"21c37cd7-64b9-e146-b547-37473ed06639\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T18:16:58.7365839Z\"\n }" + string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals","value":[]}' headers: cache-control: - no-cache content-length: - - '126' + - '92' content-type: - - application/json + - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Wed, 14 Jun 2023 18:20:00 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx + - Thu, 29 Jun 2023 09:08:13 GMT + odata-version: + - '4.0' + request-id: + - 3570c045-c53d-47b1-93d9-847ee2b39e18 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":"East US","Slice":"E","Ring":"5","ScaleUnit":"004","RoleInstance":"BL02EPF0000FC35"}}' + x-ms-resource-unit: + - '1' status: code: 200 message: OK - request: - body: null + body: '{"ids": ["6ec7af10-331f-4f93-ab3c-aa073ee64c91"], "types": ["user", "group", + "servicePrincipal", "directoryObjectPartnerReference"]}' headers: Accept: - '*/*' @@ -1218,41 +1141,45 @@ interactions: - aks create Connection: - keep-alive + Content-Length: + - '132' + 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.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/d77cc321-b964-46e1-b547-37473ed06639?api-version=2016-03-30 + - python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) AZURECLI/2.49.0 + method: POST + uri: https://graph.microsoft.com/v1.0/directoryObjects/getByIds response: body: - string: "{\n \"name\": \"21c37cd7-64b9-e146-b547-37473ed06639\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T18:16:58.7365839Z\"\n }" + string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#directoryObjects","value":[]}' headers: cache-control: - no-cache content-length: - - '126' + - '91' content-type: - - application/json + - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Wed, 14 Jun 2023 18:20:30 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx + - Thu, 29 Jun 2023 09:08:13 GMT + location: + - https://graph.microsoft.com + odata-version: + - '4.0' + request-id: + - eec253b8-a50d-4a3f-8ebd-1e3eb95f0d40 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":"East US","Slice":"E","Ring":"5","ScaleUnit":"004","RoleInstance":"BL02EPF000028B9"}}' + x-ms-resource-unit: + - '3' status: code: 200 message: OK @@ -1260,7 +1187,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -1268,27 +1195,1749 @@ 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 + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + --enable-managed-identity --assign-identity --vnet-subnet-id + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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: + - Thu, 29 Jun 2023 09:08:19 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 + 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-1039-azure-x86_64-with-glibc2.29) AZURECLI/2.49.0 + method: GET + uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%276ec7af10-331f-4f93-ab3c-aa073ee64c91%27%29 + response: + body: + string: '{"error":{"code":"Authorization_RequestDenied","message":"Insufficient + privileges to complete the operation.","innerError":{"date":"2023-06-29T09:08:20","request-id":"3ca3abb1-c654-40b2-92da-35797e532ed1","client-request-id":"3ca3abb1-c654-40b2-92da-35797e532ed1"}}}' + headers: + cache-control: + - no-cache + content-length: + - '266' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:08:19 GMT + request-id: + - 3ca3abb1-c654-40b2-92da-35797e532ed1 + strict-transport-security: + - max-age=31536000 + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-ms-ags-diagnostic: + - '{"ServerInfo":{"DataCenter":"East US","Slice":"E","Ring":"5","ScaleUnit":"003","RoleInstance":"BL6PEPF0001178B"}}' + 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.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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: + - Thu, 29 Jun 2023 09:08:28 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-1039-azure-x86_64-with-glibc2.29) AZURECLI/2.49.0 + method: GET + uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%276ec7af10-331f-4f93-ab3c-aa073ee64c91%27%29 + response: + body: + string: '{"error":{"code":"Authorization_RequestDenied","message":"Insufficient + privileges to complete the operation.","innerError":{"date":"2023-06-29T09:08:28","request-id":"80865082-9943-438b-80a0-8217792698ef","client-request-id":"80865082-9943-438b-80a0-8217792698ef"}}}' + headers: + cache-control: + - no-cache + content-length: + - '266' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:08:27 GMT + request-id: + - 80865082-9943-438b-80a0-8217792698ef + strict-transport-security: + - max-age=31536000 + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-ms-ags-diagnostic: + - '{"ServerInfo":{"DataCenter":"East US","Slice":"E","Ring":"5","ScaleUnit":"005","RoleInstance":"MN1PEPF0000562D"}}' + 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.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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: + - Thu, 29 Jun 2023 09:08:38 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-1039-azure-x86_64-with-glibc2.29) AZURECLI/2.49.0 + method: GET + uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%276ec7af10-331f-4f93-ab3c-aa073ee64c91%27%29 + response: + body: + string: '{"error":{"code":"Authorization_RequestDenied","message":"Insufficient + privileges to complete the operation.","innerError":{"date":"2023-06-29T09:08:38","request-id":"94764a57-36f7-461c-a9e6-ace97743fd90","client-request-id":"94764a57-36f7-461c-a9e6-ace97743fd90"}}}' + headers: + cache-control: + - no-cache + content-length: + - '266' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:08:38 GMT + request-id: + - 94764a57-36f7-461c-a9e6-ace97743fd90 + strict-transport-security: + - max-age=31536000 + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-ms-ags-diagnostic: + - '{"ServerInfo":{"DataCenter":"East US","Slice":"E","Ring":"5","ScaleUnit":"002","RoleInstance":"BL02EPF000028B2"}}' + 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.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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: + - Thu, 29 Jun 2023 09:08: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 + 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-1039-azure-x86_64-with-glibc2.29) AZURECLI/2.49.0 + method: GET + uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%276ec7af10-331f-4f93-ab3c-aa073ee64c91%27%29 + response: + body: + string: '{"error":{"code":"Authorization_RequestDenied","message":"Insufficient + privileges to complete the operation.","innerError":{"date":"2023-06-29T09:08:51","request-id":"5425a91c-a72d-4a34-af1d-1130d467b998","client-request-id":"5425a91c-a72d-4a34-af1d-1130d467b998"}}}' + headers: + cache-control: + - no-cache + content-length: + - '266' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:08:50 GMT + request-id: + - 5425a91c-a72d-4a34-af1d-1130d467b998 + strict-transport-security: + - max-age=31536000 + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-ms-ags-diagnostic: + - '{"ServerInfo":{"DataCenter":"East US","Slice":"E","Ring":"5","ScaleUnit":"004","RoleInstance":"BL02EPF000028B8"}}' + 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.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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: + - Thu, 29 Jun 2023 09:09:05 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-1039-azure-x86_64-with-glibc2.29) AZURECLI/2.49.0 + method: GET + uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%276ec7af10-331f-4f93-ab3c-aa073ee64c91%27%29 + response: + body: + string: '{"error":{"code":"Authorization_RequestDenied","message":"Insufficient + privileges to complete the operation.","innerError":{"date":"2023-06-29T09:09:05","request-id":"9a86d7da-a97e-43a8-a979-ead117c1f041","client-request-id":"9a86d7da-a97e-43a8-a979-ead117c1f041"}}}' + headers: + cache-control: + - no-cache + content-length: + - '266' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:09:04 GMT + request-id: + - 9a86d7da-a97e-43a8-a979-ead117c1f041 + strict-transport-security: + - max-age=31536000 + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-ms-ags-diagnostic: + - '{"ServerInfo":{"DataCenter":"East US","Slice":"E","Ring":"5","ScaleUnit":"002","RoleInstance":"BL02EPF0000D1A8"}}' + 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.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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: + - Thu, 29 Jun 2023 09:09:20 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-1039-azure-x86_64-with-glibc2.29) AZURECLI/2.49.0 + method: GET + uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%276ec7af10-331f-4f93-ab3c-aa073ee64c91%27%29 + response: + body: + string: '{"error":{"code":"Authorization_RequestDenied","message":"Insufficient + privileges to complete the operation.","innerError":{"date":"2023-06-29T09:09:21","request-id":"042e083f-982a-406a-820a-c543ec03d398","client-request-id":"042e083f-982a-406a-820a-c543ec03d398"}}}' + headers: + cache-control: + - no-cache + content-length: + - '266' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:09:21 GMT + request-id: + - 042e083f-982a-406a-820a-c543ec03d398 + strict-transport-security: + - max-age=31536000 + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-ms-ags-diagnostic: + - '{"ServerInfo":{"DataCenter":"East US","Slice":"E","Ring":"5","ScaleUnit":"002","RoleInstance":"BL02EPF0000B31F"}}' + 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.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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: + - Thu, 29 Jun 2023 09:09:39 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-1039-azure-x86_64-with-glibc2.29) AZURECLI/2.49.0 + method: GET + uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%276ec7af10-331f-4f93-ab3c-aa073ee64c91%27%29 + response: + body: + string: '{"error":{"code":"Authorization_RequestDenied","message":"Insufficient + privileges to complete the operation.","innerError":{"date":"2023-06-29T09:09:40","request-id":"41fbc002-cd99-42c2-abd0-d64afb77da5b","client-request-id":"41fbc002-cd99-42c2-abd0-d64afb77da5b"}}}' + headers: + cache-control: + - no-cache + content-length: + - '266' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:09:39 GMT + request-id: + - 41fbc002-cd99-42c2-abd0-d64afb77da5b + strict-transport-security: + - max-age=31536000 + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-ms-ags-diagnostic: + - '{"ServerInfo":{"DataCenter":"East US","Slice":"E","Ring":"5","ScaleUnit":"005","RoleInstance":"MN1PEPF00004ECA"}}' + 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 AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + Content-Length: + - '1768' + 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.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-gs9sw6cr.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-gs9sw6cr.portal.hcp.westus2.azmk8s.io\",\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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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\": + \"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/ac6eecd3-9e1e-485a-9c22-8927b1d70d05?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '3480' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:10: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: + - '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.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ac6eecd3-9e1e-485a-9c22-8927b1d70d05?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"d3ec6eac-1e9e-5a48-9c22-8927b1d70d05\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:10:05.2791781Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:10: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 + --enable-managed-identity --assign-identity --vnet-subnet-id + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ac6eecd3-9e1e-485a-9c22-8927b1d70d05?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"d3ec6eac-1e9e-5a48-9c22-8927b1d70d05\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:10:05.2791781Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:10: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 + --enable-managed-identity --assign-identity --vnet-subnet-id + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ac6eecd3-9e1e-485a-9c22-8927b1d70d05?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"d3ec6eac-1e9e-5a48-9c22-8927b1d70d05\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:10:05.2791781Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:11: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 + --enable-managed-identity --assign-identity --vnet-subnet-id + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ac6eecd3-9e1e-485a-9c22-8927b1d70d05?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"d3ec6eac-1e9e-5a48-9c22-8927b1d70d05\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:10:05.2791781Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:11: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 + --enable-managed-identity --assign-identity --vnet-subnet-id + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ac6eecd3-9e1e-485a-9c22-8927b1d70d05?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"d3ec6eac-1e9e-5a48-9c22-8927b1d70d05\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:10:05.2791781Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:12: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 --location --dns-name-prefix --node-count --ssh-key-value + --enable-managed-identity --assign-identity --vnet-subnet-id + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ac6eecd3-9e1e-485a-9c22-8927b1d70d05?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"d3ec6eac-1e9e-5a48-9c22-8927b1d70d05\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:10:05.2791781Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:12: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 --location --dns-name-prefix --node-count --ssh-key-value + --enable-managed-identity --assign-identity --vnet-subnet-id + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ac6eecd3-9e1e-485a-9c22-8927b1d70d05?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"d3ec6eac-1e9e-5a48-9c22-8927b1d70d05\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:10:05.2791781Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:13: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 --location --dns-name-prefix --node-count --ssh-key-value + --enable-managed-identity --assign-identity --vnet-subnet-id + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ac6eecd3-9e1e-485a-9c22-8927b1d70d05?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"d3ec6eac-1e9e-5a48-9c22-8927b1d70d05\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:10:05.2791781Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:13: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 + --enable-managed-identity --assign-identity --vnet-subnet-id + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ac6eecd3-9e1e-485a-9c22-8927b1d70d05?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"d3ec6eac-1e9e-5a48-9c22-8927b1d70d05\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:10:05.2791781Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:14: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 --location --dns-name-prefix --node-count --ssh-key-value + --enable-managed-identity --assign-identity --vnet-subnet-id + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ac6eecd3-9e1e-485a-9c22-8927b1d70d05?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"d3ec6eac-1e9e-5a48-9c22-8927b1d70d05\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:10:05.2791781Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:14: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 --location --dns-name-prefix --node-count --ssh-key-value + --enable-managed-identity --assign-identity --vnet-subnet-id + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ac6eecd3-9e1e-485a-9c22-8927b1d70d05?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"d3ec6eac-1e9e-5a48-9c22-8927b1d70d05\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:10:05.2791781Z\",\n \"endTime\": + \"2023-06-29T09:14:57.5570255Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:15: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 --location --dns-name-prefix --node-count --ssh-key-value + --enable-managed-identity --assign-identity --vnet-subnet-id + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-gs9sw6cr.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-gs9sw6cr.portal.hcp.westus2.azmk8s.io\",\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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/e715ccc7-07d2-4ed5-9829-9cac7dcd3435\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: + - '4252' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:15: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: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks list + Connection: + - keep-alive + ParameterSetName: + - -g + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.25.6\",\n \"currentKubernetesVersion\": + \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-gs9sw6cr.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-gs9sw6cr.portal.hcp.westus2.azmk8s.io\",\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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/e715ccc7-07d2-4ed5-9829-9cac7dcd3435\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"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 }" + headers: + cache-control: + - no-cache + content-length: + - '4529' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:15: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: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks list + Connection: + - keep-alive + ParameterSetName: + - -g -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.25.6\",\n \"currentKubernetesVersion\": + \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-gs9sw6cr.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-gs9sw6cr.portal.hcp.westus2.azmk8s.io\",\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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/e715ccc7-07d2-4ed5-9829-9cac7dcd3435\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"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 }" + headers: + cache-control: + - no-cache + content-length: + - '4529' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:15: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: + - 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-gs9sw6cr.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-gs9sw6cr.portal.hcp.westus2.azmk8s.io\",\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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/e715ccc7-07d2-4ed5-9829-9cac7dcd3435\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: + - '4252' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:15: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: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks get-credentials + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --file + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + response: + body: + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": + \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSUkhSSWNYbHJOV3hrVVRrelNEWkpZemxTY1ZCUlZFRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxcWEzZFBWRUYzVGtST1lVZEJPSGxOUkZWNlRVUlplVTlVUVRWTlZFRXdUVEZ2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVOaENtbzBVVWt4Y2tOa1RqZFhVRFZuVFdrNWJUSkRVMnBCVkZOcWRYWlJTVGQzT0hGSGNrNUpZVFpXTVZscGFqUlZlSFJRYWxVd1NsRkllbTg0Tm5WbWRFa0tNMHhIUjFCeWRWVkhTbU4zWW1sdE5IVlNWMWx1U1VaV2JIbG1iV2RITjNsREwwSktNVFpoV0hFM2RsVkVVbXd6YVd4RlNGQnlieTlWTW1WNU9Ib3hNQXB2VTBZeWNuUnliMjVPTlVVclNpOW9kV05PWjB4NGFWQmpjM2RpYzFaNmF6UmxiV1psUlZNeWQxQjVia2xhUm5STFRHUk5WRGRPTmt4cE1qVlJPVFZPQ21aaGIxcGhZM0ZVTjJWWFoxbHhXVFZPWW1SRU9VNTBZWE5wZUdkU2RHOUxTbGwwWkVSdE1qTTRibU5MYm1SeGVFZFZjVFJqZGtwRU4yUnlTRVYxUVZJS1UwSkdRMDVYZFdKU1FqbGtUMjkyVjJ0YU5rdHhTVWRxUmtaNFVGQlBMekZEUzB0VGVETnRSRmQ1V1VKellVMUZSWGRPY1VOb1UwY3plR05FUlU1cFJBcGhWM1V6WkVNeFRubFlkVzFtVkhCMVJHSmlhMlZOU2xoS05uRkNkbEJHYkVacmQwbHRUWFJ3ZG5wdWRsVm1SRVYxYW10REsyczBlU3R2ZVRGNVRVRmxDa1puU0hrME9UVjFXVGhsU0dSVmNIa3hTWGxpTW1aaFdHSkRSRXhJUmt0d016ZDFjRmg1Wm5kTU4xTTFRWEZqTjJRM2EwVlhSV3Q2UzI1a2FYSm5SQ3NLWWxBMmJVVldOVlZ5UjNwc2EzQTFORkJSVkhOM1RFUXlOR3N4U1dZcmNGWkNTM1pSV0RabldHVmFUV1pLVDNoWWRXeFNRMnhtVkdaV1ZFcElkRnBITUFwVFJGRXJZMnBOVGtRclp6aFZXV3BWWW1oT2N5OXRkM2czVVRBcmFHdzVWemxFTURRMVVscHRLMlIxT1RkNk9VRkRlWFpYTVhKU2ExSTJSR0ZWY0hOVENqVkhXRXRVTVhacVlWQlZRVTVMTTBSYU1IRlVjRGRQWm1SaU5rOUVWbU5wZDNacldHRlJNRTB3ZGtsV1ZqVlliMG92YUdReVJVOTFRVVYyWW5OdVNYVUtWM2RLTjA1dFQyMUZVRE0zTWpCdmVtWXhWakkxWVV0WGJVZHlNMDlxWmtkcVQxQnJaMVZWU1dKUlNVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWUVpERlZSM0JyTW5NMWVUZzFibmRyQ2pGSlVEbFVkalZSYzFWSmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGRFNERmFVWEJTTm1sblNHUTFXVVZIU1ZSUU1FSk5haXREY1VjS2VHOWtjR2t4TlZRNFREVlhRM2g0VURWMlZHeDZjRFZYVUVack16Vm5Ra0ZDWVZSTWVWRnJWelJFTVU5MFJWSjBVRXRpTkVoaFZucElVWGR2TkdoWGVncEVaVFZNZFRsUU1FeEVlalptUkRoalpIRm5hblZMTUhSNWNEQnhaVzl1TmtoRE9WbHVWMDFQUzBGUE5WZ3ZXblJIWWpKMGJXaDNUMUZqZFd0MVRHUldDamxpTTFZM2VFSXJRbmN2V2tGaFVtaFpWV3BVY3pCdk5sTXJWM1pKWmt0TmFHZGxZbTluU2taRlMxUTFaazVwZVRkc2JGaE9NbEl3UlU5bFFVVk1OMDRLYWxoMU5uQnBNSGN4VnpadlptNU5SMnR1YkZWQ1kxWlRPV00wYUhOaVFYWTRPWFYzYXpKS01YbGxaR2QzYlRCSVlucFFOamxaYldkYU9HczNZMWh0VFFwbk5qaHFOSEpCTXpKSlVEVkNjbHA1V0doRmVFNTJNRlF4UmpWVGJVeGpUelF6YUN0Vk1rOXhjMmwySzFGWWJsRkNUMjVzWVhRNE1ITnFTMWRQVFdwMENtTjBlRlJsVDJoTk1XaERNRXRCT1dVek1qTXhkVmhwYzNSUU9VeFZkMGhUZG5JME0yVXJabVF3Y1dVeFQxUjBiVTVCYlZaamNqazVWbVl6VFRscVVIVUtPV0ZqWlhFMk5HMXpkREJ4SzJjdkx6VkVVMFY2UlVobEwwVm5aWEp1YzIxdU0wSkJlV280ZVZKNGIwVkViR0l3VTBwa05VbGhVVGhEVGxKdE5YSmhSUXBKVVZkNmMweG5Uek51UzNSdVdrdFZTMVJTT0ZGNGRVTmpjU3RZWVZOTU9EUkJkblIxUldwRFMwVjJVa3AyZUdSa1FuaHpaakJLY3k4NFRHTnFTekJtQ2k5R1dWbFVVamhDV1hNNGIzaHVUM3BtZFZGeFpEaHhhek5XV1ZsT05XOTNOemR4Y1ZGa1pWTndjM0ZKVUdkRWN6bEZlRVZEV0haek5sTkdZVGsxZUdNS01sRTBPRzVKVlZwcU5FOUtia3BDT0hrNE1FWjNVemxSVmxaTVNUWTNiRXhKTDJ4dlZITkVhMWs1TVRrNE5VaHpTM0kxZDNZd1dEbHFOMHN3WTJOVlNBcHdRVWd5UlV4bGRtNUdSbGxNSzNsR0NpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2RuczZpNmh2b3otZ3M5c3c2Y3IuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3RlN2x5aTUKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3RlN2x5aTUKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3R1bHpqaXFpN3NlX2NsaWFrc3Rlc3RlN2x5aTUKICBuYW1lOiBjbGlha3N0ZXN0ZTdseWk1CmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdGU3bHlpNQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3R1bHpqaXFpN3NlX2NsaWFrc3Rlc3RlN2x5aTUKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJYWtORFFYZGhaMEYzU1VKQlowbFNRVXhHZFZCMUsyWnRVMXBvVWxWVlUzQXpVMUpJYlZWM1JGRlpTa3R2V2tsb2RtTk9RVkZGVEVKUlFYY0tSRlJGVEUxQmEwZEJNVlZGUVhoTlExa3lSWGRJYUdOT1RXcE5kMDVxU1RWTlJHdDNUVVJSZWxkb1kwNU5hbFYzVG1wSk5VMUVhM2hOUkZGNlYycEJkd3BOVW1OM1JsRlpSRlpSVVV0RmR6VjZaVmhPTUZwWE1EWmlWMFo2WkVkV2VXTjZSVlpOUWsxSFFURlZSVUY0VFUxaVYwWjZaRWRXZVZreWVIQmFWelV3Q2sxSlNVTkpha0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRkZSa0ZCVDBOQlp6aEJUVWxKUTBOblMwTkJaMFZCZFRKT1lWa3ZWMVJpVDJ3MVdIYzJVWEpJTWtJS2NrdENTVXRJUzJORGRHWXphU3R1TTBVM09VOW9hMFZ1U200MmRsWkthM2hVVEc0elRUZHVXbU50YlV4WFZVbEhkRGRzUlc4MGVHcFhUVW9yWTA1WlJRcG5TVkpzZEd0NFZrUnVZV0p1WkVobGFpODBVWHBsV2pSU1FqVTNjV1kxUmtodGRWTlVaVWhpTTJkc2QyUjNZbGxwTmxNMFpIZ3hNVE5RV2xKQ2EzUkRDblF6VDJGdWFsVkNZbEl4V1RSM1NFTTJVbWRsUm1WelNHVk9lVlJZU25kQ1ltMDRNVWw0Ylc1M2QzTjBZbWhUTDJSYVRWTXhXRzFIU1VFMGFqRjRObWNLYW1aWE5rdEtSMjlTYUZNd2R5OVFjMjgwVWtoMksxbFVZVFp6UzJoSU1WUnBjWGgwVEVWdmNteE5UbEF3VW5rNFVsWnFPRU42UXpGSU16ZFBPRlJEZVFwNVdraDZUalpaWXpVd1ExVjJWbTlFYVdadFZVZHdiaXRoVXpsNEsxUXdhbHB1YUVneU9WRnZNbEJOYmxneFlsRlpaazl6YXpkUWJEUndOSFF6T0U1TkNsbHhhSGhyYXpOeVlUSnFhazFOVGxRdk5rRm1ZMmx2WjA5alVtRlljbmRQY1hKdVVFazRNakphV0Vjek9HcDRPRGhPWVdwWlRtcHNkRFk1VkVocU1sY0tRM0I2TlZkNFkxQmhORk5ZWVZoaWEzTkNjbkJJWkRkMU1WWklSVEphV2xKbk9UaEVZa3RLWW5jelltTmpjemhITnpNMk5XTlFkME5NU1RVMldFRXlXUXBTV2xnMVZ6bGFSVWt3V0VFNVdYRjBTMlp4YTBsR1lteHZWSFYzWkVoNkwyZHdhRTVCUlU0M1lVZEZLMmszZWtkck0yMUNUVkp0TmxadVVtWnNLM0F4Q2tZdmJHTlBUbWxSYlRCRmVFZGthVk51ZVVWc2VIRTFVVk0wWm1WUVlqRlVkVVJrVVV4NU5uTmtURkV4UVVOdVpIcE1SVlJ4VWtOMldITnBSV2RSYm5RS2NXeDNXa3BhTDJsQ2NTdEtVelpqVVZWbFRVWnRVMHhXUWxWSGJqRTJjSGhFUzBKM1RYYzRVVTlaVDI1MFVIaHZRbUZXVlVneVZYVTFkbGhHVjBnMlR3cHlkWGRYYmpSU09YSk5OVlF5TkdvNE1VNWpVamx2YzBOQmQwVkJRV0ZPVjAxR1VYZEVaMWxFVmxJd1VFRlJTQzlDUVZGRVFXZFhaMDFDVFVkQk1WVmtDa3BSVVUxTlFXOUhRME56UjBGUlZVWkNkMDFEVFVGM1IwRXhWV1JGZDBWQ0wzZFJRMDFCUVhkSWQxbEVWbEl3YWtKQ1ozZEdiMEZWVUdReFZVZHdheklLY3pWNU9EVnVkMnN4U1ZBNVZIWTFVWE5WU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZNUWxGQlJHZG5TVUpCUVhCQmVtRTVLM1YxYmtoclowRlJUVlZvWWdvdlRVeFFTV1JUYUZack9VZEpjRWt5UjJkV1RqTmFTR2xqZFdkTlVFWXZWbnB0VkROemJUSkNTbWROVVcxUVRrTXpaMlZRUkRaaU5tcDRVV1JoUnpaM0NqWjVlbloyUTIxSVlXZHhPVGxXT0c1dFNYWTBZeXRvWTNncloyMWFkSGR5WjNGNVJUVklNR054T1V3dmFFcFJSR040VGk5U2VtdHZLelZpU25Rdk5YTUtaemQzWkZwaU1uTlNZVXhCWmpCdGNrOVhWM1JaT1ZkTllrMVZjMU5hUVRkRWNISkVTM2xvT0V0VGJUWnBZMGRwYlhWMVJIcENSamxCTmpOblIxVldOZ3BJTmtGSmIwMDNZVFoxTDJkb1lVbG1hakUxUW0wNVJsUktORVIzVWxKblp6aGlkM05wV2xsQ05rOVZWelJwTjFSd01tcE1kbU5OUzFBd1pGbzVaSE5TQ2pSRldEUXpTSFJ4TTNreE1YZGhlRkYzWWxoVFNETTFSR040WkRWS2JUSnBZVEZrTVUxWlNtMHpZMk5tYVV4NFNEaDZZV2xTZDFFM1RTdEhWVGwxWmprS1YxZE5PVFo1U0VWM2FVZGlWbFJSYXpsTldsSlBTVUkzVlVwTlEwdFVkRXB0VFZvelNqaHdWVkl3TDAxemRuTXhRMnR5UmpGemJtOTNXSHB2WkN0bVZRcDJRWE1yYTAxbFQya3Jja1U0TkZGNlNGVTVjMjFtZDBSR2NGQmtkVmR2VGpGM05FcEhLMjFWZW1oRFVEUTFiRFJHTkZOQ2IzWkxjV055VTFvMVIwcDFDbVZ3VVdsUVJ5dGFSM1UyTVVsWFJtc3dXVzUxT1VGS1EyUjJNbGsyUlRKTlNtbzJja1JhT0c5T1ExcE1NMVpFT1NzMGVEWlBWRVJLUm5sU2JtUktUMUVLTVdaVmJHOXJjaXMxZVhoak5tSXlTWFZ4ZHpoRmVERnRNVzltY1c5M1FrNUxlSEpFV0hWeU1Xc3JSVzVtZDFweGNuY3dhRGRuVmtaWlMzY3ZiMXBWTmdvck1IQk1iSE5SYm5weVZEVlpNVFUwYmtGNVZHUnFTbTlOZEVwblRVc3djamhTUlV0b1JXWnRXVEJETmtsMVFrVmphbGhCVVhoaVNITjZWRlpyY21sYUNrMTFNbXBaT1dVclRYWllWVFpHWjB0Q1dqRkJTbWhvU0FvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMEZKUWtGQlMwTkJaMFZCZFRKT1lWa3ZWMVJpVDJ3MVdIYzJVWEpJTWtKeVMwSkpTMGhMWTBOMFpqTnBLMjR6UlRjNVQyaHJSVzVLYmpaMkNsWkthM2hVVEc0elRUZHVXbU50YlV4WFZVbEhkRGRzUlc4MGVHcFhUVW9yWTA1WlJXZEpVbXgwYTNoV1JHNWhZbTVrU0dWcUx6UlJlbVZhTkZKQ05UY0tjV1kxUmtodGRWTlVaVWhpTTJkc2QyUjNZbGxwTmxNMFpIZ3hNVE5RV2xKQ2EzUkRkRE5QWVc1cVZVSmlVakZaTkhkSVF6WlNaMlZHWlhOSVpVNTVWQXBZU25kQ1ltMDRNVWw0Ylc1M2QzTjBZbWhUTDJSYVRWTXhXRzFIU1VFMGFqRjRObWRxWmxjMlMwcEhiMUpvVXpCM0wxQnpielJTU0hZcldWUmhObk5MQ21oSU1WUnBjWGgwVEVWdmNteE5UbEF3VW5rNFVsWnFPRU42UXpGSU16ZFBPRlJEZVhsYVNIcE9ObGxqTlRCRFZYWldiMFJwWm0xVlIzQnVLMkZUT1hnS0sxUXdhbHB1YUVneU9WRnZNbEJOYmxneFlsRlpaazl6YXpkUWJEUndOSFF6T0U1TldYRm9lR3RyTTNKaE1tcHFUVTFPVkM4MlFXWmphVzluVDJOU1lRcFljbmRQY1hKdVVFazRNakphV0Vjek9HcDRPRGhPWVdwWlRtcHNkRFk1VkVocU1sZERjSG8xVjNoalVHRTBVMWhoV0dKcmMwSnljRWhrTjNVeFZraEZDakphV2xKbk9UaEVZa3RLWW5jelltTmpjemhITnpNMk5XTlFkME5NU1RVMldFRXlXVkphV0RWWE9WcEZTVEJZUVRsWmNYUkxabkZyU1VaaWJHOVVkWGNLWkVoNkwyZHdhRTVCUlU0M1lVZEZLMmszZWtkck0yMUNUVkp0TmxadVVtWnNLM0F4Umk5c1kwOU9hVkZ0TUVWNFIyUnBVMjU1Uld4NGNUVlJVelJtWlFwUVlqRlVkVVJrVVV4NU5uTmtURkV4UVVOdVpIcE1SVlJ4VWtOMldITnBSV2RSYm5SeGJIZGFTbG92YVVKeEswcFRObU5SVldWTlJtMVRURlpDVlVkdUNqRTJjSGhFUzBKM1RYYzRVVTlaVDI1MFVIaHZRbUZXVlVneVZYVTFkbGhHVjBnMlQzSjFkMWR1TkZJNWNrMDFWREkwYWpneFRtTlNPVzl6UTBGM1JVRUtRVkZMUTBGblFYTjBVMDlZZG1KMVUzWktSbk5yU0d0TU4yeFlSamRsWmtwWWNUZEZSalJ5UlVsMWIwVkhRbmxSUVROT2JuZzRibXhGVkdWc05uRnBSQW9yY3psaFkweDNRMkUzU2xkdGVXczFURUZHTXpVNE9YRTVSMVJYYkV3dkwyOXRObGx4VFhWMk9UWmFNa1JHVUU5RVJFdGtZbVpvY2sxdVRXcE5kRGhTQ2toa1dISlFOakZLWlV0VGNHcElPVWRVUVRCWGVuUXlPVGx4TjFGUWFFTm9kR3gyUlhkTUt6UlRWemxNVm1GdE16WlFPRGRaYzFReGVqTkxNeXR0YUdZS1J6TjJaa2RSWlZwMkwwWXJRamQ2ZVcxaEwyRmlaMVV6UTJWUFkyVjNaMVJNWXpGTlEzaDViSE00YVRseGJ6TkVlSGQ2VkVneFpTOUVTR1Z0UjJ0V2FBcDZPRUpsUjJOemRGSlJTRmRQWTJwSmEzSkthamxWYkVOWGFrRk9lak5wVEhsdFNWTXJiVWREVnpkMVJXRTNkR1ZNVjJRMWFWRjRWVkJ5V0RObFRFMU5DbE0yTkVST1QwRnlOblpoUlhGRVMwRmxkV1JoUkdkek56STRhVnBUUjJOTVNHaENLMlZFV2s5dGJtRXhjWEpOY1c1NFRtRnBlbG8wUm1sVVRWaGFaVEFLVEVWbVlrUllkWEZEYUhsS1RVRTRUMWxEYlZjMVRrcE5TekZ2UTJzMk1GWktjRVJ4UjNONmRsbzBWMk5SVW5JMFEyUkdabHBTVTBwdVYyNU1kVTVsYkFwc09UUmhkMUJsZUM5VWVGWnpkbUowT1hoM1R6WkVRa014T0ZGdmNWUlRVakpKWnpObk5XSkhZMUZZVTJ4WmJrZ3lkM2cxT1VFd1NHODRjbkpZTVVrMENrUm1NRTExVTNvMlRHOU5jblJ2TmtkNlJ6RXlNMG93Y200d1QwOHhlVWhTZG05WGFtSlBkaTlhVGpkb1FYaE9iMXAxVHpCUWJqVk1OR0pySzBsMVRVRUtNMmwzVTJWNVpFNXFMMHR6VmpodFNuWlVjMmRIWldsT1IzQXZVbFpNZVhZNU1reFlZM2xEVDBocVRWcEZVWGx3TUZkc1dFTnRNVnA1ZWtSUWNDdE1aUXB3TWxBeFp6QXpWWFp4V1VOSlVtdGxRVlZvU2xCR1UySnBhWFJIZDFaWldYRk5jbkZYTUhSTGQzUjZTazQzVjAxWlVVdERRVkZGUVhsclVsSnlWMUpJQ21RdldsWnRNMHd2VFVwMGNHbExiMFp1T0V4bGNWVlBjRlZETm5seE9YVTNNSHBrWkZCdGJuVktlVlZxUWpNclpscG5XV2czVEdGVFZsY3lMMkZ3UXprS1IzTkRlR3hCVm5kdWJUUjZUek5pVDFjeVkzQklSR2MwVHl0aGVVRjJjMHR4VVRWeFpYTldhVEV3YWk5Tk1EWlFVaTg1ZUZWdVlVUnFkRTR6UjNJeWRncEVPV1ZoY0VveFNFZHJZekJJVjFVeUwySnJWbVJYVTJsWFpXNUdUamRKUTBZeWFWVTBNekJ2Y2s1b2IxRmlZbVJVYURkMWRXWllXR1psYWxCemFYSlFDbVZZVG1GcmJHdHZVV3MzT0UxNlJFbFRRakp2VjJoM09VNWlSV2REYUdvNGRDODBiREZNZFcweGFUZDVUbHBYVkdzclYyRkZibTlQYUVSQldWcGlOWGNLUkU1blJtdEZkR2w1WW5NM01FRkRjMFExYmxwUFJHaDNWVlZUZW5WVlpqYzJabXRxUlU5NmRDdFpLM0pNYms1TFdtTnZOMko0YUhSSVlqTmxibWwzY0FwalpYWkpiVW96ZGxsaWEyVjZkMHREUVZGRlFUZFRjM0ZLVm10SE1tZzRPSFZTTUhaVVlWUlRhMHByTWpKbWRIcENLMmM1UTA5WGFYaG9iM2t6VkVveENqSjNPVGhUYkRseU0zTkthWFJZYURCYVluRkJaMDkxU21sbVMyNUthRXRMVHpOaFdsTjZObFUxYWpkV2NrZzJWMHgyTTFkTE5uUkRkQzlGUlhsYVRFa0tRVXhtYjA5SGVIWk5heklyYlhkeFRsWTBiUzkwY1ZGTE5WTlRZMlpZVW1KWVJWSmFibko0ZWtoellUaEhTVmhTUjFsSVpsZDNkbEF4WlN0YU4wZDBZZ3BqZUcwd1VVUmFXaTlKTVRReWJuSjRZWFV4ZGpKc1Z6WjJjWFkwU1M5WVpEWk5lREZXVVhGaFNFbzJWSGxFUlU5aFdqTklTekJGVm5waWFWaFFTUzlIQ25jeWIyUXdlazVIT1VOMFUzZE1SbWs0T1Zkc01uSkhRazVYUXpGd1ZEaGhkMVZxTlZBd0wxSnRXVWhEU0ZScWVtOWhhV1ZCUTFoVE0xQnVaQzh3VWpVS2RuZHBZV1ZCY25acWNtRTFXR2t5YzJkT1oyMVBXVzl4WWtFMVJUSlFSRFo2WVhOblJVWkVOMmhSUzBOQlVVVkJkRGhvZWpOdVUzSmhOV3B6UjBJM1dncFBURlU1YjNWMU5YbElkM05FVDJod2R6SXhjVGg2Vkc4MlVGZzFVakpxUVRrNWFVdG9OVzE1Yml0VllXeG9ZMlI0TTIwNE16TnpPRWRFTjFkSE5GVkdDako1Tms5YWJ6SkJNbmhTVmtOcmMyRTNXRXRyWkVscVpVZDBXRFpqYVhNdmMwSlhibkpHY2twWVkxbEJiR05yVW5GSmEwVlJPSFoxWTFKeFlXSk9RbklLWkhKclZEVldSeXROWWxGdGFERkJNVXBFVjBFclUxcEtUMFJRVTJSU1IxbEVPVlpwYUdKTksxTnRiRmw1UzJSVlkyaGtSVUZOVG1SWFUwVjZVSEEyT0FwTlpWQkxla1ZwWVRoemRtWXlSME52VkZWNmRuRTNNR2RuTlROMGFXVnZibTlhTVhWbWNtMHlTMnRCU2xOd2FWVTRRVGg2VnprNE5YVk1TR1l2UldoRUNreHpSblJwTkZoUk1GTjNaR0o2VURRcmFEZFBibkFyUm1sbllsSnJaVTR5U2pkblpUbHJibFJaT0Vod1ZuWjRLM2xRVG05bU5XWnZORXBaTkRSc1RTc0tNbnBDTVdsUlMwTkJVVUZUWkhBdlRGWkphbmxDYVdsSFEwd3lZaTg0TjJOeWRrUlZUek13VkVOdlRtdzBLM0YxU0ZoQlJWSkdPV3RrUjI5eGNVRTRVQXAzYmxwSmVHd3pXbHBhUjBoa09EWXpWRWx4ZVhKb1RGRXlhMVJKTVU1Q2JYUkdSMU5KYWtONU5qbFFNbWhzYVd4V1ZVRlpTMVJOYTNsNWVIRTJRbGx2Q2tKdFJtMVdTVmcwV1V0TWNVcDNPSEZGTlZkVVRuSkhLMFo0ZDJFdldGUkJNbkIyWlVaT2VsbGlXVWhxTlhGSFFtVkRkVEZsWnpSbFoyTjJSV2t2WVhBS1kwdEpUamhFUWtoTlRVUmhZMGcwWmxKbFowWmtTMmxZTjFGTVpGbG1kbkJoYm1JMmVVMWlhMlJuU1VKWVoyNURaMFJLVmpWeFQwVndkMmN6V0haRFVncEtZVnBHYkdkdGMwUmtMMmhxU25kUlpXSjZjVnB0VmtFd2RIVkZhMFZSZVM5VFZVNW1WbVZMUzBWU1ZXOXdNSFF3Y3pONmFETk5jVFpvUzAxalpESkJDbU5NTUhoc1kwTjFUSGxYWVhGVFZIZFZTbEZRYURSTlpUWTRiVTVQTmtNMVFXOUpRa0ZJYVhrNFRFZ3haMHNyVDJWMk1USlZUa1JVVlhaQllURlJSbUlLVkc1NGFFbDJXakJIYTFvdlZrbHdZVThyVURCUldGQlRURzh3TkRGbVIxUnBkRm80YjBSU1NuaG1ka3h0ZEdwYWJrTjRSRFZJU21obmEyazRlVkZKVHdwbFowRkVLM0JGU2k5alprTkNTbWxSU2k5dGJFRm5hbnBxVXpKc1NrTlFiMlprY0dGWk9HcE1kWFJZVFRoelluUXpNM0ZrVmtZdlVFNTFjVXhpYkhKMUNqbDNhbmhGV0ZkcWRXTkxTVmxFWlVOSWEzWlFWazV4YUVVeGNuRnBVRlZPZUd4MU5GaFVXRm96T1ZSNFNEWjNkMVU0Y0VKelJsTllMM0JGVkdWNlNVa0tUWEEwVW1JMlZFazVVeXR2YW5rMWQwNXdhekZpUVhwd1VXZ3lRMmR2VUU5VlJFbGtRbXBST1ZOcFpIRm9PRGt3VUZGUGREQkJMekpqVFhsdFZrVjJUUXBGVFhwNlJqUkpTbGhWWVVWalFtdHhSbHBDTVdOVWRXVmFMM0pSUlVZNU1qUlNiamx3Wms1TGRIcG5iWE5YUm5CWFQydHNNbFEyV0hGMmF6MEtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogbmt3NjVoczZuMGU4a2JscmpwdDN1dWoyZ3Y4bmlydGJlOGkwZmFjemNuaHptcGRsbzFqdHdwcnIwdnByMzExaXZ5bTB6MWp0bzZidmsyaGV6NTJiZGkzN3Z0aWVhZGF0bm14em5qNTM4emw0dmI5dHltc2gzaWhoNXB1cDkwcmQK\"\n + \ }\n ]\n }" + headers: + cache-control: + - no-cache + content-length: + - '13072' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:15: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 + 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 get-credentials + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n -f 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/d77cc321-b964-46e1-b547-37473ed06639?api-version=2016-03-30 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - 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 }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": + \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSUkhSSWNYbHJOV3hrVVRrelNEWkpZemxTY1ZCUlZFRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxcWEzZFBWRUYzVGtST1lVZEJPSGxOUkZWNlRVUlplVTlVUVRWTlZFRXdUVEZ2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVOaENtbzBVVWt4Y2tOa1RqZFhVRFZuVFdrNWJUSkRVMnBCVkZOcWRYWlJTVGQzT0hGSGNrNUpZVFpXTVZscGFqUlZlSFJRYWxVd1NsRkllbTg0Tm5WbWRFa0tNMHhIUjFCeWRWVkhTbU4zWW1sdE5IVlNWMWx1U1VaV2JIbG1iV2RITjNsREwwSktNVFpoV0hFM2RsVkVVbXd6YVd4RlNGQnlieTlWTW1WNU9Ib3hNQXB2VTBZeWNuUnliMjVPTlVVclNpOW9kV05PWjB4NGFWQmpjM2RpYzFaNmF6UmxiV1psUlZNeWQxQjVia2xhUm5STFRHUk5WRGRPTmt4cE1qVlJPVFZPQ21aaGIxcGhZM0ZVTjJWWFoxbHhXVFZPWW1SRU9VNTBZWE5wZUdkU2RHOUxTbGwwWkVSdE1qTTRibU5MYm1SeGVFZFZjVFJqZGtwRU4yUnlTRVYxUVZJS1UwSkdRMDVYZFdKU1FqbGtUMjkyVjJ0YU5rdHhTVWRxUmtaNFVGQlBMekZEUzB0VGVETnRSRmQ1V1VKellVMUZSWGRPY1VOb1UwY3plR05FUlU1cFJBcGhWM1V6WkVNeFRubFlkVzFtVkhCMVJHSmlhMlZOU2xoS05uRkNkbEJHYkVacmQwbHRUWFJ3ZG5wdWRsVm1SRVYxYW10REsyczBlU3R2ZVRGNVRVRmxDa1puU0hrME9UVjFXVGhsU0dSVmNIa3hTWGxpTW1aaFdHSkRSRXhJUmt0d016ZDFjRmg1Wm5kTU4xTTFRWEZqTjJRM2EwVlhSV3Q2UzI1a2FYSm5SQ3NLWWxBMmJVVldOVlZ5UjNwc2EzQTFORkJSVkhOM1RFUXlOR3N4U1dZcmNGWkNTM1pSV0RabldHVmFUV1pLVDNoWWRXeFNRMnhtVkdaV1ZFcElkRnBITUFwVFJGRXJZMnBOVGtRclp6aFZXV3BWWW1oT2N5OXRkM2czVVRBcmFHdzVWemxFTURRMVVscHRLMlIxT1RkNk9VRkRlWFpYTVhKU2ExSTJSR0ZWY0hOVENqVkhXRXRVTVhacVlWQlZRVTVMTTBSYU1IRlVjRGRQWm1SaU5rOUVWbU5wZDNacldHRlJNRTB3ZGtsV1ZqVlliMG92YUdReVJVOTFRVVYyWW5OdVNYVUtWM2RLTjA1dFQyMUZVRE0zTWpCdmVtWXhWakkxWVV0WGJVZHlNMDlxWmtkcVQxQnJaMVZWU1dKUlNVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWUVpERlZSM0JyTW5NMWVUZzFibmRyQ2pGSlVEbFVkalZSYzFWSmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGRFNERmFVWEJTTm1sblNHUTFXVVZIU1ZSUU1FSk5haXREY1VjS2VHOWtjR2t4TlZRNFREVlhRM2g0VURWMlZHeDZjRFZYVUVack16Vm5Ra0ZDWVZSTWVWRnJWelJFTVU5MFJWSjBVRXRpTkVoaFZucElVWGR2TkdoWGVncEVaVFZNZFRsUU1FeEVlalptUkRoalpIRm5hblZMTUhSNWNEQnhaVzl1TmtoRE9WbHVWMDFQUzBGUE5WZ3ZXblJIWWpKMGJXaDNUMUZqZFd0MVRHUldDamxpTTFZM2VFSXJRbmN2V2tGaFVtaFpWV3BVY3pCdk5sTXJWM1pKWmt0TmFHZGxZbTluU2taRlMxUTFaazVwZVRkc2JGaE9NbEl3UlU5bFFVVk1OMDRLYWxoMU5uQnBNSGN4VnpadlptNU5SMnR1YkZWQ1kxWlRPV00wYUhOaVFYWTRPWFYzYXpKS01YbGxaR2QzYlRCSVlucFFOamxaYldkYU9HczNZMWh0VFFwbk5qaHFOSEpCTXpKSlVEVkNjbHA1V0doRmVFNTJNRlF4UmpWVGJVeGpUelF6YUN0Vk1rOXhjMmwySzFGWWJsRkNUMjVzWVhRNE1ITnFTMWRQVFdwMENtTjBlRlJsVDJoTk1XaERNRXRCT1dVek1qTXhkVmhwYzNSUU9VeFZkMGhUZG5JME0yVXJabVF3Y1dVeFQxUjBiVTVCYlZaamNqazVWbVl6VFRscVVIVUtPV0ZqWlhFMk5HMXpkREJ4SzJjdkx6VkVVMFY2UlVobEwwVm5aWEp1YzIxdU0wSkJlV280ZVZKNGIwVkViR0l3VTBwa05VbGhVVGhEVGxKdE5YSmhSUXBKVVZkNmMweG5Uek51UzNSdVdrdFZTMVJTT0ZGNGRVTmpjU3RZWVZOTU9EUkJkblIxUldwRFMwVjJVa3AyZUdSa1FuaHpaakJLY3k4NFRHTnFTekJtQ2k5R1dWbFVVamhDV1hNNGIzaHVUM3BtZFZGeFpEaHhhek5XV1ZsT05XOTNOemR4Y1ZGa1pWTndjM0ZKVUdkRWN6bEZlRVZEV0haek5sTkdZVGsxZUdNS01sRTBPRzVKVlZwcU5FOUtia3BDT0hrNE1FWjNVemxSVmxaTVNUWTNiRXhKTDJ4dlZITkVhMWs1TVRrNE5VaHpTM0kxZDNZd1dEbHFOMHN3WTJOVlNBcHdRVWd5UlV4bGRtNUdSbGxNSzNsR0NpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2RuczZpNmh2b3otZ3M5c3c2Y3IuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3RlN2x5aTUKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3RlN2x5aTUKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3R1bHpqaXFpN3NlX2NsaWFrc3Rlc3RlN2x5aTUKICBuYW1lOiBjbGlha3N0ZXN0ZTdseWk1CmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdGU3bHlpNQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3R1bHpqaXFpN3NlX2NsaWFrc3Rlc3RlN2x5aTUKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJYWtORFFYZGhaMEYzU1VKQlowbFNRVXhHZFZCMUsyWnRVMXBvVWxWVlUzQXpVMUpJYlZWM1JGRlpTa3R2V2tsb2RtTk9RVkZGVEVKUlFYY0tSRlJGVEUxQmEwZEJNVlZGUVhoTlExa3lSWGRJYUdOT1RXcE5kMDVxU1RWTlJHdDNUVVJSZWxkb1kwNU5hbFYzVG1wSk5VMUVhM2hOUkZGNlYycEJkd3BOVW1OM1JsRlpSRlpSVVV0RmR6VjZaVmhPTUZwWE1EWmlWMFo2WkVkV2VXTjZSVlpOUWsxSFFURlZSVUY0VFUxaVYwWjZaRWRXZVZreWVIQmFWelV3Q2sxSlNVTkpha0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRkZSa0ZCVDBOQlp6aEJUVWxKUTBOblMwTkJaMFZCZFRKT1lWa3ZWMVJpVDJ3MVdIYzJVWEpJTWtJS2NrdENTVXRJUzJORGRHWXphU3R1TTBVM09VOW9hMFZ1U200MmRsWkthM2hVVEc0elRUZHVXbU50YlV4WFZVbEhkRGRzUlc4MGVHcFhUVW9yWTA1WlJRcG5TVkpzZEd0NFZrUnVZV0p1WkVobGFpODBVWHBsV2pSU1FqVTNjV1kxUmtodGRWTlVaVWhpTTJkc2QyUjNZbGxwTmxNMFpIZ3hNVE5RV2xKQ2EzUkRDblF6VDJGdWFsVkNZbEl4V1RSM1NFTTJVbWRsUm1WelNHVk9lVlJZU25kQ1ltMDRNVWw0Ylc1M2QzTjBZbWhUTDJSYVRWTXhXRzFIU1VFMGFqRjRObWNLYW1aWE5rdEtSMjlTYUZNd2R5OVFjMjgwVWtoMksxbFVZVFp6UzJoSU1WUnBjWGgwVEVWdmNteE5UbEF3VW5rNFVsWnFPRU42UXpGSU16ZFBPRlJEZVFwNVdraDZUalpaWXpVd1ExVjJWbTlFYVdadFZVZHdiaXRoVXpsNEsxUXdhbHB1YUVneU9WRnZNbEJOYmxneFlsRlpaazl6YXpkUWJEUndOSFF6T0U1TkNsbHhhSGhyYXpOeVlUSnFhazFOVGxRdk5rRm1ZMmx2WjA5alVtRlljbmRQY1hKdVVFazRNakphV0Vjek9HcDRPRGhPWVdwWlRtcHNkRFk1VkVocU1sY0tRM0I2TlZkNFkxQmhORk5ZWVZoaWEzTkNjbkJJWkRkMU1WWklSVEphV2xKbk9UaEVZa3RLWW5jelltTmpjemhITnpNMk5XTlFkME5NU1RVMldFRXlXUXBTV2xnMVZ6bGFSVWt3V0VFNVdYRjBTMlp4YTBsR1lteHZWSFYzWkVoNkwyZHdhRTVCUlU0M1lVZEZLMmszZWtkck0yMUNUVkp0TmxadVVtWnNLM0F4Q2tZdmJHTlBUbWxSYlRCRmVFZGthVk51ZVVWc2VIRTFVVk0wWm1WUVlqRlVkVVJrVVV4NU5uTmtURkV4UVVOdVpIcE1SVlJ4VWtOMldITnBSV2RSYm5RS2NXeDNXa3BhTDJsQ2NTdEtVelpqVVZWbFRVWnRVMHhXUWxWSGJqRTJjSGhFUzBKM1RYYzRVVTlaVDI1MFVIaHZRbUZXVlVneVZYVTFkbGhHVjBnMlR3cHlkWGRYYmpSU09YSk5OVlF5TkdvNE1VNWpVamx2YzBOQmQwVkJRV0ZPVjAxR1VYZEVaMWxFVmxJd1VFRlJTQzlDUVZGRVFXZFhaMDFDVFVkQk1WVmtDa3BSVVUxTlFXOUhRME56UjBGUlZVWkNkMDFEVFVGM1IwRXhWV1JGZDBWQ0wzZFJRMDFCUVhkSWQxbEVWbEl3YWtKQ1ozZEdiMEZWVUdReFZVZHdheklLY3pWNU9EVnVkMnN4U1ZBNVZIWTFVWE5WU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZNUWxGQlJHZG5TVUpCUVhCQmVtRTVLM1YxYmtoclowRlJUVlZvWWdvdlRVeFFTV1JUYUZack9VZEpjRWt5UjJkV1RqTmFTR2xqZFdkTlVFWXZWbnB0VkROemJUSkNTbWROVVcxUVRrTXpaMlZRUkRaaU5tcDRVV1JoUnpaM0NqWjVlbloyUTIxSVlXZHhPVGxXT0c1dFNYWTBZeXRvWTNncloyMWFkSGR5WjNGNVJUVklNR054T1V3dmFFcFJSR040VGk5U2VtdHZLelZpU25Rdk5YTUtaemQzWkZwaU1uTlNZVXhCWmpCdGNrOVhWM1JaT1ZkTllrMVZjMU5hUVRkRWNISkVTM2xvT0V0VGJUWnBZMGRwYlhWMVJIcENSamxCTmpOblIxVldOZ3BJTmtGSmIwMDNZVFoxTDJkb1lVbG1hakUxUW0wNVJsUktORVIzVWxKblp6aGlkM05wV2xsQ05rOVZWelJwTjFSd01tcE1kbU5OUzFBd1pGbzVaSE5TQ2pSRldEUXpTSFJ4TTNreE1YZGhlRkYzWWxoVFNETTFSR040WkRWS2JUSnBZVEZrTVUxWlNtMHpZMk5tYVV4NFNEaDZZV2xTZDFFM1RTdEhWVGwxWmprS1YxZE5PVFo1U0VWM2FVZGlWbFJSYXpsTldsSlBTVUkzVlVwTlEwdFVkRXB0VFZvelNqaHdWVkl3TDAxemRuTXhRMnR5UmpGemJtOTNXSHB2WkN0bVZRcDJRWE1yYTAxbFQya3Jja1U0TkZGNlNGVTVjMjFtZDBSR2NGQmtkVmR2VGpGM05FcEhLMjFWZW1oRFVEUTFiRFJHTkZOQ2IzWkxjV055VTFvMVIwcDFDbVZ3VVdsUVJ5dGFSM1UyTVVsWFJtc3dXVzUxT1VGS1EyUjJNbGsyUlRKTlNtbzJja1JhT0c5T1ExcE1NMVpFT1NzMGVEWlBWRVJLUm5sU2JtUktUMUVLTVdaVmJHOXJjaXMxZVhoak5tSXlTWFZ4ZHpoRmVERnRNVzltY1c5M1FrNUxlSEpFV0hWeU1Xc3JSVzVtZDFweGNuY3dhRGRuVmtaWlMzY3ZiMXBWTmdvck1IQk1iSE5SYm5weVZEVlpNVFUwYmtGNVZHUnFTbTlOZEVwblRVc3djamhTUlV0b1JXWnRXVEJETmtsMVFrVmphbGhCVVhoaVNITjZWRlpyY21sYUNrMTFNbXBaT1dVclRYWllWVFpHWjB0Q1dqRkJTbWhvU0FvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMEZKUWtGQlMwTkJaMFZCZFRKT1lWa3ZWMVJpVDJ3MVdIYzJVWEpJTWtKeVMwSkpTMGhMWTBOMFpqTnBLMjR6UlRjNVQyaHJSVzVLYmpaMkNsWkthM2hVVEc0elRUZHVXbU50YlV4WFZVbEhkRGRzUlc4MGVHcFhUVW9yWTA1WlJXZEpVbXgwYTNoV1JHNWhZbTVrU0dWcUx6UlJlbVZhTkZKQ05UY0tjV1kxUmtodGRWTlVaVWhpTTJkc2QyUjNZbGxwTmxNMFpIZ3hNVE5RV2xKQ2EzUkRkRE5QWVc1cVZVSmlVakZaTkhkSVF6WlNaMlZHWlhOSVpVNTVWQXBZU25kQ1ltMDRNVWw0Ylc1M2QzTjBZbWhUTDJSYVRWTXhXRzFIU1VFMGFqRjRObWRxWmxjMlMwcEhiMUpvVXpCM0wxQnpielJTU0hZcldWUmhObk5MQ21oSU1WUnBjWGgwVEVWdmNteE5UbEF3VW5rNFVsWnFPRU42UXpGSU16ZFBPRlJEZVhsYVNIcE9ObGxqTlRCRFZYWldiMFJwWm0xVlIzQnVLMkZUT1hnS0sxUXdhbHB1YUVneU9WRnZNbEJOYmxneFlsRlpaazl6YXpkUWJEUndOSFF6T0U1TldYRm9lR3RyTTNKaE1tcHFUVTFPVkM4MlFXWmphVzluVDJOU1lRcFljbmRQY1hKdVVFazRNakphV0Vjek9HcDRPRGhPWVdwWlRtcHNkRFk1VkVocU1sZERjSG8xVjNoalVHRTBVMWhoV0dKcmMwSnljRWhrTjNVeFZraEZDakphV2xKbk9UaEVZa3RLWW5jelltTmpjemhITnpNMk5XTlFkME5NU1RVMldFRXlXVkphV0RWWE9WcEZTVEJZUVRsWmNYUkxabkZyU1VaaWJHOVVkWGNLWkVoNkwyZHdhRTVCUlU0M1lVZEZLMmszZWtkck0yMUNUVkp0TmxadVVtWnNLM0F4Umk5c1kwOU9hVkZ0TUVWNFIyUnBVMjU1Uld4NGNUVlJVelJtWlFwUVlqRlVkVVJrVVV4NU5uTmtURkV4UVVOdVpIcE1SVlJ4VWtOMldITnBSV2RSYm5SeGJIZGFTbG92YVVKeEswcFRObU5SVldWTlJtMVRURlpDVlVkdUNqRTJjSGhFUzBKM1RYYzRVVTlaVDI1MFVIaHZRbUZXVlVneVZYVTFkbGhHVjBnMlQzSjFkMWR1TkZJNWNrMDFWREkwYWpneFRtTlNPVzl6UTBGM1JVRUtRVkZMUTBGblFYTjBVMDlZZG1KMVUzWktSbk5yU0d0TU4yeFlSamRsWmtwWWNUZEZSalJ5UlVsMWIwVkhRbmxSUVROT2JuZzRibXhGVkdWc05uRnBSQW9yY3psaFkweDNRMkUzU2xkdGVXczFURUZHTXpVNE9YRTVSMVJYYkV3dkwyOXRObGx4VFhWMk9UWmFNa1JHVUU5RVJFdGtZbVpvY2sxdVRXcE5kRGhTQ2toa1dISlFOakZLWlV0VGNHcElPVWRVUVRCWGVuUXlPVGx4TjFGUWFFTm9kR3gyUlhkTUt6UlRWemxNVm1GdE16WlFPRGRaYzFReGVqTkxNeXR0YUdZS1J6TjJaa2RSWlZwMkwwWXJRamQ2ZVcxaEwyRmlaMVV6UTJWUFkyVjNaMVJNWXpGTlEzaDViSE00YVRseGJ6TkVlSGQ2VkVneFpTOUVTR1Z0UjJ0V2FBcDZPRUpsUjJOemRGSlJTRmRQWTJwSmEzSkthamxWYkVOWGFrRk9lak5wVEhsdFNWTXJiVWREVnpkMVJXRTNkR1ZNVjJRMWFWRjRWVkJ5V0RObFRFMU5DbE0yTkVST1QwRnlOblpoUlhGRVMwRmxkV1JoUkdkek56STRhVnBUUjJOTVNHaENLMlZFV2s5dGJtRXhjWEpOY1c1NFRtRnBlbG8wUm1sVVRWaGFaVEFLVEVWbVlrUllkWEZEYUhsS1RVRTRUMWxEYlZjMVRrcE5TekZ2UTJzMk1GWktjRVJ4UjNONmRsbzBWMk5SVW5JMFEyUkdabHBTVTBwdVYyNU1kVTVsYkFwc09UUmhkMUJsZUM5VWVGWnpkbUowT1hoM1R6WkVRa014T0ZGdmNWUlRVakpKWnpObk5XSkhZMUZZVTJ4WmJrZ3lkM2cxT1VFd1NHODRjbkpZTVVrMENrUm1NRTExVTNvMlRHOU5jblJ2TmtkNlJ6RXlNMG93Y200d1QwOHhlVWhTZG05WGFtSlBkaTlhVGpkb1FYaE9iMXAxVHpCUWJqVk1OR0pySzBsMVRVRUtNMmwzVTJWNVpFNXFMMHR6VmpodFNuWlVjMmRIWldsT1IzQXZVbFpNZVhZNU1reFlZM2xEVDBocVRWcEZVWGx3TUZkc1dFTnRNVnA1ZWtSUWNDdE1aUXB3TWxBeFp6QXpWWFp4V1VOSlVtdGxRVlZvU2xCR1UySnBhWFJIZDFaWldYRk5jbkZYTUhSTGQzUjZTazQzVjAxWlVVdERRVkZGUVhsclVsSnlWMUpJQ21RdldsWnRNMHd2VFVwMGNHbExiMFp1T0V4bGNWVlBjRlZETm5seE9YVTNNSHBrWkZCdGJuVktlVlZxUWpNclpscG5XV2czVEdGVFZsY3lMMkZ3UXprS1IzTkRlR3hCVm5kdWJUUjZUek5pVDFjeVkzQklSR2MwVHl0aGVVRjJjMHR4VVRWeFpYTldhVEV3YWk5Tk1EWlFVaTg1ZUZWdVlVUnFkRTR6UjNJeWRncEVPV1ZoY0VveFNFZHJZekJJVjFVeUwySnJWbVJYVTJsWFpXNUdUamRKUTBZeWFWVTBNekJ2Y2s1b2IxRmlZbVJVYURkMWRXWllXR1psYWxCemFYSlFDbVZZVG1GcmJHdHZVV3MzT0UxNlJFbFRRakp2VjJoM09VNWlSV2REYUdvNGRDODBiREZNZFcweGFUZDVUbHBYVkdzclYyRkZibTlQYUVSQldWcGlOWGNLUkU1blJtdEZkR2w1WW5NM01FRkRjMFExYmxwUFJHaDNWVlZUZW5WVlpqYzJabXRxUlU5NmRDdFpLM0pNYms1TFdtTnZOMko0YUhSSVlqTmxibWwzY0FwalpYWkpiVW96ZGxsaWEyVjZkMHREUVZGRlFUZFRjM0ZLVm10SE1tZzRPSFZTTUhaVVlWUlRhMHByTWpKbWRIcENLMmM1UTA5WGFYaG9iM2t6VkVveENqSjNPVGhUYkRseU0zTkthWFJZYURCYVluRkJaMDkxU21sbVMyNUthRXRMVHpOaFdsTjZObFUxYWpkV2NrZzJWMHgyTTFkTE5uUkRkQzlGUlhsYVRFa0tRVXhtYjA5SGVIWk5heklyYlhkeFRsWTBiUzkwY1ZGTE5WTlRZMlpZVW1KWVJWSmFibko0ZWtoellUaEhTVmhTUjFsSVpsZDNkbEF4WlN0YU4wZDBZZ3BqZUcwd1VVUmFXaTlKTVRReWJuSjRZWFV4ZGpKc1Z6WjJjWFkwU1M5WVpEWk5lREZXVVhGaFNFbzJWSGxFUlU5aFdqTklTekJGVm5waWFWaFFTUzlIQ25jeWIyUXdlazVIT1VOMFUzZE1SbWs0T1Zkc01uSkhRazVYUXpGd1ZEaGhkMVZxTlZBd0wxSnRXVWhEU0ZScWVtOWhhV1ZCUTFoVE0xQnVaQzh3VWpVS2RuZHBZV1ZCY25acWNtRTFXR2t5YzJkT1oyMVBXVzl4WWtFMVJUSlFSRFo2WVhOblJVWkVOMmhSUzBOQlVVVkJkRGhvZWpOdVUzSmhOV3B6UjBJM1dncFBURlU1YjNWMU5YbElkM05FVDJod2R6SXhjVGg2Vkc4MlVGZzFVakpxUVRrNWFVdG9OVzE1Yml0VllXeG9ZMlI0TTIwNE16TnpPRWRFTjFkSE5GVkdDako1Tms5YWJ6SkJNbmhTVmtOcmMyRTNXRXRyWkVscVpVZDBXRFpqYVhNdmMwSlhibkpHY2twWVkxbEJiR05yVW5GSmEwVlJPSFoxWTFKeFlXSk9RbklLWkhKclZEVldSeXROWWxGdGFERkJNVXBFVjBFclUxcEtUMFJRVTJSU1IxbEVPVlpwYUdKTksxTnRiRmw1UzJSVlkyaGtSVUZOVG1SWFUwVjZVSEEyT0FwTlpWQkxla1ZwWVRoemRtWXlSME52VkZWNmRuRTNNR2RuTlROMGFXVnZibTlhTVhWbWNtMHlTMnRCU2xOd2FWVTRRVGg2VnprNE5YVk1TR1l2UldoRUNreHpSblJwTkZoUk1GTjNaR0o2VURRcmFEZFBibkFyUm1sbllsSnJaVTR5U2pkblpUbHJibFJaT0Vod1ZuWjRLM2xRVG05bU5XWnZORXBaTkRSc1RTc0tNbnBDTVdsUlMwTkJVVUZUWkhBdlRGWkphbmxDYVdsSFEwd3lZaTg0TjJOeWRrUlZUek13VkVOdlRtdzBLM0YxU0ZoQlJWSkdPV3RrUjI5eGNVRTRVQXAzYmxwSmVHd3pXbHBhUjBoa09EWXpWRWx4ZVhKb1RGRXlhMVJKTVU1Q2JYUkdSMU5KYWtONU5qbFFNbWhzYVd4V1ZVRlpTMVJOYTNsNWVIRTJRbGx2Q2tKdFJtMVdTVmcwV1V0TWNVcDNPSEZGTlZkVVRuSkhLMFo0ZDJFdldGUkJNbkIyWlVaT2VsbGlXVWhxTlhGSFFtVkRkVEZsWnpSbFoyTjJSV2t2WVhBS1kwdEpUamhFUWtoTlRVUmhZMGcwWmxKbFowWmtTMmxZTjFGTVpGbG1kbkJoYm1JMmVVMWlhMlJuU1VKWVoyNURaMFJLVmpWeFQwVndkMmN6V0haRFVncEtZVnBHYkdkdGMwUmtMMmhxU25kUlpXSjZjVnB0VmtFd2RIVkZhMFZSZVM5VFZVNW1WbVZMUzBWU1ZXOXdNSFF3Y3pONmFETk5jVFpvUzAxalpESkJDbU5NTUhoc1kwTjFUSGxYWVhGVFZIZFZTbEZRYURSTlpUWTRiVTVQTmtNMVFXOUpRa0ZJYVhrNFRFZ3haMHNyVDJWMk1USlZUa1JVVlhaQllURlJSbUlLVkc1NGFFbDJXakJIYTFvdlZrbHdZVThyVURCUldGQlRURzh3TkRGbVIxUnBkRm80YjBSU1NuaG1ka3h0ZEdwYWJrTjRSRFZJU21obmEyazRlVkZKVHdwbFowRkVLM0JGU2k5alprTkNTbWxSU2k5dGJFRm5hbnBxVXpKc1NrTlFiMlprY0dGWk9HcE1kWFJZVFRoelluUXpNM0ZrVmtZdlVFNTFjVXhpYkhKMUNqbDNhbmhGV0ZkcWRXTkxTVmxFWlVOSWEzWlFWazV4YUVVeGNuRnBVRlZPZUd4MU5GaFVXRm96T1ZSNFNEWjNkMVU0Y0VKelJsTllMM0JGVkdWNlNVa0tUWEEwVW1JMlZFazVVeXR2YW5rMWQwNXdhekZpUVhwd1VXZ3lRMmR2VUU5VlJFbGtRbXBST1ZOcFpIRm9PRGt3VUZGUGREQkJMekpqVFhsdFZrVjJUUXBGVFhwNlJqUkpTbGhWWVVWalFtdHhSbHBDTVdOVWRXVmFMM0pSUlVZNU1qUlNiamx3Wms1TGRIcG5iWE5YUm5CWFQydHNNbFEyV0hGMmF6MEtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogbmt3NjVoczZuMGU4a2JscmpwdDN1dWoyZ3Y4bmlydGJlOGkwZmFjemNuaHptcGRsbzFqdHdwcnIwdnByMzExaXZ5bTB6MWp0bzZidmsyaGV6NTJiZGkzN3Z0aWVhZGF0bm14em5qNTM4emw0dmI5dHltc2gzaWhoNXB1cDkwcmQK\"\n + \ }\n ]\n }" headers: cache-control: - no-cache content-length: - - '170' + - '13072' content-type: - application/json date: - - Wed, 14 Jun 2023 18:21:00 GMT + - Thu, 29 Jun 2023 09:15:11 GMT expires: - '-1' pragma: @@ -1303,6 +2952,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK @@ -1310,78 +2961,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 - --enable-managed-identity --assign-identity --vnet-subnet-id + - -g -n -f 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-05-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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\": 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 + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": + \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSUkhSSWNYbHJOV3hrVVRrelNEWkpZemxTY1ZCUlZFRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxcWEzZFBWRUYzVGtST1lVZEJPSGxOUkZWNlRVUlplVTlVUVRWTlZFRXdUVEZ2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVOaENtbzBVVWt4Y2tOa1RqZFhVRFZuVFdrNWJUSkRVMnBCVkZOcWRYWlJTVGQzT0hGSGNrNUpZVFpXTVZscGFqUlZlSFJRYWxVd1NsRkllbTg0Tm5WbWRFa0tNMHhIUjFCeWRWVkhTbU4zWW1sdE5IVlNWMWx1U1VaV2JIbG1iV2RITjNsREwwSktNVFpoV0hFM2RsVkVVbXd6YVd4RlNGQnlieTlWTW1WNU9Ib3hNQXB2VTBZeWNuUnliMjVPTlVVclNpOW9kV05PWjB4NGFWQmpjM2RpYzFaNmF6UmxiV1psUlZNeWQxQjVia2xhUm5STFRHUk5WRGRPTmt4cE1qVlJPVFZPQ21aaGIxcGhZM0ZVTjJWWFoxbHhXVFZPWW1SRU9VNTBZWE5wZUdkU2RHOUxTbGwwWkVSdE1qTTRibU5MYm1SeGVFZFZjVFJqZGtwRU4yUnlTRVYxUVZJS1UwSkdRMDVYZFdKU1FqbGtUMjkyVjJ0YU5rdHhTVWRxUmtaNFVGQlBMekZEUzB0VGVETnRSRmQ1V1VKellVMUZSWGRPY1VOb1UwY3plR05FUlU1cFJBcGhWM1V6WkVNeFRubFlkVzFtVkhCMVJHSmlhMlZOU2xoS05uRkNkbEJHYkVacmQwbHRUWFJ3ZG5wdWRsVm1SRVYxYW10REsyczBlU3R2ZVRGNVRVRmxDa1puU0hrME9UVjFXVGhsU0dSVmNIa3hTWGxpTW1aaFdHSkRSRXhJUmt0d016ZDFjRmg1Wm5kTU4xTTFRWEZqTjJRM2EwVlhSV3Q2UzI1a2FYSm5SQ3NLWWxBMmJVVldOVlZ5UjNwc2EzQTFORkJSVkhOM1RFUXlOR3N4U1dZcmNGWkNTM1pSV0RabldHVmFUV1pLVDNoWWRXeFNRMnhtVkdaV1ZFcElkRnBITUFwVFJGRXJZMnBOVGtRclp6aFZXV3BWWW1oT2N5OXRkM2czVVRBcmFHdzVWemxFTURRMVVscHRLMlIxT1RkNk9VRkRlWFpYTVhKU2ExSTJSR0ZWY0hOVENqVkhXRXRVTVhacVlWQlZRVTVMTTBSYU1IRlVjRGRQWm1SaU5rOUVWbU5wZDNacldHRlJNRTB3ZGtsV1ZqVlliMG92YUdReVJVOTFRVVYyWW5OdVNYVUtWM2RLTjA1dFQyMUZVRE0zTWpCdmVtWXhWakkxWVV0WGJVZHlNMDlxWmtkcVQxQnJaMVZWU1dKUlNVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWUVpERlZSM0JyTW5NMWVUZzFibmRyQ2pGSlVEbFVkalZSYzFWSmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGRFNERmFVWEJTTm1sblNHUTFXVVZIU1ZSUU1FSk5haXREY1VjS2VHOWtjR2t4TlZRNFREVlhRM2g0VURWMlZHeDZjRFZYVUVack16Vm5Ra0ZDWVZSTWVWRnJWelJFTVU5MFJWSjBVRXRpTkVoaFZucElVWGR2TkdoWGVncEVaVFZNZFRsUU1FeEVlalptUkRoalpIRm5hblZMTUhSNWNEQnhaVzl1TmtoRE9WbHVWMDFQUzBGUE5WZ3ZXblJIWWpKMGJXaDNUMUZqZFd0MVRHUldDamxpTTFZM2VFSXJRbmN2V2tGaFVtaFpWV3BVY3pCdk5sTXJWM1pKWmt0TmFHZGxZbTluU2taRlMxUTFaazVwZVRkc2JGaE9NbEl3UlU5bFFVVk1OMDRLYWxoMU5uQnBNSGN4VnpadlptNU5SMnR1YkZWQ1kxWlRPV00wYUhOaVFYWTRPWFYzYXpKS01YbGxaR2QzYlRCSVlucFFOamxaYldkYU9HczNZMWh0VFFwbk5qaHFOSEpCTXpKSlVEVkNjbHA1V0doRmVFNTJNRlF4UmpWVGJVeGpUelF6YUN0Vk1rOXhjMmwySzFGWWJsRkNUMjVzWVhRNE1ITnFTMWRQVFdwMENtTjBlRlJsVDJoTk1XaERNRXRCT1dVek1qTXhkVmhwYzNSUU9VeFZkMGhUZG5JME0yVXJabVF3Y1dVeFQxUjBiVTVCYlZaamNqazVWbVl6VFRscVVIVUtPV0ZqWlhFMk5HMXpkREJ4SzJjdkx6VkVVMFY2UlVobEwwVm5aWEp1YzIxdU0wSkJlV280ZVZKNGIwVkViR0l3VTBwa05VbGhVVGhEVGxKdE5YSmhSUXBKVVZkNmMweG5Uek51UzNSdVdrdFZTMVJTT0ZGNGRVTmpjU3RZWVZOTU9EUkJkblIxUldwRFMwVjJVa3AyZUdSa1FuaHpaakJLY3k4NFRHTnFTekJtQ2k5R1dWbFVVamhDV1hNNGIzaHVUM3BtZFZGeFpEaHhhek5XV1ZsT05XOTNOemR4Y1ZGa1pWTndjM0ZKVUdkRWN6bEZlRVZEV0haek5sTkdZVGsxZUdNS01sRTBPRzVKVlZwcU5FOUtia3BDT0hrNE1FWjNVemxSVmxaTVNUWTNiRXhKTDJ4dlZITkVhMWs1TVRrNE5VaHpTM0kxZDNZd1dEbHFOMHN3WTJOVlNBcHdRVWd5UlV4bGRtNUdSbGxNSzNsR0NpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2RuczZpNmh2b3otZ3M5c3c2Y3IuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3RlN2x5aTUKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3RlN2x5aTUKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3R1bHpqaXFpN3NlX2NsaWFrc3Rlc3RlN2x5aTUKICBuYW1lOiBjbGlha3N0ZXN0ZTdseWk1CmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdGU3bHlpNQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3R1bHpqaXFpN3NlX2NsaWFrc3Rlc3RlN2x5aTUKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJYWtORFFYZGhaMEYzU1VKQlowbFNRVXhHZFZCMUsyWnRVMXBvVWxWVlUzQXpVMUpJYlZWM1JGRlpTa3R2V2tsb2RtTk9RVkZGVEVKUlFYY0tSRlJGVEUxQmEwZEJNVlZGUVhoTlExa3lSWGRJYUdOT1RXcE5kMDVxU1RWTlJHdDNUVVJSZWxkb1kwNU5hbFYzVG1wSk5VMUVhM2hOUkZGNlYycEJkd3BOVW1OM1JsRlpSRlpSVVV0RmR6VjZaVmhPTUZwWE1EWmlWMFo2WkVkV2VXTjZSVlpOUWsxSFFURlZSVUY0VFUxaVYwWjZaRWRXZVZreWVIQmFWelV3Q2sxSlNVTkpha0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRkZSa0ZCVDBOQlp6aEJUVWxKUTBOblMwTkJaMFZCZFRKT1lWa3ZWMVJpVDJ3MVdIYzJVWEpJTWtJS2NrdENTVXRJUzJORGRHWXphU3R1TTBVM09VOW9hMFZ1U200MmRsWkthM2hVVEc0elRUZHVXbU50YlV4WFZVbEhkRGRzUlc4MGVHcFhUVW9yWTA1WlJRcG5TVkpzZEd0NFZrUnVZV0p1WkVobGFpODBVWHBsV2pSU1FqVTNjV1kxUmtodGRWTlVaVWhpTTJkc2QyUjNZbGxwTmxNMFpIZ3hNVE5RV2xKQ2EzUkRDblF6VDJGdWFsVkNZbEl4V1RSM1NFTTJVbWRsUm1WelNHVk9lVlJZU25kQ1ltMDRNVWw0Ylc1M2QzTjBZbWhUTDJSYVRWTXhXRzFIU1VFMGFqRjRObWNLYW1aWE5rdEtSMjlTYUZNd2R5OVFjMjgwVWtoMksxbFVZVFp6UzJoSU1WUnBjWGgwVEVWdmNteE5UbEF3VW5rNFVsWnFPRU42UXpGSU16ZFBPRlJEZVFwNVdraDZUalpaWXpVd1ExVjJWbTlFYVdadFZVZHdiaXRoVXpsNEsxUXdhbHB1YUVneU9WRnZNbEJOYmxneFlsRlpaazl6YXpkUWJEUndOSFF6T0U1TkNsbHhhSGhyYXpOeVlUSnFhazFOVGxRdk5rRm1ZMmx2WjA5alVtRlljbmRQY1hKdVVFazRNakphV0Vjek9HcDRPRGhPWVdwWlRtcHNkRFk1VkVocU1sY0tRM0I2TlZkNFkxQmhORk5ZWVZoaWEzTkNjbkJJWkRkMU1WWklSVEphV2xKbk9UaEVZa3RLWW5jelltTmpjemhITnpNMk5XTlFkME5NU1RVMldFRXlXUXBTV2xnMVZ6bGFSVWt3V0VFNVdYRjBTMlp4YTBsR1lteHZWSFYzWkVoNkwyZHdhRTVCUlU0M1lVZEZLMmszZWtkck0yMUNUVkp0TmxadVVtWnNLM0F4Q2tZdmJHTlBUbWxSYlRCRmVFZGthVk51ZVVWc2VIRTFVVk0wWm1WUVlqRlVkVVJrVVV4NU5uTmtURkV4UVVOdVpIcE1SVlJ4VWtOMldITnBSV2RSYm5RS2NXeDNXa3BhTDJsQ2NTdEtVelpqVVZWbFRVWnRVMHhXUWxWSGJqRTJjSGhFUzBKM1RYYzRVVTlaVDI1MFVIaHZRbUZXVlVneVZYVTFkbGhHVjBnMlR3cHlkWGRYYmpSU09YSk5OVlF5TkdvNE1VNWpVamx2YzBOQmQwVkJRV0ZPVjAxR1VYZEVaMWxFVmxJd1VFRlJTQzlDUVZGRVFXZFhaMDFDVFVkQk1WVmtDa3BSVVUxTlFXOUhRME56UjBGUlZVWkNkMDFEVFVGM1IwRXhWV1JGZDBWQ0wzZFJRMDFCUVhkSWQxbEVWbEl3YWtKQ1ozZEdiMEZWVUdReFZVZHdheklLY3pWNU9EVnVkMnN4U1ZBNVZIWTFVWE5WU1hkRVVWbEtTMjlhU1doMlkwNUJVVVZNUWxGQlJHZG5TVUpCUVhCQmVtRTVLM1YxYmtoclowRlJUVlZvWWdvdlRVeFFTV1JUYUZack9VZEpjRWt5UjJkV1RqTmFTR2xqZFdkTlVFWXZWbnB0VkROemJUSkNTbWROVVcxUVRrTXpaMlZRUkRaaU5tcDRVV1JoUnpaM0NqWjVlbloyUTIxSVlXZHhPVGxXT0c1dFNYWTBZeXRvWTNncloyMWFkSGR5WjNGNVJUVklNR054T1V3dmFFcFJSR040VGk5U2VtdHZLelZpU25Rdk5YTUtaemQzWkZwaU1uTlNZVXhCWmpCdGNrOVhWM1JaT1ZkTllrMVZjMU5hUVRkRWNISkVTM2xvT0V0VGJUWnBZMGRwYlhWMVJIcENSamxCTmpOblIxVldOZ3BJTmtGSmIwMDNZVFoxTDJkb1lVbG1hakUxUW0wNVJsUktORVIzVWxKblp6aGlkM05wV2xsQ05rOVZWelJwTjFSd01tcE1kbU5OUzFBd1pGbzVaSE5TQ2pSRldEUXpTSFJ4TTNreE1YZGhlRkYzWWxoVFNETTFSR040WkRWS2JUSnBZVEZrTVUxWlNtMHpZMk5tYVV4NFNEaDZZV2xTZDFFM1RTdEhWVGwxWmprS1YxZE5PVFo1U0VWM2FVZGlWbFJSYXpsTldsSlBTVUkzVlVwTlEwdFVkRXB0VFZvelNqaHdWVkl3TDAxemRuTXhRMnR5UmpGemJtOTNXSHB2WkN0bVZRcDJRWE1yYTAxbFQya3Jja1U0TkZGNlNGVTVjMjFtZDBSR2NGQmtkVmR2VGpGM05FcEhLMjFWZW1oRFVEUTFiRFJHTkZOQ2IzWkxjV055VTFvMVIwcDFDbVZ3VVdsUVJ5dGFSM1UyTVVsWFJtc3dXVzUxT1VGS1EyUjJNbGsyUlRKTlNtbzJja1JhT0c5T1ExcE1NMVpFT1NzMGVEWlBWRVJLUm5sU2JtUktUMUVLTVdaVmJHOXJjaXMxZVhoak5tSXlTWFZ4ZHpoRmVERnRNVzltY1c5M1FrNUxlSEpFV0hWeU1Xc3JSVzVtZDFweGNuY3dhRGRuVmtaWlMzY3ZiMXBWTmdvck1IQk1iSE5SYm5weVZEVlpNVFUwYmtGNVZHUnFTbTlOZEVwblRVc3djamhTUlV0b1JXWnRXVEJETmtsMVFrVmphbGhCVVhoaVNITjZWRlpyY21sYUNrMTFNbXBaT1dVclRYWllWVFpHWjB0Q1dqRkJTbWhvU0FvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMEZKUWtGQlMwTkJaMFZCZFRKT1lWa3ZWMVJpVDJ3MVdIYzJVWEpJTWtKeVMwSkpTMGhMWTBOMFpqTnBLMjR6UlRjNVQyaHJSVzVLYmpaMkNsWkthM2hVVEc0elRUZHVXbU50YlV4WFZVbEhkRGRzUlc4MGVHcFhUVW9yWTA1WlJXZEpVbXgwYTNoV1JHNWhZbTVrU0dWcUx6UlJlbVZhTkZKQ05UY0tjV1kxUmtodGRWTlVaVWhpTTJkc2QyUjNZbGxwTmxNMFpIZ3hNVE5RV2xKQ2EzUkRkRE5QWVc1cVZVSmlVakZaTkhkSVF6WlNaMlZHWlhOSVpVNTVWQXBZU25kQ1ltMDRNVWw0Ylc1M2QzTjBZbWhUTDJSYVRWTXhXRzFIU1VFMGFqRjRObWRxWmxjMlMwcEhiMUpvVXpCM0wxQnpielJTU0hZcldWUmhObk5MQ21oSU1WUnBjWGgwVEVWdmNteE5UbEF3VW5rNFVsWnFPRU42UXpGSU16ZFBPRlJEZVhsYVNIcE9ObGxqTlRCRFZYWldiMFJwWm0xVlIzQnVLMkZUT1hnS0sxUXdhbHB1YUVneU9WRnZNbEJOYmxneFlsRlpaazl6YXpkUWJEUndOSFF6T0U1TldYRm9lR3RyTTNKaE1tcHFUVTFPVkM4MlFXWmphVzluVDJOU1lRcFljbmRQY1hKdVVFazRNakphV0Vjek9HcDRPRGhPWVdwWlRtcHNkRFk1VkVocU1sZERjSG8xVjNoalVHRTBVMWhoV0dKcmMwSnljRWhrTjNVeFZraEZDakphV2xKbk9UaEVZa3RLWW5jelltTmpjemhITnpNMk5XTlFkME5NU1RVMldFRXlXVkphV0RWWE9WcEZTVEJZUVRsWmNYUkxabkZyU1VaaWJHOVVkWGNLWkVoNkwyZHdhRTVCUlU0M1lVZEZLMmszZWtkck0yMUNUVkp0TmxadVVtWnNLM0F4Umk5c1kwOU9hVkZ0TUVWNFIyUnBVMjU1Uld4NGNUVlJVelJtWlFwUVlqRlVkVVJrVVV4NU5uTmtURkV4UVVOdVpIcE1SVlJ4VWtOMldITnBSV2RSYm5SeGJIZGFTbG92YVVKeEswcFRObU5SVldWTlJtMVRURlpDVlVkdUNqRTJjSGhFUzBKM1RYYzRVVTlaVDI1MFVIaHZRbUZXVlVneVZYVTFkbGhHVjBnMlQzSjFkMWR1TkZJNWNrMDFWREkwYWpneFRtTlNPVzl6UTBGM1JVRUtRVkZMUTBGblFYTjBVMDlZZG1KMVUzWktSbk5yU0d0TU4yeFlSamRsWmtwWWNUZEZSalJ5UlVsMWIwVkhRbmxSUVROT2JuZzRibXhGVkdWc05uRnBSQW9yY3psaFkweDNRMkUzU2xkdGVXczFURUZHTXpVNE9YRTVSMVJYYkV3dkwyOXRObGx4VFhWMk9UWmFNa1JHVUU5RVJFdGtZbVpvY2sxdVRXcE5kRGhTQ2toa1dISlFOakZLWlV0VGNHcElPVWRVUVRCWGVuUXlPVGx4TjFGUWFFTm9kR3gyUlhkTUt6UlRWemxNVm1GdE16WlFPRGRaYzFReGVqTkxNeXR0YUdZS1J6TjJaa2RSWlZwMkwwWXJRamQ2ZVcxaEwyRmlaMVV6UTJWUFkyVjNaMVJNWXpGTlEzaDViSE00YVRseGJ6TkVlSGQ2VkVneFpTOUVTR1Z0UjJ0V2FBcDZPRUpsUjJOemRGSlJTRmRQWTJwSmEzSkthamxWYkVOWGFrRk9lak5wVEhsdFNWTXJiVWREVnpkMVJXRTNkR1ZNVjJRMWFWRjRWVkJ5V0RObFRFMU5DbE0yTkVST1QwRnlOblpoUlhGRVMwRmxkV1JoUkdkek56STRhVnBUUjJOTVNHaENLMlZFV2s5dGJtRXhjWEpOY1c1NFRtRnBlbG8wUm1sVVRWaGFaVEFLVEVWbVlrUllkWEZEYUhsS1RVRTRUMWxEYlZjMVRrcE5TekZ2UTJzMk1GWktjRVJ4UjNONmRsbzBWMk5SVW5JMFEyUkdabHBTVTBwdVYyNU1kVTVsYkFwc09UUmhkMUJsZUM5VWVGWnpkbUowT1hoM1R6WkVRa014T0ZGdmNWUlRVakpKWnpObk5XSkhZMUZZVTJ4WmJrZ3lkM2cxT1VFd1NHODRjbkpZTVVrMENrUm1NRTExVTNvMlRHOU5jblJ2TmtkNlJ6RXlNMG93Y200d1QwOHhlVWhTZG05WGFtSlBkaTlhVGpkb1FYaE9iMXAxVHpCUWJqVk1OR0pySzBsMVRVRUtNMmwzVTJWNVpFNXFMMHR6VmpodFNuWlVjMmRIWldsT1IzQXZVbFpNZVhZNU1reFlZM2xEVDBocVRWcEZVWGx3TUZkc1dFTnRNVnA1ZWtSUWNDdE1aUXB3TWxBeFp6QXpWWFp4V1VOSlVtdGxRVlZvU2xCR1UySnBhWFJIZDFaWldYRk5jbkZYTUhSTGQzUjZTazQzVjAxWlVVdERRVkZGUVhsclVsSnlWMUpJQ21RdldsWnRNMHd2VFVwMGNHbExiMFp1T0V4bGNWVlBjRlZETm5seE9YVTNNSHBrWkZCdGJuVktlVlZxUWpNclpscG5XV2czVEdGVFZsY3lMMkZ3UXprS1IzTkRlR3hCVm5kdWJUUjZUek5pVDFjeVkzQklSR2MwVHl0aGVVRjJjMHR4VVRWeFpYTldhVEV3YWk5Tk1EWlFVaTg1ZUZWdVlVUnFkRTR6UjNJeWRncEVPV1ZoY0VveFNFZHJZekJJVjFVeUwySnJWbVJYVTJsWFpXNUdUamRKUTBZeWFWVTBNekJ2Y2s1b2IxRmlZbVJVYURkMWRXWllXR1psYWxCemFYSlFDbVZZVG1GcmJHdHZVV3MzT0UxNlJFbFRRakp2VjJoM09VNWlSV2REYUdvNGRDODBiREZNZFcweGFUZDVUbHBYVkdzclYyRkZibTlQYUVSQldWcGlOWGNLUkU1blJtdEZkR2w1WW5NM01FRkRjMFExYmxwUFJHaDNWVlZUZW5WVlpqYzJabXRxUlU5NmRDdFpLM0pNYms1TFdtTnZOMko0YUhSSVlqTmxibWwzY0FwalpYWkpiVW96ZGxsaWEyVjZkMHREUVZGRlFUZFRjM0ZLVm10SE1tZzRPSFZTTUhaVVlWUlRhMHByTWpKbWRIcENLMmM1UTA5WGFYaG9iM2t6VkVveENqSjNPVGhUYkRseU0zTkthWFJZYURCYVluRkJaMDkxU21sbVMyNUthRXRMVHpOaFdsTjZObFUxYWpkV2NrZzJWMHgyTTFkTE5uUkRkQzlGUlhsYVRFa0tRVXhtYjA5SGVIWk5heklyYlhkeFRsWTBiUzkwY1ZGTE5WTlRZMlpZVW1KWVJWSmFibko0ZWtoellUaEhTVmhTUjFsSVpsZDNkbEF4WlN0YU4wZDBZZ3BqZUcwd1VVUmFXaTlKTVRReWJuSjRZWFV4ZGpKc1Z6WjJjWFkwU1M5WVpEWk5lREZXVVhGaFNFbzJWSGxFUlU5aFdqTklTekJGVm5waWFWaFFTUzlIQ25jeWIyUXdlazVIT1VOMFUzZE1SbWs0T1Zkc01uSkhRazVYUXpGd1ZEaGhkMVZxTlZBd0wxSnRXVWhEU0ZScWVtOWhhV1ZCUTFoVE0xQnVaQzh3VWpVS2RuZHBZV1ZCY25acWNtRTFXR2t5YzJkT1oyMVBXVzl4WWtFMVJUSlFSRFo2WVhOblJVWkVOMmhSUzBOQlVVVkJkRGhvZWpOdVUzSmhOV3B6UjBJM1dncFBURlU1YjNWMU5YbElkM05FVDJod2R6SXhjVGg2Vkc4MlVGZzFVakpxUVRrNWFVdG9OVzE1Yml0VllXeG9ZMlI0TTIwNE16TnpPRWRFTjFkSE5GVkdDako1Tms5YWJ6SkJNbmhTVmtOcmMyRTNXRXRyWkVscVpVZDBXRFpqYVhNdmMwSlhibkpHY2twWVkxbEJiR05yVW5GSmEwVlJPSFoxWTFKeFlXSk9RbklLWkhKclZEVldSeXROWWxGdGFERkJNVXBFVjBFclUxcEtUMFJRVTJSU1IxbEVPVlpwYUdKTksxTnRiRmw1UzJSVlkyaGtSVUZOVG1SWFUwVjZVSEEyT0FwTlpWQkxla1ZwWVRoemRtWXlSME52VkZWNmRuRTNNR2RuTlROMGFXVnZibTlhTVhWbWNtMHlTMnRCU2xOd2FWVTRRVGg2VnprNE5YVk1TR1l2UldoRUNreHpSblJwTkZoUk1GTjNaR0o2VURRcmFEZFBibkFyUm1sbllsSnJaVTR5U2pkblpUbHJibFJaT0Vod1ZuWjRLM2xRVG05bU5XWnZORXBaTkRSc1RTc0tNbnBDTVdsUlMwTkJVVUZUWkhBdlRGWkphbmxDYVdsSFEwd3lZaTg0TjJOeWRrUlZUek13VkVOdlRtdzBLM0YxU0ZoQlJWSkdPV3RrUjI5eGNVRTRVQXAzYmxwSmVHd3pXbHBhUjBoa09EWXpWRWx4ZVhKb1RGRXlhMVJKTVU1Q2JYUkdSMU5KYWtONU5qbFFNbWhzYVd4V1ZVRlpTMVJOYTNsNWVIRTJRbGx2Q2tKdFJtMVdTVmcwV1V0TWNVcDNPSEZGTlZkVVRuSkhLMFo0ZDJFdldGUkJNbkIyWlVaT2VsbGlXVWhxTlhGSFFtVkRkVEZsWnpSbFoyTjJSV2t2WVhBS1kwdEpUamhFUWtoTlRVUmhZMGcwWmxKbFowWmtTMmxZTjFGTVpGbG1kbkJoYm1JMmVVMWlhMlJuU1VKWVoyNURaMFJLVmpWeFQwVndkMmN6V0haRFVncEtZVnBHYkdkdGMwUmtMMmhxU25kUlpXSjZjVnB0VmtFd2RIVkZhMFZSZVM5VFZVNW1WbVZMUzBWU1ZXOXdNSFF3Y3pONmFETk5jVFpvUzAxalpESkJDbU5NTUhoc1kwTjFUSGxYWVhGVFZIZFZTbEZRYURSTlpUWTRiVTVQTmtNMVFXOUpRa0ZJYVhrNFRFZ3haMHNyVDJWMk1USlZUa1JVVlhaQllURlJSbUlLVkc1NGFFbDJXakJIYTFvdlZrbHdZVThyVURCUldGQlRURzh3TkRGbVIxUnBkRm80YjBSU1NuaG1ka3h0ZEdwYWJrTjRSRFZJU21obmEyazRlVkZKVHdwbFowRkVLM0JGU2k5alprTkNTbWxSU2k5dGJFRm5hbnBxVXpKc1NrTlFiMlprY0dGWk9HcE1kWFJZVFRoelluUXpNM0ZrVmtZdlVFNTFjVXhpYkhKMUNqbDNhbmhGV0ZkcWRXTkxTVmxFWlVOSWEzWlFWazV4YUVVeGNuRnBVRlZPZUd4MU5GaFVXRm96T1ZSNFNEWjNkMVU0Y0VKelJsTllMM0JGVkdWNlNVa0tUWEEwVW1JMlZFazVVeXR2YW5rMWQwNXdhekZpUVhwd1VXZ3lRMmR2VUU5VlJFbGtRbXBST1ZOcFpIRm9PRGt3VUZGUGREQkJMekpqVFhsdFZrVjJUUXBGVFhwNlJqUkpTbGhWWVVWalFtdHhSbHBDTVdOVWRXVmFMM0pSUlVZNU1qUlNiamx3Wms1TGRIcG5iWE5YUm5CWFQydHNNbFEyV0hGMmF6MEtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogbmt3NjVoczZuMGU4a2JscmpwdDN1dWoyZ3Y4bmlydGJlOGkwZmFjemNuaHptcGRsbzFqdHdwcnIwdnByMzExaXZ5bTB6MWp0bzZidmsyaGV6NTJiZGkzN3Z0aWVhZGF0bm14em5qNTM4emw0dmI5dHltc2gzaWhoNXB1cDkwcmQK\"\n + \ }\n ]\n }" + headers: + cache-control: + - no-cache + content-length: + - '13072' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:15:12 GMT expires: - '-1' pragma: @@ -1396,6 +3005,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK @@ -1407,80 +3018,70 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks list + - aks scale Connection: - keep-alive ParameterSetName: - - -g + - -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-05-01 response: body: - 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 + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-gs9sw6cr.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-gs9sw6cr.portal.hcp.westus2.azmk8s.io\",\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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/e715ccc7-07d2-4ed5-9829-9cac7dcd3435\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: + - '4252' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:15:12 GMT expires: - '-1' pragma: @@ -1499,87 +3100,106 @@ interactions: code: 200 message: OK - request: - body: null + 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 AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_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/e715ccc7-07d2-4ed5-9829-9cac7dcd3435"}]}, + "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": {}}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks list + - aks scale Connection: - keep-alive + Content-Length: + - '2860' + Content-Type: + - application/json ParameterSetName: - - -g -o + - -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/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2023-05-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - 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 + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-gs9sw6cr.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-gs9sw6cr.portal.hcp.westus2.azmk8s.io\",\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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/e715ccc7-07d2-4ed5-9829-9cac7dcd3435\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/42fe489c-685f-4611-8603-376288ba37ee?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '4250' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:15:18 GMT expires: - '-1' pragma: @@ -1594,6 +3214,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK @@ -1601,77 +3223,33 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - aks show + - aks scale Connection: - keep-alive ParameterSetName: - - -g -n + - -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/42fe489c-685f-4611-8603-376288ba37ee?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\": \"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 + string: "{\n \"name\": \"9c48fe42-5f68-1146-8603-376288ba37ee\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:15:18.7172845Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:15:19 GMT expires: - '-1' pragma: @@ -1693,36 +3271,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 --file + - -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: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2023-05-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/42fe489c-685f-4611-8603-376288ba37ee?api-version=2016-03-30 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ - \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSU1dKSlNWTlNSVWg1ZERSalMzVlNkMGQzWlhseGFrRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxVVVYaFBSRUV6VGtSYVlVZEJPSGxOUkZWNlRVUlplRTVFUlRSTlZHTXdUbXh2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVSUENpOUZhV2d5TTBSNFRtMTRVMkpMUXk4eVYzQjFWRXgzYlZwMGFGWjRNbTVwVTBSdE9YWTFWMlpoWkdKVFRHRTFiWE4wU0ZWT0wzSkdUSFo0YlN0UVdXWUtWRlZWUkVveVFuSm9LMUJOZDBOT09IZDJiM2x2Y1ZKR1NFdFZiRVJGT1VNM1ltbHFWRUZwTXpOUVdsRkNhMjlLT1d0U2VEbHlNelUxUkhWbmJXMDJaUXBZV1ZFNFNYQnRMekZLUXpkTlFuaGllV1I1Y0Rsc0wwbENaVFk1Y2pOQ1VtcFZiV2R5TURkellXcFBRemhET1RKMmNDOWFRVFJYWjNOdUwwcE1kVmRJQ25WdVNrNVhOMnBtVldOcU0zbGFZVTlHTkU5bFoweHFkMWhRVWxoVFMyOUdWVkpGZG1kVEsyTjJUMnN6UjJsWVkwMVNiak5RZVdkMVprbENRM2w2Y3pFS2JFZ3JaMmREZFdGclZHMVpSelo0UTFGV04wOXZaVmxwYkN0cVVsVTRRVWhOZVV3cmNqazNZekZZWWpCV1FWWnRRbUp6VkVGVFJsSk5jRTlJUTNCUlVBb3JVMVZTWjBsNlVYY3pSbkJOZWxCaVoyVldOMmRLTVd4NWQzaDJjVUZTY2pad2JVcGpObEl6V21sMFRVOWlXa1J4VVhNM01WQmlUelZMZVhGT1Nua3JDbmRZT1U0MVRXUm9ieXR2VTI5Sk1sZzFUbWR4Y1hWV2NrZERNVmRGTVZsck16Wk9SMFk1TlVNNUwwZ3JlRWRQZDAxdVNsUnJVMEZCYjNoSmFIaHliSGdLUjFnemRrUk1WVlI2T0hGRVdqRTVMMlYzZURGNFZqUkhTWHBxYWxZd2VXZGtXalF3V1d4dlFWSm1SRmwxV20wdlkzUXpUa3AwVkZnM2FUaEJRbk5HUmdwbWJIcDVNSGxyUTBvck1HZHJWblU1VURsTUszZHlXRzB6U0c5dWNXSlZiRVJ3Y0dSM1kySXZlbWQ0YzJsU1oyeFVOamRCV1daRmR6UkhUazkxYVVFMkNrNTNWWE5LZDFsbVNHUlpZakE1YTBoa1EwdG1kWGRZYkZkNFJsTXpOMUYwYW5wTE1tMXZkMWs1Vmpod1ZsVnRjVXhzZFZGRGR6SkpXWGhoVFdsU1JYUUtOR3BVY0dOaFFqUklLMVo2VFZKb2VrZGlkeTlKTkd3dlVraFBTa016Y0VkTmJWbFJNRzVZZW1aM1NVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWbGF6azNkblZvYlRZMFZFUXdPR0ZEQ21KdGJtTlhla3RhWWtwRmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGRVFXbFNLMFZvY0RCSE1IUlFVSEpTWkdrNGFUTkZOMmRoWW1ZS1kzUnBUVTFEU2pCQ2JHczNjWFZIVW0xR2Ixb3ZhSGRNZFRoVlpYTk9RMnhRUkRKQlF6SjBhMnBVUjFJeFdqa3dUWG80Y2t0aE5Vb3ZiMHBVVFZWd1JncFBaRzU1TTJ0UWFsUlVPV3h4Vm1wNGFYRk1WMlZRWWtjck5IbE1ZMHB6S3pKaFZsWjZTRmRIUzFoMFZHSmpVSE5UTWxKUE5rbzJhazVNYmpaT2VYaEpDblZYVm1acVowOXlNV2hqZUZoaWNrcE1ZazV3YVZsSWVqWmlaMFJQT0ZreEx6VkxWVlJSWVhRNE4xaGtRMUprWTJoVGQzZHJiVXRRVm14MmMyMXZkemtLWkhFdmFsWkRSemhGTDFoSFduQkZSV1JVU0haU2FVRXlSMUk1VTBad1NGWnNPRUZuTVM5cFRITXJVRkpwWkVzcmNUWllXVVpEY2paelUzRlpVMlE0YndwS01GZDZhWEpITUUxb1pqSkxNMk5LV25ObGJuaHdRbk5hZURGU05GZEhibTVCTlVGQlpGVlhaV0ZhWmxwWVEzZ3pTV1Z3Um5KNllXVXdZVk55VDBwbUNtdzROMk5oYVdGT05FTXljMW8zYmxwclZIRk5abGs0VFRaamJ6UTRPRlY2Tmxod1YweHFkMUF3UmxOUlMwRlJXVEZUUVdwbVZHWnZMMWgxVjFsNk1qUUtLM2RoVEM5dFZuQnJUMWRWTVVRelJVVlRkSGRhTmtkWmRYRlViRTAxYlhad1NtSXpiVzFJYUZwdWNuSTVWVk40VFVkS1UyTlpSVVJGTjNJMmVGWXhNd3BrVm5aUmRFbEVUVFk0VGxkVWVsVTNMM2Q0YzI4eUsydDNWSE5JWTJSWWQwUkpLM0JtUjNOVlZXeEhXRlZUYjNwaVIyVlNLMUU0U1RKek5tbGxlRWxOQ2pabFp6VTNURzByUzNOaFpIUk1VemgzZVZsM2Qwa3ZlRk5HU2tGM1RYbENSakJZY1dsa1prOVJZMGgxTkhaQlpXSXlOa2RvZFdoM2FHb3pXRGx4T0hvS2VEUlhPRXc1VUd4NFdXWTBhbTUyYmxKSE15dGpOMGRtTDNwRVMxRmljMnhZV0hSNFR6bG1URWhJTjNaNFZtMDVaMFkyU21ORVNtSlZlVWhPVVhWWlZRcHdTMmQ2VVdsR1YyYzNRbFZhS3l0UkNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc2NjZnJseWItejI3ODUwZ2QuaGNwLndlc3RjZW50cmFsdXMuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3RvcmdkdHcKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3RvcmdkdHcKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3R1ZHVieWRiaDRuX2NsaWFrc3Rlc3RvcmdkdHcKICBuYW1lOiBjbGlha3N0ZXN0b3JnZHR3CmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdG9yZ2R0dwpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3R1ZHVieWRiaDRuX2NsaWFrc3Rlc3RvcmdkdHcKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJYWtORFFYZGhaMEYzU1VKQlowbFNRVkE1WkdSU2VYUmxRWEZqWldoVlNtcEhaVVJKZUd0M1JGRlpTa3R2V2tsb2RtTk9RVkZGVEVKUlFYY0tSRlJGVEUxQmEwZEJNVlZGUVhoTlExa3lSWGRJYUdOT1RXcE5kMDVxUlRCTlZHZDNUbnBSTWxkb1kwNU5hbFYzVG1wRk1FMVVaM2hPZWxFeVYycEJkd3BOVW1OM1JsRlpSRlpSVVV0RmR6VjZaVmhPTUZwWE1EWmlWMFo2WkVkV2VXTjZSVlpOUWsxSFFURlZSVUY0VFUxaVYwWjZaRWRXZVZreWVIQmFWelV3Q2sxSlNVTkpha0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRkZSa0ZCVDBOQlp6aEJUVWxKUTBOblMwTkJaMFZCTUVoTVZFTnRWMjQ1UWxZeVUyZEhaQzlSTlM4S01taHROMFJSVUROTFQwRjBNRVprUXpOS2EwaEpUWEpuWlVKblExbERiVWxxUmtKclVtNURTR3hOYzB0bmVVRmhUMk5zVldGS1MyUlpVVnBYY2tZeVpBbzFZVlZDU3k4MWFWWjJOWGg0Wmk4d00xWTROVzVoTUZoNk9Vd3hWR2c0VlZVemFFVTFhVlJyY1dkclozTTBhVzFtTlhKRksybEtWWFV6VURJdllYWkVDak5HVDNCbFVWZFliR1JZVnpCMGVERjFkR3BEYTBsc01rOURRbGR6VVd0T04zWnpjbVZoTDBwRFozazVUR05uTVhsMGNERk9RVko2Tldkek4xTlRMMG9LWkZsSmJtaFZRVEJPZVN0aE9EQkZLMDVMUlhGSGFTc3dWWGhzT1hneFF5dGlWRU5KZG1wVVlVNUZVV2hLUmxwVVFTOUpPV0o0VGtZeVZFNTZRMEpEYXdwTE5tVTVVVWczVlVVdlp6VldLMmxhUlZJMlEwNVFTMlZzZFcxVmNEbFZjV0pXVEZwMFNFUXJWMFY2TURGT1NVRkdkRTlKTVdKaWVUaGtTQ3RRV2paRkNucEZOSEJQU0d4MmQyaFdVQzlOYVRVMUwySk1WV3BEVjB3M1JVZEVabUpIYXpCU1kybzVWSEJuTUdoUVJXVTJMekZTSzFod1VGSlBTMmRLWjBzclMwY0tiSEJMY0M5T1RqbDBhamMyZUcwemNEVXhhVVI1ZDFSaE5VVm5XR3hhYjBsRWVEaFJaMjlqVW1sS1FtdFRWR1o1UTJGRlVqaHBhM29yUlZaUFUxaHNVUXBWYnpaR1IyOUNZVE5CZG1NeGIyMW1jMkpIT1hCREt6TndVVXBpV1ROSWJWVnZSbGdyT1M5amEwMWxTMVoyT0hvM2JFdE9kQzk1UXpaT2FVSlVRbnByQ205WmIyUXJSRkIzY21KTk1rODNlbmMxYVZGc2NEWkNRazV6Y1dad1RsZEhVVFJXWmpCYVJuUldiV0ZGVUc0eVN5OTFaMWwxU25VM1NGcHlUWE41ZDBnS2JuZzVaMUY0VWpoNE0zRXJjVlJGUld4eWN5c3hUVGxUZWtSMGJWTXZTVkpRTUU0MWNYaDBOMU14WTNOTlkweFhTbGhzY3pjeGRpc3JlRE5DTDNaSmFncHBOVFF4VHpsWU16TXlZVE5rYUVjNU9UUkRTVU5hUlVOQmQwVkJRV0ZPVjAxR1VYZEVaMWxFVmxJd1VFRlJTQzlDUVZGRVFXZFhaMDFDVFVkQk1WVmtDa3BSVVUxTlFXOUhRME56UjBGUlZVWkNkMDFEVFVGM1IwRXhWV1JGZDBWQ0wzZFJRMDFCUVhkSWQxbEVWbEl3YWtKQ1ozZEdiMEZWWldzNU4zWjFhRzBLTmpSVVJEQTRZVU5pYlc1alYzcExXbUpLUlhkRVVWbEtTMjlhU1doMlkwNUJVVVZNUWxGQlJHZG5TVUpCUmpVeWRqWXhRbk5tV1Rsc1ZYbFpNVlI2TXdveGJsaFljbWMzWjJSamQxbHpXR2t2YTBaTU9UZDBRVGhQY21oNWFETTJSM3AyTWxGdlNGUkdXV2hrU0doT2NYYzFWbkZ2Tkd0TVMyRk5ObGx4VjB0YUNuUTVXVnBGYlROVFZqaEtZelI0VTFabVdXa3hURFJNTXpKYVJFZGtVa0ptYmtaRGQyOVhkMHRTVW1nNGMyeFVkVFUwY1ZkU1FVcHlWR0l5UkhkeFdVb0tTMUpoYUVwWVQydGxaVGhWWm1nMGJFY3lUamRYTW01WU1UTnNTV3hxTVVWb2NXeHJOVlJpYmxsVGR5ODJTalI0Y3l0eVkzQjNhMFJ0ZG5aRWFETmhOQXBMUjFSRU5HNTRRM0ZIWWtKS04yMTJOR0pUYVdSWmJqUklTMGRhT1RoRWFuZE1OVkF3U1VZeFZFbGlNazV2YzI5aWFWWlhjaXRoV1VKVGFrYzRUM0ZwQ2pWNlFqVndUekpsT1ZJclIzQlBSMnRLYkVKTU9GaFdTbGxVTjFSU2VUTm1ObE54ZDJKUWVGTnFZelJ0Wkc4ek1WZzFZVkl3VUhONVJWbE5NM2cxUkhvS1dEVm5TblpNWWpaRlMyNUVlVU5DT1M5TlRFTlRTMHB0YTBoUlVFWnBjVkpHT0hKemRHcFZZMk00ZG14b1RucHdRMFZvU2s5bmMycDNLemx2UWs0MlRRbzRVV1JPUzBWS01HbENlV2x6ZVUxRVFVTjNaVTVZVTBVME1GZHJkV1JsZG5kelltSmhTVWt5Y0ZCWmRrODFNMnRQY1c4NGF6ZFZlbU5QWjJScVdISmtDbVVyUzJneE56ZGlWa1JKVEhoTmRVZExkRzRyWWxSU2JIbEJOa3BZTTFSM1RXd3ZNSG8xZFRkVFEyd3JSRU13V0hoS1ZHOUJOVlp5TTJKUGVFVXdTbllLY2xBdmFHTlljbFpTUmxkMUswaGFiM1JIWmpScU5EZGhTRFpRVFU5MWNqa3ZXWE5GVkM5SmIwcG9UV1YxUTB0M1NHRjRNV2x5WWpGMVpsRnNSR2h1YlFwcWRVSXJaeTlMZVZOUVVUTkZMM3BxWW1kRU1uQnhhVEp2Um5oamJsTlNUa1Y1UmpSSE1sVkRla2N2VFcxSVJ6TjVPVEZDVUZOcUwxQjRaRTVqTUVjekNtNXNRelpzTUdsQ05XUm9SR1ZPY0ZoR1RWQllUMkpWUWdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTbmRKUWtGQlMwTkJaMFZCTUVoTVZFTnRWMjQ1UWxZeVUyZEhaQzlSTlM4eWFHMDNSRkZRTTB0UFFYUXdSbVJETTBwclNFbE5jbWRsUW1kRENsbERiVWxxUmtKclVtNURTR3hOYzB0bmVVRmhUMk5zVldGS1MyUlpVVnBYY2tZeVpEVmhWVUpMTHpWcFZuWTFlSGhtTHpBelZqZzFibUV3V0hvNVRERUtWR2c0VlZVemFFVTFhVlJyY1dkclozTTBhVzFtTlhKRksybEtWWFV6VURJdllYWkVNMFpQY0dWUlYxaHNaRmhYTUhSNE1YVjBha05yU1d3eVQwTkNWd3B6VVd0T04zWnpjbVZoTDBwRFozazVUR05uTVhsMGNERk9RVko2Tldkek4xTlRMMHBrV1VsdWFGVkJNRTU1SzJFNE1FVXJUa3RGY1VkcEt6QlZlR3c1Q25neFF5dGlWRU5KZG1wVVlVNUZVV2hLUmxwVVFTOUpPV0o0VGtZeVZFNTZRMEpEYTBzMlpUbFJTRGRWUlM5bk5WWXJhVnBGVWpaRFRsQkxaV3gxYlZVS2NEbFZjV0pXVEZwMFNFUXJWMFY2TURGT1NVRkdkRTlKTVdKaWVUaGtTQ3RRV2paRmVrVTBjRTlJYkhaM2FGWlFMMDFwTlRVdllreFZha05YVERkRlJ3cEVabUpIYXpCU1kybzVWSEJuTUdoUVJXVTJMekZTSzFod1VGSlBTMmRLWjBzclMwZHNjRXR3TDA1T09YUnFOelo0YlROd05URnBSSGwzVkdFMVJXZFlDbXhhYjBsRWVEaFJaMjlqVW1sS1FtdFRWR1o1UTJGRlVqaHBhM29yUlZaUFUxaHNVVlZ2TmtaSGIwSmhNMEYyWXpGdmJXWnpZa2M1Y0VNck0zQlJTbUlLV1ROSWJWVnZSbGdyT1M5amEwMWxTMVoyT0hvM2JFdE9kQzk1UXpaT2FVSlVRbnByYjFsdlpDdEVVSGR5WWsweVR6ZDZkelZwVVd4d05rSkNUbk54Wmdwd1RsZEhVVFJXWmpCYVJuUldiV0ZGVUc0eVN5OTFaMWwxU25VM1NGcHlUWE41ZDBodWVEbG5VWGhTT0hnemNTdHhWRVZGYkhKekt6Rk5PVk42UkhSdENsTXZTVkpRTUU0MWNYaDBOMU14WTNOTlkweFhTbGhzY3pjeGRpc3JlRE5DTDNaSmFtazFOREZQT1Znek16SmhNMlJvUnprNU5FTkpRMXBGUTBGM1JVRUtRVkZMUTBGblFVd3lVWEoyZHpGc2NHZFVURXBCUWtOSWVYRlJkblJHYVhsWk4wSlFjbGhhVGt0cWFVNXhNVVZDV25saFpFUk9hRTUxVHpabE9IYzNVUXBDYVU1bGNrc3JOMUpxTjFoWEx6aHNUbTVuYkdoTFR6Sm9iR1Z6VEhSWVJFNHlSa1pwYnpkVE4zcHdkWFp5VUdGd00xUTRRbWRUVmxoVFZHUnVZVGxyQ2pKWFNEVXpRM293Y0RKaE0xTkJaVGhKSzJ4dVFXazVaWFZpTWxoTU1WbHdiamg1S3pSdWJXdFpTVEU0WjJ0bFJYbGFkR3ByTUhJMlNYZGhZM1EzTHk4S01tRk1NbkJGVXpSaWJraEpVblZTTUdkWVFra3JaMmg2YmpOcE1qWm9MM1UzWm1oS2VuSllhVGMyYkcxbGJXRllUMGhFY1dKRU9TczNZa3d4U2psWlRnbzBXbXR3WTFadWF6UTVZM2xIVkcxMWNqUjVMM3BNU0ZWSGIxbExVMU14ZW14blNHUTFURlF4Y25relRVVkZlbU5VTlVnclFpdGlRVW94YVZSQlEzVktDbTEzWVVvMVJUTnBUSFJHT0dWeFpVUmFhazl0TVZGWE4xbFBRWGhXYTJvelpGZDFja0UxVTB0dk1EWlFTR2w1UmpkNU0xaGFUSEZZU0ZGU2QyaGlVMHNLVFZkVE1TdFVNVmx4UTFsWGNWYzFkV2REVTNKSVZrZDNjbFJNYjNob1NFRm5UV1Y1V0ZwcmFFRjJibmhqUTNkWFpURjJZWFZSWlZGcE5ucDBibEY2ZGdweFJYbDRXbTlXVFU5ellUbDBWREJTUmxSRlJraDZlaXRhUWpoUFRXMW5RakZFSzNOeWMwWnNiSEJZYlVOQlNUTkNXWHA1VVRnNGNVVkpObVJYV1dGVENuUlpPSEJWT0ZGa09DdG5RVmxXUTFrMlZYTnNaMjVTWlVSd1JVUllTMUJtV0UxRVVtaFNOa0k1UVZOaFZtaG1RWGxuTWpGbVVXcFhTemhIUTBwUE9Vd0tSRXRzTlM5Mk1UaFJkVk5MTkRNdk4ySjFUa1JKT0doT1NuY3paMDFMWVRCMlZFdFFRV05oT1VoSU5XMTFSVVpGTjNkUmJWQkRiREIyY1RsTE1IaDJaUXBSWlVGWlRrSm1RMVF3TkdsTFNXWm5kVE5XVFdwV1FtOVBNMGRLYUcxbVdWRk1RWFZ5Y1hWQ1N6VXllREUxYjFNeFVVdERRVkZGUVRrM2JsUlBkMUpOQ2pSV2IwWkxOalV4Y1ZwYVIwNVdNMGtyUkRGSmJHSnlRMWg2U0VaemFVeEVjR0pGUlRscFJ6RkdVMmhHZGxab1YzY3dOamRUUTBSR1UydFZabE51TkZjS1REUXJjM0UxZWpkS2EyWXliRmRTVm5OMVZIZ3hVamRXVlZwUE5TOUNSek5qUWpCV1kycHlPRFZhWlV0UVZtOWhRU3N5UjBKR1ZYbEhaVGN2Y0ZkNlpRb3lUMmR4U2pkelJ6VlRTblpMU1hOSlJEa3pLMW92VjBwQ1lWazNjRlExVTFrNVJWVm1aMDVrYjJKVFNtZGhNalZLWms1cGIxTlRPUzlKT1V0V05HY3hDbmhTUkZaeFRqUm9ja0prY0cxc1RVWlBSQ3QxTkVjeFQyRlVialozUmtzeGRVbFJSRFJPVTI5VllXOXlRVGxLTlhjd1UxUkNhazlCZEZCSGJuZHVjVk1LYXpWTldFOXRaMlptYm5ONWVEaHFTMjVJYjBaUWRXdGtOMlZIV1ZsUlYzTnJOR1F3TmxFeE1UUjVLM3BNTW5sR1NtUnlTV2szVW5FdmNFRjRVVTlvVlFveWREa3ZTVE56V1dwcVdtc3ZkMHREUVZGRlFURXlhMjkyVldKMldVOHZOVWx6VlV4Q2MyNHpWVTE0VkdzM05HaEtNV3RaU25sUFJFRndObTlKYmpSSkNrMW1UMmgzWlhsSFVqVlNLMUJCTjBOb09UZFpRbEJDVjFseVVpOTJWVWxhVWxWelNqUktPRWRDYVdSUWVISnhTblJNY0c1bldsQlVhR1JKYVhOQ1NUY0thVWgxTUN0T01YRnNXRlF4V21SNmJqaFRURlEzZEZaNksxVldOMEZVUjB0UGFsTmxNbEJYTTA1WU9EZHdiRUYxYzJ4aGEzaHJVV1ZZTTJGeFpqWnZSZ3B5Ym5WSFQxSkJRMHRQYVcxSk1GZERaVU4yUzNOemNFUmljRXhKZDFWU1VqVXJibkp4WW5wUWRUWjRha0ZMWm0xNlFtTXZRbmRVY25nck1YVkpiMXAxQ2xvMWJqUlRNVTFTVjFGMmF6SnJRV0pRYlRSa1VqWnZXV1ZhVEdKMmJUaFJNRVJ2SzFOalJVTktLMk5qWlVsaWNERTRhbGh6T1ZrclpFaHJkMUJsYUZZS01DdHNkbXAyVDNWalREWTBRMmcwTlU5dFZ6SXpRM0F4YzBGdmJuVjFhRVJoWTFSa05WUk1RbUozUzBOQlVVSmthSFYyYjBGVVUyaGtRMGt4Ym5KV1VBcHdTM1V6U2tWU2JUZEpVa1lyTWlzNVJIZGhUSFppU2s5RlUzQkdXSFUyUjBsWFJreEliRzlNWms5TllWWlVNRWhWUm1WRVFWWXlVVGhXWVVseFJXcDBDalpCWlVJeVdrczVZWFJEWlROUVp5dDRNVFZXWlRjM1l6bHBORTV3V2xkeVprODBNVkZhY0VjeE1YUmpjMWR0Y2k5ME4wZzNkbGR1ZDA5bFFtWnZkMWtLTkVWd1JtSldRa3MxVlRWVGJ6VkljVGQ0Y21aNFZYSklOSEl3ZHpSclduTmpZMUJyYTA1cmVFdGtWMWczTURWSVZucFpSRWhEY205NmRsWk1kbmx1U2dwV2EwZEtaMVZUWTA5MlltdFNiMEoyUnk5UEszWnlkR0pCV1ZOU1ZYUnBSbXhLUTA4M1pEQkplWGhCVkV4RmFYZG9MMmRHV21NclNFcGxZVVZLTmtkVkNsZERSVkUyYnpoTlUzTnNSMDlwT0ZKcE4xaEVSVFpvV0ZCeVNERTVlRFJHSzNoR1ZXMHdNR1IzU2poemJEVTBOVzhyYW10cU5VeFNNamhYWkdWTVJVb0tjVU5IZWtGdlNVSkJSa05SWWxGTk1XZzBkMHN4U0ZCNmJrTmphVE5HVDJ0NE9VWnRPVGhHWlhGb1JHaFZSSFJ1YlZaNWJFcEhNa05SUlhCdFMzVmhWUXB1UVROalR6RmtWSFZvYkVkNGFHaFBhRGhSUWprMksxb3pRWHBrYWxGUk5rdGlWV0Y1VTNkR01UTmFORVZzUm01blZDc3lOR1p6ZFhkVlYyVnJhVVp3Q25ncmIyTkVPR1ExUkdscGVWQndha3BMY2sxTmEzcFZiblozTVVsQlVXbExSMGxaWjFWUllUQk1lRnBWU0dOUU5HWjBXVmRuWkRrM1NsZ3djMEp3VEVVS1UwaGlRM0JaVWt0YVNtOTJNbUkxSzA5WlZraENlR05yZG5SWlVqTjFVRVJIY0dkQ1RTdHROaTlCUTJ4RU5GbE1kaTluTjNKUmEydGFaQzlQU25CMlZ3cFFabG9yY1ZoSVZTOTZRbmhhYjNZMWNVTlFNa3REVTI4d0sydEVkbU50YzNZeFNUUnhlbUpuVlVGU1luRmhiMjlPVTI1RFVHMDVkVlJEU0RjNE5EaEtDbFpaTWpkT1p6UnZVWEJpWm1KdWNYcHZXalZtUW1VclIwTk1UMVJKZUUxRFoyZEZRVkZUU1RoaE1qUXdjVTVoWlZScGNtb3ZhVEZ3Y1VKelNraG5LME1LUkVKUVNqVnRhVVJ1WmxOTVNtRkhiMDl6TDFSU1VXVXZPVUZ0TlhWRFdHTnZNRko0YVZkc1ZHczVUVVZaVUVNck9FczJOVUp4VXpSb1JYVnFlRTVSY2dvd1ZVOHdSVWRNUlZOM1VFbHJOekZxVEZWbGNqWlNWR2R3ZGpCMlNqTk9NMGtyT0d0emMzVlVablJQWmtWSk1DdEVVRWxpWjFoSWJsZFRURWxWUVZodkNtbzRhbXczTnpWd2JHdENMekI0ZVZscU5HMUhibm95YzIxalVXSlJWR2R4UjBoSGRYaE9VVzFYYUVSdk0xcFBOaXRRZW5KV04yeHJUVTVWZDBSMFdua0taa0o1U1VKWmNHdFNZMGx2V1hsUmJEQnBSaTlpYVNzelYxaE1PVWhoY25SV09UaDVSVVJxS3pVM1dpODJZMU5sVERZNWNEUklPV05GUm5aVllqa3hUQW81TVdWeWJEVjNNbnBIVmpBeU1rVnljMGRFVGtOVFF6VnBOVzFLUlZFM05XWldOeXR2ZVV3NGVYQlFVM2Q0VEZSM01IVTROekZtU0UxQlBUMEtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogbnd2NXpwZmxubXRoYTUwMnNuY2JqMHY3d242YXF6aHVjN2Q1MXZldjNmcTFnbXV0OTQ3aHVlazZ1aGYzYWpkcDk5cGJhdGl6d2swaTE3ZXQ1MHNwNnI4dGZpNDJ1eG1seG8zZ2E2OWI4M3h0YjY3Z3VzY3I1OHdnaHJ1bGl3bW8K\"\ - \n }\n ]\n }" + string: "{\n \"name\": \"9c48fe42-5f68-1146-8603-376288ba37ee\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:15:18.7172845Z\"\n }" headers: cache-control: - no-cache content-length: - - '13080' + - '126' content-type: - application/json date: - - Wed, 14 Jun 2023 18:21:06 GMT + - Thu, 29 Jun 2023 09:15:49 GMT expires: - '-1' pragma: @@ -1737,8 +3312,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: code: 200 message: OK @@ -1746,36 +3319,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.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-05-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/42fe489c-685f-4611-8603-376288ba37ee?api-version=2016-03-30 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ - \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSU1dKSlNWTlNSVWg1ZERSalMzVlNkMGQzWlhseGFrRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxVVVYaFBSRUV6VGtSYVlVZEJPSGxOUkZWNlRVUlplRTVFUlRSTlZHTXdUbXh2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVSUENpOUZhV2d5TTBSNFRtMTRVMkpMUXk4eVYzQjFWRXgzYlZwMGFGWjRNbTVwVTBSdE9YWTFWMlpoWkdKVFRHRTFiWE4wU0ZWT0wzSkdUSFo0YlN0UVdXWUtWRlZWUkVveVFuSm9LMUJOZDBOT09IZDJiM2x2Y1ZKR1NFdFZiRVJGT1VNM1ltbHFWRUZwTXpOUVdsRkNhMjlLT1d0U2VEbHlNelUxUkhWbmJXMDJaUXBZV1ZFNFNYQnRMekZLUXpkTlFuaGllV1I1Y0Rsc0wwbENaVFk1Y2pOQ1VtcFZiV2R5TURkellXcFBRemhET1RKMmNDOWFRVFJYWjNOdUwwcE1kVmRJQ25WdVNrNVhOMnBtVldOcU0zbGFZVTlHTkU5bFoweHFkMWhRVWxoVFMyOUdWVkpGZG1kVEsyTjJUMnN6UjJsWVkwMVNiak5RZVdkMVprbENRM2w2Y3pFS2JFZ3JaMmREZFdGclZHMVpSelo0UTFGV04wOXZaVmxwYkN0cVVsVTRRVWhOZVV3cmNqazNZekZZWWpCV1FWWnRRbUp6VkVGVFJsSk5jRTlJUTNCUlVBb3JVMVZTWjBsNlVYY3pSbkJOZWxCaVoyVldOMmRLTVd4NWQzaDJjVUZTY2pad2JVcGpObEl6V21sMFRVOWlXa1J4VVhNM01WQmlUelZMZVhGT1Nua3JDbmRZT1U0MVRXUm9ieXR2VTI5Sk1sZzFUbWR4Y1hWV2NrZERNVmRGTVZsck16Wk9SMFk1TlVNNUwwZ3JlRWRQZDAxdVNsUnJVMEZCYjNoSmFIaHliSGdLUjFnemRrUk1WVlI2T0hGRVdqRTVMMlYzZURGNFZqUkhTWHBxYWxZd2VXZGtXalF3V1d4dlFWSm1SRmwxV20wdlkzUXpUa3AwVkZnM2FUaEJRbk5HUmdwbWJIcDVNSGxyUTBvck1HZHJWblU1VURsTUszZHlXRzB6U0c5dWNXSlZiRVJ3Y0dSM1kySXZlbWQ0YzJsU1oyeFVOamRCV1daRmR6UkhUazkxYVVFMkNrNTNWWE5LZDFsbVNHUlpZakE1YTBoa1EwdG1kWGRZYkZkNFJsTXpOMUYwYW5wTE1tMXZkMWs1Vmpod1ZsVnRjVXhzZFZGRGR6SkpXWGhoVFdsU1JYUUtOR3BVY0dOaFFqUklLMVo2VFZKb2VrZGlkeTlKTkd3dlVraFBTa016Y0VkTmJWbFJNRzVZZW1aM1NVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWbGF6azNkblZvYlRZMFZFUXdPR0ZEQ21KdGJtTlhla3RhWWtwRmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGRVFXbFNLMFZvY0RCSE1IUlFVSEpTWkdrNGFUTkZOMmRoWW1ZS1kzUnBUVTFEU2pCQ2JHczNjWFZIVW0xR2Ixb3ZhSGRNZFRoVlpYTk9RMnhRUkRKQlF6SjBhMnBVUjFJeFdqa3dUWG80Y2t0aE5Vb3ZiMHBVVFZWd1JncFBaRzU1TTJ0UWFsUlVPV3h4Vm1wNGFYRk1WMlZRWWtjck5IbE1ZMHB6S3pKaFZsWjZTRmRIUzFoMFZHSmpVSE5UTWxKUE5rbzJhazVNYmpaT2VYaEpDblZYVm1acVowOXlNV2hqZUZoaWNrcE1ZazV3YVZsSWVqWmlaMFJQT0ZreEx6VkxWVlJSWVhRNE4xaGtRMUprWTJoVGQzZHJiVXRRVm14MmMyMXZkemtLWkhFdmFsWkRSemhGTDFoSFduQkZSV1JVU0haU2FVRXlSMUk1VTBad1NGWnNPRUZuTVM5cFRITXJVRkpwWkVzcmNUWllXVVpEY2paelUzRlpVMlE0YndwS01GZDZhWEpITUUxb1pqSkxNMk5LV25ObGJuaHdRbk5hZURGU05GZEhibTVCTlVGQlpGVlhaV0ZhWmxwWVEzZ3pTV1Z3Um5KNllXVXdZVk55VDBwbUNtdzROMk5oYVdGT05FTXljMW8zYmxwclZIRk5abGs0VFRaamJ6UTRPRlY2Tmxod1YweHFkMUF3UmxOUlMwRlJXVEZUUVdwbVZHWnZMMWgxVjFsNk1qUUtLM2RoVEM5dFZuQnJUMWRWTVVRelJVVlRkSGRhTmtkWmRYRlViRTAxYlhad1NtSXpiVzFJYUZwdWNuSTVWVk40VFVkS1UyTlpSVVJGTjNJMmVGWXhNd3BrVm5aUmRFbEVUVFk0VGxkVWVsVTNMM2Q0YzI4eUsydDNWSE5JWTJSWWQwUkpLM0JtUjNOVlZXeEhXRlZUYjNwaVIyVlNLMUU0U1RKek5tbGxlRWxOQ2pabFp6VTNURzByUzNOaFpIUk1VemgzZVZsM2Qwa3ZlRk5HU2tGM1RYbENSakJZY1dsa1prOVJZMGgxTkhaQlpXSXlOa2RvZFdoM2FHb3pXRGx4T0hvS2VEUlhPRXc1VUd4NFdXWTBhbTUyYmxKSE15dGpOMGRtTDNwRVMxRmljMnhZV0hSNFR6bG1URWhJTjNaNFZtMDVaMFkyU21ORVNtSlZlVWhPVVhWWlZRcHdTMmQ2VVdsR1YyYzNRbFZhS3l0UkNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc2NjZnJseWItejI3ODUwZ2QuaGNwLndlc3RjZW50cmFsdXMuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3RvcmdkdHcKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3RvcmdkdHcKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3R1ZHVieWRiaDRuX2NsaWFrc3Rlc3RvcmdkdHcKICBuYW1lOiBjbGlha3N0ZXN0b3JnZHR3CmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdG9yZ2R0dwpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3R1ZHVieWRiaDRuX2NsaWFrc3Rlc3RvcmdkdHcKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJYWtORFFYZGhaMEYzU1VKQlowbFNRVkE1WkdSU2VYUmxRWEZqWldoVlNtcEhaVVJKZUd0M1JGRlpTa3R2V2tsb2RtTk9RVkZGVEVKUlFYY0tSRlJGVEUxQmEwZEJNVlZGUVhoTlExa3lSWGRJYUdOT1RXcE5kMDVxUlRCTlZHZDNUbnBSTWxkb1kwNU5hbFYzVG1wRk1FMVVaM2hPZWxFeVYycEJkd3BOVW1OM1JsRlpSRlpSVVV0RmR6VjZaVmhPTUZwWE1EWmlWMFo2WkVkV2VXTjZSVlpOUWsxSFFURlZSVUY0VFUxaVYwWjZaRWRXZVZreWVIQmFWelV3Q2sxSlNVTkpha0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRkZSa0ZCVDBOQlp6aEJUVWxKUTBOblMwTkJaMFZCTUVoTVZFTnRWMjQ1UWxZeVUyZEhaQzlSTlM4S01taHROMFJSVUROTFQwRjBNRVprUXpOS2EwaEpUWEpuWlVKblExbERiVWxxUmtKclVtNURTR3hOYzB0bmVVRmhUMk5zVldGS1MyUlpVVnBYY2tZeVpBbzFZVlZDU3k4MWFWWjJOWGg0Wmk4d00xWTROVzVoTUZoNk9Vd3hWR2c0VlZVemFFVTFhVlJyY1dkclozTTBhVzFtTlhKRksybEtWWFV6VURJdllYWkVDak5HVDNCbFVWZFliR1JZVnpCMGVERjFkR3BEYTBsc01rOURRbGR6VVd0T04zWnpjbVZoTDBwRFozazVUR05uTVhsMGNERk9RVko2Tldkek4xTlRMMG9LWkZsSmJtaFZRVEJPZVN0aE9EQkZLMDVMUlhGSGFTc3dWWGhzT1hneFF5dGlWRU5KZG1wVVlVNUZVV2hLUmxwVVFTOUpPV0o0VGtZeVZFNTZRMEpEYXdwTE5tVTVVVWczVlVVdlp6VldLMmxhUlZJMlEwNVFTMlZzZFcxVmNEbFZjV0pXVEZwMFNFUXJWMFY2TURGT1NVRkdkRTlKTVdKaWVUaGtTQ3RRV2paRkNucEZOSEJQU0d4MmQyaFdVQzlOYVRVMUwySk1WV3BEVjB3M1JVZEVabUpIYXpCU1kybzVWSEJuTUdoUVJXVTJMekZTSzFod1VGSlBTMmRLWjBzclMwY0tiSEJMY0M5T1RqbDBhamMyZUcwemNEVXhhVVI1ZDFSaE5VVm5XR3hhYjBsRWVEaFJaMjlqVW1sS1FtdFRWR1o1UTJGRlVqaHBhM29yUlZaUFUxaHNVUXBWYnpaR1IyOUNZVE5CZG1NeGIyMW1jMkpIT1hCREt6TndVVXBpV1ROSWJWVnZSbGdyT1M5amEwMWxTMVoyT0hvM2JFdE9kQzk1UXpaT2FVSlVRbnByQ205WmIyUXJSRkIzY21KTk1rODNlbmMxYVZGc2NEWkNRazV6Y1dad1RsZEhVVFJXWmpCYVJuUldiV0ZGVUc0eVN5OTFaMWwxU25VM1NGcHlUWE41ZDBnS2JuZzVaMUY0VWpoNE0zRXJjVlJGUld4eWN5c3hUVGxUZWtSMGJWTXZTVkpRTUU0MWNYaDBOMU14WTNOTlkweFhTbGhzY3pjeGRpc3JlRE5DTDNaSmFncHBOVFF4VHpsWU16TXlZVE5rYUVjNU9UUkRTVU5hUlVOQmQwVkJRV0ZPVjAxR1VYZEVaMWxFVmxJd1VFRlJTQzlDUVZGRVFXZFhaMDFDVFVkQk1WVmtDa3BSVVUxTlFXOUhRME56UjBGUlZVWkNkMDFEVFVGM1IwRXhWV1JGZDBWQ0wzZFJRMDFCUVhkSWQxbEVWbEl3YWtKQ1ozZEdiMEZWWldzNU4zWjFhRzBLTmpSVVJEQTRZVU5pYlc1alYzcExXbUpLUlhkRVVWbEtTMjlhU1doMlkwNUJVVVZNUWxGQlJHZG5TVUpCUmpVeWRqWXhRbk5tV1Rsc1ZYbFpNVlI2TXdveGJsaFljbWMzWjJSamQxbHpXR2t2YTBaTU9UZDBRVGhQY21oNWFETTJSM3AyTWxGdlNGUkdXV2hrU0doT2NYYzFWbkZ2Tkd0TVMyRk5ObGx4VjB0YUNuUTVXVnBGYlROVFZqaEtZelI0VTFabVdXa3hURFJNTXpKYVJFZGtVa0ptYmtaRGQyOVhkMHRTVW1nNGMyeFVkVFUwY1ZkU1FVcHlWR0l5UkhkeFdVb0tTMUpoYUVwWVQydGxaVGhWWm1nMGJFY3lUamRYTW01WU1UTnNTV3hxTVVWb2NXeHJOVlJpYmxsVGR5ODJTalI0Y3l0eVkzQjNhMFJ0ZG5aRWFETmhOQXBMUjFSRU5HNTRRM0ZIWWtKS04yMTJOR0pUYVdSWmJqUklTMGRhT1RoRWFuZE1OVkF3U1VZeFZFbGlNazV2YzI5aWFWWlhjaXRoV1VKVGFrYzRUM0ZwQ2pWNlFqVndUekpsT1ZJclIzQlBSMnRLYkVKTU9GaFdTbGxVTjFSU2VUTm1ObE54ZDJKUWVGTnFZelJ0Wkc4ek1WZzFZVkl3VUhONVJWbE5NM2cxUkhvS1dEVm5TblpNWWpaRlMyNUVlVU5DT1M5TlRFTlRTMHB0YTBoUlVFWnBjVkpHT0hKemRHcFZZMk00ZG14b1RucHdRMFZvU2s5bmMycDNLemx2UWs0MlRRbzRVV1JPUzBWS01HbENlV2x6ZVUxRVFVTjNaVTVZVTBVME1GZHJkV1JsZG5kelltSmhTVWt5Y0ZCWmRrODFNMnRQY1c4NGF6ZFZlbU5QWjJScVdISmtDbVVyUzJneE56ZGlWa1JKVEhoTmRVZExkRzRyWWxSU2JIbEJOa3BZTTFSM1RXd3ZNSG8xZFRkVFEyd3JSRU13V0hoS1ZHOUJOVlp5TTJKUGVFVXdTbllLY2xBdmFHTlljbFpTUmxkMUswaGFiM1JIWmpScU5EZGhTRFpRVFU5MWNqa3ZXWE5GVkM5SmIwcG9UV1YxUTB0M1NHRjRNV2x5WWpGMVpsRnNSR2h1YlFwcWRVSXJaeTlMZVZOUVVUTkZMM3BxWW1kRU1uQnhhVEp2Um5oamJsTlNUa1Y1UmpSSE1sVkRla2N2VFcxSVJ6TjVPVEZDVUZOcUwxQjRaRTVqTUVjekNtNXNRelpzTUdsQ05XUm9SR1ZPY0ZoR1RWQllUMkpWUWdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTbmRKUWtGQlMwTkJaMFZCTUVoTVZFTnRWMjQ1UWxZeVUyZEhaQzlSTlM4eWFHMDNSRkZRTTB0UFFYUXdSbVJETTBwclNFbE5jbWRsUW1kRENsbERiVWxxUmtKclVtNURTR3hOYzB0bmVVRmhUMk5zVldGS1MyUlpVVnBYY2tZeVpEVmhWVUpMTHpWcFZuWTFlSGhtTHpBelZqZzFibUV3V0hvNVRERUtWR2c0VlZVemFFVTFhVlJyY1dkclozTTBhVzFtTlhKRksybEtWWFV6VURJdllYWkVNMFpQY0dWUlYxaHNaRmhYTUhSNE1YVjBha05yU1d3eVQwTkNWd3B6VVd0T04zWnpjbVZoTDBwRFozazVUR05uTVhsMGNERk9RVko2Tldkek4xTlRMMHBrV1VsdWFGVkJNRTU1SzJFNE1FVXJUa3RGY1VkcEt6QlZlR3c1Q25neFF5dGlWRU5KZG1wVVlVNUZVV2hLUmxwVVFTOUpPV0o0VGtZeVZFNTZRMEpEYTBzMlpUbFJTRGRWUlM5bk5WWXJhVnBGVWpaRFRsQkxaV3gxYlZVS2NEbFZjV0pXVEZwMFNFUXJWMFY2TURGT1NVRkdkRTlKTVdKaWVUaGtTQ3RRV2paRmVrVTBjRTlJYkhaM2FGWlFMMDFwTlRVdllreFZha05YVERkRlJ3cEVabUpIYXpCU1kybzVWSEJuTUdoUVJXVTJMekZTSzFod1VGSlBTMmRLWjBzclMwZHNjRXR3TDA1T09YUnFOelo0YlROd05URnBSSGwzVkdFMVJXZFlDbXhhYjBsRWVEaFJaMjlqVW1sS1FtdFRWR1o1UTJGRlVqaHBhM29yUlZaUFUxaHNVVlZ2TmtaSGIwSmhNMEYyWXpGdmJXWnpZa2M1Y0VNck0zQlJTbUlLV1ROSWJWVnZSbGdyT1M5amEwMWxTMVoyT0hvM2JFdE9kQzk1UXpaT2FVSlVRbnByYjFsdlpDdEVVSGR5WWsweVR6ZDZkelZwVVd4d05rSkNUbk54Wmdwd1RsZEhVVFJXWmpCYVJuUldiV0ZGVUc0eVN5OTFaMWwxU25VM1NGcHlUWE41ZDBodWVEbG5VWGhTT0hnemNTdHhWRVZGYkhKekt6Rk5PVk42UkhSdENsTXZTVkpRTUU0MWNYaDBOMU14WTNOTlkweFhTbGhzY3pjeGRpc3JlRE5DTDNaSmFtazFOREZQT1Znek16SmhNMlJvUnprNU5FTkpRMXBGUTBGM1JVRUtRVkZMUTBGblFVd3lVWEoyZHpGc2NHZFVURXBCUWtOSWVYRlJkblJHYVhsWk4wSlFjbGhhVGt0cWFVNXhNVVZDV25saFpFUk9hRTUxVHpabE9IYzNVUXBDYVU1bGNrc3JOMUpxTjFoWEx6aHNUbTVuYkdoTFR6Sm9iR1Z6VEhSWVJFNHlSa1pwYnpkVE4zcHdkWFp5VUdGd00xUTRRbWRUVmxoVFZHUnVZVGxyQ2pKWFNEVXpRM293Y0RKaE0xTkJaVGhKSzJ4dVFXazVaWFZpTWxoTU1WbHdiamg1S3pSdWJXdFpTVEU0WjJ0bFJYbGFkR3ByTUhJMlNYZGhZM1EzTHk4S01tRk1NbkJGVXpSaWJraEpVblZTTUdkWVFra3JaMmg2YmpOcE1qWm9MM1UzWm1oS2VuSllhVGMyYkcxbGJXRllUMGhFY1dKRU9TczNZa3d4U2psWlRnbzBXbXR3WTFadWF6UTVZM2xIVkcxMWNqUjVMM3BNU0ZWSGIxbExVMU14ZW14blNHUTFURlF4Y25relRVVkZlbU5VTlVnclFpdGlRVW94YVZSQlEzVktDbTEzWVVvMVJUTnBUSFJHT0dWeFpVUmFhazl0TVZGWE4xbFBRWGhXYTJvelpGZDFja0UxVTB0dk1EWlFTR2w1UmpkNU0xaGFUSEZZU0ZGU2QyaGlVMHNLVFZkVE1TdFVNVmx4UTFsWGNWYzFkV2REVTNKSVZrZDNjbFJNYjNob1NFRm5UV1Y1V0ZwcmFFRjJibmhqUTNkWFpURjJZWFZSWlZGcE5ucDBibEY2ZGdweFJYbDRXbTlXVFU5ellUbDBWREJTUmxSRlJraDZlaXRhUWpoUFRXMW5RakZFSzNOeWMwWnNiSEJZYlVOQlNUTkNXWHA1VVRnNGNVVkpObVJYV1dGVENuUlpPSEJWT0ZGa09DdG5RVmxXUTFrMlZYTnNaMjVTWlVSd1JVUllTMUJtV0UxRVVtaFNOa0k1UVZOaFZtaG1RWGxuTWpGbVVXcFhTemhIUTBwUE9Vd0tSRXRzTlM5Mk1UaFJkVk5MTkRNdk4ySjFUa1JKT0doT1NuY3paMDFMWVRCMlZFdFFRV05oT1VoSU5XMTFSVVpGTjNkUmJWQkRiREIyY1RsTE1IaDJaUXBSWlVGWlRrSm1RMVF3TkdsTFNXWm5kVE5XVFdwV1FtOVBNMGRLYUcxbVdWRk1RWFZ5Y1hWQ1N6VXllREUxYjFNeFVVdERRVkZGUVRrM2JsUlBkMUpOQ2pSV2IwWkxOalV4Y1ZwYVIwNVdNMGtyUkRGSmJHSnlRMWg2U0VaemFVeEVjR0pGUlRscFJ6RkdVMmhHZGxab1YzY3dOamRUUTBSR1UydFZabE51TkZjS1REUXJjM0UxZWpkS2EyWXliRmRTVm5OMVZIZ3hVamRXVlZwUE5TOUNSek5qUWpCV1kycHlPRFZhWlV0UVZtOWhRU3N5UjBKR1ZYbEhaVGN2Y0ZkNlpRb3lUMmR4U2pkelJ6VlRTblpMU1hOSlJEa3pLMW92VjBwQ1lWazNjRlExVTFrNVJWVm1aMDVrYjJKVFNtZGhNalZLWms1cGIxTlRPUzlKT1V0V05HY3hDbmhTUkZaeFRqUm9ja0prY0cxc1RVWlBSQ3QxTkVjeFQyRlVialozUmtzeGRVbFJSRFJPVTI5VllXOXlRVGxLTlhjd1UxUkNhazlCZEZCSGJuZHVjVk1LYXpWTldFOXRaMlptYm5ONWVEaHFTMjVJYjBaUWRXdGtOMlZIV1ZsUlYzTnJOR1F3TmxFeE1UUjVLM3BNTW5sR1NtUnlTV2szVW5FdmNFRjRVVTlvVlFveWREa3ZTVE56V1dwcVdtc3ZkMHREUVZGRlFURXlhMjkyVldKMldVOHZOVWx6VlV4Q2MyNHpWVTE0VkdzM05HaEtNV3RaU25sUFJFRndObTlKYmpSSkNrMW1UMmgzWlhsSFVqVlNLMUJCTjBOb09UZFpRbEJDVjFseVVpOTJWVWxhVWxWelNqUktPRWRDYVdSUWVISnhTblJNY0c1bldsQlVhR1JKYVhOQ1NUY0thVWgxTUN0T01YRnNXRlF4V21SNmJqaFRURlEzZEZaNksxVldOMEZVUjB0UGFsTmxNbEJYTTA1WU9EZHdiRUYxYzJ4aGEzaHJVV1ZZTTJGeFpqWnZSZ3B5Ym5WSFQxSkJRMHRQYVcxSk1GZERaVU4yUzNOemNFUmljRXhKZDFWU1VqVXJibkp4WW5wUWRUWjRha0ZMWm0xNlFtTXZRbmRVY25nck1YVkpiMXAxQ2xvMWJqUlRNVTFTVjFGMmF6SnJRV0pRYlRSa1VqWnZXV1ZhVEdKMmJUaFJNRVJ2SzFOalJVTktLMk5qWlVsaWNERTRhbGh6T1ZrclpFaHJkMUJsYUZZS01DdHNkbXAyVDNWalREWTBRMmcwTlU5dFZ6SXpRM0F4YzBGdmJuVjFhRVJoWTFSa05WUk1RbUozUzBOQlVVSmthSFYyYjBGVVUyaGtRMGt4Ym5KV1VBcHdTM1V6U2tWU2JUZEpVa1lyTWlzNVJIZGhUSFppU2s5RlUzQkdXSFUyUjBsWFJreEliRzlNWms5TllWWlVNRWhWUm1WRVFWWXlVVGhXWVVseFJXcDBDalpCWlVJeVdrczVZWFJEWlROUVp5dDRNVFZXWlRjM1l6bHBORTV3V2xkeVprODBNVkZhY0VjeE1YUmpjMWR0Y2k5ME4wZzNkbGR1ZDA5bFFtWnZkMWtLTkVWd1JtSldRa3MxVlRWVGJ6VkljVGQ0Y21aNFZYSklOSEl3ZHpSclduTmpZMUJyYTA1cmVFdGtWMWczTURWSVZucFpSRWhEY205NmRsWk1kbmx1U2dwV2EwZEtaMVZUWTA5MlltdFNiMEoyUnk5UEszWnlkR0pCV1ZOU1ZYUnBSbXhLUTA4M1pEQkplWGhCVkV4RmFYZG9MMmRHV21NclNFcGxZVVZLTmtkVkNsZERSVkUyYnpoTlUzTnNSMDlwT0ZKcE4xaEVSVFpvV0ZCeVNERTVlRFJHSzNoR1ZXMHdNR1IzU2poemJEVTBOVzhyYW10cU5VeFNNamhYWkdWTVJVb0tjVU5IZWtGdlNVSkJSa05SWWxGTk1XZzBkMHN4U0ZCNmJrTmphVE5HVDJ0NE9VWnRPVGhHWlhGb1JHaFZSSFJ1YlZaNWJFcEhNa05SUlhCdFMzVmhWUXB1UVROalR6RmtWSFZvYkVkNGFHaFBhRGhSUWprMksxb3pRWHBrYWxGUk5rdGlWV0Y1VTNkR01UTmFORVZzUm01blZDc3lOR1p6ZFhkVlYyVnJhVVp3Q25ncmIyTkVPR1ExUkdscGVWQndha3BMY2sxTmEzcFZiblozTVVsQlVXbExSMGxaWjFWUllUQk1lRnBWU0dOUU5HWjBXVmRuWkRrM1NsZ3djMEp3VEVVS1UwaGlRM0JaVWt0YVNtOTJNbUkxSzA5WlZraENlR05yZG5SWlVqTjFVRVJIY0dkQ1RTdHROaTlCUTJ4RU5GbE1kaTluTjNKUmEydGFaQzlQU25CMlZ3cFFabG9yY1ZoSVZTOTZRbmhhYjNZMWNVTlFNa3REVTI4d0sydEVkbU50YzNZeFNUUnhlbUpuVlVGU1luRmhiMjlPVTI1RFVHMDVkVlJEU0RjNE5EaEtDbFpaTWpkT1p6UnZVWEJpWm1KdWNYcHZXalZtUW1VclIwTk1UMVJKZUUxRFoyZEZRVkZUU1RoaE1qUXdjVTVoWlZScGNtb3ZhVEZ3Y1VKelNraG5LME1LUkVKUVNqVnRhVVJ1WmxOTVNtRkhiMDl6TDFSU1VXVXZPVUZ0TlhWRFdHTnZNRko0YVZkc1ZHczVUVVZaVUVNck9FczJOVUp4VXpSb1JYVnFlRTVSY2dvd1ZVOHdSVWRNUlZOM1VFbHJOekZxVEZWbGNqWlNWR2R3ZGpCMlNqTk9NMGtyT0d0emMzVlVablJQWmtWSk1DdEVVRWxpWjFoSWJsZFRURWxWUVZodkNtbzRhbXczTnpWd2JHdENMekI0ZVZscU5HMUhibm95YzIxalVXSlJWR2R4UjBoSGRYaE9VVzFYYUVSdk0xcFBOaXRRZW5KV04yeHJUVTVWZDBSMFdua0taa0o1U1VKWmNHdFNZMGx2V1hsUmJEQnBSaTlpYVNzelYxaE1PVWhoY25SV09UaDVSVVJxS3pVM1dpODJZMU5sVERZNWNEUklPV05GUm5aVllqa3hUQW81TVdWeWJEVjNNbnBIVmpBeU1rVnljMGRFVGtOVFF6VnBOVzFLUlZFM05XWldOeXR2ZVV3NGVYQlFVM2Q0VEZSM01IVTROekZtU0UxQlBUMEtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogbnd2NXpwZmxubXRoYTUwMnNuY2JqMHY3d242YXF6aHVjN2Q1MXZldjNmcTFnbXV0OTQ3aHVlazZ1aGYzYWpkcDk5cGJhdGl6d2swaTE3ZXQ1MHNwNnI4dGZpNDJ1eG1seG8zZ2E2OWI4M3h0YjY3Z3VzY3I1OHdnaHJ1bGl3bW8K\"\ - \n }\n ]\n }" + string: "{\n \"name\": \"9c48fe42-5f68-1146-8603-376288ba37ee\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:15:18.7172845Z\"\n }" headers: cache-control: - no-cache content-length: - - '13080' + - '126' content-type: - application/json date: - - Wed, 14 Jun 2023 18:21:08 GMT + - Thu, 29 Jun 2023 09:16:19 GMT expires: - '-1' pragma: @@ -1790,8 +3360,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: code: 200 message: OK @@ -1799,36 +3367,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.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-05-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/42fe489c-685f-4611-8603-376288ba37ee?api-version=2016-03-30 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ - \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSU1dKSlNWTlNSVWg1ZERSalMzVlNkMGQzWlhseGFrRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxVVVYaFBSRUV6VGtSYVlVZEJPSGxOUkZWNlRVUlplRTVFUlRSTlZHTXdUbXh2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVSUENpOUZhV2d5TTBSNFRtMTRVMkpMUXk4eVYzQjFWRXgzYlZwMGFGWjRNbTVwVTBSdE9YWTFWMlpoWkdKVFRHRTFiWE4wU0ZWT0wzSkdUSFo0YlN0UVdXWUtWRlZWUkVveVFuSm9LMUJOZDBOT09IZDJiM2x2Y1ZKR1NFdFZiRVJGT1VNM1ltbHFWRUZwTXpOUVdsRkNhMjlLT1d0U2VEbHlNelUxUkhWbmJXMDJaUXBZV1ZFNFNYQnRMekZLUXpkTlFuaGllV1I1Y0Rsc0wwbENaVFk1Y2pOQ1VtcFZiV2R5TURkellXcFBRemhET1RKMmNDOWFRVFJYWjNOdUwwcE1kVmRJQ25WdVNrNVhOMnBtVldOcU0zbGFZVTlHTkU5bFoweHFkMWhRVWxoVFMyOUdWVkpGZG1kVEsyTjJUMnN6UjJsWVkwMVNiak5RZVdkMVprbENRM2w2Y3pFS2JFZ3JaMmREZFdGclZHMVpSelo0UTFGV04wOXZaVmxwYkN0cVVsVTRRVWhOZVV3cmNqazNZekZZWWpCV1FWWnRRbUp6VkVGVFJsSk5jRTlJUTNCUlVBb3JVMVZTWjBsNlVYY3pSbkJOZWxCaVoyVldOMmRLTVd4NWQzaDJjVUZTY2pad2JVcGpObEl6V21sMFRVOWlXa1J4VVhNM01WQmlUelZMZVhGT1Nua3JDbmRZT1U0MVRXUm9ieXR2VTI5Sk1sZzFUbWR4Y1hWV2NrZERNVmRGTVZsck16Wk9SMFk1TlVNNUwwZ3JlRWRQZDAxdVNsUnJVMEZCYjNoSmFIaHliSGdLUjFnemRrUk1WVlI2T0hGRVdqRTVMMlYzZURGNFZqUkhTWHBxYWxZd2VXZGtXalF3V1d4dlFWSm1SRmwxV20wdlkzUXpUa3AwVkZnM2FUaEJRbk5HUmdwbWJIcDVNSGxyUTBvck1HZHJWblU1VURsTUszZHlXRzB6U0c5dWNXSlZiRVJ3Y0dSM1kySXZlbWQ0YzJsU1oyeFVOamRCV1daRmR6UkhUazkxYVVFMkNrNTNWWE5LZDFsbVNHUlpZakE1YTBoa1EwdG1kWGRZYkZkNFJsTXpOMUYwYW5wTE1tMXZkMWs1Vmpod1ZsVnRjVXhzZFZGRGR6SkpXWGhoVFdsU1JYUUtOR3BVY0dOaFFqUklLMVo2VFZKb2VrZGlkeTlKTkd3dlVraFBTa016Y0VkTmJWbFJNRzVZZW1aM1NVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWbGF6azNkblZvYlRZMFZFUXdPR0ZEQ21KdGJtTlhla3RhWWtwRmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGRVFXbFNLMFZvY0RCSE1IUlFVSEpTWkdrNGFUTkZOMmRoWW1ZS1kzUnBUVTFEU2pCQ2JHczNjWFZIVW0xR2Ixb3ZhSGRNZFRoVlpYTk9RMnhRUkRKQlF6SjBhMnBVUjFJeFdqa3dUWG80Y2t0aE5Vb3ZiMHBVVFZWd1JncFBaRzU1TTJ0UWFsUlVPV3h4Vm1wNGFYRk1WMlZRWWtjck5IbE1ZMHB6S3pKaFZsWjZTRmRIUzFoMFZHSmpVSE5UTWxKUE5rbzJhazVNYmpaT2VYaEpDblZYVm1acVowOXlNV2hqZUZoaWNrcE1ZazV3YVZsSWVqWmlaMFJQT0ZreEx6VkxWVlJSWVhRNE4xaGtRMUprWTJoVGQzZHJiVXRRVm14MmMyMXZkemtLWkhFdmFsWkRSemhGTDFoSFduQkZSV1JVU0haU2FVRXlSMUk1VTBad1NGWnNPRUZuTVM5cFRITXJVRkpwWkVzcmNUWllXVVpEY2paelUzRlpVMlE0YndwS01GZDZhWEpITUUxb1pqSkxNMk5LV25ObGJuaHdRbk5hZURGU05GZEhibTVCTlVGQlpGVlhaV0ZhWmxwWVEzZ3pTV1Z3Um5KNllXVXdZVk55VDBwbUNtdzROMk5oYVdGT05FTXljMW8zYmxwclZIRk5abGs0VFRaamJ6UTRPRlY2Tmxod1YweHFkMUF3UmxOUlMwRlJXVEZUUVdwbVZHWnZMMWgxVjFsNk1qUUtLM2RoVEM5dFZuQnJUMWRWTVVRelJVVlRkSGRhTmtkWmRYRlViRTAxYlhad1NtSXpiVzFJYUZwdWNuSTVWVk40VFVkS1UyTlpSVVJGTjNJMmVGWXhNd3BrVm5aUmRFbEVUVFk0VGxkVWVsVTNMM2Q0YzI4eUsydDNWSE5JWTJSWWQwUkpLM0JtUjNOVlZXeEhXRlZUYjNwaVIyVlNLMUU0U1RKek5tbGxlRWxOQ2pabFp6VTNURzByUzNOaFpIUk1VemgzZVZsM2Qwa3ZlRk5HU2tGM1RYbENSakJZY1dsa1prOVJZMGgxTkhaQlpXSXlOa2RvZFdoM2FHb3pXRGx4T0hvS2VEUlhPRXc1VUd4NFdXWTBhbTUyYmxKSE15dGpOMGRtTDNwRVMxRmljMnhZV0hSNFR6bG1URWhJTjNaNFZtMDVaMFkyU21ORVNtSlZlVWhPVVhWWlZRcHdTMmQ2VVdsR1YyYzNRbFZhS3l0UkNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc2NjZnJseWItejI3ODUwZ2QuaGNwLndlc3RjZW50cmFsdXMuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3RvcmdkdHcKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3RvcmdkdHcKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3R1ZHVieWRiaDRuX2NsaWFrc3Rlc3RvcmdkdHcKICBuYW1lOiBjbGlha3N0ZXN0b3JnZHR3CmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdG9yZ2R0dwpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3R1ZHVieWRiaDRuX2NsaWFrc3Rlc3RvcmdkdHcKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJYWtORFFYZGhaMEYzU1VKQlowbFNRVkE1WkdSU2VYUmxRWEZqWldoVlNtcEhaVVJKZUd0M1JGRlpTa3R2V2tsb2RtTk9RVkZGVEVKUlFYY0tSRlJGVEUxQmEwZEJNVlZGUVhoTlExa3lSWGRJYUdOT1RXcE5kMDVxUlRCTlZHZDNUbnBSTWxkb1kwNU5hbFYzVG1wRk1FMVVaM2hPZWxFeVYycEJkd3BOVW1OM1JsRlpSRlpSVVV0RmR6VjZaVmhPTUZwWE1EWmlWMFo2WkVkV2VXTjZSVlpOUWsxSFFURlZSVUY0VFUxaVYwWjZaRWRXZVZreWVIQmFWelV3Q2sxSlNVTkpha0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRkZSa0ZCVDBOQlp6aEJUVWxKUTBOblMwTkJaMFZCTUVoTVZFTnRWMjQ1UWxZeVUyZEhaQzlSTlM4S01taHROMFJSVUROTFQwRjBNRVprUXpOS2EwaEpUWEpuWlVKblExbERiVWxxUmtKclVtNURTR3hOYzB0bmVVRmhUMk5zVldGS1MyUlpVVnBYY2tZeVpBbzFZVlZDU3k4MWFWWjJOWGg0Wmk4d00xWTROVzVoTUZoNk9Vd3hWR2c0VlZVemFFVTFhVlJyY1dkclozTTBhVzFtTlhKRksybEtWWFV6VURJdllYWkVDak5HVDNCbFVWZFliR1JZVnpCMGVERjFkR3BEYTBsc01rOURRbGR6VVd0T04zWnpjbVZoTDBwRFozazVUR05uTVhsMGNERk9RVko2Tldkek4xTlRMMG9LWkZsSmJtaFZRVEJPZVN0aE9EQkZLMDVMUlhGSGFTc3dWWGhzT1hneFF5dGlWRU5KZG1wVVlVNUZVV2hLUmxwVVFTOUpPV0o0VGtZeVZFNTZRMEpEYXdwTE5tVTVVVWczVlVVdlp6VldLMmxhUlZJMlEwNVFTMlZzZFcxVmNEbFZjV0pXVEZwMFNFUXJWMFY2TURGT1NVRkdkRTlKTVdKaWVUaGtTQ3RRV2paRkNucEZOSEJQU0d4MmQyaFdVQzlOYVRVMUwySk1WV3BEVjB3M1JVZEVabUpIYXpCU1kybzVWSEJuTUdoUVJXVTJMekZTSzFod1VGSlBTMmRLWjBzclMwY0tiSEJMY0M5T1RqbDBhamMyZUcwemNEVXhhVVI1ZDFSaE5VVm5XR3hhYjBsRWVEaFJaMjlqVW1sS1FtdFRWR1o1UTJGRlVqaHBhM29yUlZaUFUxaHNVUXBWYnpaR1IyOUNZVE5CZG1NeGIyMW1jMkpIT1hCREt6TndVVXBpV1ROSWJWVnZSbGdyT1M5amEwMWxTMVoyT0hvM2JFdE9kQzk1UXpaT2FVSlVRbnByQ205WmIyUXJSRkIzY21KTk1rODNlbmMxYVZGc2NEWkNRazV6Y1dad1RsZEhVVFJXWmpCYVJuUldiV0ZGVUc0eVN5OTFaMWwxU25VM1NGcHlUWE41ZDBnS2JuZzVaMUY0VWpoNE0zRXJjVlJGUld4eWN5c3hUVGxUZWtSMGJWTXZTVkpRTUU0MWNYaDBOMU14WTNOTlkweFhTbGhzY3pjeGRpc3JlRE5DTDNaSmFncHBOVFF4VHpsWU16TXlZVE5rYUVjNU9UUkRTVU5hUlVOQmQwVkJRV0ZPVjAxR1VYZEVaMWxFVmxJd1VFRlJTQzlDUVZGRVFXZFhaMDFDVFVkQk1WVmtDa3BSVVUxTlFXOUhRME56UjBGUlZVWkNkMDFEVFVGM1IwRXhWV1JGZDBWQ0wzZFJRMDFCUVhkSWQxbEVWbEl3YWtKQ1ozZEdiMEZWWldzNU4zWjFhRzBLTmpSVVJEQTRZVU5pYlc1alYzcExXbUpLUlhkRVVWbEtTMjlhU1doMlkwNUJVVVZNUWxGQlJHZG5TVUpCUmpVeWRqWXhRbk5tV1Rsc1ZYbFpNVlI2TXdveGJsaFljbWMzWjJSamQxbHpXR2t2YTBaTU9UZDBRVGhQY21oNWFETTJSM3AyTWxGdlNGUkdXV2hrU0doT2NYYzFWbkZ2Tkd0TVMyRk5ObGx4VjB0YUNuUTVXVnBGYlROVFZqaEtZelI0VTFabVdXa3hURFJNTXpKYVJFZGtVa0ptYmtaRGQyOVhkMHRTVW1nNGMyeFVkVFUwY1ZkU1FVcHlWR0l5UkhkeFdVb0tTMUpoYUVwWVQydGxaVGhWWm1nMGJFY3lUamRYTW01WU1UTnNTV3hxTVVWb2NXeHJOVlJpYmxsVGR5ODJTalI0Y3l0eVkzQjNhMFJ0ZG5aRWFETmhOQXBMUjFSRU5HNTRRM0ZIWWtKS04yMTJOR0pUYVdSWmJqUklTMGRhT1RoRWFuZE1OVkF3U1VZeFZFbGlNazV2YzI5aWFWWlhjaXRoV1VKVGFrYzRUM0ZwQ2pWNlFqVndUekpsT1ZJclIzQlBSMnRLYkVKTU9GaFdTbGxVTjFSU2VUTm1ObE54ZDJKUWVGTnFZelJ0Wkc4ek1WZzFZVkl3VUhONVJWbE5NM2cxUkhvS1dEVm5TblpNWWpaRlMyNUVlVU5DT1M5TlRFTlRTMHB0YTBoUlVFWnBjVkpHT0hKemRHcFZZMk00ZG14b1RucHdRMFZvU2s5bmMycDNLemx2UWs0MlRRbzRVV1JPUzBWS01HbENlV2x6ZVUxRVFVTjNaVTVZVTBVME1GZHJkV1JsZG5kelltSmhTVWt5Y0ZCWmRrODFNMnRQY1c4NGF6ZFZlbU5QWjJScVdISmtDbVVyUzJneE56ZGlWa1JKVEhoTmRVZExkRzRyWWxSU2JIbEJOa3BZTTFSM1RXd3ZNSG8xZFRkVFEyd3JSRU13V0hoS1ZHOUJOVlp5TTJKUGVFVXdTbllLY2xBdmFHTlljbFpTUmxkMUswaGFiM1JIWmpScU5EZGhTRFpRVFU5MWNqa3ZXWE5GVkM5SmIwcG9UV1YxUTB0M1NHRjRNV2x5WWpGMVpsRnNSR2h1YlFwcWRVSXJaeTlMZVZOUVVUTkZMM3BxWW1kRU1uQnhhVEp2Um5oamJsTlNUa1Y1UmpSSE1sVkRla2N2VFcxSVJ6TjVPVEZDVUZOcUwxQjRaRTVqTUVjekNtNXNRelpzTUdsQ05XUm9SR1ZPY0ZoR1RWQllUMkpWUWdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTbmRKUWtGQlMwTkJaMFZCTUVoTVZFTnRWMjQ1UWxZeVUyZEhaQzlSTlM4eWFHMDNSRkZRTTB0UFFYUXdSbVJETTBwclNFbE5jbWRsUW1kRENsbERiVWxxUmtKclVtNURTR3hOYzB0bmVVRmhUMk5zVldGS1MyUlpVVnBYY2tZeVpEVmhWVUpMTHpWcFZuWTFlSGhtTHpBelZqZzFibUV3V0hvNVRERUtWR2c0VlZVemFFVTFhVlJyY1dkclozTTBhVzFtTlhKRksybEtWWFV6VURJdllYWkVNMFpQY0dWUlYxaHNaRmhYTUhSNE1YVjBha05yU1d3eVQwTkNWd3B6VVd0T04zWnpjbVZoTDBwRFozazVUR05uTVhsMGNERk9RVko2Tldkek4xTlRMMHBrV1VsdWFGVkJNRTU1SzJFNE1FVXJUa3RGY1VkcEt6QlZlR3c1Q25neFF5dGlWRU5KZG1wVVlVNUZVV2hLUmxwVVFTOUpPV0o0VGtZeVZFNTZRMEpEYTBzMlpUbFJTRGRWUlM5bk5WWXJhVnBGVWpaRFRsQkxaV3gxYlZVS2NEbFZjV0pXVEZwMFNFUXJWMFY2TURGT1NVRkdkRTlKTVdKaWVUaGtTQ3RRV2paRmVrVTBjRTlJYkhaM2FGWlFMMDFwTlRVdllreFZha05YVERkRlJ3cEVabUpIYXpCU1kybzVWSEJuTUdoUVJXVTJMekZTSzFod1VGSlBTMmRLWjBzclMwZHNjRXR3TDA1T09YUnFOelo0YlROd05URnBSSGwzVkdFMVJXZFlDbXhhYjBsRWVEaFJaMjlqVW1sS1FtdFRWR1o1UTJGRlVqaHBhM29yUlZaUFUxaHNVVlZ2TmtaSGIwSmhNMEYyWXpGdmJXWnpZa2M1Y0VNck0zQlJTbUlLV1ROSWJWVnZSbGdyT1M5amEwMWxTMVoyT0hvM2JFdE9kQzk1UXpaT2FVSlVRbnByYjFsdlpDdEVVSGR5WWsweVR6ZDZkelZwVVd4d05rSkNUbk54Wmdwd1RsZEhVVFJXWmpCYVJuUldiV0ZGVUc0eVN5OTFaMWwxU25VM1NGcHlUWE41ZDBodWVEbG5VWGhTT0hnemNTdHhWRVZGYkhKekt6Rk5PVk42UkhSdENsTXZTVkpRTUU0MWNYaDBOMU14WTNOTlkweFhTbGhzY3pjeGRpc3JlRE5DTDNaSmFtazFOREZQT1Znek16SmhNMlJvUnprNU5FTkpRMXBGUTBGM1JVRUtRVkZMUTBGblFVd3lVWEoyZHpGc2NHZFVURXBCUWtOSWVYRlJkblJHYVhsWk4wSlFjbGhhVGt0cWFVNXhNVVZDV25saFpFUk9hRTUxVHpabE9IYzNVUXBDYVU1bGNrc3JOMUpxTjFoWEx6aHNUbTVuYkdoTFR6Sm9iR1Z6VEhSWVJFNHlSa1pwYnpkVE4zcHdkWFp5VUdGd00xUTRRbWRUVmxoVFZHUnVZVGxyQ2pKWFNEVXpRM293Y0RKaE0xTkJaVGhKSzJ4dVFXazVaWFZpTWxoTU1WbHdiamg1S3pSdWJXdFpTVEU0WjJ0bFJYbGFkR3ByTUhJMlNYZGhZM1EzTHk4S01tRk1NbkJGVXpSaWJraEpVblZTTUdkWVFra3JaMmg2YmpOcE1qWm9MM1UzWm1oS2VuSllhVGMyYkcxbGJXRllUMGhFY1dKRU9TczNZa3d4U2psWlRnbzBXbXR3WTFadWF6UTVZM2xIVkcxMWNqUjVMM3BNU0ZWSGIxbExVMU14ZW14blNHUTFURlF4Y25relRVVkZlbU5VTlVnclFpdGlRVW94YVZSQlEzVktDbTEzWVVvMVJUTnBUSFJHT0dWeFpVUmFhazl0TVZGWE4xbFBRWGhXYTJvelpGZDFja0UxVTB0dk1EWlFTR2w1UmpkNU0xaGFUSEZZU0ZGU2QyaGlVMHNLVFZkVE1TdFVNVmx4UTFsWGNWYzFkV2REVTNKSVZrZDNjbFJNYjNob1NFRm5UV1Y1V0ZwcmFFRjJibmhqUTNkWFpURjJZWFZSWlZGcE5ucDBibEY2ZGdweFJYbDRXbTlXVFU5ellUbDBWREJTUmxSRlJraDZlaXRhUWpoUFRXMW5RakZFSzNOeWMwWnNiSEJZYlVOQlNUTkNXWHA1VVRnNGNVVkpObVJYV1dGVENuUlpPSEJWT0ZGa09DdG5RVmxXUTFrMlZYTnNaMjVTWlVSd1JVUllTMUJtV0UxRVVtaFNOa0k1UVZOaFZtaG1RWGxuTWpGbVVXcFhTemhIUTBwUE9Vd0tSRXRzTlM5Mk1UaFJkVk5MTkRNdk4ySjFUa1JKT0doT1NuY3paMDFMWVRCMlZFdFFRV05oT1VoSU5XMTFSVVpGTjNkUmJWQkRiREIyY1RsTE1IaDJaUXBSWlVGWlRrSm1RMVF3TkdsTFNXWm5kVE5XVFdwV1FtOVBNMGRLYUcxbVdWRk1RWFZ5Y1hWQ1N6VXllREUxYjFNeFVVdERRVkZGUVRrM2JsUlBkMUpOQ2pSV2IwWkxOalV4Y1ZwYVIwNVdNMGtyUkRGSmJHSnlRMWg2U0VaemFVeEVjR0pGUlRscFJ6RkdVMmhHZGxab1YzY3dOamRUUTBSR1UydFZabE51TkZjS1REUXJjM0UxZWpkS2EyWXliRmRTVm5OMVZIZ3hVamRXVlZwUE5TOUNSek5qUWpCV1kycHlPRFZhWlV0UVZtOWhRU3N5UjBKR1ZYbEhaVGN2Y0ZkNlpRb3lUMmR4U2pkelJ6VlRTblpMU1hOSlJEa3pLMW92VjBwQ1lWazNjRlExVTFrNVJWVm1aMDVrYjJKVFNtZGhNalZLWms1cGIxTlRPUzlKT1V0V05HY3hDbmhTUkZaeFRqUm9ja0prY0cxc1RVWlBSQ3QxTkVjeFQyRlVialozUmtzeGRVbFJSRFJPVTI5VllXOXlRVGxLTlhjd1UxUkNhazlCZEZCSGJuZHVjVk1LYXpWTldFOXRaMlptYm5ONWVEaHFTMjVJYjBaUWRXdGtOMlZIV1ZsUlYzTnJOR1F3TmxFeE1UUjVLM3BNTW5sR1NtUnlTV2szVW5FdmNFRjRVVTlvVlFveWREa3ZTVE56V1dwcVdtc3ZkMHREUVZGRlFURXlhMjkyVldKMldVOHZOVWx6VlV4Q2MyNHpWVTE0VkdzM05HaEtNV3RaU25sUFJFRndObTlKYmpSSkNrMW1UMmgzWlhsSFVqVlNLMUJCTjBOb09UZFpRbEJDVjFseVVpOTJWVWxhVWxWelNqUktPRWRDYVdSUWVISnhTblJNY0c1bldsQlVhR1JKYVhOQ1NUY0thVWgxTUN0T01YRnNXRlF4V21SNmJqaFRURlEzZEZaNksxVldOMEZVUjB0UGFsTmxNbEJYTTA1WU9EZHdiRUYxYzJ4aGEzaHJVV1ZZTTJGeFpqWnZSZ3B5Ym5WSFQxSkJRMHRQYVcxSk1GZERaVU4yUzNOemNFUmljRXhKZDFWU1VqVXJibkp4WW5wUWRUWjRha0ZMWm0xNlFtTXZRbmRVY25nck1YVkpiMXAxQ2xvMWJqUlRNVTFTVjFGMmF6SnJRV0pRYlRSa1VqWnZXV1ZhVEdKMmJUaFJNRVJ2SzFOalJVTktLMk5qWlVsaWNERTRhbGh6T1ZrclpFaHJkMUJsYUZZS01DdHNkbXAyVDNWalREWTBRMmcwTlU5dFZ6SXpRM0F4YzBGdmJuVjFhRVJoWTFSa05WUk1RbUozUzBOQlVVSmthSFYyYjBGVVUyaGtRMGt4Ym5KV1VBcHdTM1V6U2tWU2JUZEpVa1lyTWlzNVJIZGhUSFppU2s5RlUzQkdXSFUyUjBsWFJreEliRzlNWms5TllWWlVNRWhWUm1WRVFWWXlVVGhXWVVseFJXcDBDalpCWlVJeVdrczVZWFJEWlROUVp5dDRNVFZXWlRjM1l6bHBORTV3V2xkeVprODBNVkZhY0VjeE1YUmpjMWR0Y2k5ME4wZzNkbGR1ZDA5bFFtWnZkMWtLTkVWd1JtSldRa3MxVlRWVGJ6VkljVGQ0Y21aNFZYSklOSEl3ZHpSclduTmpZMUJyYTA1cmVFdGtWMWczTURWSVZucFpSRWhEY205NmRsWk1kbmx1U2dwV2EwZEtaMVZUWTA5MlltdFNiMEoyUnk5UEszWnlkR0pCV1ZOU1ZYUnBSbXhLUTA4M1pEQkplWGhCVkV4RmFYZG9MMmRHV21NclNFcGxZVVZLTmtkVkNsZERSVkUyYnpoTlUzTnNSMDlwT0ZKcE4xaEVSVFpvV0ZCeVNERTVlRFJHSzNoR1ZXMHdNR1IzU2poemJEVTBOVzhyYW10cU5VeFNNamhYWkdWTVJVb0tjVU5IZWtGdlNVSkJSa05SWWxGTk1XZzBkMHN4U0ZCNmJrTmphVE5HVDJ0NE9VWnRPVGhHWlhGb1JHaFZSSFJ1YlZaNWJFcEhNa05SUlhCdFMzVmhWUXB1UVROalR6RmtWSFZvYkVkNGFHaFBhRGhSUWprMksxb3pRWHBrYWxGUk5rdGlWV0Y1VTNkR01UTmFORVZzUm01blZDc3lOR1p6ZFhkVlYyVnJhVVp3Q25ncmIyTkVPR1ExUkdscGVWQndha3BMY2sxTmEzcFZiblozTVVsQlVXbExSMGxaWjFWUllUQk1lRnBWU0dOUU5HWjBXVmRuWkRrM1NsZ3djMEp3VEVVS1UwaGlRM0JaVWt0YVNtOTJNbUkxSzA5WlZraENlR05yZG5SWlVqTjFVRVJIY0dkQ1RTdHROaTlCUTJ4RU5GbE1kaTluTjNKUmEydGFaQzlQU25CMlZ3cFFabG9yY1ZoSVZTOTZRbmhhYjNZMWNVTlFNa3REVTI4d0sydEVkbU50YzNZeFNUUnhlbUpuVlVGU1luRmhiMjlPVTI1RFVHMDVkVlJEU0RjNE5EaEtDbFpaTWpkT1p6UnZVWEJpWm1KdWNYcHZXalZtUW1VclIwTk1UMVJKZUUxRFoyZEZRVkZUU1RoaE1qUXdjVTVoWlZScGNtb3ZhVEZ3Y1VKelNraG5LME1LUkVKUVNqVnRhVVJ1WmxOTVNtRkhiMDl6TDFSU1VXVXZPVUZ0TlhWRFdHTnZNRko0YVZkc1ZHczVUVVZaVUVNck9FczJOVUp4VXpSb1JYVnFlRTVSY2dvd1ZVOHdSVWRNUlZOM1VFbHJOekZxVEZWbGNqWlNWR2R3ZGpCMlNqTk9NMGtyT0d0emMzVlVablJQWmtWSk1DdEVVRWxpWjFoSWJsZFRURWxWUVZodkNtbzRhbXczTnpWd2JHdENMekI0ZVZscU5HMUhibm95YzIxalVXSlJWR2R4UjBoSGRYaE9VVzFYYUVSdk0xcFBOaXRRZW5KV04yeHJUVTVWZDBSMFdua0taa0o1U1VKWmNHdFNZMGx2V1hsUmJEQnBSaTlpYVNzelYxaE1PVWhoY25SV09UaDVSVVJxS3pVM1dpODJZMU5sVERZNWNEUklPV05GUm5aVllqa3hUQW81TVdWeWJEVjNNbnBIVmpBeU1rVnljMGRFVGtOVFF6VnBOVzFLUlZFM05XWldOeXR2ZVV3NGVYQlFVM2Q0VEZSM01IVTROekZtU0UxQlBUMEtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogbnd2NXpwZmxubXRoYTUwMnNuY2JqMHY3d242YXF6aHVjN2Q1MXZldjNmcTFnbXV0OTQ3aHVlazZ1aGYzYWpkcDk5cGJhdGl6d2swaTE3ZXQ1MHNwNnI4dGZpNDJ1eG1seG8zZ2E2OWI4M3h0YjY3Z3VzY3I1OHdnaHJ1bGl3bW8K\"\ - \n }\n ]\n }" + string: "{\n \"name\": \"9c48fe42-5f68-1146-8603-376288ba37ee\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:15:18.7172845Z\"\n }" headers: cache-control: - no-cache content-length: - - '13080' + - '126' content-type: - application/json date: - - Wed, 14 Jun 2023 18:21:09 GMT + - Thu, 29 Jun 2023 09:16:49 GMT expires: - '-1' pragma: @@ -1843,8 +3408,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: code: 200 message: OK @@ -1852,7 +3415,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1862,67 +3425,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/42fe489c-685f-4611-8603-376288ba37ee?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\": \"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 + string: "{\n \"name\": \"9c48fe42-5f68-1146-8603-376288ba37ee\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:15:18.7172845Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:17:20 GMT expires: - '-1' pragma: @@ -1941,108 +3460,36 @@ interactions: code: 200 message: OK - request: - 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": {}}}' + body: null 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.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-05-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/42fe489c-685f-4611-8603-376288ba37ee?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\": \"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 }" + string: "{\n \"name\": \"9c48fe42-5f68-1146-8603-376288ba37ee\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:15:18.7172845Z\"\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: - - '4615' + - '126' content-type: - application/json date: - - Wed, 14 Jun 2023 18:21:18 GMT + - Thu, 29 Jun 2023 09:17:50 GMT expires: - '-1' pragma: @@ -2057,8 +3504,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: code: 200 message: OK @@ -2076,14 +3521,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/42fe489c-685f-4611-8603-376288ba37ee?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e7b8b3bf-dc82-5a42-ae08-e7a629964c1c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T18:21:17.6432834Z\"\n }" + string: "{\n \"name\": \"9c48fe42-5f68-1146-8603-376288ba37ee\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:15:18.7172845Z\"\n }" headers: cache-control: - no-cache @@ -2092,7 +3537,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:21:18 GMT + - Thu, 29 Jun 2023 09:18:19 GMT expires: - '-1' pragma: @@ -2124,14 +3569,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/42fe489c-685f-4611-8603-376288ba37ee?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e7b8b3bf-dc82-5a42-ae08-e7a629964c1c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T18:21:17.6432834Z\"\n }" + string: "{\n \"name\": \"9c48fe42-5f68-1146-8603-376288ba37ee\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:15:18.7172845Z\"\n }" headers: cache-control: - no-cache @@ -2140,7 +3585,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:21:48 GMT + - Thu, 29 Jun 2023 09:18:50 GMT expires: - '-1' pragma: @@ -2172,14 +3617,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/42fe489c-685f-4611-8603-376288ba37ee?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e7b8b3bf-dc82-5a42-ae08-e7a629964c1c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T18:21:17.6432834Z\"\n }" + string: "{\n \"name\": \"9c48fe42-5f68-1146-8603-376288ba37ee\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:15:18.7172845Z\"\n }" headers: cache-control: - no-cache @@ -2188,7 +3633,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:22:18 GMT + - Thu, 29 Jun 2023 09:19:20 GMT expires: - '-1' pragma: @@ -2220,14 +3665,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/42fe489c-685f-4611-8603-376288ba37ee?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e7b8b3bf-dc82-5a42-ae08-e7a629964c1c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T18:21:17.6432834Z\"\n }" + string: "{\n \"name\": \"9c48fe42-5f68-1146-8603-376288ba37ee\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:15:18.7172845Z\"\n }" headers: cache-control: - no-cache @@ -2236,7 +3681,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:22:48 GMT + - Thu, 29 Jun 2023 09:19:51 GMT expires: - '-1' pragma: @@ -2268,14 +3713,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/42fe489c-685f-4611-8603-376288ba37ee?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e7b8b3bf-dc82-5a42-ae08-e7a629964c1c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T18:21:17.6432834Z\"\n }" + string: "{\n \"name\": \"9c48fe42-5f68-1146-8603-376288ba37ee\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:15:18.7172845Z\"\n }" headers: cache-control: - no-cache @@ -2284,7 +3729,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:23:19 GMT + - Thu, 29 Jun 2023 09:20:21 GMT expires: - '-1' pragma: @@ -2316,14 +3761,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/42fe489c-685f-4611-8603-376288ba37ee?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e7b8b3bf-dc82-5a42-ae08-e7a629964c1c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T18:21:17.6432834Z\"\n }" + string: "{\n \"name\": \"9c48fe42-5f68-1146-8603-376288ba37ee\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:15:18.7172845Z\"\n }" headers: cache-control: - no-cache @@ -2332,7 +3777,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:23:49 GMT + - Thu, 29 Jun 2023 09:20:51 GMT expires: - '-1' pragma: @@ -2364,14 +3809,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/42fe489c-685f-4611-8603-376288ba37ee?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e7b8b3bf-dc82-5a42-ae08-e7a629964c1c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T18:21:17.6432834Z\"\n }" + string: "{\n \"name\": \"9c48fe42-5f68-1146-8603-376288ba37ee\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:15:18.7172845Z\"\n }" headers: cache-control: - no-cache @@ -2380,7 +3825,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:24:19 GMT + - Thu, 29 Jun 2023 09:21:21 GMT expires: - '-1' pragma: @@ -2412,24 +3857,24 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/42fe489c-685f-4611-8603-376288ba37ee?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"9c48fe42-5f68-1146-8603-376288ba37ee\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:15:18.7172845Z\",\n \"endTime\": + \"2023-06-29T09:21:25.316109Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '169' content-type: - application/json date: - - Wed, 14 Jun 2023 18:24:50 GMT + - Thu, 29 Jun 2023 09:21:51 GMT expires: - '-1' pragma: @@ -2461,67 +3906,64 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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/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 + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-gs9sw6cr.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-gs9sw6cr.portal.hcp.westus2.azmk8s.io\",\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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/e715ccc7-07d2-4ed5-9829-9cac7dcd3435\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: + - '4252' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:21:52 GMT expires: - '-1' pragma: @@ -2553,67 +3995,64 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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/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 + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-gs9sw6cr.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-gs9sw6cr.portal.hcp.westus2.azmk8s.io\",\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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/e715ccc7-07d2-4ed5-9829-9cac7dcd3435\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: + - '4252' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:21:53 GMT expires: - '-1' pragma: @@ -2622,10 +4061,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -2645,67 +4080,64 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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/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 + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-gs9sw6cr.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-gs9sw6cr.portal.hcp.westus2.azmk8s.io\",\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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/e715ccc7-07d2-4ed5-9829-9cac7dcd3435\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: + - '4252' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:21:54 GMT expires: - '-1' pragma: @@ -2724,8 +4156,8 @@ interactions: code: 200 message: OK - request: - 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": + 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": {}}}, "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", @@ -2734,16 +4166,15 @@ 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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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"}]}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", + "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/e715ccc7-07d2-4ed5-9829-9cac7dcd3435"}]}, "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", + ["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": {}}}' @@ -2757,74 +4188,71 @@ interactions: Connection: - keep-alive Content-Length: - - '3182' + - '2792' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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\": \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-gs9sw6cr.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-gs9sw6cr.portal.hcp.westus2.azmk8s.io\",\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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/e715ccc7-07d2-4ed5-9829-9cac7dcd3435\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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 }" headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2b3e6f50-bbdb-42ca-8ae6-21def2cdb893?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4496' + - '4131' content-type: - application/json date: - - Wed, 14 Jun 2023 18:25:02 GMT + - Thu, 29 Jun 2023 09:21:59 GMT expires: - '-1' pragma: @@ -2840,7 +4268,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -2858,14 +4286,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2b3e6f50-bbdb-42ca-8ae6-21def2cdb893?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b78facb3-d3fd-a34e-a9b8-260c1ea28619\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T18:25:02.0343681Z\"\n }" + string: "{\n \"name\": \"506f3e2b-dbbb-ca42-8ae6-21def2cdb893\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:21:59.0153122Z\"\n }" headers: cache-control: - no-cache @@ -2874,7 +4302,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:25:02 GMT + - Thu, 29 Jun 2023 09:21:59 GMT expires: - '-1' pragma: @@ -2906,14 +4334,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2b3e6f50-bbdb-42ca-8ae6-21def2cdb893?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b78facb3-d3fd-a34e-a9b8-260c1ea28619\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T18:25:02.0343681Z\"\n }" + string: "{\n \"name\": \"506f3e2b-dbbb-ca42-8ae6-21def2cdb893\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:21:59.0153122Z\"\n }" headers: cache-control: - no-cache @@ -2922,7 +4350,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:25:33 GMT + - Thu, 29 Jun 2023 09:22:29 GMT expires: - '-1' pragma: @@ -2954,14 +4382,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2b3e6f50-bbdb-42ca-8ae6-21def2cdb893?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b78facb3-d3fd-a34e-a9b8-260c1ea28619\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T18:25:02.0343681Z\"\n }" + string: "{\n \"name\": \"506f3e2b-dbbb-ca42-8ae6-21def2cdb893\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:21:59.0153122Z\"\n }" headers: cache-control: - no-cache @@ -2970,7 +4398,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:26:03 GMT + - Thu, 29 Jun 2023 09:22:59 GMT expires: - '-1' pragma: @@ -3002,14 +4430,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2b3e6f50-bbdb-42ca-8ae6-21def2cdb893?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b78facb3-d3fd-a34e-a9b8-260c1ea28619\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T18:25:02.0343681Z\"\n }" + string: "{\n \"name\": \"506f3e2b-dbbb-ca42-8ae6-21def2cdb893\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:21:59.0153122Z\"\n }" headers: cache-control: - no-cache @@ -3018,7 +4446,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:26:33 GMT + - Thu, 29 Jun 2023 09:23:29 GMT expires: - '-1' pragma: @@ -3050,23 +4478,24 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2b3e6f50-bbdb-42ca-8ae6-21def2cdb893?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b78facb3-d3fd-a34e-a9b8-260c1ea28619\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T18:25:02.0343681Z\"\n }" + string: "{\n \"name\": \"506f3e2b-dbbb-ca42-8ae6-21def2cdb893\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:21:59.0153122Z\",\n \"endTime\": + \"2023-06-29T09:23:39.108863Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '169' content-type: - application/json date: - - Wed, 14 Jun 2023 18:27:03 GMT + - Thu, 29 Jun 2023 09:23:59 GMT expires: - '-1' pragma: @@ -3098,116 +4527,64 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-05-01 response: body: - 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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-gs9sw6cr.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-gs9sw6cr.portal.hcp.westus2.azmk8s.io\",\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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/e715ccc7-07d2-4ed5-9829-9cac7dcd3435\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '170' + - '4252' content-type: - application/json date: - - 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-05-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 + - Thu, 29 Jun 2023 09:24:03 GMT expires: - '-1' pragma: @@ -3239,67 +4616,64 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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:37 GMT + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-gs9sw6cr.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-gs9sw6cr.portal.hcp.westus2.azmk8s.io\",\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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/e715ccc7-07d2-4ed5-9829-9cac7dcd3435\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: + - '4252' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:24:04 GMT expires: - '-1' pragma: @@ -3333,8 +4707,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/cliakstest000001?api-version=2023-05-01 response: @@ -3342,17 +4716,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0ebb8a6e-37a4-4c46-91ce-d37f6592627c?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 14 Jun 2023 18:27:39 GMT + - Thu, 29 Jun 2023 09:24:06 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/0ebb8a6e-37a4-4c46-91ce-d37f6592627c?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 d83f8b946df..154bda241ab 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,8 +14,8 @@ 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.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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 29 Apr 2023 09:06:34 GMT + - Thu, 29 Jun 2023 09:24:09 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.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/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1039-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_aadv1_and_update_with_managed_aad","date":"2023-04-29T09:06:34Z"},"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-06-29T09:24:08Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '364' + - '379' content-type: - application/json; charset=utf-8 date: - - Sat, 29 Apr 2023 09:06:34 GMT + - Thu, 29 Jun 2023 09:24:09 GMT expires: - '-1' pragma: @@ -90,21 +90,21 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestnclrd3rzw-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestlg6ao3s5c-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 AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT 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": - {"clientAppID": "00000000-0000-0000-0000-000000000002", "serverAppID": "00000000-0000-0000-0000-000000000001", - "serverAppSecret": "fake-secret", "tenantID": "d5b55040-0c14-48cc-a028-91457fc190d9"}, - "disableLocalAccounts": false, "storageProfile": {}}}' + "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "aadProfile": {"clientAppID": "00000000-0000-0000-0000-000000000002", + "serverAppID": "00000000-0000-0000-0000-000000000001", "serverAppSecret": "fake-secret", + "tenantID": "d5b55040-0c14-48cc-a028-91457fc190d9"}, "disableLocalAccounts": + false, "storageProfile": {}}}' headers: Accept: - application/json @@ -115,15 +115,15 @@ interactions: Connection: - keep-alive Content-Length: - - '1671' + - '1634' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -133,8 +133,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-clitestnclrd3rzw-79a739\",\n \"fqdn\": \"cliakstest-clitestnclrd3rzw-79a739-y2vjgwad.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestnclrd3rzw-79a739-y2vjgwad.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-clitestlg6ao3s5c-79a739\",\n \"fqdn\": \"cliakstest-clitestlg6ao3s5c-79a739-oy4zdb8y.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestlg6ao3s5c-79a739-oy4zdb8y.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n @@ -144,42 +144,42 @@ interactions: \"1.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 + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT azcli_aks_live_test@example.com\\n\"\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\": + \ \"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 \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"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\": - \"00000000-0000-0000-0000-000000000001\",\n \"tenantID\": \"d5b55040-0c14-48cc-a028-91457fc190d9\"\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \"10.0.0.10\",\n \"outboundType\": \"loadBalancer\",\n \"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\": \"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantID\": \"d5b55040-0c14-48cc-a028-91457fc190d9\"\n },\n \"maxAgentPools\": + 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": + {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": + {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": + true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n + \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": + \"SystemAssigned\",\n \"principalId\":\"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/eb7daec7-0d35-476d-af77-842b1cf925e3?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e296c7b-d13c-4a6b-b853-0e6bcd0ab3c2?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3561' + - '3522' content-type: - application/json date: - - Sat, 29 Apr 2023 09:06:38 GMT + - Thu, 29 Jun 2023 09:24:16 GMT expires: - '-1' pragma: @@ -191,7 +191,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -210,14 +210,63 @@ 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.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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e296c7b-d13c-4a6b-b853-0e6bcd0ab3c2?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"7b6c290e-3cd1-6b4a-b853-0e6bcd0ab3c2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:24:16.2969545Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 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 --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.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e296c7b-d13c-4a6b-b853-0e6bcd0ab3c2?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 }" + string: "{\n \"name\": \"7b6c290e-3cd1-6b4a-b853-0e6bcd0ab3c2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:24:16.2969545Z\"\n }" headers: cache-control: - no-cache @@ -226,7 +275,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 09:06:38 GMT + - Thu, 29 Jun 2023 09:24:46 GMT expires: - '-1' pragma: @@ -235,6 +284,10 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff status: @@ -255,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.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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e296c7b-d13c-4a6b-b853-0e6bcd0ab3c2?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 }" + string: "{\n \"name\": \"7b6c290e-3cd1-6b4a-b853-0e6bcd0ab3c2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:24:16.2969545Z\"\n }" headers: cache-control: - no-cache @@ -271,7 +324,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 09:07:08 GMT + - Thu, 29 Jun 2023 09:25:17 GMT expires: - '-1' pragma: @@ -280,6 +333,10 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff status: @@ -300,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.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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e296c7b-d13c-4a6b-b853-0e6bcd0ab3c2?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 }" + string: "{\n \"name\": \"7b6c290e-3cd1-6b4a-b853-0e6bcd0ab3c2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:24:16.2969545Z\"\n }" headers: cache-control: - no-cache @@ -316,7 +373,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 09:07:39 GMT + - Thu, 29 Jun 2023 09:25:46 GMT expires: - '-1' pragma: @@ -325,6 +382,10 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff status: @@ -345,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.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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e296c7b-d13c-4a6b-b853-0e6bcd0ab3c2?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 }" + string: "{\n \"name\": \"7b6c290e-3cd1-6b4a-b853-0e6bcd0ab3c2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:24:16.2969545Z\"\n }" headers: cache-control: - no-cache @@ -361,7 +422,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 09:08:08 GMT + - Thu, 29 Jun 2023 09:26:17 GMT expires: - '-1' pragma: @@ -370,6 +431,10 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff status: @@ -390,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.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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e296c7b-d13c-4a6b-b853-0e6bcd0ab3c2?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 }" + string: "{\n \"name\": \"7b6c290e-3cd1-6b4a-b853-0e6bcd0ab3c2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:24:16.2969545Z\"\n }" headers: cache-control: - no-cache @@ -406,7 +471,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 09:08:39 GMT + - Thu, 29 Jun 2023 09:26:47 GMT expires: - '-1' pragma: @@ -415,6 +480,10 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff status: @@ -435,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.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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e296c7b-d13c-4a6b-b853-0e6bcd0ab3c2?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 }" + string: "{\n \"name\": \"7b6c290e-3cd1-6b4a-b853-0e6bcd0ab3c2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:24:16.2969545Z\"\n }" headers: cache-control: - no-cache @@ -451,7 +520,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 09:09:09 GMT + - Thu, 29 Jun 2023 09:27:17 GMT expires: - '-1' pragma: @@ -460,6 +529,10 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff status: @@ -480,14 +553,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.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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e296c7b-d13c-4a6b-b853-0e6bcd0ab3c2?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 }" + string: "{\n \"name\": \"7b6c290e-3cd1-6b4a-b853-0e6bcd0ab3c2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:24:16.2969545Z\"\n }" headers: cache-control: - no-cache @@ -496,7 +569,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 09:09:39 GMT + - Thu, 29 Jun 2023 09:27:47 GMT expires: - '-1' pragma: @@ -529,14 +602,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.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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e296c7b-d13c-4a6b-b853-0e6bcd0ab3c2?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 }" + string: "{\n \"name\": \"7b6c290e-3cd1-6b4a-b853-0e6bcd0ab3c2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:24:16.2969545Z\"\n }" headers: cache-control: - no-cache @@ -545,7 +618,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 09:10:09 GMT + - Thu, 29 Jun 2023 09:28:17 GMT expires: - '-1' pragma: @@ -578,14 +651,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.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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e296c7b-d13c-4a6b-b853-0e6bcd0ab3c2?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 }" + string: "{\n \"name\": \"7b6c290e-3cd1-6b4a-b853-0e6bcd0ab3c2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:24:16.2969545Z\"\n }" headers: cache-control: - no-cache @@ -594,7 +667,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 09:10:40 GMT + - Thu, 29 Jun 2023 09:28:47 GMT expires: - '-1' pragma: @@ -627,14 +700,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.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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e296c7b-d13c-4a6b-b853-0e6bcd0ab3c2?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 }" + string: "{\n \"name\": \"7b6c290e-3cd1-6b4a-b853-0e6bcd0ab3c2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:24:16.2969545Z\"\n }" headers: cache-control: - no-cache @@ -643,7 +716,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 09:11:09 GMT + - Thu, 29 Jun 2023 09:29:18 GMT expires: - '-1' pragma: @@ -676,15 +749,15 @@ 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.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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e296c7b-d13c-4a6b-b853-0e6bcd0ab3c2?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"7b6c290e-3cd1-6b4a-b853-0e6bcd0ab3c2\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:24:16.2969545Z\",\n \"endTime\": + \"2023-06-29T09:29:35.1739701Z\"\n }" headers: cache-control: - no-cache @@ -693,7 +766,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 09:11:39 GMT + - Thu, 29 Jun 2023 09:29:47 GMT expires: - '-1' pragma: @@ -726,8 +799,8 @@ 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.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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -737,8 +810,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-clitestnclrd3rzw-79a739\",\n \"fqdn\": \"cliakstest-clitestnclrd3rzw-79a739-y2vjgwad.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestnclrd3rzw-79a739-y2vjgwad.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-clitestlg6ao3s5c-79a739\",\n \"fqdn\": \"cliakstest-clitestlg6ao3s5c-79a739-oy4zdb8y.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestlg6ao3s5c-79a739-oy4zdb8y.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n @@ -748,27 +821,26 @@ interactions: \"1.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 + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT azcli_aks_live_test@example.com\\n\"\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\": + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\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 \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/b589afcd-427e-4e2a-ab95-ffa9a08cb8b0\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"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\": \"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantID\": \"d5b55040-0c14-48cc-a028-91457fc190d9\"\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 + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"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\": + \"00000000-0000-0000-0000-000000000001\",\n \"tenantID\": \"d5b55040-0c14-48cc-a028-91457fc190d9\"\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\": @@ -782,11 +854,11 @@ interactions: cache-control: - no-cache content-length: - - '4214' + - '4175' content-type: - application/json date: - - Sat, 29 Apr 2023 09:11:39 GMT + - Thu, 29 Jun 2023 09:29:48 GMT expires: - '-1' pragma: @@ -819,8 +891,8 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -830,8 +902,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-clitestnclrd3rzw-79a739\",\n \"fqdn\": \"cliakstest-clitestnclrd3rzw-79a739-y2vjgwad.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestnclrd3rzw-79a739-y2vjgwad.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-clitestlg6ao3s5c-79a739\",\n \"fqdn\": \"cliakstest-clitestlg6ao3s5c-79a739-oy4zdb8y.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestlg6ao3s5c-79a739-oy4zdb8y.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n @@ -841,27 +913,26 @@ interactions: \"1.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 + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT azcli_aks_live_test@example.com\\n\"\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\": + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\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 \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/b589afcd-427e-4e2a-ab95-ffa9a08cb8b0\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"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\": \"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantID\": \"d5b55040-0c14-48cc-a028-91457fc190d9\"\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 + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"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\": + \"00000000-0000-0000-0000-000000000001\",\n \"tenantID\": \"d5b55040-0c14-48cc-a028-91457fc190d9\"\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\": @@ -875,11 +946,11 @@ interactions: cache-control: - no-cache content-length: - - '4214' + - '4175' content-type: - application/json date: - - Sat, 29 Apr 2023 09:11:41 GMT + - Thu, 29 Jun 2023 09:29:49 GMT expires: - '-1' pragma: @@ -900,21 +971,20 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": - "cliakstest-clitestnclrd3rzw-79a739", "agentPoolProfiles": [{"count": 1, "vmSize": + "cliakstest-clitestlg6ao3s5c-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.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT 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/8bef8cc1-7b0e-4a56-ab87-0db549720d6d"}]}, + "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/b589afcd-427e-4e2a-ab95-ffa9a08cb8b0"}]}, "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": @@ -932,15 +1002,15 @@ interactions: Connection: - keep-alive Content-Length: - - '2633' + - '2596' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -950,8 +1020,8 @@ interactions: \"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-clitestnclrd3rzw-79a739\",\n \"fqdn\": \"cliakstest-clitestnclrd3rzw-79a739-y2vjgwad.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestnclrd3rzw-79a739-y2vjgwad.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-clitestlg6ao3s5c-79a739\",\n \"fqdn\": \"cliakstest-clitestlg6ao3s5c-79a739-oy4zdb8y.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestlg6ao3s5c-79a739-oy4zdb8y.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n @@ -961,25 +1031,25 @@ interactions: \"1.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 + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT azcli_aks_live_test@example.com\\n\"\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\": + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\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 \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/b589afcd-427e-4e2a-ab95-ffa9a08cb8b0\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"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-000000000003\"\n - \ ],\n \"adminUsers\": null,\n \"tenantID\": \"00000000-0000-0000-0000-000000000004\"\n - \ },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"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-000000000003\"\n ],\n \"adminUsers\": + null,\n \"tenantID\": \"00000000-0000-0000-0000-000000000004\"\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\": @@ -992,15 +1062,15 @@ 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/6878db3e-9c45-4a07-b0a2-5082688ce896?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dc8495d8-d815-4a02-b4bd-fb66d6c71a85?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4162' + - '4123' content-type: - application/json date: - - Sat, 29 Apr 2023 09:11:45 GMT + - Thu, 29 Jun 2023 09:29:55 GMT expires: - '-1' pragma: @@ -1016,7 +1086,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1199' status: code: 200 message: OK @@ -1035,14 +1105,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dc8495d8-d815-4a02-b4bd-fb66d6c71a85?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 }" + string: "{\n \"name\": \"d89584dc-15d8-024a-b4bd-fb66d6c71a85\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:29:55.0476776Z\"\n }" headers: cache-control: - no-cache @@ -1051,7 +1121,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 09:11:45 GMT + - Thu, 29 Jun 2023 09:29:55 GMT expires: - '-1' pragma: @@ -1084,14 +1154,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dc8495d8-d815-4a02-b4bd-fb66d6c71a85?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 }" + string: "{\n \"name\": \"d89584dc-15d8-024a-b4bd-fb66d6c71a85\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:29:55.0476776Z\"\n }" headers: cache-control: - no-cache @@ -1100,7 +1170,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 09:12:14 GMT + - Thu, 29 Jun 2023 09:30:26 GMT expires: - '-1' pragma: @@ -1133,14 +1203,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dc8495d8-d815-4a02-b4bd-fb66d6c71a85?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 }" + string: "{\n \"name\": \"d89584dc-15d8-024a-b4bd-fb66d6c71a85\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:29:55.0476776Z\"\n }" headers: cache-control: - no-cache @@ -1149,7 +1219,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 09:12:44 GMT + - Thu, 29 Jun 2023 09:30:56 GMT expires: - '-1' pragma: @@ -1182,14 +1252,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dc8495d8-d815-4a02-b4bd-fb66d6c71a85?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 }" + string: "{\n \"name\": \"d89584dc-15d8-024a-b4bd-fb66d6c71a85\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:29:55.0476776Z\"\n }" headers: cache-control: - no-cache @@ -1198,7 +1268,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 09:13:15 GMT + - Thu, 29 Jun 2023 09:31:26 GMT expires: - '-1' pragma: @@ -1231,14 +1301,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dc8495d8-d815-4a02-b4bd-fb66d6c71a85?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 }" + string: "{\n \"name\": \"d89584dc-15d8-024a-b4bd-fb66d6c71a85\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:29:55.0476776Z\"\n }" headers: cache-control: - no-cache @@ -1247,7 +1317,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 09:13:44 GMT + - Thu, 29 Jun 2023 09:31:56 GMT expires: - '-1' pragma: @@ -1280,14 +1350,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dc8495d8-d815-4a02-b4bd-fb66d6c71a85?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 }" + string: "{\n \"name\": \"d89584dc-15d8-024a-b4bd-fb66d6c71a85\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:29:55.0476776Z\"\n }" headers: cache-control: - no-cache @@ -1296,7 +1366,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 09:14:14 GMT + - Thu, 29 Jun 2023 09:32:26 GMT expires: - '-1' pragma: @@ -1329,15 +1399,15 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dc8495d8-d815-4a02-b4bd-fb66d6c71a85?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"d89584dc-15d8-024a-b4bd-fb66d6c71a85\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:29:55.0476776Z\",\n \"endTime\": + \"2023-06-29T09:32:44.8364911Z\"\n }" headers: cache-control: - no-cache @@ -1346,7 +1416,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 09:14:44 GMT + - Thu, 29 Jun 2023 09:32:56 GMT expires: - '-1' pragma: @@ -1379,8 +1449,8 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -1390,8 +1460,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-clitestnclrd3rzw-79a739\",\n \"fqdn\": \"cliakstest-clitestnclrd3rzw-79a739-y2vjgwad.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestnclrd3rzw-79a739-y2vjgwad.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-clitestlg6ao3s5c-79a739\",\n \"fqdn\": \"cliakstest-clitestlg6ao3s5c-79a739-oy4zdb8y.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestlg6ao3s5c-79a739-oy4zdb8y.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n @@ -1401,25 +1471,25 @@ interactions: \"1.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 + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT azcli_aks_live_test@example.com\\n\"\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\": + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\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 \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/b589afcd-427e-4e2a-ab95-ffa9a08cb8b0\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"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-000000000003\"\n - \ ],\n \"adminUsers\": null,\n \"tenantID\": \"00000000-0000-0000-0000-000000000004\"\n - \ },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"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-000000000003\"\n ],\n \"adminUsers\": + null,\n \"tenantID\": \"00000000-0000-0000-0000-000000000004\"\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\": @@ -1434,11 +1504,11 @@ interactions: cache-control: - no-cache content-length: - - '4164' + - '4125' content-type: - application/json date: - - Sat, 29 Apr 2023 09:14:45 GMT + - Thu, 29 Jun 2023 09:32:56 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 9023109223e..915fcba007c 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,8 +14,8 @@ 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.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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 29 Apr 2023 09:14:47 GMT + - Thu, 29 Jun 2023 09:33:00 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.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/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1039-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_aadv1_and_update_with_managed_aad_msi","date":"2023-04-29T09:14:46Z"},"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-06-29T09:32:59Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '368' + - '383' content-type: - application/json; charset=utf-8 date: - - Sat, 29 Apr 2023 09:14:46 GMT + - Thu, 29 Jun 2023 09:33:00 GMT expires: - '-1' pragma: @@ -90,21 +90,21 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest3it6vji4n-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestgs645eiy7-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 AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT 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": - {"clientAppID": "00000000-0000-0000-0000-000000000002", "serverAppID": "00000000-0000-0000-0000-000000000001", - "serverAppSecret": "fake-secret", "tenantID": "d5b55040-0c14-48cc-a028-91457fc190d9"}, - "disableLocalAccounts": false, "storageProfile": {}}}' + "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "aadProfile": {"clientAppID": "00000000-0000-0000-0000-000000000002", + "serverAppID": "00000000-0000-0000-0000-000000000001", "serverAppSecret": "fake-secret", + "tenantID": "d5b55040-0c14-48cc-a028-91457fc190d9"}, "disableLocalAccounts": + false, "storageProfile": {}}}' headers: Accept: - application/json @@ -115,15 +115,15 @@ interactions: Connection: - keep-alive Content-Length: - - '1671' + - '1634' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -133,8 +133,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-clitest3it6vji4n-79a739\",\n \"fqdn\": \"cliakstest-clitest3it6vji4n-79a739-kccfe2dr.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest3it6vji4n-79a739-kccfe2dr.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-clitestgs645eiy7-79a739\",\n \"fqdn\": \"cliakstest-clitestgs645eiy7-79a739-hv6nc7oe.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestgs645eiy7-79a739-hv6nc7oe.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n @@ -144,42 +144,42 @@ interactions: \"1.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 + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT azcli_aks_live_test@example.com\\n\"\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\": + \ \"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 \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"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\": - \"00000000-0000-0000-0000-000000000001\",\n \"tenantID\": \"d5b55040-0c14-48cc-a028-91457fc190d9\"\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \"10.0.0.10\",\n \"outboundType\": \"loadBalancer\",\n \"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\": \"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantID\": \"d5b55040-0c14-48cc-a028-91457fc190d9\"\n },\n \"maxAgentPools\": + 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": + {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": + {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": + true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n + \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": + \"SystemAssigned\",\n \"principalId\":\"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/5e186d17-747a-4011-b00d-c9828463deba?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/358c1900-e169-4949-bb4b-c64482b1d5b7?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3561' + - '3522' content-type: - application/json date: - - Sat, 29 Apr 2023 09:14:51 GMT + - Thu, 29 Jun 2023 09:33:06 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.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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/358c1900-e169-4949-bb4b-c64482b1d5b7?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 }" + string: "{\n \"name\": \"00198c35-69e1-4949-bb4b-c64482b1d5b7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:33:06.3761084Z\"\n }" headers: cache-control: - no-cache @@ -226,7 +226,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 09:14:51 GMT + - Thu, 29 Jun 2023 09:33:06 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.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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/358c1900-e169-4949-bb4b-c64482b1d5b7?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 }" + string: "{\n \"name\": \"00198c35-69e1-4949-bb4b-c64482b1d5b7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:33:06.3761084Z\"\n }" headers: cache-control: - no-cache @@ -275,7 +275,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 09:15:21 GMT + - Thu, 29 Jun 2023 09:33:36 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.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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/358c1900-e169-4949-bb4b-c64482b1d5b7?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 }" + string: "{\n \"name\": \"00198c35-69e1-4949-bb4b-c64482b1d5b7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:33:06.3761084Z\"\n }" headers: cache-control: - no-cache @@ -324,7 +324,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 09:15:51 GMT + - Thu, 29 Jun 2023 09:34:07 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.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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/358c1900-e169-4949-bb4b-c64482b1d5b7?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 }" + string: "{\n \"name\": \"00198c35-69e1-4949-bb4b-c64482b1d5b7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:33:06.3761084Z\"\n }" headers: cache-control: - no-cache @@ -373,7 +373,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 09:16:21 GMT + - Thu, 29 Jun 2023 09:34:37 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.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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/358c1900-e169-4949-bb4b-c64482b1d5b7?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 }" + string: "{\n \"name\": \"00198c35-69e1-4949-bb4b-c64482b1d5b7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:33:06.3761084Z\"\n }" headers: cache-control: - no-cache @@ -422,7 +422,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 09:16:52 GMT + - Thu, 29 Jun 2023 09:35:07 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.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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/358c1900-e169-4949-bb4b-c64482b1d5b7?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 }" + string: "{\n \"name\": \"00198c35-69e1-4949-bb4b-c64482b1d5b7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:33:06.3761084Z\"\n }" headers: cache-control: - no-cache @@ -471,7 +471,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 09:17:22 GMT + - Thu, 29 Jun 2023 09:35:37 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.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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/358c1900-e169-4949-bb4b-c64482b1d5b7?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 }" + string: "{\n \"name\": \"00198c35-69e1-4949-bb4b-c64482b1d5b7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:33:06.3761084Z\"\n }" headers: cache-control: - no-cache @@ -520,7 +520,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 09:17:52 GMT + - Thu, 29 Jun 2023 09:36:07 GMT expires: - '-1' pragma: @@ -553,14 +553,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.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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/358c1900-e169-4949-bb4b-c64482b1d5b7?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 }" + string: "{\n \"name\": \"00198c35-69e1-4949-bb4b-c64482b1d5b7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:33:06.3761084Z\"\n }" headers: cache-control: - no-cache @@ -569,7 +569,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 09:18:22 GMT + - Thu, 29 Jun 2023 09:36:37 GMT expires: - '-1' pragma: @@ -602,14 +602,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.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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/358c1900-e169-4949-bb4b-c64482b1d5b7?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 }" + string: "{\n \"name\": \"00198c35-69e1-4949-bb4b-c64482b1d5b7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:33:06.3761084Z\"\n }" headers: cache-control: - no-cache @@ -618,7 +618,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 09:18:51 GMT + - Thu, 29 Jun 2023 09:37:08 GMT expires: - '-1' pragma: @@ -651,14 +651,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.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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/358c1900-e169-4949-bb4b-c64482b1d5b7?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 }" + string: "{\n \"name\": \"00198c35-69e1-4949-bb4b-c64482b1d5b7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:33:06.3761084Z\"\n }" headers: cache-control: - no-cache @@ -667,7 +667,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 09:19:22 GMT + - Thu, 29 Jun 2023 09:37:38 GMT expires: - '-1' pragma: @@ -700,15 +700,113 @@ 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.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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/358c1900-e169-4949-bb4b-c64482b1d5b7?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 }" + string: "{\n \"name\": \"00198c35-69e1-4949-bb4b-c64482b1d5b7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:33:06.3761084Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:38: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 --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.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/358c1900-e169-4949-bb4b-c64482b1d5b7?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"00198c35-69e1-4949-bb4b-c64482b1d5b7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:33:06.3761084Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:38: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 --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.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/358c1900-e169-4949-bb4b-c64482b1d5b7?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"00198c35-69e1-4949-bb4b-c64482b1d5b7\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:33:06.3761084Z\",\n \"endTime\": + \"2023-06-29T09:39:06.5416268Z\"\n }" headers: cache-control: - no-cache @@ -717,7 +815,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 09:19:52 GMT + - Thu, 29 Jun 2023 09:39:08 GMT expires: - '-1' pragma: @@ -750,8 +848,8 @@ 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.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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -761,8 +859,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-clitest3it6vji4n-79a739\",\n \"fqdn\": \"cliakstest-clitest3it6vji4n-79a739-kccfe2dr.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest3it6vji4n-79a739-kccfe2dr.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-clitestgs645eiy7-79a739\",\n \"fqdn\": \"cliakstest-clitestgs645eiy7-79a739-hv6nc7oe.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestgs645eiy7-79a739-hv6nc7oe.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n @@ -772,27 +870,26 @@ interactions: \"1.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 + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT azcli_aks_live_test@example.com\\n\"\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\": + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\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 \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/37397794-9267-49b1-92df-5a6fbf2d55e3\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"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\": \"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantID\": \"d5b55040-0c14-48cc-a028-91457fc190d9\"\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 + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"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\": + \"00000000-0000-0000-0000-000000000001\",\n \"tenantID\": \"d5b55040-0c14-48cc-a028-91457fc190d9\"\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\": @@ -806,11 +903,11 @@ interactions: cache-control: - no-cache content-length: - - '4214' + - '4175' content-type: - application/json date: - - Sat, 29 Apr 2023 09:19:52 GMT + - Thu, 29 Jun 2023 09:39:08 GMT expires: - '-1' pragma: @@ -843,8 +940,8 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -854,8 +951,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-clitest3it6vji4n-79a739\",\n \"fqdn\": \"cliakstest-clitest3it6vji4n-79a739-kccfe2dr.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest3it6vji4n-79a739-kccfe2dr.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-clitestgs645eiy7-79a739\",\n \"fqdn\": \"cliakstest-clitestgs645eiy7-79a739-hv6nc7oe.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestgs645eiy7-79a739-hv6nc7oe.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n @@ -865,27 +962,26 @@ interactions: \"1.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 + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT azcli_aks_live_test@example.com\\n\"\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\": + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\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 \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/37397794-9267-49b1-92df-5a6fbf2d55e3\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"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\": \"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantID\": \"d5b55040-0c14-48cc-a028-91457fc190d9\"\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 + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"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\": + \"00000000-0000-0000-0000-000000000001\",\n \"tenantID\": \"d5b55040-0c14-48cc-a028-91457fc190d9\"\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\": @@ -899,11 +995,11 @@ interactions: cache-control: - no-cache content-length: - - '4214' + - '4175' content-type: - application/json date: - - Sat, 29 Apr 2023 09:19:53 GMT + - Thu, 29 Jun 2023 09:39:10 GMT expires: - '-1' pragma: @@ -924,21 +1020,20 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": - "cliakstest-clitest3it6vji4n-79a739", "agentPoolProfiles": [{"count": 1, "vmSize": + "cliakstest-clitestgs645eiy7-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.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT 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/f13e45e3-d4b9-4ad3-a862-b53b760fd364"}]}, + "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/37397794-9267-49b1-92df-5a6fbf2d55e3"}]}, "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": @@ -956,15 +1051,15 @@ interactions: Connection: - keep-alive Content-Length: - - '2633' + - '2596' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -974,8 +1069,8 @@ interactions: \"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-clitest3it6vji4n-79a739\",\n \"fqdn\": \"cliakstest-clitest3it6vji4n-79a739-kccfe2dr.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest3it6vji4n-79a739-kccfe2dr.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-clitestgs645eiy7-79a739\",\n \"fqdn\": \"cliakstest-clitestgs645eiy7-79a739-hv6nc7oe.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestgs645eiy7-79a739-hv6nc7oe.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n @@ -985,25 +1080,25 @@ interactions: \"1.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 + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT azcli_aks_live_test@example.com\\n\"\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\": + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\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 \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/37397794-9267-49b1-92df-5a6fbf2d55e3\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"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-000000000003\"\n - \ ],\n \"adminUsers\": null,\n \"tenantID\": \"00000000-0000-0000-0000-000000000004\"\n - \ },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"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-000000000003\"\n ],\n \"adminUsers\": + null,\n \"tenantID\": \"00000000-0000-0000-0000-000000000004\"\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\": @@ -1016,15 +1111,15 @@ 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/950d16cd-fdef-4d9e-af85-464a9190d892?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d553daef-84d7-4e83-b92c-6bd66d7b2733?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4162' + - '4123' content-type: - application/json date: - - Sat, 29 Apr 2023 09:19:56 GMT + - Thu, 29 Jun 2023 09:39:14 GMT expires: - '-1' pragma: @@ -1040,7 +1135,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 200 message: OK @@ -1059,14 +1154,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d553daef-84d7-4e83-b92c-6bd66d7b2733?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"cd160d95-effd-9e4d-af85-464a9190d892\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-29T09:19:57.4942073Z\"\n }" + string: "{\n \"name\": \"efda53d5-d784-834e-b92c-6bd66d7b2733\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:39:14.2053567Z\"\n }" headers: cache-control: - no-cache @@ -1075,7 +1170,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 09:19:56 GMT + - Thu, 29 Jun 2023 09:39:15 GMT expires: - '-1' pragma: @@ -1108,14 +1203,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d553daef-84d7-4e83-b92c-6bd66d7b2733?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"cd160d95-effd-9e4d-af85-464a9190d892\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-29T09:19:57.4942073Z\"\n }" + string: "{\n \"name\": \"efda53d5-d784-834e-b92c-6bd66d7b2733\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:39:14.2053567Z\"\n }" headers: cache-control: - no-cache @@ -1124,7 +1219,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 09:20:27 GMT + - Thu, 29 Jun 2023 09:39:45 GMT expires: - '-1' pragma: @@ -1157,14 +1252,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d553daef-84d7-4e83-b92c-6bd66d7b2733?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"cd160d95-effd-9e4d-af85-464a9190d892\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-29T09:19:57.4942073Z\"\n }" + string: "{\n \"name\": \"efda53d5-d784-834e-b92c-6bd66d7b2733\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:39:14.2053567Z\"\n }" headers: cache-control: - no-cache @@ -1173,7 +1268,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 09:20:57 GMT + - Thu, 29 Jun 2023 09:40:14 GMT expires: - '-1' pragma: @@ -1206,14 +1301,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d553daef-84d7-4e83-b92c-6bd66d7b2733?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"cd160d95-effd-9e4d-af85-464a9190d892\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-29T09:19:57.4942073Z\"\n }" + string: "{\n \"name\": \"efda53d5-d784-834e-b92c-6bd66d7b2733\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:39:14.2053567Z\"\n }" headers: cache-control: - no-cache @@ -1222,7 +1317,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 09:21:27 GMT + - Thu, 29 Jun 2023 09:40:44 GMT expires: - '-1' pragma: @@ -1255,14 +1350,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d553daef-84d7-4e83-b92c-6bd66d7b2733?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"cd160d95-effd-9e4d-af85-464a9190d892\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-29T09:19:57.4942073Z\"\n }" + string: "{\n \"name\": \"efda53d5-d784-834e-b92c-6bd66d7b2733\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:39:14.2053567Z\"\n }" headers: cache-control: - no-cache @@ -1271,7 +1366,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 09:21:57 GMT + - Thu, 29 Jun 2023 09:41:15 GMT expires: - '-1' pragma: @@ -1304,14 +1399,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d553daef-84d7-4e83-b92c-6bd66d7b2733?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"cd160d95-effd-9e4d-af85-464a9190d892\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-29T09:19:57.4942073Z\"\n }" + string: "{\n \"name\": \"efda53d5-d784-834e-b92c-6bd66d7b2733\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:39:14.2053567Z\"\n }" headers: cache-control: - no-cache @@ -1320,7 +1415,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 09:22:27 GMT + - Thu, 29 Jun 2023 09:41:45 GMT expires: - '-1' pragma: @@ -1353,24 +1448,24 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d553daef-84d7-4e83-b92c-6bd66d7b2733?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 }" + string: "{\n \"name\": \"efda53d5-d784-834e-b92c-6bd66d7b2733\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:39:14.2053567Z\",\n \"endTime\": + \"2023-06-29T09:42:00.5443358Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '170' content-type: - application/json date: - - Sat, 29 Apr 2023 09:22:57 GMT + - Thu, 29 Jun 2023 09:42:15 GMT expires: - '-1' pragma: @@ -1403,8 +1498,8 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -1414,8 +1509,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-clitest3it6vji4n-79a739\",\n \"fqdn\": \"cliakstest-clitest3it6vji4n-79a739-kccfe2dr.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest3it6vji4n-79a739-kccfe2dr.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-clitestgs645eiy7-79a739\",\n \"fqdn\": \"cliakstest-clitestgs645eiy7-79a739-hv6nc7oe.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestgs645eiy7-79a739-hv6nc7oe.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n @@ -1425,25 +1520,25 @@ interactions: \"1.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 + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT azcli_aks_live_test@example.com\\n\"\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\": + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\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 \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/37397794-9267-49b1-92df-5a6fbf2d55e3\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"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-000000000003\"\n - \ ],\n \"adminUsers\": null,\n \"tenantID\": \"00000000-0000-0000-0000-000000000004\"\n - \ },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"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-000000000003\"\n ],\n \"adminUsers\": + null,\n \"tenantID\": \"00000000-0000-0000-0000-000000000004\"\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\": @@ -1458,11 +1553,11 @@ interactions: cache-control: - no-cache content-length: - - '4164' + - '4125' content-type: - application/json date: - - Sat, 29 Apr 2023 09:22:57 GMT + - Thu, 29 Jun 2023 09:42:16 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 9bd942a1d63..981e4ad6ad6 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 18:31:07 GMT + - Thu, 29 Jun 2023 09:42:18 GMT expires: - '-1' pragma: @@ -60,12 +60,12 @@ interactions: - --resource-group --name -a --enable-secret-rotation --rotation-poll-interval --ssh-key-value -o User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1039-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_addon_with_azurekeyvaultsecretsprovider_with_secret_rotation","date":"2023-06-14T18:31:04Z","module":"acs"},"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-29T09:42:18Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -74,7 +74,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 18:31:07 GMT + - Thu, 29 Jun 2023 09:42:19 GMT expires: - '-1' pragma: @@ -90,18 +90,18 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestkzb6bpji4-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestdgolymkqo-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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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", + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: @@ -114,73 +114,70 @@ interactions: Connection: - keep-alive Content-Length: - - '1875' + - '1546' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestdgolymkqo-79a739\",\n \"fqdn\": \"cliakstest-clitestdgolymkqo-79a739-xlq6kpoh.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestdgolymkqo-79a739-xlq6kpoh.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"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/20459e42-0c42-47fa-8001-aa842490e8ef?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/82ff2564-534b-4d31-92d6-2c637f49a60d?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3788' + - '3459' content-type: - application/json date: - - Wed, 14 Jun 2023 18:31:14 GMT + - Thu, 29 Jun 2023 09:42:25 GMT expires: - '-1' pragma: @@ -211,14 +208,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/82ff2564-534b-4d31-92d6-2c637f49a60d?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 }" + string: "{\n \"name\": \"6425ff82-4b53-314d-92d6-2c637f49a60d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:42:25.5809948Z\"\n }" headers: cache-control: - no-cache @@ -227,7 +224,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:31:15 GMT + - Thu, 29 Jun 2023 09:42:25 GMT expires: - '-1' pragma: @@ -260,14 +257,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/82ff2564-534b-4d31-92d6-2c637f49a60d?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 }" + string: "{\n \"name\": \"6425ff82-4b53-314d-92d6-2c637f49a60d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:42:25.5809948Z\"\n }" headers: cache-control: - no-cache @@ -276,7 +273,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:31:45 GMT + - Thu, 29 Jun 2023 09:42:55 GMT expires: - '-1' pragma: @@ -309,14 +306,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/82ff2564-534b-4d31-92d6-2c637f49a60d?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 }" + string: "{\n \"name\": \"6425ff82-4b53-314d-92d6-2c637f49a60d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:42:25.5809948Z\"\n }" headers: cache-control: - no-cache @@ -325,7 +322,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:32:15 GMT + - Thu, 29 Jun 2023 09:43:25 GMT expires: - '-1' pragma: @@ -358,14 +355,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/82ff2564-534b-4d31-92d6-2c637f49a60d?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 }" + string: "{\n \"name\": \"6425ff82-4b53-314d-92d6-2c637f49a60d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:42:25.5809948Z\"\n }" headers: cache-control: - no-cache @@ -374,7 +371,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:32:45 GMT + - Thu, 29 Jun 2023 09:43:56 GMT expires: - '-1' pragma: @@ -407,14 +404,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/82ff2564-534b-4d31-92d6-2c637f49a60d?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 }" + string: "{\n \"name\": \"6425ff82-4b53-314d-92d6-2c637f49a60d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:42:25.5809948Z\"\n }" headers: cache-control: - no-cache @@ -423,7 +420,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:33:15 GMT + - Thu, 29 Jun 2023 09:44:26 GMT expires: - '-1' pragma: @@ -456,14 +453,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/82ff2564-534b-4d31-92d6-2c637f49a60d?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 }" + string: "{\n \"name\": \"6425ff82-4b53-314d-92d6-2c637f49a60d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:42:25.5809948Z\"\n }" headers: cache-control: - no-cache @@ -472,7 +469,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:33:46 GMT + - Thu, 29 Jun 2023 09:44:56 GMT expires: - '-1' pragma: @@ -505,14 +502,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/82ff2564-534b-4d31-92d6-2c637f49a60d?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 }" + string: "{\n \"name\": \"6425ff82-4b53-314d-92d6-2c637f49a60d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:42:25.5809948Z\"\n }" headers: cache-control: - no-cache @@ -521,7 +518,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:34:16 GMT + - Thu, 29 Jun 2023 09:45:26 GMT expires: - '-1' pragma: @@ -554,14 +551,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/82ff2564-534b-4d31-92d6-2c637f49a60d?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 }" + string: "{\n \"name\": \"6425ff82-4b53-314d-92d6-2c637f49a60d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:42:25.5809948Z\"\n }" headers: cache-control: - no-cache @@ -570,7 +567,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:34:46 GMT + - Thu, 29 Jun 2023 09:45:56 GMT expires: - '-1' pragma: @@ -603,15 +600,211 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/82ff2564-534b-4d31-92d6-2c637f49a60d?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 }" + string: "{\n \"name\": \"6425ff82-4b53-314d-92d6-2c637f49a60d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:42:25.5809948Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:46: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 -a --enable-secret-rotation --rotation-poll-interval + --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/82ff2564-534b-4d31-92d6-2c637f49a60d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"6425ff82-4b53-314d-92d6-2c637f49a60d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:42:25.5809948Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:46: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 -a --enable-secret-rotation --rotation-poll-interval + --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/82ff2564-534b-4d31-92d6-2c637f49a60d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"6425ff82-4b53-314d-92d6-2c637f49a60d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:42:25.5809948Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:47: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 -a --enable-secret-rotation --rotation-poll-interval + --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/82ff2564-534b-4d31-92d6-2c637f49a60d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"6425ff82-4b53-314d-92d6-2c637f49a60d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:42:25.5809948Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:47: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 -a --enable-secret-rotation --rotation-poll-interval + --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/82ff2564-534b-4d31-92d6-2c637f49a60d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"6425ff82-4b53-314d-92d6-2c637f49a60d\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:42:25.5809948Z\",\n \"endTime\": + \"2023-06-29T09:48:11.0824127Z\"\n }" headers: cache-control: - no-cache @@ -620,7 +813,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:35:16 GMT + - Thu, 29 Jun 2023 09:48:27 GMT expires: - '-1' pragma: @@ -653,72 +846,67 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestdgolymkqo-79a739\",\n \"fqdn\": \"cliakstest-clitestdgolymkqo-79a739-xlq6kpoh.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestdgolymkqo-79a739-xlq6kpoh.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/f4def89c-1ebb-4e5b-bf87-612e227e2708\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4818' + - '4489' content-type: - application/json date: - - Wed, 14 Jun 2023 18:35:17 GMT + - Thu, 29 Jun 2023 09:48:28 GMT expires: - '-1' pragma: @@ -752,8 +940,8 @@ interactions: ParameterSetName: - --resource-group --name --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -761,17 +949,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ebcf0b54-23ab-4deb-b9c3-414335e81857?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 14 Jun 2023 18:35:20 GMT + - Thu, 29 Jun 2023 09:48:29 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/ebcf0b54-23ab-4deb-b9c3-414335e81857?api-version=2016-03-30 pragma: - no-cache server: @@ -781,7 +969,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_again_should_fail.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_again_should_fail.yaml index 53ab3d3a05e..fdad35e5a03 100644 --- 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 18:35:24 GMT + - Thu, 29 Jun 2023 09:07:47 GMT expires: - '-1' pragma: @@ -46,18 +46,19 @@ interactions: message: Not Found - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestatxs2j2sy-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestnskpuqobv-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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {}}}' headers: Accept: - application/json @@ -68,69 +69,67 @@ interactions: Connection: - keep-alive Content-Length: - - '1751' + - '1422' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --ssh-key-value --output User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestnskpuqobv-79a739\",\n \"fqdn\": \"cliakstest-clitestnskpuqobv-79a739-fscn2w01.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestnskpuqobv-79a739-fscn2w01.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"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/2f82b6ba-a50c-4a52-bbe1-39e4993546eb?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5730cc50-899f-4717-bbd4-8957dfe44cd8?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3596' + - '3267' content-type: - application/json date: - - Wed, 14 Jun 2023 18:35:32 GMT + - Thu, 29 Jun 2023 09:07:53 GMT expires: - '-1' pragma: @@ -142,7 +141,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -160,14 +159,14 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --output User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5730cc50-899f-4717-bbd4-8957dfe44cd8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bab6822f-0ca5-524a-bbe1-39e4993546eb\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T18:35:31.8344497Z\"\n }" + string: "{\n \"name\": \"50cc3057-9f89-1747-bbd4-8957dfe44cd8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:07:53.0913558Z\"\n }" headers: cache-control: - no-cache @@ -176,7 +175,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:35:32 GMT + - Thu, 29 Jun 2023 09:07:53 GMT expires: - '-1' pragma: @@ -208,14 +207,14 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --output User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5730cc50-899f-4717-bbd4-8957dfe44cd8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bab6822f-0ca5-524a-bbe1-39e4993546eb\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T18:35:31.8344497Z\"\n }" + string: "{\n \"name\": \"50cc3057-9f89-1747-bbd4-8957dfe44cd8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:07:53.0913558Z\"\n }" headers: cache-control: - no-cache @@ -224,7 +223,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:36:02 GMT + - Thu, 29 Jun 2023 09:08:23 GMT expires: - '-1' pragma: @@ -256,14 +255,14 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --output User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5730cc50-899f-4717-bbd4-8957dfe44cd8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bab6822f-0ca5-524a-bbe1-39e4993546eb\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T18:35:31.8344497Z\"\n }" + string: "{\n \"name\": \"50cc3057-9f89-1747-bbd4-8957dfe44cd8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:07:53.0913558Z\"\n }" headers: cache-control: - no-cache @@ -272,7 +271,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:36:32 GMT + - Thu, 29 Jun 2023 09:08:53 GMT expires: - '-1' pragma: @@ -304,14 +303,14 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --output User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5730cc50-899f-4717-bbd4-8957dfe44cd8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bab6822f-0ca5-524a-bbe1-39e4993546eb\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T18:35:31.8344497Z\"\n }" + string: "{\n \"name\": \"50cc3057-9f89-1747-bbd4-8957dfe44cd8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:07:53.0913558Z\"\n }" headers: cache-control: - no-cache @@ -320,7 +319,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:37:02 GMT + - Thu, 29 Jun 2023 09:09:23 GMT expires: - '-1' pragma: @@ -352,14 +351,14 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --output User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5730cc50-899f-4717-bbd4-8957dfe44cd8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bab6822f-0ca5-524a-bbe1-39e4993546eb\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T18:35:31.8344497Z\"\n }" + string: "{\n \"name\": \"50cc3057-9f89-1747-bbd4-8957dfe44cd8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:07:53.0913558Z\"\n }" headers: cache-control: - no-cache @@ -368,7 +367,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:37:32 GMT + - Thu, 29 Jun 2023 09:09:53 GMT expires: - '-1' pragma: @@ -400,14 +399,14 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --output User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5730cc50-899f-4717-bbd4-8957dfe44cd8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bab6822f-0ca5-524a-bbe1-39e4993546eb\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T18:35:31.8344497Z\"\n }" + string: "{\n \"name\": \"50cc3057-9f89-1747-bbd4-8957dfe44cd8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:07:53.0913558Z\"\n }" headers: cache-control: - no-cache @@ -416,7 +415,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:38:03 GMT + - Thu, 29 Jun 2023 09:10:24 GMT expires: - '-1' pragma: @@ -448,14 +447,14 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --output User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5730cc50-899f-4717-bbd4-8957dfe44cd8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bab6822f-0ca5-524a-bbe1-39e4993546eb\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T18:35:31.8344497Z\"\n }" + string: "{\n \"name\": \"50cc3057-9f89-1747-bbd4-8957dfe44cd8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:07:53.0913558Z\"\n }" headers: cache-control: - no-cache @@ -464,7 +463,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:38:33 GMT + - Thu, 29 Jun 2023 09:10:54 GMT expires: - '-1' pragma: @@ -496,15 +495,159 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --output User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5730cc50-899f-4717-bbd4-8957dfe44cd8?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"50cc3057-9f89-1747-bbd4-8957dfe44cd8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:07:53.0913558Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:11: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 --ssh-key-value --output + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5730cc50-899f-4717-bbd4-8957dfe44cd8?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"50cc3057-9f89-1747-bbd4-8957dfe44cd8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:07:53.0913558Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:11: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 --ssh-key-value --output + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5730cc50-899f-4717-bbd4-8957dfe44cd8?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"50cc3057-9f89-1747-bbd4-8957dfe44cd8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:07:53.0913558Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:12: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 --ssh-key-value --output + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5730cc50-899f-4717-bbd4-8957dfe44cd8?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"50cc3057-9f89-1747-bbd4-8957dfe44cd8\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:07:53.0913558Z\",\n \"endTime\": + \"2023-06-29T09:12:54.9267964Z\"\n }" headers: cache-control: - no-cache @@ -513,7 +656,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:39:03 GMT + - Thu, 29 Jun 2023 09:12:54 GMT expires: - '-1' pragma: @@ -545,66 +688,63 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --output User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestnskpuqobv-79a739\",\n \"fqdn\": \"cliakstest-clitestnskpuqobv-79a739-fscn2w01.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestnskpuqobv-79a739-fscn2w01.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/7e6a816d-7562-4422-95ce-db4d49108880\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4249' + - '3920' content-type: - application/json date: - - Wed, 14 Jun 2023 18:39:04 GMT + - Thu, 29 Jun 2023 09:12:55 GMT expires: - '-1' pragma: @@ -636,66 +776,63 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --output User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestnskpuqobv-79a739\",\n \"fqdn\": \"cliakstest-clitestnskpuqobv-79a739-fscn2w01.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestnskpuqobv-79a739-fscn2w01.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/7e6a816d-7562-4422-95ce-db4d49108880\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4249' + - '3920' content-type: - application/json date: - - Wed, 14 Jun 2023 18:39:06 GMT + - Thu, 29 Jun 2023 09:12:56 GMT expires: - '-1' pragma: @@ -729,8 +866,8 @@ interactions: ParameterSetName: - --resource-group --name --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -738,17 +875,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c4faaee3-193c-4e84-bc78-56f705d5c391?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 14 Jun 2023 18:39:09 GMT + - Thu, 29 Jun 2023 09:12:57 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/c4faaee3-193c-4e84-bc78-56f705d5c391?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 index 12f0c62be5d..d22dbf22572 100644 --- 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,36 +13,39 @@ interactions: ParameterSetName: - -l --query User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/kubernetesVersions?api-version=2023-05-01 response: body: - 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 }" + 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 \"1.27.1\"\n + \ ]\n },\n \"1.26.3\": {\n \"upgrades\": [\n \"1.27.1\"\n + \ ]\n }\n }\n },\n {\n \"version\": \"1.27\",\n \"capabilities\": + {\n \"supportPlan\": [\n \"KubernetesOfficial\",\n \"AKSLongTermSupport\"\n + \ ]\n },\n \"patchVersions\": {\n \"1.27.1\": {\n \"upgrades\": + []\n }\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '957' + - '1218' content-type: - application/json date: - - Wed, 14 Jun 2023 18:39:13 GMT + - Thu, 29 Jun 2023 09:13:00 GMT expires: - '-1' pragma: @@ -76,8 +79,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -93,7 +96,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 18:39:13 GMT + - Thu, 29 Jun 2023 09:13:01 GMT expires: - '-1' pragma: @@ -109,22 +112,22 @@ interactions: message: Not Found - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "1.26.3", "dnsPrefix": "cliakstest-clitest7rbqgumq7-8ecadf", + {"kubernetesVersion": "1.27.1", "dnsPrefix": "cliakstest-clitestbz6yslbhx-79a739", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "orchestratorVersion": "1.26.3", "upgradeSettings": {}, "enableNodePublicIP": + "mode": "System", "orchestratorVersion": "1.27.1", "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": "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 AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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": {}}}' headers: AKSHTTPCustomFeatures: - Microsoft.ContainerService/AKS-EnableDualStack @@ -137,7 +140,7 @@ interactions: Connection: - keep-alive Content-Length: - - '2043' + - '1714' Content-Type: - application/json ParameterSetName: @@ -145,65 +148,63 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.27.1\",\n \"currentKubernetesVersion\": \"1.27.1\",\n \"dnsPrefix\": + \"cliakstest-clitestbz6yslbhx-79a739\",\n \"fqdn\": \"cliakstest-clitestbz6yslbhx-79a739-2wraiiag.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestbz6yslbhx-79a739-2wraiiag.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.27.1\",\n \"currentOrchestratorVersion\": + \"1.27.1\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"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/164af416-9603-4388-8c31-74b1054aae75?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e3d07d6-0ee7-4e51-bb23-d9af283365b3?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3758' + - '3429' content-type: - application/json date: - - Wed, 14 Jun 2023 18:39:21 GMT + - Thu, 29 Jun 2023 09:13:08 GMT expires: - '-1' pragma: @@ -235,14 +236,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e3d07d6-0ee7-4e51-bb23-d9af283365b3?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 }" + string: "{\n \"name\": \"d6073d3e-e70e-514e-bb23-d9af283365b3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:13:07.8264108Z\"\n }" headers: cache-control: - no-cache @@ -251,7 +252,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:39:21 GMT + - Thu, 29 Jun 2023 09:13:08 GMT expires: - '-1' pragma: @@ -260,10 +261,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -285,14 +282,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e3d07d6-0ee7-4e51-bb23-d9af283365b3?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 }" + string: "{\n \"name\": \"d6073d3e-e70e-514e-bb23-d9af283365b3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:13:07.8264108Z\"\n }" headers: cache-control: - no-cache @@ -301,7 +298,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:39:51 GMT + - Thu, 29 Jun 2023 09:13:38 GMT expires: - '-1' pragma: @@ -310,10 +307,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -335,14 +328,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e3d07d6-0ee7-4e51-bb23-d9af283365b3?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 }" + string: "{\n \"name\": \"d6073d3e-e70e-514e-bb23-d9af283365b3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:13:07.8264108Z\"\n }" headers: cache-control: - no-cache @@ -351,7 +344,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:40:22 GMT + - Thu, 29 Jun 2023 09:14:08 GMT expires: - '-1' pragma: @@ -360,10 +353,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -385,14 +374,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e3d07d6-0ee7-4e51-bb23-d9af283365b3?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 }" + string: "{\n \"name\": \"d6073d3e-e70e-514e-bb23-d9af283365b3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:13:07.8264108Z\"\n }" headers: cache-control: - no-cache @@ -401,7 +390,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:40:52 GMT + - Thu, 29 Jun 2023 09:14:38 GMT expires: - '-1' pragma: @@ -410,10 +399,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -435,14 +420,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e3d07d6-0ee7-4e51-bb23-d9af283365b3?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 }" + string: "{\n \"name\": \"d6073d3e-e70e-514e-bb23-d9af283365b3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:13:07.8264108Z\"\n }" headers: cache-control: - no-cache @@ -451,7 +436,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:41:22 GMT + - Thu, 29 Jun 2023 09:15:08 GMT expires: - '-1' pragma: @@ -460,10 +445,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -485,14 +466,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e3d07d6-0ee7-4e51-bb23-d9af283365b3?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 }" + string: "{\n \"name\": \"d6073d3e-e70e-514e-bb23-d9af283365b3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:13:07.8264108Z\"\n }" headers: cache-control: - no-cache @@ -501,7 +482,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:41:53 GMT + - Thu, 29 Jun 2023 09:15:38 GMT expires: - '-1' pragma: @@ -510,10 +491,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -535,14 +512,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e3d07d6-0ee7-4e51-bb23-d9af283365b3?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 }" + string: "{\n \"name\": \"d6073d3e-e70e-514e-bb23-d9af283365b3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:13:07.8264108Z\"\n }" headers: cache-control: - no-cache @@ -551,7 +528,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:42:22 GMT + - Thu, 29 Jun 2023 09:16:09 GMT expires: - '-1' pragma: @@ -560,10 +537,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -585,14 +558,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e3d07d6-0ee7-4e51-bb23-d9af283365b3?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 }" + string: "{\n \"name\": \"d6073d3e-e70e-514e-bb23-d9af283365b3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:13:07.8264108Z\"\n }" headers: cache-control: - no-cache @@ -601,7 +574,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:42:52 GMT + - Thu, 29 Jun 2023 09:16:39 GMT expires: - '-1' pragma: @@ -610,10 +583,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -635,24 +604,115 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e3d07d6-0ee7-4e51-bb23-d9af283365b3?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"d6073d3e-e70e-514e-bb23-d9af283365b3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:13:07.8264108Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '126' content-type: - application/json date: - - Wed, 14 Jun 2023 18:43:23 GMT + - Thu, 29 Jun 2023 09:17: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 --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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e3d07d6-0ee7-4e51-bb23-d9af283365b3?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"d6073d3e-e70e-514e-bb23-d9af283365b3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:13:07.8264108Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:17: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 --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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e3d07d6-0ee7-4e51-bb23-d9af283365b3?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"d6073d3e-e70e-514e-bb23-d9af283365b3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:13:07.8264108Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:18:08 GMT expires: - '-1' pragma: @@ -661,10 +721,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -686,70 +742,160 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e3d07d6-0ee7-4e51-bb23-d9af283365b3?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"d6073d3e-e70e-514e-bb23-d9af283365b3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:13:07.8264108Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:18: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 --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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e3d07d6-0ee7-4e51-bb23-d9af283365b3?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"d6073d3e-e70e-514e-bb23-d9af283365b3\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:13:07.8264108Z\",\n \"endTime\": + \"2023-06-29T09:19:00.300141Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '169' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:19: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 --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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.27.1\",\n \"currentKubernetesVersion\": \"1.27.1\",\n \"dnsPrefix\": + \"cliakstest-clitestbz6yslbhx-79a739\",\n \"fqdn\": \"cliakstest-clitestbz6yslbhx-79a739-2wraiiag.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestbz6yslbhx-79a739-2wraiiag.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.27.1\",\n \"currentOrchestratorVersion\": + \"1.27.1\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"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/cb724756-677d-47a5-be57-557a4e1d1af6\"\n + \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/37467ffd-719e-4df2-a26c-d41a1bc6644c-ipv6\"\n + \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/1c5d5323-0ad1-4d32-924b-c097b8c537a7-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: - - '4869' + - '4540' content-type: - application/json date: - - Wed, 14 Jun 2023 18:43:24 GMT + - Thu, 29 Jun 2023 09:19:10 GMT expires: - '-1' pragma: @@ -758,10 +904,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -781,70 +923,67 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.27.1\",\n \"currentKubernetesVersion\": \"1.27.1\",\n \"dnsPrefix\": + \"cliakstest-clitestbz6yslbhx-79a739\",\n \"fqdn\": \"cliakstest-clitestbz6yslbhx-79a739-2wraiiag.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestbz6yslbhx-79a739-2wraiiag.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.27.1\",\n \"currentOrchestratorVersion\": + \"1.27.1\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"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/cb724756-677d-47a5-be57-557a4e1d1af6\"\n + \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/37467ffd-719e-4df2-a26c-d41a1bc6644c-ipv6\"\n + \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/1c5d5323-0ad1-4d32-924b-c097b8c537a7-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: - - '4869' + - '4540' content-type: - application/json date: - - Wed, 14 Jun 2023 18:43:26 GMT + - Thu, 29 Jun 2023 09:19:10 GMT expires: - '-1' pragma: @@ -864,24 +1003,24 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.26.3", "dnsPrefix": - "cliakstest-clitest7rbqgumq7-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.27.1", "dnsPrefix": + "cliakstest-clitestbz6yslbhx-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.26.3", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + "1.27.1", "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"}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_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": "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"}], + "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": 4}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/cb724756-677d-47a5-be57-557a4e1d1af6"}, + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/37467ffd-719e-4df2-a26c-d41a1bc6644c-ipv6"}, + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/1c5d5323-0ad1-4d32-924b-c097b8c537a7-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": @@ -899,78 +1038,75 @@ interactions: Connection: - keep-alive Content-Length: - - '3359' + - '2993' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.27.1\",\n \"currentKubernetesVersion\": \"1.27.1\",\n \"dnsPrefix\": + \"cliakstest-clitestbz6yslbhx-79a739\",\n \"fqdn\": \"cliakstest-clitestbz6yslbhx-79a739-2wraiiag.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestbz6yslbhx-79a739-2wraiiag.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"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.27.1\",\n \"currentOrchestratorVersion\": + \"1.27.1\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"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/cb724756-677d-47a5-be57-557a4e1d1af6\"\n + \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/37467ffd-719e-4df2-a26c-d41a1bc6644c-ipv6\"\n + \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/1c5d5323-0ad1-4d32-924b-c097b8c537a7-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/816c4fba-7491-43da-b821-f1464cff4715?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/457647ca-ac8f-4d20-b2d5-c686c92d297e?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4867' + - '4538' content-type: - application/json date: - - Wed, 14 Jun 2023 18:43:32 GMT + - Thu, 29 Jun 2023 09:19:15 GMT expires: - '-1' pragma: @@ -1004,14 +1140,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/457647ca-ac8f-4d20-b2d5-c686c92d297e?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 }" + string: "{\n \"name\": \"ca477645-8fac-204d-b2d5-c686c92d297e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:19:15.4053528Z\"\n }" headers: cache-control: - no-cache @@ -1020,7 +1156,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:43:32 GMT + - Thu, 29 Jun 2023 09:19:16 GMT expires: - '-1' pragma: @@ -1052,14 +1188,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/457647ca-ac8f-4d20-b2d5-c686c92d297e?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 }" + string: "{\n \"name\": \"ca477645-8fac-204d-b2d5-c686c92d297e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:19:15.4053528Z\"\n }" headers: cache-control: - no-cache @@ -1068,7 +1204,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:44:03 GMT + - Thu, 29 Jun 2023 09:19:45 GMT expires: - '-1' pragma: @@ -1100,14 +1236,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/457647ca-ac8f-4d20-b2d5-c686c92d297e?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 }" + string: "{\n \"name\": \"ca477645-8fac-204d-b2d5-c686c92d297e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:19:15.4053528Z\"\n }" headers: cache-control: - no-cache @@ -1116,7 +1252,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:44:33 GMT + - Thu, 29 Jun 2023 09:20:16 GMT expires: - '-1' pragma: @@ -1148,14 +1284,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/457647ca-ac8f-4d20-b2d5-c686c92d297e?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 }" + string: "{\n \"name\": \"ca477645-8fac-204d-b2d5-c686c92d297e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:19:15.4053528Z\"\n }" headers: cache-control: - no-cache @@ -1164,7 +1300,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:45:02 GMT + - Thu, 29 Jun 2023 09:20:46 GMT expires: - '-1' pragma: @@ -1196,15 +1332,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/457647ca-ac8f-4d20-b2d5-c686c92d297e?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"ca477645-8fac-204d-b2d5-c686c92d297e\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:19:15.4053528Z\",\n \"endTime\": + \"2023-06-29T09:21:08.8937656Z\"\n }" headers: cache-control: - no-cache @@ -1213,7 +1349,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:45:33 GMT + - Thu, 29 Jun 2023 09:21:16 GMT expires: - '-1' pragma: @@ -1245,72 +1381,69 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.27.1\",\n \"currentKubernetesVersion\": \"1.27.1\",\n \"dnsPrefix\": + \"cliakstest-clitestbz6yslbhx-79a739\",\n \"fqdn\": \"cliakstest-clitestbz6yslbhx-79a739-2wraiiag.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestbz6yslbhx-79a739-2wraiiag.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.27.1\",\n \"currentOrchestratorVersion\": + \"1.27.1\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"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/cb724756-677d-47a5-be57-557a4e1d1af6\"\n + \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/559f95fc-57d8-46e4-b687-c1308bafdefc-ipv6\"\n + \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/6f8097fc-82d8-4f37-a4ae-7a9b4181b859-ipv6\"\n + \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/1c5d5323-0ad1-4d32-924b-c097b8c537a7-ipv6\"\n + \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/37467ffd-719e-4df2-a26c-d41a1bc6644c-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: - - '5327' + - '4998' content-type: - application/json date: - - Wed, 14 Jun 2023 18:45:34 GMT + - Thu, 29 Jun 2023 09:21:17 GMT expires: - '-1' pragma: @@ -1344,8 +1477,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -1353,17 +1486,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/698ca12a-055d-4995-b426-c8ebe7cc8ef9?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 14 Jun 2023 18:45:36 GMT + - Thu, 29 Jun 2023 09:21:19 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/698ca12a-055d-4995-b426-c8ebe7cc8ef9?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_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 index c32346f61c9..b8c97b1b4fc 100644 --- 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 18:45:40 GMT + - Thu, 29 Jun 2023 09:21:34 GMT expires: - '-1' pragma: @@ -58,12 +58,12 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o --enable-blob-driver User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1039-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":"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"}}' + 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-29T09:21:33Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -72,7 +72,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 18:45:40 GMT + - Thu, 29 Jun 2023 09:21:33 GMT expires: - '-1' pragma: @@ -88,19 +88,19 @@ interactions: message: OK - request: body: '{"location": "centraluseuap", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest6oyj22sgq-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestxkrt6tvul-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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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}}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {"blobCSIDriver": {"enabled": true}}}}' headers: Accept: - application/json @@ -111,82 +111,77 @@ interactions: Connection: - keep-alive Content-Length: - - '1791' + - '1462' Content-Type: - application/json ParameterSetName: - --resource-group --name --ssh-key-value -o --enable-blob-driver User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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\ - \ }" + 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-clitestxkrt6tvul-79a739\",\n \"fqdn\": \"cliakstest-clitestxkrt6tvul-79a739-e60ln5yo.hcp.centraluseuap.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestxkrt6tvul-79a739-e60ln5yo.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"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/d50058a1-5e97-4f19-b7fd-f47f2f7d620a?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/b2a829de-adbd-4be3-b31b-d7324d725074?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3671' + - '3342' content-type: - application/json date: - - Wed, 14 Jun 2023 18:45:46 GMT + - Thu, 29 Jun 2023 09:21: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: - - '1199' + - '1198' status: code: 201 message: Created @@ -204,23 +199,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o --enable-blob-driver User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/d50058a1-5e97-4f19-b7fd-f47f2f7d620a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/b2a829de-adbd-4be3-b31b-d7324d725074?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a15800d5-975e-194f-b7fd-f47f2f7d620a\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T18:45:46.6573403Z\"\n }" + string: "{\n \"name\": \"de29a8b2-bdad-e34b-b31b-d7324d725074\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:21:38.995246Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 14 Jun 2023 18:45:46 GMT + - Thu, 29 Jun 2023 09:21:39 GMT expires: - '-1' pragma: @@ -252,23 +247,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o --enable-blob-driver User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/d50058a1-5e97-4f19-b7fd-f47f2f7d620a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/b2a829de-adbd-4be3-b31b-d7324d725074?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a15800d5-975e-194f-b7fd-f47f2f7d620a\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T18:45:46.6573403Z\"\n }" + string: "{\n \"name\": \"de29a8b2-bdad-e34b-b31b-d7324d725074\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:21:38.995246Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 14 Jun 2023 18:46:16 GMT + - Thu, 29 Jun 2023 09:22:09 GMT expires: - '-1' pragma: @@ -300,23 +295,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o --enable-blob-driver User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/d50058a1-5e97-4f19-b7fd-f47f2f7d620a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/b2a829de-adbd-4be3-b31b-d7324d725074?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a15800d5-975e-194f-b7fd-f47f2f7d620a\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T18:45:46.6573403Z\"\n }" + string: "{\n \"name\": \"de29a8b2-bdad-e34b-b31b-d7324d725074\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:21:38.995246Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 14 Jun 2023 18:46:46 GMT + - Thu, 29 Jun 2023 09:22:39 GMT expires: - '-1' pragma: @@ -348,23 +343,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o --enable-blob-driver User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/d50058a1-5e97-4f19-b7fd-f47f2f7d620a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/b2a829de-adbd-4be3-b31b-d7324d725074?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a15800d5-975e-194f-b7fd-f47f2f7d620a\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T18:45:46.6573403Z\"\n }" + string: "{\n \"name\": \"de29a8b2-bdad-e34b-b31b-d7324d725074\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:21:38.995246Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 14 Jun 2023 18:47:16 GMT + - Thu, 29 Jun 2023 09:23:08 GMT expires: - '-1' pragma: @@ -396,23 +391,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o --enable-blob-driver User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/d50058a1-5e97-4f19-b7fd-f47f2f7d620a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/b2a829de-adbd-4be3-b31b-d7324d725074?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a15800d5-975e-194f-b7fd-f47f2f7d620a\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T18:45:46.6573403Z\"\n }" + string: "{\n \"name\": \"de29a8b2-bdad-e34b-b31b-d7324d725074\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:21:38.995246Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 14 Jun 2023 18:47:47 GMT + - Thu, 29 Jun 2023 09:23:39 GMT expires: - '-1' pragma: @@ -444,23 +439,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o --enable-blob-driver User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/d50058a1-5e97-4f19-b7fd-f47f2f7d620a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/b2a829de-adbd-4be3-b31b-d7324d725074?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a15800d5-975e-194f-b7fd-f47f2f7d620a\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T18:45:46.6573403Z\"\n }" + string: "{\n \"name\": \"de29a8b2-bdad-e34b-b31b-d7324d725074\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:21:38.995246Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 14 Jun 2023 18:48:17 GMT + - Thu, 29 Jun 2023 09:24:09 GMT expires: - '-1' pragma: @@ -492,23 +487,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o --enable-blob-driver User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/d50058a1-5e97-4f19-b7fd-f47f2f7d620a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/b2a829de-adbd-4be3-b31b-d7324d725074?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a15800d5-975e-194f-b7fd-f47f2f7d620a\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T18:45:46.6573403Z\"\n }" + string: "{\n \"name\": \"de29a8b2-bdad-e34b-b31b-d7324d725074\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:21:38.995246Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 14 Jun 2023 18:48:47 GMT + - Thu, 29 Jun 2023 09:24:39 GMT expires: - '-1' pragma: @@ -540,23 +535,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o --enable-blob-driver User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/d50058a1-5e97-4f19-b7fd-f47f2f7d620a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/b2a829de-adbd-4be3-b31b-d7324d725074?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a15800d5-975e-194f-b7fd-f47f2f7d620a\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T18:45:46.6573403Z\"\n }" + string: "{\n \"name\": \"de29a8b2-bdad-e34b-b31b-d7324d725074\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:21:38.995246Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 14 Jun 2023 18:49:17 GMT + - Thu, 29 Jun 2023 09:25:09 GMT expires: - '-1' pragma: @@ -588,23 +583,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o --enable-blob-driver User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/d50058a1-5e97-4f19-b7fd-f47f2f7d620a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/b2a829de-adbd-4be3-b31b-d7324d725074?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a15800d5-975e-194f-b7fd-f47f2f7d620a\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T18:45:46.6573403Z\"\n }" + string: "{\n \"name\": \"de29a8b2-bdad-e34b-b31b-d7324d725074\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:21:38.995246Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 14 Jun 2023 18:49:47 GMT + - Thu, 29 Jun 2023 09:25:39 GMT expires: - '-1' pragma: @@ -636,23 +631,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o --enable-blob-driver User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/d50058a1-5e97-4f19-b7fd-f47f2f7d620a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/b2a829de-adbd-4be3-b31b-d7324d725074?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a15800d5-975e-194f-b7fd-f47f2f7d620a\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T18:45:46.6573403Z\"\n }" + string: "{\n \"name\": \"de29a8b2-bdad-e34b-b31b-d7324d725074\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:21:38.995246Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 14 Jun 2023 18:50:17 GMT + - Thu, 29 Jun 2023 09:26:09 GMT expires: - '-1' pragma: @@ -684,23 +679,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o --enable-blob-driver User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/d50058a1-5e97-4f19-b7fd-f47f2f7d620a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/b2a829de-adbd-4be3-b31b-d7324d725074?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a15800d5-975e-194f-b7fd-f47f2f7d620a\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T18:45:46.6573403Z\"\n }" + string: "{\n \"name\": \"de29a8b2-bdad-e34b-b31b-d7324d725074\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:21:38.995246Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 14 Jun 2023 18:50:48 GMT + - Thu, 29 Jun 2023 09:26:40 GMT expires: - '-1' pragma: @@ -732,24 +727,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o --enable-blob-driver User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/d50058a1-5e97-4f19-b7fd-f47f2f7d620a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/b2a829de-adbd-4be3-b31b-d7324d725074?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"de29a8b2-bdad-e34b-b31b-d7324d725074\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:21:38.995246Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '125' content-type: - application/json date: - - Wed, 14 Jun 2023 18:51:18 GMT + - Thu, 29 Jun 2023 09:27:10 GMT expires: - '-1' pragma: @@ -781,67 +775,24 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o --enable-blob-driver User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/b2a829de-adbd-4be3-b31b-d7324d725074?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.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\ - \ }" + string: "{\n \"name\": \"de29a8b2-bdad-e34b-b31b-d7324d725074\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:21:38.995246Z\",\n \"endTime\": + \"2023-06-29T09:27:24.3933923Z\"\n }" headers: cache-control: - no-cache content-length: - - '4336' + - '169' content-type: - application/json date: - - Wed, 14 Jun 2023 18:51:19 GMT + - Thu, 29 Jun 2023 09:27:40 GMT expires: - '-1' pragma: @@ -863,83 +814,78 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - aks update + - aks create Connection: - keep-alive ParameterSetName: - - --resource-group --name -y -o + - --resource-group --name --ssh-key-value -o --enable-blob-driver User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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\ - \ }" + 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-clitestxkrt6tvul-79a739\",\n \"fqdn\": \"cliakstest-clitestxkrt6tvul-79a739-e60ln5yo.hcp.centraluseuap.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestxkrt6tvul-79a739-e60ln5yo.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"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/5a52a6b1-804f-47d5-8bcc-6c7b141e6ab1\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4336' + - '4007' content-type: - application/json date: - - Wed, 14 Jun 2023 18:51:20 GMT + - Thu, 29 Jun 2023 09:27:41 GMT expires: - '-1' pragma: - no-cache - server: - - nginx strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -952,29 +898,7 @@ interactions: code: 200 message: OK - request: - 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": {}}}' + body: null headers: Accept: - application/json @@ -984,82 +908,71 @@ interactions: - aks update Connection: - keep-alive - Content-Length: - - '2836' - Content-Type: - - application/json 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: PUT + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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\ - \ }" + 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-clitestxkrt6tvul-79a739\",\n \"fqdn\": \"cliakstest-clitestxkrt6tvul-79a739-e60ln5yo.hcp.centraluseuap.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestxkrt6tvul-79a739-e60ln5yo.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"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/5a52a6b1-804f-47d5-8bcc-6c7b141e6ab1\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4334' + - '4007' content-type: - application/json date: - - Wed, 14 Jun 2023 18:51:23 GMT + - Thu, 29 Jun 2023 09:27:41 GMT expires: - '-1' pragma: - no-cache - server: - - nginx strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1068,48 +981,112 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: 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-clitestxkrt6tvul-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.25.6", "upgradeSettings": {}, "powerState": + {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", + "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/5a52a6b1-804f-47d5-8bcc-6c7b141e6ab1"}]}, + "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: + - '2470' + Content-Type: + - application/json 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/4f9fec37-11a2-4ee3-9deb-46ec37bd2349?api-version=2016-03-30 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"name\": \"37ec9f4f-a211-e34e-9deb-46ec37bd2349\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T18:51:23.6309719Z\"\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-clitestxkrt6tvul-79a739\",\n \"fqdn\": \"cliakstest-clitestxkrt6tvul-79a739-e60ln5yo.hcp.centraluseuap.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestxkrt6tvul-79a739-e60ln5yo.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"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/5a52a6b1-804f-47d5-8bcc-6c7b141e6ab1\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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/1f573286-d228-4428-bcef-2e99fa5a2807?api-version=2016-03-30 cache-control: - no-cache content-length: - - '126' + - '4005' content-type: - application/json date: - - Wed, 14 Jun 2023 18:51:23 GMT + - Thu, 29 Jun 2023 09:27:44 GMT expires: - '-1' pragma: - no-cache - server: - - nginx strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1118,6 +1095,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' status: code: 200 message: OK @@ -1135,14 +1114,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/4f9fec37-11a2-4ee3-9deb-46ec37bd2349?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/1f573286-d228-4428-bcef-2e99fa5a2807?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"37ec9f4f-a211-e34e-9deb-46ec37bd2349\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T18:51:23.6309719Z\"\n }" + string: "{\n \"name\": \"8632571f-28d2-2844-bcef-2e99fa5a2807\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:27:45.0787341Z\"\n }" headers: cache-control: - no-cache @@ -1151,7 +1130,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:51:54 GMT + - Thu, 29 Jun 2023 09:27:45 GMT expires: - '-1' pragma: @@ -1183,14 +1162,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/4f9fec37-11a2-4ee3-9deb-46ec37bd2349?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/1f573286-d228-4428-bcef-2e99fa5a2807?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"37ec9f4f-a211-e34e-9deb-46ec37bd2349\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T18:51:23.6309719Z\"\n }" + string: "{\n \"name\": \"8632571f-28d2-2844-bcef-2e99fa5a2807\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:27:45.0787341Z\"\n }" headers: cache-control: - no-cache @@ -1199,7 +1178,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:52:23 GMT + - Thu, 29 Jun 2023 09:28:15 GMT expires: - '-1' pragma: @@ -1231,14 +1210,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/4f9fec37-11a2-4ee3-9deb-46ec37bd2349?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/1f573286-d228-4428-bcef-2e99fa5a2807?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"37ec9f4f-a211-e34e-9deb-46ec37bd2349\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T18:51:23.6309719Z\"\n }" + string: "{\n \"name\": \"8632571f-28d2-2844-bcef-2e99fa5a2807\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:27:45.0787341Z\"\n }" headers: cache-control: - no-cache @@ -1247,7 +1226,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:52:54 GMT + - Thu, 29 Jun 2023 09:28:45 GMT expires: - '-1' pragma: @@ -1279,15 +1258,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/4f9fec37-11a2-4ee3-9deb-46ec37bd2349?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/1f573286-d228-4428-bcef-2e99fa5a2807?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"8632571f-28d2-2844-bcef-2e99fa5a2807\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:27:45.0787341Z\",\n \"endTime\": + \"2023-06-29T09:29:11.3134317Z\"\n }" headers: cache-control: - no-cache @@ -1296,7 +1275,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:53:23 GMT + - Thu, 29 Jun 2023 09:29:15 GMT expires: - '-1' pragma: @@ -1328,73 +1307,68 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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\ - \ }" + 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-clitestxkrt6tvul-79a739\",\n \"fqdn\": \"cliakstest-clitestxkrt6tvul-79a739-e60ln5yo.hcp.centraluseuap.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestxkrt6tvul-79a739-e60ln5yo.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"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/5a52a6b1-804f-47d5-8bcc-6c7b141e6ab1\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4336' + - '4007' content-type: - application/json date: - - Wed, 14 Jun 2023 18:53:24 GMT + - Thu, 29 Jun 2023 09:29:16 GMT expires: - '-1' pragma: - no-cache - server: - - nginx strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1420,73 +1394,68 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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\ - \ }" + 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-clitestxkrt6tvul-79a739\",\n \"fqdn\": \"cliakstest-clitestxkrt6tvul-79a739-e60ln5yo.hcp.centraluseuap.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestxkrt6tvul-79a739-e60ln5yo.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"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/5a52a6b1-804f-47d5-8bcc-6c7b141e6ab1\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4336' + - '4007' content-type: - application/json date: - - Wed, 14 Jun 2023 18:53:26 GMT + - Thu, 29 Jun 2023 09:29:16 GMT expires: - '-1' pragma: - no-cache - server: - - nginx strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1501,7 +1470,7 @@ interactions: - request: body: '{"location": "centraluseuap", "sku": {"name": "Base", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": - "1.25.6", "dnsPrefix": "cliakstest-clitest6oyj22sgq-8ecadf", "agentPoolProfiles": + "1.25.6", "dnsPrefix": "cliakstest-clitestxkrt6tvul-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": @@ -1509,14 +1478,13 @@ interactions: {"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"}, + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_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"}]}, + "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": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/5a52a6b1-804f-47d5-8bcc-6c7b141e6ab1"}]}, "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"}}, @@ -1532,81 +1500,76 @@ interactions: Connection: - keep-alive Content-Length: - - '2871' + - '2505' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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\ - \ }" + 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-clitestxkrt6tvul-79a739\",\n \"fqdn\": \"cliakstest-clitestxkrt6tvul-79a739-e60ln5yo.hcp.centraluseuap.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestxkrt6tvul-79a739-e60ln5yo.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"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/5a52a6b1-804f-47d5-8bcc-6c7b141e6ab1\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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/8c297912-8f1d-4f8a-8d6c-6bff83c7a6e8?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/6119e02a-80c3-4078-bf72-efa4f1a1d1af?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4335' + - '4006' content-type: - application/json date: - - Wed, 14 Jun 2023 18:53:30 GMT + - Thu, 29 Jun 2023 09:29:20 GMT expires: - '-1' pragma: - no-cache - server: - - nginx strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1634,110 +1597,14 @@ interactions: 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 -- 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/8c297912-8f1d-4f8a-8d6c-6bff83c7a6e8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/6119e02a-80c3-4078-bf72-efa4f1a1d1af?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 }" + string: "{\n \"name\": \"2ae01961-c380-7840-bf72-efa4f1a1d1af\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:29:20.5795199Z\"\n }" headers: cache-control: - no-cache @@ -1746,7 +1613,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:54:30 GMT + - Thu, 29 Jun 2023 09:29:20 GMT expires: - '-1' pragma: @@ -1778,14 +1645,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/8c297912-8f1d-4f8a-8d6c-6bff83c7a6e8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/6119e02a-80c3-4078-bf72-efa4f1a1d1af?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 }" + string: "{\n \"name\": \"2ae01961-c380-7840-bf72-efa4f1a1d1af\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:29:20.5795199Z\"\n }" headers: cache-control: - no-cache @@ -1794,7 +1661,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:55:00 GMT + - Thu, 29 Jun 2023 09:29:51 GMT expires: - '-1' pragma: @@ -1826,14 +1693,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/8c297912-8f1d-4f8a-8d6c-6bff83c7a6e8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/6119e02a-80c3-4078-bf72-efa4f1a1d1af?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 }" + string: "{\n \"name\": \"2ae01961-c380-7840-bf72-efa4f1a1d1af\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:29:20.5795199Z\"\n }" headers: cache-control: - no-cache @@ -1842,7 +1709,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:55:30 GMT + - Thu, 29 Jun 2023 09:30:21 GMT expires: - '-1' pragma: @@ -1874,15 +1741,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/8c297912-8f1d-4f8a-8d6c-6bff83c7a6e8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/6119e02a-80c3-4078-bf72-efa4f1a1d1af?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 }" + string: "{\n \"name\": \"2ae01961-c380-7840-bf72-efa4f1a1d1af\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:29:20.5795199Z\",\n \"endTime\": + \"2023-06-29T09:30:49.8258926Z\"\n }" headers: cache-control: - no-cache @@ -1891,7 +1758,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:56:01 GMT + - Thu, 29 Jun 2023 09:30:51 GMT expires: - '-1' pragma: @@ -1923,73 +1790,68 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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\ - \ }" + 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-clitestxkrt6tvul-79a739\",\n \"fqdn\": \"cliakstest-clitestxkrt6tvul-79a739-e60ln5yo.hcp.centraluseuap.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestxkrt6tvul-79a739-e60ln5yo.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"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/5a52a6b1-804f-47d5-8bcc-6c7b141e6ab1\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4337' + - '4008' content-type: - application/json date: - - Wed, 14 Jun 2023 18:56:01 GMT + - Thu, 29 Jun 2023 09:30:51 GMT expires: - '-1' pragma: - no-cache - server: - - nginx strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2015,73 +1877,68 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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\ - \ }" + 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-clitestxkrt6tvul-79a739\",\n \"fqdn\": \"cliakstest-clitestxkrt6tvul-79a739-e60ln5yo.hcp.centraluseuap.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestxkrt6tvul-79a739-e60ln5yo.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"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/5a52a6b1-804f-47d5-8bcc-6c7b141e6ab1\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4337' + - '4008' content-type: - application/json date: - - Wed, 14 Jun 2023 18:56:02 GMT + - Thu, 29 Jun 2023 09:30:52 GMT expires: - '-1' pragma: - no-cache - server: - - nginx strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2096,7 +1953,7 @@ interactions: - request: body: '{"location": "centraluseuap", "sku": {"name": "Base", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": - "1.25.6", "dnsPrefix": "cliakstest-clitest6oyj22sgq-8ecadf", "agentPoolProfiles": + "1.25.6", "dnsPrefix": "cliakstest-clitestxkrt6tvul-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": @@ -2104,14 +1961,13 @@ interactions: {"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"}, + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_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"}]}, + "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": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/5a52a6b1-804f-47d5-8bcc-6c7b141e6ab1"}]}, "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"}}, @@ -2127,81 +1983,76 @@ interactions: Connection: - keep-alive Content-Length: - - '2836' + - '2470' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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\ - \ }" + 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-clitestxkrt6tvul-79a739\",\n \"fqdn\": \"cliakstest-clitestxkrt6tvul-79a739-e60ln5yo.hcp.centraluseuap.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestxkrt6tvul-79a739-e60ln5yo.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"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/5a52a6b1-804f-47d5-8bcc-6c7b141e6ab1\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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/bf838ae3-287b-48f3-b44f-ff508f8e948a?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/9b35efac-c851-4684-b3f7-e956880897fa?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4335' + - '4006' content-type: - application/json date: - - Wed, 14 Jun 2023 18:56:06 GMT + - Thu, 29 Jun 2023 09:30:55 GMT expires: - '-1' pragma: - no-cache - server: - - nginx strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2229,14 +2080,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/bf838ae3-287b-48f3-b44f-ff508f8e948a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/9b35efac-c851-4684-b3f7-e956880897fa?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 }" + string: "{\n \"name\": \"acef359b-51c8-8446-b3f7-e956880897fa\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:30:55.4707051Z\"\n }" headers: cache-control: - no-cache @@ -2245,7 +2096,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:56:06 GMT + - Thu, 29 Jun 2023 09:30:56 GMT expires: - '-1' pragma: @@ -2277,14 +2128,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/bf838ae3-287b-48f3-b44f-ff508f8e948a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/9b35efac-c851-4684-b3f7-e956880897fa?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 }" + string: "{\n \"name\": \"acef359b-51c8-8446-b3f7-e956880897fa\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:30:55.4707051Z\"\n }" headers: cache-control: - no-cache @@ -2293,7 +2144,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:56:36 GMT + - Thu, 29 Jun 2023 09:31:26 GMT expires: - '-1' pragma: @@ -2325,14 +2176,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/bf838ae3-287b-48f3-b44f-ff508f8e948a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/9b35efac-c851-4684-b3f7-e956880897fa?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 }" + string: "{\n \"name\": \"acef359b-51c8-8446-b3f7-e956880897fa\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:30:55.4707051Z\"\n }" headers: cache-control: - no-cache @@ -2341,7 +2192,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:57:07 GMT + - Thu, 29 Jun 2023 09:31:56 GMT expires: - '-1' pragma: @@ -2373,14 +2224,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/bf838ae3-287b-48f3-b44f-ff508f8e948a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/9b35efac-c851-4684-b3f7-e956880897fa?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 }" + string: "{\n \"name\": \"acef359b-51c8-8446-b3f7-e956880897fa\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:30:55.4707051Z\"\n }" headers: cache-control: - no-cache @@ -2389,7 +2240,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:57:37 GMT + - Thu, 29 Jun 2023 09:32:26 GMT expires: - '-1' pragma: @@ -2421,15 +2272,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/bf838ae3-287b-48f3-b44f-ff508f8e948a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/9b35efac-c851-4684-b3f7-e956880897fa?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 }" + string: "{\n \"name\": \"acef359b-51c8-8446-b3f7-e956880897fa\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:30:55.4707051Z\",\n \"endTime\": + \"2023-06-29T09:32:38.7966849Z\"\n }" headers: cache-control: - no-cache @@ -2438,7 +2289,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:58:07 GMT + - Thu, 29 Jun 2023 09:32:56 GMT expires: - '-1' pragma: @@ -2470,73 +2321,68 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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\ - \ }" + 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-clitestxkrt6tvul-79a739\",\n \"fqdn\": \"cliakstest-clitestxkrt6tvul-79a739-e60ln5yo.hcp.centraluseuap.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestxkrt6tvul-79a739-e60ln5yo.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"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/5a52a6b1-804f-47d5-8bcc-6c7b141e6ab1\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4337' + - '4008' content-type: - application/json date: - - Wed, 14 Jun 2023 18:58:08 GMT + - Thu, 29 Jun 2023 09:32:56 GMT expires: - '-1' pragma: - no-cache - server: - - nginx strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2562,73 +2408,68 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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\ - \ }" + 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-clitestxkrt6tvul-79a739\",\n \"fqdn\": \"cliakstest-clitestxkrt6tvul-79a739-e60ln5yo.hcp.centraluseuap.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestxkrt6tvul-79a739-e60ln5yo.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"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/5a52a6b1-804f-47d5-8bcc-6c7b141e6ab1\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4337' + - '4008' content-type: - application/json date: - - Wed, 14 Jun 2023 18:58:08 GMT + - Thu, 29 Jun 2023 09:32:57 GMT expires: - '-1' pragma: - no-cache - server: - - nginx strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2643,7 +2484,7 @@ interactions: - request: body: '{"location": "centraluseuap", "sku": {"name": "Base", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": - "1.25.6", "dnsPrefix": "cliakstest-clitest6oyj22sgq-8ecadf", "agentPoolProfiles": + "1.25.6", "dnsPrefix": "cliakstest-clitestxkrt6tvul-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": @@ -2651,14 +2492,13 @@ interactions: {"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"}, + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_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"}]}, + "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": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/5a52a6b1-804f-47d5-8bcc-6c7b141e6ab1"}]}, "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"}}, @@ -2674,81 +2514,76 @@ interactions: Connection: - keep-alive Content-Length: - - '2870' + - '2504' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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\ - \ }" + 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-clitestxkrt6tvul-79a739\",\n \"fqdn\": \"cliakstest-clitestxkrt6tvul-79a739-e60ln5yo.hcp.centraluseuap.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestxkrt6tvul-79a739-e60ln5yo.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"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/5a52a6b1-804f-47d5-8bcc-6c7b141e6ab1\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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/0adb70cc-1d0d-441e-a7cc-705b47330247?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/d091416f-69c7-4d25-9e21-bd7682a40d9e?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4334' + - '4005' content-type: - application/json date: - - Wed, 14 Jun 2023 18:58:12 GMT + - Thu, 29 Jun 2023 09:33:00 GMT expires: - '-1' pragma: - no-cache - server: - - nginx strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2776,62 +2611,14 @@ interactions: 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 18:58: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 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/0adb70cc-1d0d-441e-a7cc-705b47330247?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/d091416f-69c7-4d25-9e21-bd7682a40d9e?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 }" + string: "{\n \"name\": \"6f4191d0-c769-254d-9e21-bd7682a40d9e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:33:00.3933682Z\"\n }" headers: cache-control: - no-cache @@ -2840,7 +2627,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:58:43 GMT + - Thu, 29 Jun 2023 09:33:00 GMT expires: - '-1' pragma: @@ -2872,14 +2659,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/0adb70cc-1d0d-441e-a7cc-705b47330247?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/d091416f-69c7-4d25-9e21-bd7682a40d9e?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 }" + string: "{\n \"name\": \"6f4191d0-c769-254d-9e21-bd7682a40d9e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:33:00.3933682Z\"\n }" headers: cache-control: - no-cache @@ -2888,7 +2675,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:59:13 GMT + - Thu, 29 Jun 2023 09:33:30 GMT expires: - '-1' pragma: @@ -2920,14 +2707,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/0adb70cc-1d0d-441e-a7cc-705b47330247?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/d091416f-69c7-4d25-9e21-bd7682a40d9e?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 }" + string: "{\n \"name\": \"6f4191d0-c769-254d-9e21-bd7682a40d9e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:33:00.3933682Z\"\n }" headers: cache-control: - no-cache @@ -2936,7 +2723,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 18:59:43 GMT + - Thu, 29 Jun 2023 09:34:00 GMT expires: - '-1' pragma: @@ -2968,14 +2755,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/0adb70cc-1d0d-441e-a7cc-705b47330247?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/d091416f-69c7-4d25-9e21-bd7682a40d9e?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 }" + string: "{\n \"name\": \"6f4191d0-c769-254d-9e21-bd7682a40d9e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:33:00.3933682Z\"\n }" headers: cache-control: - no-cache @@ -2984,7 +2771,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:00:13 GMT + - Thu, 29 Jun 2023 09:34:31 GMT expires: - '-1' pragma: @@ -3016,15 +2803,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/0adb70cc-1d0d-441e-a7cc-705b47330247?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/d091416f-69c7-4d25-9e21-bd7682a40d9e?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 }" + string: "{\n \"name\": \"6f4191d0-c769-254d-9e21-bd7682a40d9e\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:33:00.3933682Z\",\n \"endTime\": + \"2023-06-29T09:34:42.5405237Z\"\n }" headers: cache-control: - no-cache @@ -3033,7 +2820,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:00:44 GMT + - Thu, 29 Jun 2023 09:35:01 GMT expires: - '-1' pragma: @@ -3065,73 +2852,68 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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\ - \ }" + 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-clitestxkrt6tvul-79a739\",\n \"fqdn\": \"cliakstest-clitestxkrt6tvul-79a739-e60ln5yo.hcp.centraluseuap.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestxkrt6tvul-79a739-e60ln5yo.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"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/5a52a6b1-804f-47d5-8bcc-6c7b141e6ab1\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4336' + - '4007' content-type: - application/json date: - - Wed, 14 Jun 2023 19:00:44 GMT + - Thu, 29 Jun 2023 09:35:01 GMT expires: - '-1' pragma: - no-cache - server: - - nginx strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -3157,73 +2939,68 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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\ - \ }" + 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-clitestxkrt6tvul-79a739\",\n \"fqdn\": \"cliakstest-clitestxkrt6tvul-79a739-e60ln5yo.hcp.centraluseuap.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestxkrt6tvul-79a739-e60ln5yo.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"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/5a52a6b1-804f-47d5-8bcc-6c7b141e6ab1\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4336' + - '4007' content-type: - application/json date: - - Wed, 14 Jun 2023 19:00:45 GMT + - Thu, 29 Jun 2023 09:35:02 GMT expires: - '-1' pragma: - no-cache - server: - - nginx strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -3238,7 +3015,7 @@ interactions: - request: body: '{"location": "centraluseuap", "sku": {"name": "Base", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": - "1.25.6", "dnsPrefix": "cliakstest-clitest6oyj22sgq-8ecadf", "agentPoolProfiles": + "1.25.6", "dnsPrefix": "cliakstest-clitestxkrt6tvul-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": @@ -3246,14 +3023,13 @@ interactions: {"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"}, + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_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"}]}, + "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": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/5a52a6b1-804f-47d5-8bcc-6c7b141e6ab1"}]}, "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"}}, @@ -3269,81 +3045,76 @@ interactions: Connection: - keep-alive Content-Length: - - '2836' + - '2470' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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\ - \ }" + 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-clitestxkrt6tvul-79a739\",\n \"fqdn\": \"cliakstest-clitestxkrt6tvul-79a739-e60ln5yo.hcp.centraluseuap.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestxkrt6tvul-79a739-e60ln5yo.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"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/5a52a6b1-804f-47d5-8bcc-6c7b141e6ab1\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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/0f41e3da-28f7-41b0-ba02-300b8fcc8476?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/cc280b10-f78b-4d80-b2b3-8ebd62ad1330?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4334' + - '4005' content-type: - application/json date: - - Wed, 14 Jun 2023 19:00:49 GMT + - Thu, 29 Jun 2023 09:35:05 GMT expires: - '-1' pragma: - no-cache - server: - - nginx strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -3353,7 +3124,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -3371,14 +3142,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/0f41e3da-28f7-41b0-ba02-300b8fcc8476?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/cc280b10-f78b-4d80-b2b3-8ebd62ad1330?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 }" + string: "{\n \"name\": \"100b28cc-8bf7-804d-b2b3-8ebd62ad1330\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:35:05.4719966Z\"\n }" headers: cache-control: - no-cache @@ -3387,7 +3158,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:00:49 GMT + - Thu, 29 Jun 2023 09:35:05 GMT expires: - '-1' pragma: @@ -3419,14 +3190,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/0f41e3da-28f7-41b0-ba02-300b8fcc8476?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/cc280b10-f78b-4d80-b2b3-8ebd62ad1330?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 }" + string: "{\n \"name\": \"100b28cc-8bf7-804d-b2b3-8ebd62ad1330\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:35:05.4719966Z\"\n }" headers: cache-control: - no-cache @@ -3435,7 +3206,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:01:19 GMT + - Thu, 29 Jun 2023 09:35:35 GMT expires: - '-1' pragma: @@ -3467,14 +3238,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/0f41e3da-28f7-41b0-ba02-300b8fcc8476?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/cc280b10-f78b-4d80-b2b3-8ebd62ad1330?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 }" + string: "{\n \"name\": \"100b28cc-8bf7-804d-b2b3-8ebd62ad1330\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:35:05.4719966Z\"\n }" headers: cache-control: - no-cache @@ -3483,7 +3254,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:01:49 GMT + - Thu, 29 Jun 2023 09:36:05 GMT expires: - '-1' pragma: @@ -3515,63 +3286,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/0f41e3da-28f7-41b0-ba02-300b8fcc8476?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/cc280b10-f78b-4d80-b2b3-8ebd62ad1330?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: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 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\"\ - : \"Succeeded\",\n \"startTime\": \"2023-06-14T19:00:49.6231587Z\",\n \"\ - endTime\": \"2023-06-14T19:02:41.7624741Z\"\n }" + string: "{\n \"name\": \"100b28cc-8bf7-804d-b2b3-8ebd62ad1330\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:35:05.4719966Z\",\n \"endTime\": + \"2023-06-29T09:36:35.1433793Z\"\n }" headers: cache-control: - no-cache @@ -3580,7 +3303,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:02:49 GMT + - Thu, 29 Jun 2023 09:36:36 GMT expires: - '-1' pragma: @@ -3612,73 +3335,68 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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\ - \ }" + 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-clitestxkrt6tvul-79a739\",\n \"fqdn\": \"cliakstest-clitestxkrt6tvul-79a739-e60ln5yo.hcp.centraluseuap.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestxkrt6tvul-79a739-e60ln5yo.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"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/5a52a6b1-804f-47d5-8bcc-6c7b141e6ab1\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4336' + - '4007' content-type: - application/json date: - - Wed, 14 Jun 2023 19:02:50 GMT + - Thu, 29 Jun 2023 09:36:36 GMT expires: - '-1' pragma: - no-cache - server: - - nginx strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -3706,8 +3424,8 @@ interactions: ParameterSetName: - --resource-group --name --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -3715,21 +3433,19 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/bd790bf5-a17d-45b8-bfff-596026777ec4?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 14 Jun 2023 19:02:51 GMT + - Thu, 29 Jun 2023 09:36:36 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operationresults/bd790bf5-a17d-45b8-bfff-596026777ec4?api-version=2016-03-30 pragma: - no-cache - server: - - nginx strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: 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 index ea2bbf364c9..755da3b368e 100644 --- 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 19:02:54 GMT + - Thu, 29 Jun 2023 09:36:39 GMT expires: - '-1' pragma: @@ -60,12 +60,12 @@ interactions: - --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-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1039-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_and_update_with_csi_drivers_extensibility","date":"2023-06-14T19:02:53Z","module":"acs"},"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-29T09:36:38Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -74,7 +74,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 19:02:54 GMT + - Thu, 29 Jun 2023 09:36:39 GMT expires: - '-1' pragma: @@ -90,19 +90,19 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest235a6voen-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestzbdclizrk-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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {"diskCSIDriver": {"enabled": false}, "fileCSIDriver": {"enabled": false}, "snapshotController": {"enabled": false}}}}' headers: Accept: @@ -114,70 +114,68 @@ interactions: Connection: - keep-alive Content-Length: - - '1865' + - '1536' 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestzbdclizrk-79a739\",\n \"fqdn\": \"cliakstest-clitestzbdclizrk-79a739-x52uufbh.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestzbdclizrk-79a739-x52uufbh.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"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/393e33b4-4812-4776-b493-1cd5b5fb680d?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c842702b-51e3-4ca0-812d-87d994907af0?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3599' + - '3270' content-type: - application/json date: - - Wed, 14 Jun 2023 19:03:01 GMT + - Thu, 29 Jun 2023 09:36:45 GMT expires: - '-1' pragma: @@ -189,7 +187,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -208,14 +206,63 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c842702b-51e3-4ca0-812d-87d994907af0?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"2b7042c8-e351-a04c-812d-87d994907af0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:36:45.7827584Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:36: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 --ssh-key-value -o --disable-disk-driver --disable-file-driver + --disable-snapshot-controller + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c842702b-51e3-4ca0-812d-87d994907af0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b4333e39-1248-7647-b493-1cd5b5fb680d\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T19:03:01.5257594Z\"\n }" + string: "{\n \"name\": \"2b7042c8-e351-a04c-812d-87d994907af0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:36:45.7827584Z\"\n }" headers: cache-control: - no-cache @@ -224,7 +271,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:03:01 GMT + - Thu, 29 Jun 2023 09:37:16 GMT expires: - '-1' pragma: @@ -257,14 +304,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c842702b-51e3-4ca0-812d-87d994907af0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b4333e39-1248-7647-b493-1cd5b5fb680d\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T19:03:01.5257594Z\"\n }" + string: "{\n \"name\": \"2b7042c8-e351-a04c-812d-87d994907af0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:36:45.7827584Z\"\n }" headers: cache-control: - no-cache @@ -273,7 +320,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:03:31 GMT + - Thu, 29 Jun 2023 09:37:46 GMT expires: - '-1' pragma: @@ -306,14 +353,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c842702b-51e3-4ca0-812d-87d994907af0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b4333e39-1248-7647-b493-1cd5b5fb680d\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T19:03:01.5257594Z\"\n }" + string: "{\n \"name\": \"2b7042c8-e351-a04c-812d-87d994907af0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:36:45.7827584Z\"\n }" headers: cache-control: - no-cache @@ -322,7 +369,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:04:02 GMT + - Thu, 29 Jun 2023 09:38:16 GMT expires: - '-1' pragma: @@ -355,14 +402,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c842702b-51e3-4ca0-812d-87d994907af0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b4333e39-1248-7647-b493-1cd5b5fb680d\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T19:03:01.5257594Z\"\n }" + string: "{\n \"name\": \"2b7042c8-e351-a04c-812d-87d994907af0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:36:45.7827584Z\"\n }" headers: cache-control: - no-cache @@ -371,7 +418,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:04:32 GMT + - Thu, 29 Jun 2023 09:38:46 GMT expires: - '-1' pragma: @@ -404,14 +451,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c842702b-51e3-4ca0-812d-87d994907af0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b4333e39-1248-7647-b493-1cd5b5fb680d\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T19:03:01.5257594Z\"\n }" + string: "{\n \"name\": \"2b7042c8-e351-a04c-812d-87d994907af0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:36:45.7827584Z\"\n }" headers: cache-control: - no-cache @@ -420,7 +467,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:05:02 GMT + - Thu, 29 Jun 2023 09:39:16 GMT expires: - '-1' pragma: @@ -453,14 +500,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c842702b-51e3-4ca0-812d-87d994907af0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b4333e39-1248-7647-b493-1cd5b5fb680d\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T19:03:01.5257594Z\"\n }" + string: "{\n \"name\": \"2b7042c8-e351-a04c-812d-87d994907af0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:36:45.7827584Z\"\n }" headers: cache-control: - no-cache @@ -469,7 +516,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:05:32 GMT + - Thu, 29 Jun 2023 09:39:46 GMT expires: - '-1' pragma: @@ -502,14 +549,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c842702b-51e3-4ca0-812d-87d994907af0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b4333e39-1248-7647-b493-1cd5b5fb680d\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T19:03:01.5257594Z\"\n }" + string: "{\n \"name\": \"2b7042c8-e351-a04c-812d-87d994907af0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:36:45.7827584Z\"\n }" headers: cache-control: - no-cache @@ -518,7 +565,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:06:02 GMT + - Thu, 29 Jun 2023 09:40:17 GMT expires: - '-1' pragma: @@ -551,15 +598,211 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c842702b-51e3-4ca0-812d-87d994907af0?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 }" + string: "{\n \"name\": \"2b7042c8-e351-a04c-812d-87d994907af0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:36:45.7827584Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:40: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 --ssh-key-value -o --disable-disk-driver --disable-file-driver + --disable-snapshot-controller + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c842702b-51e3-4ca0-812d-87d994907af0?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"2b7042c8-e351-a04c-812d-87d994907af0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:36:45.7827584Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:41: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 --ssh-key-value -o --disable-disk-driver --disable-file-driver + --disable-snapshot-controller + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c842702b-51e3-4ca0-812d-87d994907af0?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"2b7042c8-e351-a04c-812d-87d994907af0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:36:45.7827584Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:41: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 --ssh-key-value -o --disable-disk-driver --disable-file-driver + --disable-snapshot-controller + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c842702b-51e3-4ca0-812d-87d994907af0?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"2b7042c8-e351-a04c-812d-87d994907af0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:36:45.7827584Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:42: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 --ssh-key-value -o --disable-disk-driver --disable-file-driver + --disable-snapshot-controller + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c842702b-51e3-4ca0-812d-87d994907af0?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"2b7042c8-e351-a04c-812d-87d994907af0\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:36:45.7827584Z\",\n \"endTime\": + \"2023-06-29T09:42:37.1560685Z\"\n }" headers: cache-control: - no-cache @@ -568,7 +811,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:06:33 GMT + - Thu, 29 Jun 2023 09:42:47 GMT expires: - '-1' pragma: @@ -601,66 +844,63 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestzbdclizrk-79a739\",\n \"fqdn\": \"cliakstest-clitestzbdclizrk-79a739-x52uufbh.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestzbdclizrk-79a739-x52uufbh.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0d47f737-cf05-40ad-b4e4-756603e286f5\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4252' + - '3923' content-type: - application/json date: - - Wed, 14 Jun 2023 19:06:33 GMT + - Thu, 29 Jun 2023 09:42:48 GMT expires: - '-1' pragma: @@ -692,66 +932,63 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestzbdclizrk-79a739\",\n \"fqdn\": \"cliakstest-clitestzbdclizrk-79a739-x52uufbh.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestzbdclizrk-79a739-x52uufbh.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0d47f737-cf05-40ad-b4e4-756603e286f5\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4252' + - '3923' content-type: - application/json date: - - Wed, 14 Jun 2023 19:06:35 GMT + - Thu, 29 Jun 2023 09:42:49 GMT expires: - '-1' pragma: @@ -772,21 +1009,20 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": - "cliakstest-clitest235a6voen-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-clitestzbdclizrk-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.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"}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_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/7c1ea9b7-11ce-4eec-996b-59ed69b3ff01"}]}, + "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": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0d47f737-cf05-40ad-b4e4-756603e286f5"}]}, "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"}}, @@ -802,74 +1038,71 @@ interactions: Connection: - keep-alive Content-Length: - - '2812' + - '2446' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestzbdclizrk-79a739\",\n \"fqdn\": \"cliakstest-clitestzbdclizrk-79a739-x52uufbh.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestzbdclizrk-79a739-x52uufbh.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0d47f737-cf05-40ad-b4e4-756603e286f5\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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/4f5fcd96-5170-4d36-8184-363ea1a9e075?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/11380473-ee44-49b5-857b-3631a2946b2d?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4250' + - '3921' content-type: - application/json date: - - Wed, 14 Jun 2023 19:06:40 GMT + - Thu, 29 Jun 2023 09:42:53 GMT expires: - '-1' pragma: @@ -903,14 +1136,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/11380473-ee44-49b5-857b-3631a2946b2d?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 }" + string: "{\n \"name\": \"73043811-44ee-b549-857b-3631a2946b2d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:42:53.6748102Z\"\n }" headers: cache-control: - no-cache @@ -919,7 +1152,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:06:40 GMT + - Thu, 29 Jun 2023 09:42:53 GMT expires: - '-1' pragma: @@ -951,14 +1184,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/11380473-ee44-49b5-857b-3631a2946b2d?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 }" + string: "{\n \"name\": \"73043811-44ee-b549-857b-3631a2946b2d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:42:53.6748102Z\"\n }" headers: cache-control: - no-cache @@ -967,7 +1200,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:07:10 GMT + - Thu, 29 Jun 2023 09:43:24 GMT expires: - '-1' pragma: @@ -999,14 +1232,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/11380473-ee44-49b5-857b-3631a2946b2d?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 }" + string: "{\n \"name\": \"73043811-44ee-b549-857b-3631a2946b2d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:42:53.6748102Z\"\n }" headers: cache-control: - no-cache @@ -1015,7 +1248,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:07:43 GMT + - Thu, 29 Jun 2023 09:43:54 GMT expires: - '-1' pragma: @@ -1047,14 +1280,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/11380473-ee44-49b5-857b-3631a2946b2d?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 }" + string: "{\n \"name\": \"73043811-44ee-b549-857b-3631a2946b2d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:42:53.6748102Z\"\n }" headers: cache-control: - no-cache @@ -1063,7 +1296,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:08:14 GMT + - Thu, 29 Jun 2023 09:44:24 GMT expires: - '-1' pragma: @@ -1095,15 +1328,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/11380473-ee44-49b5-857b-3631a2946b2d?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 }" + string: "{\n \"name\": \"73043811-44ee-b549-857b-3631a2946b2d\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:42:53.6748102Z\",\n \"endTime\": + \"2023-06-29T09:44:32.9690848Z\"\n }" headers: cache-control: - no-cache @@ -1112,7 +1345,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:12:49 GMT + - Thu, 29 Jun 2023 09:44:54 GMT expires: - '-1' pragma: @@ -1144,66 +1377,63 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestzbdclizrk-79a739\",\n \"fqdn\": \"cliakstest-clitestzbdclizrk-79a739-x52uufbh.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestzbdclizrk-79a739-x52uufbh.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0d47f737-cf05-40ad-b4e4-756603e286f5\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4252' + - '3923' content-type: - application/json date: - - Wed, 14 Jun 2023 19:12:49 GMT + - Thu, 29 Jun 2023 09:44:54 GMT expires: - '-1' pragma: @@ -1235,66 +1465,63 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestzbdclizrk-79a739\",\n \"fqdn\": \"cliakstest-clitestzbdclizrk-79a739-x52uufbh.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestzbdclizrk-79a739-x52uufbh.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0d47f737-cf05-40ad-b4e4-756603e286f5\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4252' + - '3923' content-type: - application/json date: - - Wed, 14 Jun 2023 19:12:51 GMT + - Thu, 29 Jun 2023 09:44:56 GMT expires: - '-1' pragma: @@ -1315,21 +1542,20 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": - "cliakstest-clitest235a6voen-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-clitestzbdclizrk-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.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"}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_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/7c1ea9b7-11ce-4eec-996b-59ed69b3ff01"}]}, + "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": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0d47f737-cf05-40ad-b4e4-756603e286f5"}]}, "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"}}, @@ -1346,74 +1572,71 @@ interactions: Connection: - keep-alive Content-Length: - - '2923' + - '2557' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestzbdclizrk-79a739\",\n \"fqdn\": \"cliakstest-clitestzbdclizrk-79a739-x52uufbh.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestzbdclizrk-79a739-x52uufbh.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0d47f737-cf05-40ad-b4e4-756603e286f5\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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/0368d457-6f59-4717-a225-e9ff366bb6cc?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/78f1e572-cb8d-4081-9ac1-02bd23db7b9a?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4247' + - '3918' content-type: - application/json date: - - Wed, 14 Jun 2023 19:12:56 GMT + - Thu, 29 Jun 2023 09:45:01 GMT expires: - '-1' pragma: @@ -1429,7 +1652,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 200 message: OK @@ -1447,14 +1670,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/78f1e572-cb8d-4081-9ac1-02bd23db7b9a?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 }" + string: "{\n \"name\": \"72e5f178-8dcb-8140-9ac1-02bd23db7b9a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:45:01.1438991Z\"\n }" headers: cache-control: - no-cache @@ -1463,7 +1686,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:12:57 GMT + - Thu, 29 Jun 2023 09:45:02 GMT expires: - '-1' pragma: @@ -1495,14 +1718,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/78f1e572-cb8d-4081-9ac1-02bd23db7b9a?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 }" + string: "{\n \"name\": \"72e5f178-8dcb-8140-9ac1-02bd23db7b9a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:45:01.1438991Z\"\n }" headers: cache-control: - no-cache @@ -1511,7 +1734,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:13:27 GMT + - Thu, 29 Jun 2023 09:45:32 GMT expires: - '-1' pragma: @@ -1543,14 +1766,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/78f1e572-cb8d-4081-9ac1-02bd23db7b9a?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 }" + string: "{\n \"name\": \"72e5f178-8dcb-8140-9ac1-02bd23db7b9a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:45:01.1438991Z\"\n }" headers: cache-control: - no-cache @@ -1559,7 +1782,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:13:57 GMT + - Thu, 29 Jun 2023 09:46:02 GMT expires: - '-1' pragma: @@ -1591,14 +1814,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/78f1e572-cb8d-4081-9ac1-02bd23db7b9a?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 }" + string: "{\n \"name\": \"72e5f178-8dcb-8140-9ac1-02bd23db7b9a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:45:01.1438991Z\"\n }" headers: cache-control: - no-cache @@ -1607,7 +1830,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:14:27 GMT + - Thu, 29 Jun 2023 09:46:32 GMT expires: - '-1' pragma: @@ -1639,15 +1862,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/78f1e572-cb8d-4081-9ac1-02bd23db7b9a?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"72e5f178-8dcb-8140-9ac1-02bd23db7b9a\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:45:01.1438991Z\",\n \"endTime\": + \"2023-06-29T09:46:47.5848119Z\"\n }" headers: cache-control: - no-cache @@ -1656,7 +1879,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:14:58 GMT + - Thu, 29 Jun 2023 09:47:02 GMT expires: - '-1' pragma: @@ -1688,66 +1911,63 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestzbdclizrk-79a739\",\n \"fqdn\": \"cliakstest-clitestzbdclizrk-79a739-x52uufbh.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestzbdclizrk-79a739-x52uufbh.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0d47f737-cf05-40ad-b4e4-756603e286f5\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4249' + - '3920' content-type: - application/json date: - - Wed, 14 Jun 2023 19:14:59 GMT + - Thu, 29 Jun 2023 09:47:03 GMT expires: - '-1' pragma: @@ -1779,66 +1999,63 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestzbdclizrk-79a739\",\n \"fqdn\": \"cliakstest-clitestzbdclizrk-79a739-x52uufbh.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestzbdclizrk-79a739-x52uufbh.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0d47f737-cf05-40ad-b4e4-756603e286f5\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4249' + - '3920' content-type: - application/json date: - - Wed, 14 Jun 2023 19:15:01 GMT + - Thu, 29 Jun 2023 09:47:04 GMT expires: - '-1' pragma: @@ -1859,21 +2076,20 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": - "cliakstest-clitest235a6voen-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-clitestzbdclizrk-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.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"}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_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/7c1ea9b7-11ce-4eec-996b-59ed69b3ff01"}]}, + "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": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0d47f737-cf05-40ad-b4e4-756603e286f5"}]}, "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"}}, @@ -1889,74 +2105,71 @@ interactions: Connection: - keep-alive Content-Length: - - '2812' + - '2446' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestzbdclizrk-79a739\",\n \"fqdn\": \"cliakstest-clitestzbdclizrk-79a739-x52uufbh.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestzbdclizrk-79a739-x52uufbh.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0d47f737-cf05-40ad-b4e4-756603e286f5\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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/ebc06270-b8ff-48cb-ab13-a363d1ee9949?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7cb82241-3cc2-4a6c-bc40-c5968690315c?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4247' + - '3918' content-type: - application/json date: - - Wed, 14 Jun 2023 19:15:07 GMT + - Thu, 29 Jun 2023 09:47:09 GMT expires: - '-1' pragma: @@ -1972,7 +2185,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -1990,14 +2203,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7cb82241-3cc2-4a6c-bc40-c5968690315c?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 }" + string: "{\n \"name\": \"4122b87c-c23c-6c4a-bc40-c5968690315c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:47:08.8629551Z\"\n }" headers: cache-control: - no-cache @@ -2006,7 +2219,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:15:08 GMT + - Thu, 29 Jun 2023 09:47:09 GMT expires: - '-1' pragma: @@ -2038,14 +2251,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7cb82241-3cc2-4a6c-bc40-c5968690315c?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 }" + string: "{\n \"name\": \"4122b87c-c23c-6c4a-bc40-c5968690315c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:47:08.8629551Z\"\n }" headers: cache-control: - no-cache @@ -2054,7 +2267,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:15:38 GMT + - Thu, 29 Jun 2023 09:47:39 GMT expires: - '-1' pragma: @@ -2086,14 +2299,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7cb82241-3cc2-4a6c-bc40-c5968690315c?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 }" + string: "{\n \"name\": \"4122b87c-c23c-6c4a-bc40-c5968690315c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:47:08.8629551Z\"\n }" headers: cache-control: - no-cache @@ -2102,7 +2315,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:16:08 GMT + - Thu, 29 Jun 2023 09:48:09 GMT expires: - '-1' pragma: @@ -2134,14 +2347,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7cb82241-3cc2-4a6c-bc40-c5968690315c?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 }" + string: "{\n \"name\": \"4122b87c-c23c-6c4a-bc40-c5968690315c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:47:08.8629551Z\"\n }" headers: cache-control: - no-cache @@ -2150,7 +2363,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:16:38 GMT + - Thu, 29 Jun 2023 09:48:40 GMT expires: - '-1' pragma: @@ -2182,15 +2395,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7cb82241-3cc2-4a6c-bc40-c5968690315c?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 }" + string: "{\n \"name\": \"4122b87c-c23c-6c4a-bc40-c5968690315c\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:47:08.8629551Z\",\n \"endTime\": + \"2023-06-29T09:48:49.7354926Z\"\n }" headers: cache-control: - no-cache @@ -2199,7 +2412,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:17:08 GMT + - Thu, 29 Jun 2023 09:49:10 GMT expires: - '-1' pragma: @@ -2231,66 +2444,63 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestzbdclizrk-79a739\",\n \"fqdn\": \"cliakstest-clitestzbdclizrk-79a739-x52uufbh.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestzbdclizrk-79a739-x52uufbh.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0d47f737-cf05-40ad-b4e4-756603e286f5\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4249' + - '3920' content-type: - application/json date: - - Wed, 14 Jun 2023 19:17:09 GMT + - Thu, 29 Jun 2023 09:49:10 GMT expires: - '-1' pragma: @@ -2323,66 +2533,63 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestzbdclizrk-79a739\",\n \"fqdn\": \"cliakstest-clitestzbdclizrk-79a739-x52uufbh.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestzbdclizrk-79a739-x52uufbh.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0d47f737-cf05-40ad-b4e4-756603e286f5\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4249' + - '3920' content-type: - application/json date: - - Wed, 14 Jun 2023 19:17:12 GMT + - Thu, 29 Jun 2023 09:49:11 GMT expires: - '-1' pragma: @@ -2403,21 +2610,20 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": - "cliakstest-clitest235a6voen-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-clitestzbdclizrk-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.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"}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_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/7c1ea9b7-11ce-4eec-996b-59ed69b3ff01"}]}, + "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": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0d47f737-cf05-40ad-b4e4-756603e286f5"}]}, "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"}}, @@ -2434,75 +2640,72 @@ interactions: Connection: - keep-alive Content-Length: - - '2926' + - '2560' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestzbdclizrk-79a739\",\n \"fqdn\": \"cliakstest-clitestzbdclizrk-79a739-x52uufbh.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestzbdclizrk-79a739-x52uufbh.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0d47f737-cf05-40ad-b4e4-756603e286f5\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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/33fab3d2-976b-43e0-b518-a48e3fb848dc?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8bfb6718-a83f-41ea-a880-c67ad5491a94?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4250' + - '3921' content-type: - application/json date: - - Wed, 14 Jun 2023 19:17:17 GMT + - Thu, 29 Jun 2023 09:49:16 GMT expires: - '-1' pragma: @@ -2537,14 +2740,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8bfb6718-a83f-41ea-a880-c67ad5491a94?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 }" + string: "{\n \"name\": \"1867fb8b-3fa8-ea41-a880-c67ad5491a94\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:49:15.6287757Z\"\n }" headers: cache-control: - no-cache @@ -2553,7 +2756,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:17:17 GMT + - Thu, 29 Jun 2023 09:49:16 GMT expires: - '-1' pragma: @@ -2586,14 +2789,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8bfb6718-a83f-41ea-a880-c67ad5491a94?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 }" + string: "{\n \"name\": \"1867fb8b-3fa8-ea41-a880-c67ad5491a94\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:49:15.6287757Z\"\n }" headers: cache-control: - no-cache @@ -2602,7 +2805,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:17:47 GMT + - Thu, 29 Jun 2023 09:49:46 GMT expires: - '-1' pragma: @@ -2635,14 +2838,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8bfb6718-a83f-41ea-a880-c67ad5491a94?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 }" + string: "{\n \"name\": \"1867fb8b-3fa8-ea41-a880-c67ad5491a94\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:49:15.6287757Z\"\n }" headers: cache-control: - no-cache @@ -2651,7 +2854,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:18:18 GMT + - Thu, 29 Jun 2023 09:50:16 GMT expires: - '-1' pragma: @@ -2684,14 +2887,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8bfb6718-a83f-41ea-a880-c67ad5491a94?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 }" + string: "{\n \"name\": \"1867fb8b-3fa8-ea41-a880-c67ad5491a94\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:49:15.6287757Z\"\n }" headers: cache-control: - no-cache @@ -2700,7 +2903,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:18:48 GMT + - Thu, 29 Jun 2023 09:50:46 GMT expires: - '-1' pragma: @@ -2733,15 +2936,15 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8bfb6718-a83f-41ea-a880-c67ad5491a94?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"1867fb8b-3fa8-ea41-a880-c67ad5491a94\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:49:15.6287757Z\",\n \"endTime\": + \"2023-06-29T09:51:02.8519141Z\"\n }" headers: cache-control: - no-cache @@ -2750,7 +2953,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:19:18 GMT + - Thu, 29 Jun 2023 09:51:16 GMT expires: - '-1' pragma: @@ -2783,66 +2986,63 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestzbdclizrk-79a739\",\n \"fqdn\": \"cliakstest-clitestzbdclizrk-79a739-x52uufbh.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestzbdclizrk-79a739-x52uufbh.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0d47f737-cf05-40ad-b4e4-756603e286f5\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4252' + - '3923' content-type: - application/json date: - - Wed, 14 Jun 2023 19:19:18 GMT + - Thu, 29 Jun 2023 09:51:17 GMT expires: - '-1' pragma: @@ -2876,8 +3076,8 @@ interactions: ParameterSetName: - --resource-group --name --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -2885,17 +3085,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0b1b1859-8b0d-47d0-9c61-67784c370176?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 14 Jun 2023 19:19:23 GMT + - Thu, 29 Jun 2023 09:51:19 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/0b1b1859-8b0d-47d0-9c61-67784c370176?api-version=2016-03-30 pragma: - no-cache server: @@ -2905,7 +3105,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_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 index cde1d07ef8d..97727c7d9e3 100644 --- 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,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name --address-prefixes --subnet-name --subnet-prefix User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1041-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_and_update_with_http_proxy_config","date":"2023-06-14T19:19:25Z","module":"acs"},"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-07-07T05:13:02Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 19:19:26 GMT + - Fri, 07 Jul 2023 05:13:04 GMT expires: - '-1' pragma: @@ -61,32 +61,30 @@ interactions: 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) + - AZURECLI/2.50.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1041-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?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/\\\"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}" + 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/\\\"456db2bc-5f56-4b4f-9aab-596568107bd4\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": + \"3c795de6-36f7-4225-8ed8-9ed320efbcd6\",\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/\\\"456db2bc-5f56-4b4f-9aab-596568107bd4\\\"\",\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/cb7ddaf4-dca3-4ece-98a7-3c3001bd8118?api-version=2022-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/334367f2-6cb8-41f4-a3d9-81a9913d3fbe?api-version=2022-01-01 cache-control: - no-cache content-length: @@ -94,7 +92,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 19:19:29 GMT + - Fri, 07 Jul 2023 05:13:06 GMT expires: - '-1' pragma: @@ -107,7 +105,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0c8986a9-73d5-4ba8-806a-bc3d1cfe7af5 + - 04432bec-e996-4338-b8b4-947056b20aef x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -127,9 +125,9 @@ interactions: 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) + - AZURECLI/2.50.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/334367f2-6cb8-41f4-a3d9-81a9913d3fbe?api-version=2022-01-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -141,7 +139,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 19:19:29 GMT + - Fri, 07 Jul 2023 05:13:06 GMT expires: - '-1' pragma: @@ -158,7 +156,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 940adcfe-3c9d-42d4-89c6-c11267617cac + - d08fcead-c22e-4e58-9ec8-9ad813230795 status: code: 200 message: OK @@ -176,9 +174,9 @@ interactions: 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) + - AZURECLI/2.50.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/334367f2-6cb8-41f4-a3d9-81a9913d3fbe?api-version=2022-01-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -190,7 +188,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 19:19:40 GMT + - Fri, 07 Jul 2023 05:13:16 GMT expires: - '-1' pragma: @@ -207,7 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 590864c9-4cd9-4c14-8bdb-1c33a82fb0a0 + - e69dcee5-b5b0-4e3f-acb0-5fa601e6dd81 status: code: 200 message: OK @@ -225,27 +223,25 @@ interactions: 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) + - AZURECLI/2.50.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1041-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/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/\\\"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}" + 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/\\\"c8175c24-3346-4805-8cae-5831e2055ff0\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": + \"3c795de6-36f7-4225-8ed8-9ed320efbcd6\",\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/\\\"c8175c24-3346-4805-8cae-5831e2055ff0\\\"\",\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 @@ -254,9 +250,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 19:19:40 GMT + - Fri, 07 Jul 2023 05:13:16 GMT etag: - - W/"0ff7aa0d-cc00-4085-8840-a87fbd7d5b49" + - W/"c8175c24-3346-4805-8cae-5831e2055ff0" expires: - '-1' pragma: @@ -273,7 +269,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b44aa632-a04d-4576-a645-85b24ae585f1 + - 0702d3ac-e856-4c97-9e16-00defbdd9bec status: code: 200 message: OK @@ -295,22 +291,22 @@ interactions: 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) + - AZURECLI/2.50.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1041-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/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/\\\"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}" + 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/\\\"0a5d1b93-5069-487b-b3bf-19dd6c13e005\\\"\",\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/280a306a-2fef-4f66-971c-0df705631699?api-version=2022-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e5191c57-7eff-4e39-b217-f29bd56fa55d?api-version=2022-01-01 cache-control: - no-cache content-length: @@ -318,7 +314,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 19:19:42 GMT + - Fri, 07 Jul 2023 05:13:17 GMT expires: - '-1' pragma: @@ -331,7 +327,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d82b368a-462a-4079-a1ee-1a75eeda6454 + - cf4dac01-e8b5-4387-a83f-913d0e4d2973 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -351,58 +347,9 @@ interactions: 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) + - AZURECLI/2.50.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) 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/280a306a-2fef-4f66-971c-0df705631699?api-version=2022-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e5191c57-7eff-4e39-b217-f29bd56fa55d?api-version=2022-01-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -414,7 +361,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 19:19:52 GMT + - Fri, 07 Jul 2023 05:13:17 GMT expires: - '-1' pragma: @@ -431,7 +378,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0b80e68d-7ebb-4124-9b56-f79218861f84 + - 9303f03a-59e1-40d3-83d7-c5a7276dd82b status: code: 200 message: OK @@ -449,17 +396,17 @@ interactions: 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) + - AZURECLI/2.50.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1041-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/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/\\\"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}" + 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/\\\"0ee3866d-1fa1-40b1-83c2-a12109cefc7a\\\"\",\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 @@ -468,9 +415,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 19:19:53 GMT + - Fri, 07 Jul 2023 05:13:17 GMT etag: - - W/"4bbeed3e-83bd-491e-adde-30ef13559c7e" + - W/"0ee3866d-1fa1-40b1-83c2-a12109cefc7a" expires: - '-1' pragma: @@ -487,7 +434,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 46ed44ee-1459-46e6-a638-a3f9eab47f5c + - dd1a8ead-0441-42b7-a23e-335b47dd11cf status: code: 200 message: OK @@ -505,17 +452,17 @@ interactions: ParameterSetName: - --resource-group --vnet-name --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.50.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1041-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/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/\\\"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}" + 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/\\\"0ee3866d-1fa1-40b1-83c2-a12109cefc7a\\\"\",\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 @@ -524,9 +471,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 19:19:55 GMT + - Fri, 07 Jul 2023 05:13:18 GMT etag: - - W/"4bbeed3e-83bd-491e-adde-30ef13559c7e" + - W/"0ee3866d-1fa1-40b1-83c2-a12109cefc7a" expires: - '-1' pragma: @@ -543,7 +490,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 00075827-37ac-4d01-9e2d-6173b65aec8d + - 4bddf369-7eea-4913-afee-6dac35fa2ed7 status: code: 200 message: OK @@ -562,12 +509,12 @@ interactions: - --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) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1041-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_and_update_with_http_proxy_config","date":"2023-06-14T19:19:25Z","module":"acs"},"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-07-07T05:13:02Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -576,7 +523,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 19:19:57 GMT + - Fri, 07 Jul 2023 05:13:18 GMT expires: - '-1' pragma: @@ -605,14 +552,14 @@ interactions: - --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-compute/29.1.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.8.10 (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) 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.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]" + string: "[\r\n {\r\n \"location\": \"westus2\",\r\n \"name\": \"20.04.202307010\",\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.202307010\"\r\n + \ }\r\n]" headers: cache-control: - no-cache @@ -621,7 +568,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 19:19:58 GMT + - Fri, 07 Jul 2023 05:13:19 GMT expires: - '-1' pragma: @@ -657,26 +604,24 @@ interactions: - --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-compute/29.1.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.8.10 (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) 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.202305150?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.202307010?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.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}" + 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.202307010\",\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.202307010\"\r\n}" headers: cache-control: - no-cache @@ -685,7 +630,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 19:19:59 GMT + - Fri, 07 Jul 2023 05:13:19 GMT expires: - '-1' pragma: @@ -721,174 +666,12 @@ interactions: - --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) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) 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"},{"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 - 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","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 - West","Brazil South","Australia East","Australia Southeast","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","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 - 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","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 - West","Brazil South","Australia East","Australia Southeast","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","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 - 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","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 - West","Brazil South","Australia East","Australia Southeast","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","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 - West","Brazil South","Australia East","Australia Southeast","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","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 - West","Brazil South","Australia East","Australia Southeast","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","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 + 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":"virtualNetworkGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -896,36 +679,8 @@ 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","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","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 - South","Australia East","Australia Southeast","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","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 + Central","Poland Central","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","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":"localNetworkGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -933,11 +688,8 @@ 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","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 + Central","Poland Central","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","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 West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -945,11 +697,8 @@ 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","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 + Central","Poland Central","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","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 West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -957,11 +706,23 @@ 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","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 + Central","Poland Central","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","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":"Poland Central","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":"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 @@ -969,11 +730,8 @@ 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","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 + Central","Poland Central","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","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 West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -981,40 +739,7 @@ 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","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","West Europe","East Asia","Southeast Asia","North Central US","South - Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast","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 + Central","Poland Central","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","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 @@ -1022,11 +747,7 @@ 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","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 + Central","Poland Central","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","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 @@ -1034,11 +755,7 @@ 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","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 + Central","Poland Central","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","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 @@ -1046,11 +763,7 @@ 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","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 + Central","Poland Central","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","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 @@ -1058,11 +771,7 @@ 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","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 + Central","Poland Central","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","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 @@ -1070,13 +779,7 @@ 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","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 + Central","Poland Central","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","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 @@ -1084,11 +787,8 @@ 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","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 + Central","Poland Central","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","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 West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1096,11 +796,7 @@ 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","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 + Central","Poland Central","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","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":"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 South","Australia East","Australia Southeast","Central India","South @@ -1108,38 +804,44 @@ 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","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 + Central","Poland Central","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","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 West","Brazil South","Australia East","Australia Southeast","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","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 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","Poland Central","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","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 + South","Australia East","Australia Southeast","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","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","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 + South","Australia East","Australia Southeast","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","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","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 + South","Australia East","Australia Southeast","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","UAE + North","South Africa North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland + Central","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","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 West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1147,10 +849,8 @@ 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","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 + Central","Poland Central","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","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":"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 @@ -1158,21 +858,16 @@ 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","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 + Central","Poland Central","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","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 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","UAE North","South Africa North","Switzerland North","Germany West Central","Norway 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"],"capabilities":"None"},{"resourceType":"locations/setLoadBalancerFrontendPublicIpAddresses","locations":["West + Central","Poland Central","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","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":"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 @@ -1180,21 +875,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","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 - 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","Poland Central","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"],"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 + East","Australia Southeast","Central India","South India","West India","Canada + Central","Canada East","West Central US","West US 2","UK West","UK South","France + 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","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 + Central","Poland Central","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","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":"Poland Central","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 US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1202,10 +908,7 @@ 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","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 + Central","Poland Central","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","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":"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 @@ -1213,10 +916,8 @@ 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","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 + Central","Poland Central","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","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/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 @@ -1224,10 +925,7 @@ 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","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 + Central","Poland Central","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"],"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 @@ -1235,10 +933,81 @@ 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","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 + Central","Poland Central","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","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":"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 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","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","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":"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":"dnsResolvers","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","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 + 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","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 + 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","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 + 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","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 + 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","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","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","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","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":"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":"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":"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 West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1246,10 +1015,127 @@ 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","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 + Central","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"],"capabilities":"None"},{"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"],"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","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":["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":"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"],"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","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":["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":"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":"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 + South","Australia East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallManagedRuleSets","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 + South","Australia East","Australia Southeast"],"apiVersions":["2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01"],"defaultApiVersion":"2020-11-01","capabilities":"None"},{"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","Poland Central","East + US 2 EUAP","Central US EUAP"],"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 + US","UAE North","Germany West Central","Switzerland West","East Asia","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","Poland 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 + 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","Poland Central","East + US 2 EUAP","Central US EUAP"],"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","Poland Central","East + US 2 EUAP","Central US EUAP"],"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","Poland 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 + 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","Poland Central","East + US 2 EUAP","Central US EUAP"],"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 + 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","Poland Central","East + US 2 EUAP","Central US EUAP"],"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":"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 @@ -1257,10 +1143,8 @@ 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","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 + Central","Poland Central","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","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":"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 West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1268,10 +1152,7 @@ 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","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 + Central","Poland Central","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","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 @@ -1279,10 +1160,23 @@ 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","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 + Central","Poland Central","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","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":"Poland Central","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 US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1290,10 +1184,23 @@ 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","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 + Central","Poland Central","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","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":"Poland Central","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":"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 West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1301,10 +1208,7 @@ 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","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 + Central","Poland Central","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"],"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 @@ -1312,10 +1216,23 @@ 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","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 + Central","Poland Central","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"],"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":"Poland Central","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":"networkInterfaces","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1323,10 +1240,8 @@ 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","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 + Central","Poland Central","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","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":"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 West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1334,10 +1249,8 @@ 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","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 + Central","Poland Central","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"],"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 West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1345,10 +1258,8 @@ 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","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 + Central","Poland Central","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","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, + 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 West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1356,10 +1267,25 @@ 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","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 + Central","Poland Central","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","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","Poland + Central","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","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 + South","Australia East","Australia Southeast","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","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","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":"networkSecurityGroups","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1367,10 +1293,8 @@ 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","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 + Central","Poland Central","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","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 West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1378,10 +1302,8 @@ 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","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 + Central","Poland Central","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","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 West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1389,10 +1311,8 @@ 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","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 + Central","Poland Central","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","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 West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1400,10 +1320,8 @@ 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","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 + Central","Poland Central","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","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 West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1411,74 +1329,8 @@ 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","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 - 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","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 - 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","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 - 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","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 - 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","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 - 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","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","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","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","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 + Central","Poland Central","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","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 @@ -1486,11 +1338,23 @@ 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","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 + Central","Poland Central","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","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":"Poland Central","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":"networkWatchers","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1498,10 +1362,8 @@ 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","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 + Central","Poland Central","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","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 West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1509,10 +1371,8 @@ 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","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 + Central","Poland Central","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","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 West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1520,10 +1380,8 @@ 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","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 + Central","Poland Central","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","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 West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1531,10 +1389,8 @@ 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","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 + Central","Poland Central","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","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":"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 @@ -1542,10 +1398,7 @@ 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","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 + Central","Poland Central","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","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 @@ -1553,10 +1406,7 @@ 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","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 + Central","Poland Central","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","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 @@ -1564,11 +1414,7 @@ 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","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 + Central","Poland Central","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","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 @@ -1576,10 +1422,7 @@ 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","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 + Central","Poland Central","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"],"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 @@ -1587,71 +1430,15 @@ 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","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 - South","Australia East","Australia Southeast","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","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 + Central","Poland Central","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"],"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 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","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 - South","Australia East","Australia Southeast","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","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 - South","Australia East","Australia Southeast","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","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 - South","Australia East","Australia Southeast","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","UAE - North","South Africa North","Switzerland North","Germany West Central","Norway - 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 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","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","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 @@ -1659,11 +1446,7 @@ 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","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 + Central","Poland Central","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","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 @@ -1671,9 +1454,7 @@ 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","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 + Central","Poland Central","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","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/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 @@ -1681,44 +1462,15 @@ 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","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 + Central","Poland Central","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","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 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","UAE North","South Africa North","Switzerland North","Germany West + 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","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","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","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 + Central","Poland Central","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","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 @@ -1726,38 +1478,71 @@ 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","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 - East","Australia Southeast","Central India","South India","West India","Canada - Central","Canada East","West Central US","West US 2","UK West","UK South","France - Central","Australia Central","Japan West","Japan East","Korea Central","Korea - South","South Africa North","UAE North","Switzerland North","Germany West + Central","Poland Central","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","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 + 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","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","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 + 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","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","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 + 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","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"],"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 + 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","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"],"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 + 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","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","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 + 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","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"],"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 + 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","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"],"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 + 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","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 + Central","Poland Central","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"],"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 @@ -1765,10 +1550,7 @@ 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","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 + Central","Poland Central","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","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 @@ -1776,10 +1558,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","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, + Central","Poland Central","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","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 + 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","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","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 + 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","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","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 + 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","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","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":"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 + 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","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","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 @@ -1788,12 +1599,7 @@ 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","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, + Central","Poland Central","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","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/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 @@ -1802,10 +1608,7 @@ 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","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 + Central","Poland Central","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"],"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 @@ -1813,10 +1616,7 @@ 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","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, + Central","Poland Central","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","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 @@ -1825,28 +1625,8 @@ interactions: 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","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 - South","Australia East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallManagedRuleSets","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 - South","Australia East","Australia Southeast"],"apiVersions":["2022-05-01","2020-11-01","2020-04-01","2019-10-01","2019-03-01"],"defaultApiVersion":"2020-11-01","capabilities":"None"},{"resourceType":"locations/bareMetalTenants","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","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","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 + Central","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","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":"locations/bareMetalTenants","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1854,33 +1634,7 @@ 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","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","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 + Central","Poland Central","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","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":"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 West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1888,85 +1642,8 @@ 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","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","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 - US","UAE North","Germany West Central","Switzerland West","East Asia","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","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","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","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","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 - 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","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 - 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","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 + Central","Poland Central","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"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"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 @@ -1974,10 +1651,7 @@ 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","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 + Central","Poland Central","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"],"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 @@ -1985,13 +1659,7 @@ 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","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 + Central","Poland Central","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"],"capabilities":"None"},{"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 Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia @@ -2014,16 +1682,18 @@ interactions: Central US","South Central US","West US","West US 2","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia East","Australia Southeast"],"apiVersions":["2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"SupportsTags, - SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + SupportsLocation"},{"resourceType":"networkWatchers/lenses","locations":["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","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"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '176605' + - '156364' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 19:20:02 GMT + - Fri, 07 Jul 2023 05:13:20 GMT expires: - '-1' pragma: @@ -2052,40 +1722,467 @@ interactions: - --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) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1041-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/cliakstest000002/subnets/proxy-subnet?api-version=2023-04-01 response: body: - 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"}' + string: '{"name":"proxy-subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002/subnets/proxy-subnet","etag":"W/\"0ee3866d-1fa1-40b1-83c2-a12109cefc7a\"","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: + - '481' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Jul 2023 05:13:20 GMT + etag: + - W/"0ee3866d-1fa1-40b1-83c2-a12109cefc7a" + 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: + - dbb36b60-9d02-4f68-9e0a-4acd5dbb9ec7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + 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.50.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.8.10 (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) + 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.202307010\",\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.202307010\"\r\n + \ }\r\n]" + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Jul 2023 05:13:21 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-ratelimit-remaining-resource: + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15998,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43998 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + 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.50.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.8.10 (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) + 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.202307010?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.202307010\",\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.202307010\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1067' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Jul 2023 05:13:21 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-ratelimit-remaining-resource: + - Microsoft.Compute/GetVMImageFromLocation3Min;12998,Microsoft.Compute/GetVMImageFromLocation30Min;73998 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + 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.50.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.8.10 (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) + 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.202307010\",\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.202307010\"\r\n + \ }\r\n]" + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Jul 2023 05:13:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15997,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43997 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + 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.50.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.8.10 (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) + 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.202307010?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.202307010\",\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.202307010\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1067' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Jul 2023 05:13:22 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-ratelimit-remaining-resource: + - Microsoft.Compute/GetVMImageFromLocation3Min;12997,Microsoft.Compute/GetVMImageFromLocation30Min;73997 + status: + code: 200 + message: OK +- request: + body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {}, "variables": {}, "resources": + [{"type": "Microsoft.Network/networkSecurityGroups", "name": "cli-proxy-vmNSG", + "apiVersion": "2015-06-15", "location": "westus2", "tags": {}, "dependsOn": + [], "properties": {"securityRules": [{"name": "default-allow-ssh", "properties": + {"protocol": "Tcp", "sourcePortRange": "*", "destinationPortRange": "22", "sourceAddressPrefix": + "*", "destinationAddressPrefix": "*", "access": "Allow", "priority": 1000, "direction": + "Inbound"}}]}}, {"apiVersion": "2015-06-15", "type": "Microsoft.Network/networkInterfaces", + "name": "cli-proxy-vmVMNic", "location": "westus2", "tags": {}, "dependsOn": + ["Microsoft.Network/networkSecurityGroups/cli-proxy-vmNSG"], "properties": {"ipConfigurations": + [{"name": "ipconfigcli-proxy-vm", "properties": {"privateIPAllocationMethod": + "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002/subnets/proxy-subnet"}}}], + "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/networkSecurityGroups/cli-proxy-vmNSG"}}}, + {"apiVersion": "2022-11-01", "type": "Microsoft.Compute/virtualMachines", "name": + "cli-proxy-vm", "location": "westus2", "tags": {}, "dependsOn": ["Microsoft.Network/networkInterfaces/cli-proxy-vmVMNic"], + "properties": {"hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "networkProfile": + {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/networkInterfaces/cli-proxy-vmVMNic", + "properties": {"deleteOption": null}}]}, "storageProfile": {"osDisk": {"createOption": + "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==", + "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": {"publicKeys": + [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC2NIZQuSYSX3KHqrrvUw4ws2JNBqd6yfpqvKSXCLnnjVArBiBKCC0fk0P2XcRy/Juyf6Jc6bfNjDQKlqjAohlg2GedOfCuikaK9CMR6cXzCq+KRzS6f38UHjvJhBNpKLqKqhZ+chy/WuhGGNaQWVixb3H3FXJL8A8Z/PNG6J+Sc9qhsvoS4ufw86XLKwTKUuZ+atJn/6tGHGyWGNGK9ZM3D3lNJ6lE9KY1IIzP2H92Qyb9oJfU34cWMMAJws6WFbB+9frF82osJ/UymTyCiFgEElqX1VEVxoXvNIJHIuP7M6onz8PuwIyr7GU7abQj38Cm73d7DaJsrMEps+9PT9pZ + azcli_aks_live_test@example.com", "path": "/home/azureuser/.ssh/authorized_keys"}]}}}}}], + "outputs": {}}, "parameters": {}, "mode": "incremental"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + Content-Length: + - '12086' + Content-Type: + - application/json + ParameterSetName: + - --resource-group --name --image --ssh-key-values --public-ip-address --custom-data + --vnet-name --subnet + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) + 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_aZbHhNXGuEwNZYMEkjdl9vtLzwfRkQ9w","name":"vm_deploy_aZbHhNXGuEwNZYMEkjdl9vtLzwfRkQ9w","type":"Microsoft.Resources/deployments","properties":{"templateHash":"12314260590021441124","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2023-07-07T05:13:25.2089505Z","duration":"PT0.000587S","correlationId":"67d2d36f-2831-47b8-a211-a9642d369d72","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_aZbHhNXGuEwNZYMEkjdl9vtLzwfRkQ9w/operationStatuses/08585129000817646203?api-version=2022-09-01 + cache-control: + - no-cache + content-length: + - '1817' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 07 Jul 2023 05:13:25 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: 201 + message: Created +- 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.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585129000817646203?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: + - Fri, 07 Jul 2023 05:13:25 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.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585129000817646203?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: + - Fri, 07 Jul 2023 05:13:55 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.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585129000817646203?api-version=2022-09-01 + response: + body: + string: '{"status":"Succeeded"}' headers: cache-control: - no-cache content-length: - - '481' + - '22' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 19:20:02 GMT - etag: - - W/"4bbeed3e-83bd-491e-adde-30ef13559c7e" + - Fri, 07 Jul 2023 05:14:25 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: - - cbaab900-491f-4fab-8934-464bec7e02c6 status: code: 200 message: OK @@ -2093,7 +2190,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -2104,40 +2201,31 @@ interactions: - --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-compute/29.1.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) 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 + 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: "[\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]" + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Resources/deployments/vm_deploy_aZbHhNXGuEwNZYMEkjdl9vtLzwfRkQ9w","name":"vm_deploy_aZbHhNXGuEwNZYMEkjdl9vtLzwfRkQ9w","type":"Microsoft.Resources/deployments","properties":{"templateHash":"12314260590021441124","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2023-07-07T05:14:07.6797956Z","duration":"PT42.4714321S","correlationId":"67d2d36f-2831-47b8-a211-a9642d369d72","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 content-length: - - '304' + - '2310' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 19:20:04 GMT + - Fri, 07 Jul 2023 05:14:25 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-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15998,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43998 status: code: 200 message: OK @@ -2156,35 +2244,65 @@ interactions: - --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-compute/29.1.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.8.10 (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) 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.202305150?api-version=2022-11-01 + 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 \"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}" + 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\": \"3b557673-53c0-459f-a065-60b58925e989\",\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.202307010\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"cli-proxy-vm_OsDisk_1_f5b5feec69014f7fb69a99b02ffc72a2\",\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_OsDisk_1_f5b5feec69014f7fb69a99b02ffc72a2\"\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 AAAAB3NzaC1yc2EAAAADAQABAAABAQC2NIZQuSYSX3KHqrrvUw4ws2JNBqd6yfpqvKSXCLnnjVArBiBKCC0fk0P2XcRy/Juyf6Jc6bfNjDQKlqjAohlg2GedOfCuikaK9CMR6cXzCq+KRzS6f38UHjvJhBNpKLqKqhZ+chy/WuhGGNaQWVixb3H3FXJL8A8Z/PNG6J+Sc9qhsvoS4ufw86XLKwTKUuZ+atJn/6tGHGyWGNGK9ZM3D3lNJ6lE9KY1IIzP2H92Qyb9oJfU34cWMMAJws6WFbB+9frF82osJ/UymTyCiFgEElqX1VEVxoXvNIJHIuP7M6onz8PuwIyr7GU7abQj38Cm73d7DaJsrMEps+9PT9pZ + 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 \"computerName\": + \"cli-proxy-vm\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": + \"20.04\",\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.9.1.1\",\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-07-07T05:14:24+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"cli-proxy-vm_OsDisk_1_f5b5feec69014f7fb69a99b02ffc72a2\",\r\n + \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2023-07-07T05:13:36.6988457+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-07-07T05:14:06.0580758+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-07-07T05:13:32.7770337+00:00\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '1067' + - '4073' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 19:20:04 GMT + - Fri, 07 Jul 2023 05:14:27 GMT expires: - '-1' pragma: @@ -2201,7 +2319,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12998,Microsoft.Compute/GetVMImageFromLocation30Min;73998 + - Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31991 status: code: 200 message: OK @@ -2220,23 +2338,46 @@ interactions: - --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-compute/29.1.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.50.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) 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 + 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 {\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]" + 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/\\\"e6231ec1-d568-4782-a310-cdf68d92821e\\\"\",\r\n \"tags\": + {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"8cbe3256-578f-4f8e-b216-a9d09efa6c64\",\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/\\\"e6231ec1-d568-4782-a310-cdf68d92821e\\\"\",\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\": + \"2zoxsphxgysufdwyt1jsb1320g.xx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-FD-11-7D\",\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 content-length: - - '304' + - '2243' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 19:20:05 GMT + - Fri, 07 Jul 2023 05:14:27 GMT + etag: + - W/"e6231ec1-d568-4782-a310-cdf68d92821e" expires: - '-1' pragma: @@ -2252,8 +2393,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15997,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43997 + x-ms-arm-service-request-id: + - ec905e58-119a-4198-8a05-e29ecc353e73 status: code: 200 message: OK @@ -2265,172 +2406,128 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - vm create + - aks create Connection: - keep-alive ParameterSetName: - - --resource-group --name --image --ssh-key-values --public-ip-address --custom-data - --vnet-name --subnet + - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity + --yes --vnet-subnet-id -o User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) 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.202305150?api-version=2022-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-05-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.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}" + 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"}}' headers: cache-control: - no-cache content-length: - - '1067' + - '244' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 19:20:06 GMT + - Fri, 07 Jul 2023 05:14:27 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-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMImageFromLocation3Min;12997,Microsoft.Compute/GetVMImageFromLocation30Min;73997 + x-ms-failure-cause: + - gateway status: - code: 200 - message: OK + code: 404 + message: Not Found - request: - body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", - "contentVersion": "1.0.0.0", "parameters": {}, "variables": {}, "resources": - [{"type": "Microsoft.Network/networkSecurityGroups", "name": "cli-proxy-vmNSG", - "apiVersion": "2015-06-15", "location": "westus2", "tags": {}, "dependsOn": - [], "properties": {"securityRules": [{"name": "default-allow-ssh", "properties": - {"protocol": "Tcp", "sourcePortRange": "*", "destinationPortRange": "22", "sourceAddressPrefix": - "*", "destinationAddressPrefix": "*", "access": "Allow", "priority": 1000, "direction": - "Inbound"}}]}}, {"apiVersion": "2015-06-15", "type": "Microsoft.Network/networkInterfaces", - "name": "cli-proxy-vmVMNic", "location": "westus2", "tags": {}, "dependsOn": - ["Microsoft.Network/networkSecurityGroups/cli-proxy-vmNSG"], "properties": {"ipConfigurations": - [{"name": "ipconfigcli-proxy-vm", "properties": {"privateIPAllocationMethod": - "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002/subnets/proxy-subnet"}}}], - "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/networkSecurityGroups/cli-proxy-vmNSG"}}}, - {"apiVersion": "2022-11-01", "type": "Microsoft.Compute/virtualMachines", "name": - "cli-proxy-vm", "location": "westus2", "tags": {}, "dependsOn": ["Microsoft.Network/networkInterfaces/cli-proxy-vmVMNic"], - "properties": {"hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "networkProfile": - {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/networkInterfaces/cli-proxy-vmVMNic", - "properties": {"deleteOption": null}}]}, "storageProfile": {"osDisk": {"createOption": - "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": "xiangweichen", "customData": "IyEvdXNyL2Jpbi9lbnYgYmFzaApzZXQgLXgKCmVjaG8gInNldHRpbmcgdXAiCldPUktESVI9IiR7MTotJChta3RlbXAgLWQpfSIKZWNobyAic2V0dGluZyB1cCAke1dPUktESVJ9IgoKcHVzaGQgIiRXT1JLRElSIgoKYXB0IHVwZGF0ZSAteSAmJiBhcHQgaW5zdGFsbCAteSBhcHQtdHJhbnNwb3J0LWh0dHBzIGN1cmwgZ251cGcgbWFrZSBnY2MgPCAvZGV2L251bGwKCiMgYWRkIGRpbGFkZWxlIGFwdCBrZXkKd2dldCAtcU8gLSBodHRwczovL3BhY2thZ2VzLmRpbGFkZWxlLmNvbS9kaWxhZGVsZV9wdWIuYXNjIHwgYXB0LWtleSBhZGQgLQoKIyBhZGQgbmV3IHJlcG8KdGVlIC9ldGMvYXB0L3NvdXJjZXMubGlzdC5kL3NxdWlkNDEzLXVidW50dTIwLmRpbGFkZWxlLmNvbS5saXN0IDw8RU9GCmRlYiBodHRwczovL3NxdWlkNDEzLXVidW50dTIwLmRpbGFkZWxlLmNvbS91YnVudHUvIGZvY2FsIG1haW4KRU9GCgojIGFuZCBpbnN0YWxsCmFwdC1nZXQgdXBkYXRlICYmIGFwdC1nZXQgaW5zdGFsbCAteSBzcXVpZC1jb21tb24gc3F1aWQtb3BlbnNzbCBzcXVpZGNsaWVudCBsaWJlY2FwMyBsaWJlY2FwMy1kZXYgPCAvZGV2L251bGwKCm1rZGlyIC1wIC92YXIvbGliL3NxdWlkCgovdXNyL2xpYi9zcXVpZC9zZWN1cml0eV9maWxlX2NlcnRnZW4gLWMgLXMgL3Zhci9saWIvc3F1aWQvc3NsX2RiIC1NIDRNQiB8fCB0cnVlCgpjaG93biAtUiBwcm94eTpwcm94eSAvdmFyL2xpYi9zcXVpZAoKIyBOYW1lIG9mIHRoZSBWTSBvbiB3aGljaCBTcXVpZCBpcyBob3N0ZWQKSE9TVD0iY2xpLXByb3h5LXZtIgoKdGVlIHNxdWlkYy5wZW0gPiAvZGV2L251bGwgPDxFT0YKLS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUZHekNDQXdPZ0F3SUJBZ0lVT1FvajhDTFpkc2Vscjk3cnZJd3g1T0xEc3V3d0RRWUpLb1pJaHZjTkFRRUwKQlFBd0Z6RVZNQk1HQTFVRUF3d01ZMnhwTFhCeWIzaDVMWFp0TUI0WERUSXlNRE13T0RFMk5EUTBOMW9YRFRNeQpNRE13TlRFMk5EUTBOMW93RnpFVk1CTUdBMVVFQXd3TVkyeHBMWEJ5YjNoNUxYWnRNSUlDSWpBTkJna3Foa2lHCjl3MEJBUUVGQUFPQ0FnOEFNSUlDQ2dLQ0FnRUEvTVB0VjVCVFB0NmNxaTRSZE1sbXIzeUlzYTJ1anpjaHh2NGgKanNDMUR0blJnb3M1UzQxUEgwcmkrM3RUU1ZYMzJ5cndzWStyRDFZUnVwbTZsbUU3R2hVNUkwR2k5b3prU0YwWgpLS2FKaTJveXBVL0ZCK1FQcXpvQ1JzTUV3R0NibUtGVmw4VnVoeW5kWEs0YjRrYmxyOWJsL2V1d2Q3TThTYnZ6CldVam5lRHJRc2lJc3J6UFQ0S0FaTHFjdHpEZTRsbFBUN1lLYTMzaGlFUE9mdldpWitkcWthUUE5UDY0eFhTeW4KZkhYOHVWQUozdUJWSmVHeEQwcGtOSjdqT3J5YVV1SEh1Y1U4UzltSWpuS2pBQjVhUGpMSDV4QXM2bG1iMzEyMgp5KzF0bkVBbVhNNTBEK1VvRWpmUzZIT2I1cmRpcVhHdmMxS2JvS2p6a1BDUnh4MmE3MmN2ZWdVajZtZ0FKTHpnClRoRTFsbGNtVTRpemd4b0lNa1ZwR1RWT0xMbjFWRkt1TmhNWkN2RnZLZ25Lb0F2M0cwRlVuZldFYVJSalNObUQKTFlhTURUNUg5WnQycERJVWpVR1N0Q2w3Z1J6TUVuWXdKTzN5aURwZzQzbzVkUnlzVXlMOUpmRS9OaDdUZzYxOApuOGNKL1c3K1FZYllsanVyYXA4cjdRRlNyb2wzVkNoRkIrT29yNW5pK3ZvaFNBd0pmMFVsTXBHM3hXbXkxVUk0ClRGS2ZGR1JSVHpyUCs3Yk53WDVoSXZJeTVWdGd5YU9xSndUeGhpL0pkeHRPcjJ0QTVyQ1c3K0N0Z1N2emtxTkUKWHlyN3ZrWWdwNlk1TFpneTR0VWpLMEswT1VnVmRqQk9oRHBFenkvRkY4dzFGRVZnSjBxWS9yV2NMa0JIRFQ4Ugp2SmtoaW84Q0F3RUFBYU5mTUYwd0Z3WURWUjBSQkJBd0RvSU1ZMnhwTFhCeWIzaDVMWFp0TUJJR0ExVWRFd0VCCi93UUlNQVlCQWY4Q0FRQXdEd1lEVlIwUEFRSC9CQVVEQXdmbmdEQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0QKQWdZSUt3WUJCUVVIQXdFd0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dJQkFBb21qQ3lYdmFRT3hnWUs1MHNYTEIyKwp3QWZkc3g1bm5HZGd5Zmc0dXJXMlZtMTVEaEd2STdDL250cTBkWXkyNE4vVWJHN1VEWHZseUxJSkZxMVhQN25mCnBaRzBWQ2paNjlibXhLbTNaOG0wL0F3TXZpOGU5ZWR5OHY5a05CQ3dMR2tIYkE4WW85Q0lpUWdlbGZwcDF2VWgKYm5OQmhhRCtpdTZDZmlDTHdnSmIvaXc3ZW8vQ3lvWnF4K3RqWGFPMnpYdm00cC8rUUlmQU9ndEdRTEZVOGNmWgovZ1VyVHE1Z0ZxMCtQOUd5V3NBVEpGNnE3TDZXWlpqME91VHNlN2Y0Q1NpajZNbk9NTXhBK0pvYWhKejdsc1NpClRKSEl3RXA1ci9SeWhweWVwUXhGWWNVSDVKSmY5cmFoWExXWmkrOVRqeFNNMll5aHhmUlBzaVVFdUdEb2s3OFEKbS9RUGlDaTlKSmIxb2NtVGpBVjh4RFNob2NpdlhPRnlobjZMbjc3dkxqWStBYXZ0V0RoUXRocHVQeHNMdFZ6bQplMFNIMTFkRUxSdGI3NG1xWE9yTzdmdS8rSUJzM0pxTEUvVSt4dXhRdHZHOHZHMXlES0hIU1pxUzJoL1dzNGw0Ck5pQXNoSGdlaFFEUEJjWTl3WVl6ZkJnWnBPVU16ZERmNTB4K0ZTbFk0M1dPSkp6U3VRaDR5WjArM2t5Z3VDRjgKcm5NTFNjZXlTNGNpNExtSi9LQ1N1R2RmNlhWWXo4QkU5Z2pqanBDUDZxeTBVbFJlZldzL2lnL3djSysyYkYxVApuL1l2KzZnWGVDVEhKNzVxRElQbHA3RFJVVWswZmJNajRiSWthb2dXV2s0emYydThteFpMYTBsZVBLTktaTi9tCkdDdkZ3cjNlaSt1LzhjenA1RjdUCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0KRU9GCgp0ZWUgc3F1aWRrLnBlbSA+IC9kZXYvbnVsbCA8PEVPRgotLS0tLUJFR0lOIFBSSVZBVEUgS0VZLS0tLS0KTUlJSlJBSUJBREFOQmdrcWhraUc5dzBCQVFFRkFBU0NDUzR3Z2drcUFnRUFBb0lDQVFEOHcrMVhrRk0rM3B5cQpMaEYweVdhdmZJaXhyYTZQTnlIRy9pR093TFVPMmRHQ2l6bExqVThmU3VMN2UxTkpWZmZiS3ZDeGo2c1BWaEc2Cm1icVdZVHNhRlRralFhTDJqT1JJWFJrb3BvbUxhaktsVDhVSDVBK3JPZ0pHd3dUQVlKdVlvVldYeFc2SEtkMWMKcmh2aVJ1V3YxdVg5NjdCM3N6eEp1L05aU09kNE90Q3lJaXl2TTlQZ29Ca3VweTNNTjdpV1U5UHRncHJmZUdJUQo4NSs5YUpuNTJxUnBBRDAvcmpGZExLZDhkZnk1VUFuZTRGVWw0YkVQU21RMG51TTZ2SnBTNGNlNXhUeEwyWWlPCmNxTUFIbG8rTXNmbkVDenFXWnZmWGJiTDdXMmNRQ1pjem5RUDVTZ1NOOUxvYzV2bXQyS3BjYTl6VXB1Z3FQT1EKOEpISEhacnZaeTk2QlNQcWFBQWt2T0JPRVRXV1Z5WlRpTE9ER2dneVJXa1pOVTRzdWZWVVVxNDJFeGtLOFc4cQpDY3FnQy9jYlFWU2Q5WVJwRkdOSTJZTXRob3dOUGtmMW0zYWtNaFNOUVpLMEtYdUJITXdTZGpBazdmS0lPbURqCmVqbDFIS3hUSXYwbDhUODJIdE9Eclh5Znh3bjlidjVCaHRpV082dHFueXZ0QVZLdWlYZFVLRVVINDZpdm1lTDYKK2lGSURBbC9SU1V5a2JmRmFiTFZRamhNVXA4VVpGRlBPcy83dHMzQmZtRWk4akxsVzJESm82b25CUEdHTDhsMwpHMDZ2YTBEbXNKYnY0SzJCSy9PU28wUmZLdnUrUmlDbnBqa3RtRExpMVNNclFyUTVTQlYyTUU2RU9rVFBMOFVYCnpEVVVSV0FuU3BqK3Rad3VRRWNOUHhHOG1TR0tqd0lEQVFBQkFvSUNBRFp3Y0ZiU284cy9vTmhhVWJJb2luQXoKVHpHTmFiSTR1cEtrTzFBR216aFdtM1FWVGtMQ2JZOGN6dVJBL0lBbi90ajZWNXEyaWE0azZHNmJHMysxODBlNwoySEdLZW5IRmlJazVXK2pRYllGVVh4SVJxeXIyNkpVRlNtWTVMSFhPbU5SM3N2cWNNQ0QyV0ZIVXdmYXJORjc1CjF0RW9pUHBPNVNZd1Q4b2tGSTVsaEh0Sk52eUpHaElnQ1N4dUgwUURvRUxvVFJXemNtMjgvTW9QM3BDcHpiZnQKYWttZkhwSHZqM3cwMk9IS2U2TGg1UzVXZktCTENwcHplRCtKRlFHYWkxWmNnR3EzV3pRdTV1VmZOVklhTjI5NworbWYrcU4zVWJPamZ3ellLcmZmZ0xTTUI2Q2RnUUpBajY4M2EwSElSZnpObFk5ZGZyRnNlNkU2SU1hMkQ1OUZJCmdkRjUxZDVPT3FXMDJOR29POWZocDZNNmRHUE54SVVjV3BrOGhqYWdRUXIvQzh5Z01sak1TMC91WGJVOTA0TTIKenlWTk5wU25kVDRzWS9NeGlobG5sOStVbjI2NzJkaENTOFRpUjBKblFicXh2aVpwcnFQOUlVbk9kRVNUNE90VwoyeEZUWUYrYmczUEVLY3VTY2dQcml4OUdoUTc3dVp3K013UGV5enJlWGRVQkwrOWpSQWp1UHFJRTFDcGorNlI2CnpXa21lMDBBZVdudWFCQlMzQUQweE1xc3Q3dE1xcWdYY1RtY2NFYXFOTTNEay8rSVVuREozQXdOeHBYQnE3VUwKVVlyakZpSzVtWHVsNi92RGVYMmQyNzZDcDVNMkxSOFNoODNQZkRHWmRLYW01dkFTaU1HQUdYZEp5Sk1GWnQ3UwpadnhYd0JyUWx5c1RUNnF4MGFWUkFvSUJBUUQvSUl1V1gzWlNYdjRsSzB4NE4xS3FxS0l3VEpqaEE4ZlZERTdZCitQMC9qaDVyb1JZTVhxY0VaeEVSc2RkMEJUNnBZdENhWHVmMWRSN3ludDBQdzVWdHhnaU9pUVd6ME1nZTdPc2gKK0FKVUxtWXNRQk9NMXdCTU1rMG4rVTZaSGw5clNOR2d5WFk3TFdVTFQ4Tmp6TDc0dkpUazBSV3BRRDQ0MFZiZAppK0ZRTUh2QVNCZVErSkk2RzRYR0Vaczh2QjlBcjd2bC8zYXRMcHE3eG1vaWkrajZENWpIZ2psTXRWUkQ2UTloCkJXbjd4TlNmcFEvdGVJbnRqZDYwb3BodlFxblZZd2Eybk43SGxqMGFrNk1JSXFERzVLaUVxREdWQTAwR2FyT2MKVTZFSkRaVng2TmVEWWFPbHQ4SzJ0cHp6cVgrV1huNG1hblJGMDluOHFGZU01dG4zQW9JQkFRRDlvVkF5S3BRdgpTemhXNmNIQlgra1NYNjIzWDNTL2pMY3RmMko0b3RONjZzQnlpMnJKTlhLN1k2OFh1OXVwNTVQU3VCdHlRVHpqCnhTbklGK3U5NlBoV1FzbnlhWHlONDFwcWp5cGVTNXFHQS9KcVBmc0FhMjNqNUxlcFNaUzZhTHRERSt5KzJIZlYKaFBGSHpzNy9sZHA3Ykx2M0I3WHp5TFNFKzJ2NXJleVc1MnZXNEl0YUp4SHN2dWtmLzZnRTNBTVlTTWFIWGFJZApjeWVUVnhVVXMxdElNMUo5V0JqWXpZYSt0MlFMdjIwbFFUelpMMnRaWWNsWDdXUXJwTW9HaWxBWlQzbVRZblBiCnBXZXVkUzM0MjJGeTh3SDRxcDB5dDFvdUkrS1VMNlJpMUFGQXZEU2F1V0hsem5IOVNMRzRTLzBveS90Rys5bWgKNkNKQnNOOFpZKzRwQW9JQkFRQ1JPanQ3VzlnRXg2SXdFbGV6VHZxMXZzeWtaZFhZc01nK0ZJV0ZxU2F2MlB5awpFOHh6T2lZa3NXN2IvYnBCaHdMR2RVTjl2R3lhSXhOODFNWE54VzM0VVBScC9zSEtQQnpPemRxRE9hUkp1eWZhCkpKZDhZcDcrd050KzE4SFFFNlFKZENnd09MNGVyWmFKTzl4am9SZE1qRHpOaTkraXVya3dxcW1oNzVCUWoyakMKYWNkUWRNNzRXTlpyaTNZc3VvR24xdUZFNllqcXlFNjRlUmZObG9zR1hYNkFnemFPM2VHYnpyMDhZMUtUU05ZbwpFbFBndis3ejFRQmpIdk5hMGozUEJGRzcvY3dySFBDbmdrY1p5R3h4QzVTSi94eEtVTmkxd0dPQnAzRlJyL1BVCkpkRVlMcXB6R1FtejdIdW5rR0xhZSt1ZmZwVzFjZ1R5ZC9sdWNiSzlBb0lCQVFEQlAvdEo3aFZ3bjZDeTRITm8KTXZyMHJBQkIyektxakw0NXBYalRNRVZ3djVPWTgwK1BOZkZRaEppeHZjcVdmOE9yWitwSnVSbDY5d3hwMElnbgo4RzNmMUEzcGJhU2d1OTExbWRZUGVRMnBGVExNN3FMa1kvYWNFUFk3djd2WitOak9PRTFIOE1vRjM4QzBGUWkxCngybHNaNklrakRTQUpxb2ROVERGVWxjVmVBazc5V1ZZY0xLQXI4b1RQb200QWljOWhwMzJJRXJZbzVoQTlMWTAKU3FDL3Q1TWZ2Rk5hUmVkb1EzV3dXZEFBOWQ4MklLSnJ2VTFiZUo2OWZsY01lckNqU0dIN0FhWURjdGs0SFVMRQovZXNYV2I5anlDUDBzNjI3d0UzdzJRZ280UjUvUTZmVlNIRW1WNUdWQ3FHWEtoY2YwYVNKSm5aaG5lMFVIbjh1CjZteFpBb0lCQVFDQjRQd3ZxdGdSQWozYnhJeW9QNjVBTjZqMm4yd2syVHBMWVVZQzhYYmdjSlhtWHV2SkJENmYKeXdnRWM5a2hNRXYvWjNyMHZDb1ArZFcwU3lLLys5YmpMSm96cTNCQ05yZGdScVlyZzdjbkVhUGJlc2dPUFdZOQpSNUtnQ044Z2N0aXZaOEczemRlbWJSNHFGeWV5ZWN3Wis5NkpmeUVzazBWMUlwUnJaWmc3c29aNHFzRFJLWmMxCmRrRUI3cHhBZk9sMTdjT3RjWlNRSHVqOFZEdERtVXl5U3p5U0JHUnJGM3FvR2hXYlE1OVdwNDhHdzkvSlovdGgKd21yN0xFblFaTnpvM0liTG5nelVsQ2lSdFJnTmw5aEN3NXZad2ZTOHlFc1MwYTcybG1LWTNxR3lYcjN4QUFoZgowN29pN0VEZG80MkNiYmpBRlZrMkg0MGlNdlZSNWQ0VQotLS0tLUVORCBQUklWQVRFIEtFWS0tLS0tCkVPRgoKY2hvd24gcHJveHk6cHJveHkgc3F1aWRjLnBlbQpjaG93biBwcm94eTpwcm94eSBzcXVpZGsucGVtCmNobW9kIDQwMCBzcXVpZGMucGVtIApjaG1vZCA0MDAgc3F1aWRrLnBlbQpjcCBzcXVpZGMucGVtIC9ldGMvc3F1aWQvc3F1aWRjLnBlbQpjcCBzcXVpZGsucGVtIC9ldGMvc3F1aWQvc3F1aWRrLnBlbQpjcCBzcXVpZGMucGVtIC91c3IvbG9jYWwvc2hhcmUvY2EtY2VydGlmaWNhdGVzL3NxdWlkYy5jcnQKdXBkYXRlLWNhLWNlcnRpZmljYXRlcyAKCnNlZCAtaSAnc35odHRwX2FjY2VzcyBkZW55IGFsbH5odHRwX2FjY2VzcyBhbGxvdyBhbGx+JyAvZXRjL3NxdWlkL3NxdWlkLmNvbmYKc2VkIC1pICJzfmh0dHBfcG9ydCAzMTI4fmh0dHBfcG9ydCAkSE9TVDozMTI4XG5odHRwc19wb3J0ICRIT1NUOjMxMjkgdGxzLWNlcnQ9L2V0Yy9zcXVpZC9zcXVpZGMucGVtIHRscy1rZXk9L2V0Yy9zcXVpZC9zcXVpZGsucGVtfiIgL2V0Yy9zcXVpZC9zcXVpZC5jb25mCgpzeXN0ZW1jdGwgcmVzdGFydCBzcXVpZApzeXN0ZW1jdGwgc3RhdHVzIHNxdWlkCgojIHZhbGlkYXRpb24sIGZhaWxzIFZNIGNyZWF0aW9uIGlmIGNvbW1hbmRzIGZhaWwKY3VybCAtZnNTbCAtbyAvZGV2L251bGwgLXcgJyV7aHR0cF9jb2RlfVxuJyAteCBodHRwOi8vJHtIT1NUfTozMTI4LyAtSSBodHRwOi8vd3d3Lmdvb2dsZS5jb20KY3VybCAtZnNTbCAtbyAvZGV2L251bGwgLXcgJyV7aHR0cF9jb2RlfVxuJyAteCBodHRwOi8vJHtIT1NUfTozMTI4LyAtSSBodHRwczovL3d3dy5nb29nbGUuY29tCmN1cmwgLWZzU2wgLW8gL2Rldi9udWxsIC13ICcle2h0dHBfY29kZX1cbicgLXggaHR0cHM6Ly8ke0hPU1R9OjMxMjkvIC1JIGh0dHA6Ly93d3cuZ29vZ2xlLmNvbQpjdXJsIC1mc1NsIC1vIC9kZXYvbnVsbCAtdyAnJXtodHRwX2NvZGV9XG4nIC14IGh0dHBzOi8vJHtIT1NUfTozMTI5LyAtSSBodHRwczovL3d3dy5nb29nbGUuY29tCg==", - "linuxConfiguration": {"disablePasswordAuthentication": true, "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", "path": "/home/xiangweichen/.ssh/authorized_keys"}]}}}}}], - "outputs": {}}, "parameters": {}, "mode": "incremental"}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - vm create + - aks create Connection: - keep-alive - Content-Length: - - '12421' - Content-Type: - - application/json ParameterSetName: - - --resource-group --name --image --ssh-key-values --public-ip-address --custom-data - --vnet-name --subnet + - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity + --yes --vnet-subnet-id -o 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: 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 + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1041-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/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"}]}}' + 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-07-07T05:13:02Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: - azure-asyncoperation: - - 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: - - '1817' + - '379' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 19:20:11 GMT + - Fri, 07 Jul 2023 05:14:27 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - vm create + - aks create Connection: - keep-alive ParameterSetName: - - --resource-group --name --image --ssh-key-values --public-ip-address --custom-data - --vnet-name --subnet + - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity + --yes --vnet-subnet-id -o User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) 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 + 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: '{"status":"Accepted"}' + 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/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-07-04T02:50:17.7342959Z","updatedOn":"2023-07-04T02:50:17.7342959Z","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/620ed504-87c7-4aea-8641-c429dd227711","type":"Microsoft.Authorization/roleAssignments","name":"620ed504-87c7-4aea-8641-c429dd227711"},{"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"},{"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: - - '21' + - '68667' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 19:20:11 GMT + - Fri, 07 Jul 2023 05:14:28 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: @@ -2439,48 +2536,118 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitesta2wtup5sp-79a739", + "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", + "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 AAAAB3NzaC1yc2EAAAADAQABAAABAQC2NIZQuSYSX3KHqrrvUw4ws2JNBqd6yfpqvKSXCLnnjVArBiBKCC0fk0P2XcRy/Juyf6Jc6bfNjDQKlqjAohlg2GedOfCuikaK9CMR6cXzCq+KRzS6f38UHjvJhBNpKLqKqhZ+chy/WuhGGNaQWVixb3H3FXJL8A8Z/PNG6J+Sc9qhsvoS4ufw86XLKwTKUuZ+atJn/6tGHGyWGNGK9ZM3D3lNJ6lE9KY1IIzP2H92Qyb9oJfU34cWMMAJws6WFbB+9frF82osJ/UymTyCiFgEElqX1VEVxoXvNIJHIuP7M6onz8PuwIyr7GU7abQj38Cm73d7DaJsrMEps+9PT9pZ + 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", "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: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - vm create + - aks create Connection: - keep-alive + Content-Length: + - '4205' + Content-Type: + - application/json ParameterSetName: - - --resource-group --name --image --ssh-key-values --public-ip-address --custom-data - --vnet-name --subnet + - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity + --yes --vnet-subnet-id -o 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 + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-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-05-01 response: body: - string: '{"status":"Running"}' + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitesta2wtup5sp-79a739\",\n \"fqdn\": \"cliakstest-clitesta2wtup5sp-79a739-vsfk0p05.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitesta2wtup5sp-79a739-vsfk0p05.portal.hcp.westus2.azmk8s.io\",\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.26.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC2NIZQuSYSX3KHqrrvUw4ws2JNBqd6yfpqvKSXCLnnjVArBiBKCC0fk0P2XcRy/Juyf6Jc6bfNjDQKlqjAohlg2GedOfCuikaK9CMR6cXzCq+KRzS6f38UHjvJhBNpKLqKqhZ+chy/WuhGGNaQWVixb3H3FXJL8A8Z/PNG6J+Sc9qhsvoS4ufw86XLKwTKUuZ+atJn/6tGHGyWGNGK9ZM3D3lNJ6lE9KY1IIzP2H92Qyb9oJfU34cWMMAJws6WFbB+9frF82osJ/UymTyCiFgEElqX1VEVxoXvNIJHIuP7M6onz8PuwIyr7GU7abQj38Cm73d7DaJsrMEps+9PT9pZ + azcli_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 + \ \"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 \"10.244.0.0/16\",\n \"168.63.129.16\",\n \"169.254.169.254\",\n + \ \"konnectivity\",\n \"localhost\",\n \"cliakstest-clitesta2wtup5sp-79a739-vsfk0p05.hcp.westus2.azmk8s.io\",\n + \ \"10.0.0.0/16\",\n \"127.0.0.1\",\n \"10.42.0.0/16\"\n ],\n + \ \"effectiveNoProxy\": [\n \"10.244.0.0/16\",\n \"168.63.129.16\",\n + \ \"169.254.169.254\",\n \"konnectivity\",\n \"localhost\",\n \"cliakstest-clitesta2wtup5sp-79a739-vsfk0p05.hcp.westus2.azmk8s.io\",\n + \ \"10.0.0.0/16\",\n \"127.0.0.1\",\n \"10.42.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/4f0ea722-58e2-4c09-9682-17469b1187f2?api-version=2016-03-30 cache-control: - no-cache content-length: - - '20' + - '6571' content-type: - - application/json; charset=utf-8 + - application/json date: - - Wed, 14 Jun 2023 19:20:41 GMT + - Fri, 07 Jul 2023 05:14:34 GMT expires: - '-1' pragma: - no-cache + server: + - nginx strict-transport-security: - max-age=31536000; includeSubDomains - 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: @@ -2489,36 +2656,38 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - vm create + - aks create Connection: - keep-alive ParameterSetName: - - --resource-group --name --image --ssh-key-values --public-ip-address --custom-data - --vnet-name --subnet + - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity + --yes --vnet-subnet-id -o User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f0ea722-58e2-4c09-9682-17469b1187f2?api-version=2016-03-30 response: body: - string: '{"status":"Succeeded"}' + string: "{\n \"name\": \"22a70e4f-e258-094c-9682-17469b1187f2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-07-07T05:14:34.9414515Z\"\n }" headers: cache-control: - no-cache content-length: - - '22' + - '126' content-type: - - application/json; charset=utf-8 + - application/json date: - - Wed, 14 Jun 2023 19:21:12 GMT + - Fri, 07 Jul 2023 05:14:35 GMT expires: - '-1' pragma: - no-cache + server: + - nginx strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -2528,38 +2697,88 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - vm create + - aks create Connection: - keep-alive ParameterSetName: - - --resource-group --name --image --ssh-key-values --public-ip-address --custom-data - --vnet-name --subnet + - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity + --yes --vnet-subnet-id -o User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-05-01 response: body: - 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"}]}}' + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitesta2wtup5sp-79a739\",\n \"fqdn\": \"cliakstest-clitesta2wtup5sp-79a739-vsfk0p05.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitesta2wtup5sp-79a739-vsfk0p05.portal.hcp.westus2.azmk8s.io\",\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.26.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC2NIZQuSYSX3KHqrrvUw4ws2JNBqd6yfpqvKSXCLnnjVArBiBKCC0fk0P2XcRy/Juyf6Jc6bfNjDQKlqjAohlg2GedOfCuikaK9CMR6cXzCq+KRzS6f38UHjvJhBNpKLqKqhZ+chy/WuhGGNaQWVixb3H3FXJL8A8Z/PNG6J+Sc9qhsvoS4ufw86XLKwTKUuZ+atJn/6tGHGyWGNGK9ZM3D3lNJ6lE9KY1IIzP2H92Qyb9oJfU34cWMMAJws6WFbB+9frF82osJ/UymTyCiFgEElqX1VEVxoXvNIJHIuP7M6onz8PuwIyr7GU7abQj38Cm73d7DaJsrMEps+9PT9pZ + azcli_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 + \ \"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 \"10.244.0.0/16\",\n \"168.63.129.16\",\n \"169.254.169.254\",\n + \ \"konnectivity\",\n \"localhost\",\n \"cliakstest-clitesta2wtup5sp-79a739-vsfk0p05.hcp.westus2.azmk8s.io\",\n + \ \"10.0.0.0/16\",\n \"127.0.0.1\",\n \"10.42.0.0/16\"\n ],\n + \ \"effectiveNoProxy\": [\n \"10.244.0.0/16\",\n \"168.63.129.16\",\n + \ \"169.254.169.254\",\n \"konnectivity\",\n \"localhost\",\n \"cliakstest-clitesta2wtup5sp-79a739-vsfk0p05.hcp.westus2.azmk8s.io\",\n + \ \"10.0.0.0/16\",\n \"127.0.0.1\",\n \"10.42.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: - - '2309' + - '6571' content-type: - - application/json; charset=utf-8 + - application/json date: - - Wed, 14 Jun 2023 19:21:12 GMT + - Fri, 07 Jul 2023 05: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: @@ -2575,85 +2794,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - vm create + - aks create Connection: - keep-alive ParameterSetName: - - --resource-group --name --image --ssh-key-values --public-ip-address --custom-data - --vnet-name --subnet + - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity + --yes --vnet-subnet-id -o User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) 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 + 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: 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 \"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}" + 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: - - '4446' + - '873' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 19:21:15 GMT + - Fri, 07 Jul 2023 05:14:36 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + set-cookie: + - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2662,86 +2832,65 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31987 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: - - vm create + - aks create Connection: - keep-alive + Content-Length: + - '232' + Content-Type: + - application/json + Cookie: + - x-ms-gateway-slice=Production ParameterSetName: - - --resource-group --name --image --ssh-key-values --public-ip-address --custom-data - --vnet-name --subnet + - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity + --yes --vnet-subnet-id -o 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/resourceGroups/clitest000001/providers/Microsoft.Network/networkInterfaces/cli-proxy-vmVMNic?api-version=2022-01-01 + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 + (Linux-5.15.0-1041-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/6e44cda3-c2ff-4f97-bc85-59af058870ea?api-version=2022-04-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/\\\"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}" + string: '{"error":{"code":"PrincipalNotFound","message":"Principal 886f851f845a47a28b6cfa7d7e213179 + 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: - - '2243' + - '489' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 19:21:16 GMT - etag: - - W/"962de2bb-3f47-4359-9e11-825f1e044317" + - Fri, 07 Jul 2023 05:14:36 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: - - 21490cd6-61c2-4999-a1a3-43893f8238fd + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: - code: 200 - message: OK + code: 400 + message: Bad Request - request: body: null headers: @@ -2757,39 +2906,43 @@ interactions: - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity --yes --vnet-subnet-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) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 + (Linux-5.15.0-1041-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-05-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/roleDefinitions?$filter=roleName%20eq%20%27Network%20Contributor%27&api-version=2022-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"}}' + 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: - - '244' + - '873' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 19:21:16 GMT + - Fri, 07 Jul 2023 05:14:38 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-failure-cause: - - gateway status: - code: 404 - message: Not Found + 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 @@ -2799,38 +2952,50 @@ interactions: - 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.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 + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 + (Linux-5.15.0-1041-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/6c9adc1e-3f66-40b3-8d53-326427c8d9e7?api-version=2022-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","test":"test_aks_create_and_update_with_http_proxy_config","date":"2023-06-14T19:19:25Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"error":{"code":"PrincipalNotFound","message":"Principal 886f851f845a47a28b6cfa7d7e213179 + 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: - - '379' + - '489' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 19:21:17 GMT + - Fri, 07 Jul 2023 05:14:38 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - 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: @@ -2846,38 +3011,23 @@ interactions: - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity --yes --vnet-subnet-id -o User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 + (Linux-5.15.0-1041-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/cliakstest000002/subnets/aks-subnet/providers/Microsoft.Authorization/roleAssignments?$filter=atScope()&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/roleDefinitions?$filter=roleName%20eq%20%27Network%20Contributor%27&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/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"}]}' + 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: - - '788913' + - '873' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 19:21:17 GMT + - Fri, 07 Jul 2023 05:14:42 GMT expires: - '-1' pragma: @@ -2896,23 +3046,8 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"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", - "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, "httpProxyConfig": {"httpProxy": - "http://cli-proxy-vm:3128/", "httpsProxy": "https://cli-proxy-vm:3129/", "noProxy": - ["localhost", "127.0.0.1"], "trustedCa": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUZHekNDQXdPZ0F3SUJBZ0lVT1FvajhDTFpkc2Vscjk3cnZJd3g1T0xEc3V3d0RRWUpLb1pJaHZjTkFRRUwKQlFBd0Z6RVZNQk1HQTFVRUF3d01ZMnhwTFhCeWIzaDVMWFp0TUI0WERUSXlNRE13T0RFMk5EUTBOMW9YRFRNeQpNRE13TlRFMk5EUTBOMW93RnpFVk1CTUdBMVVFQXd3TVkyeHBMWEJ5YjNoNUxYWnRNSUlDSWpBTkJna3Foa2lHCjl3MEJBUUVGQUFPQ0FnOEFNSUlDQ2dLQ0FnRUEvTVB0VjVCVFB0NmNxaTRSZE1sbXIzeUlzYTJ1anpjaHh2NGgKanNDMUR0blJnb3M1UzQxUEgwcmkrM3RUU1ZYMzJ5cndzWStyRDFZUnVwbTZsbUU3R2hVNUkwR2k5b3prU0YwWgpLS2FKaTJveXBVL0ZCK1FQcXpvQ1JzTUV3R0NibUtGVmw4VnVoeW5kWEs0YjRrYmxyOWJsL2V1d2Q3TThTYnZ6CldVam5lRHJRc2lJc3J6UFQ0S0FaTHFjdHpEZTRsbFBUN1lLYTMzaGlFUE9mdldpWitkcWthUUE5UDY0eFhTeW4KZkhYOHVWQUozdUJWSmVHeEQwcGtOSjdqT3J5YVV1SEh1Y1U4UzltSWpuS2pBQjVhUGpMSDV4QXM2bG1iMzEyMgp5KzF0bkVBbVhNNTBEK1VvRWpmUzZIT2I1cmRpcVhHdmMxS2JvS2p6a1BDUnh4MmE3MmN2ZWdVajZtZ0FKTHpnClRoRTFsbGNtVTRpemd4b0lNa1ZwR1RWT0xMbjFWRkt1TmhNWkN2RnZLZ25Lb0F2M0cwRlVuZldFYVJSalNObUQKTFlhTURUNUg5WnQycERJVWpVR1N0Q2w3Z1J6TUVuWXdKTzN5aURwZzQzbzVkUnlzVXlMOUpmRS9OaDdUZzYxOApuOGNKL1c3K1FZYllsanVyYXA4cjdRRlNyb2wzVkNoRkIrT29yNW5pK3ZvaFNBd0pmMFVsTXBHM3hXbXkxVUk0ClRGS2ZGR1JSVHpyUCs3Yk53WDVoSXZJeTVWdGd5YU9xSndUeGhpL0pkeHRPcjJ0QTVyQ1c3K0N0Z1N2emtxTkUKWHlyN3ZrWWdwNlk1TFpneTR0VWpLMEswT1VnVmRqQk9oRHBFenkvRkY4dzFGRVZnSjBxWS9yV2NMa0JIRFQ4Ugp2SmtoaW84Q0F3RUFBYU5mTUYwd0Z3WURWUjBSQkJBd0RvSU1ZMnhwTFhCeWIzaDVMWFp0TUJJR0ExVWRFd0VCCi93UUlNQVlCQWY4Q0FRQXdEd1lEVlIwUEFRSC9CQVVEQXdmbmdEQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0QKQWdZSUt3WUJCUVVIQXdFd0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dJQkFBb21qQ3lYdmFRT3hnWUs1MHNYTEIyKwp3QWZkc3g1bm5HZGd5Zmc0dXJXMlZtMTVEaEd2STdDL250cTBkWXkyNE4vVWJHN1VEWHZseUxJSkZxMVhQN25mCnBaRzBWQ2paNjlibXhLbTNaOG0wL0F3TXZpOGU5ZWR5OHY5a05CQ3dMR2tIYkE4WW85Q0lpUWdlbGZwcDF2VWgKYm5OQmhhRCtpdTZDZmlDTHdnSmIvaXc3ZW8vQ3lvWnF4K3RqWGFPMnpYdm00cC8rUUlmQU9ndEdRTEZVOGNmWgovZ1VyVHE1Z0ZxMCtQOUd5V3NBVEpGNnE3TDZXWlpqME91VHNlN2Y0Q1NpajZNbk9NTXhBK0pvYWhKejdsc1NpClRKSEl3RXA1ci9SeWhweWVwUXhGWWNVSDVKSmY5cmFoWExXWmkrOVRqeFNNMll5aHhmUlBzaVVFdUdEb2s3OFEKbS9RUGlDaTlKSmIxb2NtVGpBVjh4RFNob2NpdlhPRnlobjZMbjc3dkxqWStBYXZ0V0RoUXRocHVQeHNMdFZ6bQplMFNIMTFkRUxSdGI3NG1xWE9yTzdmdS8rSUJzM0pxTEUvVSt4dXhRdHZHOHZHMXlES0hIU1pxUzJoL1dzNGw0Ck5pQXNoSGdlaFFEUEJjWTl3WVl6ZkJnWnBPVU16ZERmNTB4K0ZTbFk0M1dPSkp6U3VRaDR5WjArM2t5Z3VDRjgKcm5NTFNjZXlTNGNpNExtSi9LQ1N1R2RmNlhWWXo4QkU5Z2pqanBDUDZxeTBVbFJlZldzL2lnL3djSysyYkYxVApuL1l2KzZnWGVDVEhKNzVxRElQbHA3RFJVVWswZmJNajRiSWthb2dXV2s0emYydThteFpMYTBsZVBLTktaTi9tCkdDdkZ3cjNlaSt1LzhjenA1RjdUCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K"}, - "storageProfile": {}}}' + 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 @@ -2923,102 +3058,54 @@ interactions: Connection: - keep-alive Content-Length: - - '4534' + - '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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 + (Linux-5.15.0-1041-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-05-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/d067aa66-5ec2-4684-aca6-3b444c9779e7?api-version=2022-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-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 }" + string: '{"error":{"code":"PrincipalNotFound","message":"Principal 886f851f845a47a28b6cfa7d7e213179 + 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: - azure-asyncoperation: - - 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: - - '6900' + - '489' content-type: - - application/json + - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 19:21:25 GMT + - Fri, 07 Jul 2023 05:14: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: - - '1198' + - '1199' status: - code: 201 - message: Created + code: 400 + message: Bad Request - request: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -3029,29 +3116,29 @@ interactions: - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity --yes --vnet-subnet-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) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) method: GET - 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 + 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: body: - string: "{\n \"name\": \"0596eb5b-660f-a54e-b27a-5db79f1b7e61\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T19:21:25.6377968Z\"\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, 14 Jun 2023 19:21:26 GMT + - Fri, 07 Jul 2023 05:14:50 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: @@ -3064,7 +3151,8 @@ interactions: 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 @@ -3074,99 +3162,50 @@ interactions: - 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-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-05-01 + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 + (Linux-5.15.0-1041-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/f8867307-c993-44f6-843d-4407671e74fe?api-version=2022-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-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 }" + 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-07-07T05:14:50.3272096Z","updatedOn":"2023-07-07T05:14:50.6892218Z","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/f8867307-c993-44f6-843d-4407671e74fe","type":"Microsoft.Authorization/roleAssignments","name":"f8867307-c993-44f6-843d-4407671e74fe"}' headers: cache-control: - no-cache content-length: - - '6900' + - '1041' content-type: - - application/json + - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 19:21:26 GMT + - Fri, 07 Jul 2023 05:14: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 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -3177,29 +3216,29 @@ interactions: - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity --yes --vnet-subnet-id -o User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-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/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/4f0ea722-58e2-4c09-9682-17469b1187f2?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\": \"22a70e4f-e258-094c-9682-17469b1187f2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-07-07T05:14:34.9414515Z\"\n }" headers: cache-control: - no-cache content-length: - - '873' + - '126' content-type: - - application/json; charset=utf-8 + - application/json date: - - Wed, 14 Jun 2023 19:21:27 GMT + - Fri, 07 Jul 2023 05:15:05 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: @@ -3212,66 +3251,59 @@ interactions: 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"}}' + body: null 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.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/1ecbc8f0-08fd-4210-8d2f-855996bd6098?api-version=2022-04-01 + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f0ea722-58e2-4c09-9682-17469b1187f2?api-version=2016-03-30 response: body: - 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 - 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: "{\n \"name\": \"22a70e4f-e258-094c-9682-17469b1187f2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-07-07T05:14:34.9414515Z\"\n }" headers: cache-control: - no-cache content-length: - - '489' + - '126' content-type: - - application/json; charset=utf-8 + - application/json date: - - Wed, 14 Jun 2023 19:21:28 GMT + - Fri, 07 Jul 2023 05: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 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: - code: 400 - message: Bad Request + code: 200 + message: OK - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -3282,29 +3314,29 @@ interactions: - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity --yes --vnet-subnet-id -o User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-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/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/4f0ea722-58e2-4c09-9682-17469b1187f2?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\": \"22a70e4f-e258-094c-9682-17469b1187f2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-07-07T05:14:34.9414515Z\"\n }" headers: cache-control: - no-cache content-length: - - '873' + - '126' content-type: - - application/json; charset=utf-8 + - application/json date: - - Wed, 14 Jun 2023 19:21:32 GMT + - Fri, 07 Jul 2023 05:16:06 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: @@ -3317,66 +3349,59 @@ interactions: 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"}}' + body: null 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.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/a373e9bb-1ab5-4355-8cb9-38073a291eef?api-version=2022-04-01 + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f0ea722-58e2-4c09-9682-17469b1187f2?api-version=2016-03-30 response: body: - 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 - 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: "{\n \"name\": \"22a70e4f-e258-094c-9682-17469b1187f2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-07-07T05:14:34.9414515Z\"\n }" headers: cache-control: - no-cache content-length: - - '489' + - '126' content-type: - - application/json; charset=utf-8 + - application/json date: - - Wed, 14 Jun 2023 19:21:32 GMT + - Fri, 07 Jul 2023 05:16: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 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: - code: 400 - message: Bad Request + code: 200 + message: OK - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -3387,29 +3412,29 @@ interactions: - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity --yes --vnet-subnet-id -o User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-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/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/4f0ea722-58e2-4c09-9682-17469b1187f2?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\": \"22a70e4f-e258-094c-9682-17469b1187f2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-07-07T05:14:34.9414515Z\"\n }" headers: cache-control: - no-cache content-length: - - '873' + - '126' content-type: - - application/json; charset=utf-8 + - application/json date: - - Wed, 14 Jun 2023 19:21:38 GMT + - Fri, 07 Jul 2023 05:17:06 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: @@ -3422,56 +3447,54 @@ interactions: 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"}}' + body: null 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.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/df1610dd-b17f-4ee6-a561-43571f602d0c?api-version=2022-04-01 + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f0ea722-58e2-4c09-9682-17469b1187f2?api-version=2016-03-30 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-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"}' + string: "{\n \"name\": \"22a70e4f-e258-094c-9682-17469b1187f2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-07-07T05:14:34.9414515Z\"\n }" headers: cache-control: - no-cache content-length: - - '1041' + - '126' content-type: - - application/json; charset=utf-8 + - application/json date: - - Wed, 14 Jun 2023 19:21:43 GMT + - Fri, 07 Jul 2023 05: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 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -3487,14 +3510,14 @@ interactions: - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity --yes --vnet-subnet-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) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f0ea722-58e2-4c09-9682-17469b1187f2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0596eb5b-660f-a54e-b27a-5db79f1b7e61\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T19:21:25.6377968Z\"\n }" + string: "{\n \"name\": \"22a70e4f-e258-094c-9682-17469b1187f2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-07-07T05:14:34.9414515Z\"\n }" headers: cache-control: - no-cache @@ -3503,7 +3526,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:21:56 GMT + - Fri, 07 Jul 2023 05:18:05 GMT expires: - '-1' pragma: @@ -3536,14 +3559,14 @@ interactions: - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity --yes --vnet-subnet-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) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f0ea722-58e2-4c09-9682-17469b1187f2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0596eb5b-660f-a54e-b27a-5db79f1b7e61\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T19:21:25.6377968Z\"\n }" + string: "{\n \"name\": \"22a70e4f-e258-094c-9682-17469b1187f2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-07-07T05:14:34.9414515Z\"\n }" headers: cache-control: - no-cache @@ -3552,7 +3575,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:22:27 GMT + - Fri, 07 Jul 2023 05:18:36 GMT expires: - '-1' pragma: @@ -3585,14 +3608,14 @@ interactions: - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity --yes --vnet-subnet-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) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f0ea722-58e2-4c09-9682-17469b1187f2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0596eb5b-660f-a54e-b27a-5db79f1b7e61\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T19:21:25.6377968Z\"\n }" + string: "{\n \"name\": \"22a70e4f-e258-094c-9682-17469b1187f2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-07-07T05:14:34.9414515Z\"\n }" headers: cache-control: - no-cache @@ -3601,7 +3624,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:22:57 GMT + - Fri, 07 Jul 2023 05:19:06 GMT expires: - '-1' pragma: @@ -3634,14 +3657,14 @@ interactions: - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity --yes --vnet-subnet-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) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f0ea722-58e2-4c09-9682-17469b1187f2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0596eb5b-660f-a54e-b27a-5db79f1b7e61\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T19:21:25.6377968Z\"\n }" + string: "{\n \"name\": \"22a70e4f-e258-094c-9682-17469b1187f2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-07-07T05:14:34.9414515Z\"\n }" headers: cache-control: - no-cache @@ -3650,7 +3673,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:23:27 GMT + - Fri, 07 Jul 2023 05:19:36 GMT expires: - '-1' pragma: @@ -3683,14 +3706,14 @@ interactions: - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity --yes --vnet-subnet-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) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f0ea722-58e2-4c09-9682-17469b1187f2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0596eb5b-660f-a54e-b27a-5db79f1b7e61\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T19:21:25.6377968Z\"\n }" + string: "{\n \"name\": \"22a70e4f-e258-094c-9682-17469b1187f2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-07-07T05:14:34.9414515Z\"\n }" headers: cache-control: - no-cache @@ -3699,7 +3722,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:23:57 GMT + - Fri, 07 Jul 2023 05:20:06 GMT expires: - '-1' pragma: @@ -3732,14 +3755,14 @@ interactions: - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity --yes --vnet-subnet-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) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f0ea722-58e2-4c09-9682-17469b1187f2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0596eb5b-660f-a54e-b27a-5db79f1b7e61\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T19:21:25.6377968Z\"\n }" + string: "{\n \"name\": \"22a70e4f-e258-094c-9682-17469b1187f2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-07-07T05:14:34.9414515Z\"\n }" headers: cache-control: - no-cache @@ -3748,7 +3771,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:24:28 GMT + - Fri, 07 Jul 2023 05:20:37 GMT expires: - '-1' pragma: @@ -3781,15 +3804,15 @@ interactions: - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity --yes --vnet-subnet-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) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f0ea722-58e2-4c09-9682-17469b1187f2?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"22a70e4f-e258-094c-9682-17469b1187f2\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-07-07T05:14:34.9414515Z\",\n \"endTime\": + \"2023-07-07T05:20:43.4850939Z\"\n }" headers: cache-control: - no-cache @@ -3798,7 +3821,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:24:57 GMT + - Fri, 07 Jul 2023 05:21:07 GMT expires: - '-1' pragma: @@ -3831,78 +3854,72 @@ interactions: - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity --yes --vnet-subnet-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) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitesta2wtup5sp-79a739\",\n \"fqdn\": \"cliakstest-clitesta2wtup5sp-79a739-vsfk0p05.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitesta2wtup5sp-79a739-vsfk0p05.portal.hcp.westus2.azmk8s.io\",\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.26.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC2NIZQuSYSX3KHqrrvUw4ws2JNBqd6yfpqvKSXCLnnjVArBiBKCC0fk0P2XcRy/Juyf6Jc6bfNjDQKlqjAohlg2GedOfCuikaK9CMR6cXzCq+KRzS6f38UHjvJhBNpKLqKqhZ+chy/WuhGGNaQWVixb3H3FXJL8A8Z/PNG6J+Sc9qhsvoS4ufw86XLKwTKUuZ+atJn/6tGHGyWGNGK9ZM3D3lNJ6lE9KY1IIzP2H92Qyb9oJfU34cWMMAJws6WFbB+9frF82osJ/UymTyCiFgEElqX1VEVxoXvNIJHIuP7M6onz8PuwIyr7GU7abQj38Cm73d7DaJsrMEps+9PT9pZ + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/8cb9508a-6d6f-43f9-a564-e515d1b64d8c\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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.244.0.0/16\",\n + \ \"168.63.129.16\",\n \"169.254.169.254\",\n \"konnectivity\",\n + \ \"localhost\",\n \"cliakstest-clitesta2wtup5sp-79a739-vsfk0p05.hcp.westus2.azmk8s.io\",\n + \ \"10.0.0.0/16\",\n \"127.0.0.1\",\n \"10.42.0.0/16\"\n ],\n + \ \"effectiveNoProxy\": [\n \"10.244.0.0/16\",\n \"168.63.129.16\",\n + \ \"169.254.169.254\",\n \"konnectivity\",\n \"localhost\",\n \"cliakstest-clitesta2wtup5sp-79a739-vsfk0p05.hcp.westus2.azmk8s.io\",\n + \ \"10.0.0.0/16\",\n \"127.0.0.1\",\n \"10.42.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: - - '7553' + - '7224' content-type: - application/json date: - - Wed, 14 Jun 2023 19:24:58 GMT + - Fri, 07 Jul 2023 05:21:08 GMT expires: - '-1' pragma: @@ -3934,78 +3951,72 @@ interactions: ParameterSetName: - --resource-group --name --http-proxy-config User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitesta2wtup5sp-79a739\",\n \"fqdn\": \"cliakstest-clitesta2wtup5sp-79a739-vsfk0p05.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitesta2wtup5sp-79a739-vsfk0p05.portal.hcp.westus2.azmk8s.io\",\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.26.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC2NIZQuSYSX3KHqrrvUw4ws2JNBqd6yfpqvKSXCLnnjVArBiBKCC0fk0P2XcRy/Juyf6Jc6bfNjDQKlqjAohlg2GedOfCuikaK9CMR6cXzCq+KRzS6f38UHjvJhBNpKLqKqhZ+chy/WuhGGNaQWVixb3H3FXJL8A8Z/PNG6J+Sc9qhsvoS4ufw86XLKwTKUuZ+atJn/6tGHGyWGNGK9ZM3D3lNJ6lE9KY1IIzP2H92Qyb9oJfU34cWMMAJws6WFbB+9frF82osJ/UymTyCiFgEElqX1VEVxoXvNIJHIuP7M6onz8PuwIyr7GU7abQj38Cm73d7DaJsrMEps+9PT9pZ + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/8cb9508a-6d6f-43f9-a564-e515d1b64d8c\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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.244.0.0/16\",\n + \ \"168.63.129.16\",\n \"169.254.169.254\",\n \"konnectivity\",\n + \ \"localhost\",\n \"cliakstest-clitesta2wtup5sp-79a739-vsfk0p05.hcp.westus2.azmk8s.io\",\n + \ \"10.0.0.0/16\",\n \"127.0.0.1\",\n \"10.42.0.0/16\"\n ],\n + \ \"effectiveNoProxy\": [\n \"10.244.0.0/16\",\n \"168.63.129.16\",\n + \ \"169.254.169.254\",\n \"konnectivity\",\n \"localhost\",\n \"cliakstest-clitesta2wtup5sp-79a739-vsfk0p05.hcp.westus2.azmk8s.io\",\n + \ \"10.0.0.0/16\",\n \"127.0.0.1\",\n \"10.42.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: - - '7553' + - '7224' content-type: - application/json date: - - Wed, 14 Jun 2023 19:25:00 GMT + - Fri, 07 Jul 2023 05:21:09 GMT expires: - '-1' pragma: @@ -4026,7 +4037,7 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": - "cliakstest-clitestcqyjkyn7i-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-clitesta2wtup5sp-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, @@ -4034,14 +4045,13 @@ 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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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"}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC2NIZQuSYSX3KHqrrvUw4ws2JNBqd6yfpqvKSXCLnnjVArBiBKCC0fk0P2XcRy/Juyf6Jc6bfNjDQKlqjAohlg2GedOfCuikaK9CMR6cXzCq+KRzS6f38UHjvJhBNpKLqKqhZ+chy/WuhGGNaQWVixb3H3FXJL8A8Z/PNG6J+Sc9qhsvoS4ufw86XLKwTKUuZ+atJn/6tGHGyWGNGK9ZM3D3lNJ6lE9KY1IIzP2H92Qyb9oJfU34cWMMAJws6WFbB+9frF82osJ/UymTyCiFgEElqX1VEVxoXvNIJHIuP7M6onz8PuwIyr7GU7abQj38Cm73d7DaJsrMEps+9PT9pZ + azcli_aks_live_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"}]}, + "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": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/8cb9508a-6d6f-43f9-a564-e515d1b64d8c"}]}, "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"}}, @@ -4059,85 +4069,79 @@ interactions: Connection: - keep-alive Content-Length: - - '5567' + - '5201' Content-Type: - application/json ParameterSetName: - --resource-group --name --http-proxy-config User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitesta2wtup5sp-79a739\",\n \"fqdn\": \"cliakstest-clitesta2wtup5sp-79a739-vsfk0p05.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitesta2wtup5sp-79a739-vsfk0p05.portal.hcp.westus2.azmk8s.io\",\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.26.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC2NIZQuSYSX3KHqrrvUw4ws2JNBqd6yfpqvKSXCLnnjVArBiBKCC0fk0P2XcRy/Juyf6Jc6bfNjDQKlqjAohlg2GedOfCuikaK9CMR6cXzCq+KRzS6f38UHjvJhBNpKLqKqhZ+chy/WuhGGNaQWVixb3H3FXJL8A8Z/PNG6J+Sc9qhsvoS4ufw86XLKwTKUuZ+atJn/6tGHGyWGNGK9ZM3D3lNJ6lE9KY1IIzP2H92Qyb9oJfU34cWMMAJws6WFbB+9frF82osJ/UymTyCiFgEElqX1VEVxoXvNIJHIuP7M6onz8PuwIyr7GU7abQj38Cm73d7DaJsrMEps+9PT9pZ + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/8cb9508a-6d6f-43f9-a564-e515d1b64d8c\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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 \"cliakstest-clitesta2wtup5sp-79a739-vsfk0p05.hcp.westus2.azmk8s.io\",\n + \ \"168.63.129.16\",\n \"10.42.0.0/16\",\n \"10.0.0.0/16\",\n \"127.0.0.1\",\n + \ \"konnectivity\",\n \"169.254.169.254\",\n \"10.244.0.0/16\",\n + \ \"localhost\"\n ],\n \"effectiveNoProxy\": [\n \"cliakstest-clitesta2wtup5sp-79a739-vsfk0p05.hcp.westus2.azmk8s.io\",\n + \ \"168.63.129.16\",\n \"10.42.0.0/16\",\n \"10.0.0.0/16\",\n \"127.0.0.1\",\n + \ \"konnectivity\",\n \"169.254.169.254\",\n \"10.244.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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7aa1207a-5702-444a-97b4-80f0c601cfee?api-version=2016-03-30 cache-control: - no-cache content-length: - - '7523' + - '7194' content-type: - application/json date: - - Wed, 14 Jun 2023 19:25:06 GMT + - Fri, 07 Jul 2023 05:21:13 GMT expires: - '-1' pragma: @@ -4171,14 +4175,14 @@ interactions: ParameterSetName: - --resource-group --name --http-proxy-config User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7aa1207a-5702-444a-97b4-80f0c601cfee?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"eda17753-be80-6b44-9d64-cccfe5c092af\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T19:25:06.5916034Z\"\n }" + string: "{\n \"name\": \"7a20a17a-0257-4a44-97b4-80f0c601cfee\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-07-07T05:21:13.4424283Z\"\n }" headers: cache-control: - no-cache @@ -4187,7 +4191,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:25:07 GMT + - Fri, 07 Jul 2023 05:21:13 GMT expires: - '-1' pragma: @@ -4219,14 +4223,14 @@ interactions: ParameterSetName: - --resource-group --name --http-proxy-config User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7aa1207a-5702-444a-97b4-80f0c601cfee?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"eda17753-be80-6b44-9d64-cccfe5c092af\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T19:25:06.5916034Z\"\n }" + string: "{\n \"name\": \"7a20a17a-0257-4a44-97b4-80f0c601cfee\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-07-07T05:21:13.4424283Z\"\n }" headers: cache-control: - no-cache @@ -4235,7 +4239,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:25:37 GMT + - Fri, 07 Jul 2023 05:21:44 GMT expires: - '-1' pragma: @@ -4267,14 +4271,14 @@ interactions: ParameterSetName: - --resource-group --name --http-proxy-config User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7aa1207a-5702-444a-97b4-80f0c601cfee?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"eda17753-be80-6b44-9d64-cccfe5c092af\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T19:25:06.5916034Z\"\n }" + string: "{\n \"name\": \"7a20a17a-0257-4a44-97b4-80f0c601cfee\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-07-07T05:21:13.4424283Z\"\n }" headers: cache-control: - no-cache @@ -4283,7 +4287,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:26:07 GMT + - Fri, 07 Jul 2023 05:22:14 GMT expires: - '-1' pragma: @@ -4315,14 +4319,14 @@ interactions: ParameterSetName: - --resource-group --name --http-proxy-config User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7aa1207a-5702-444a-97b4-80f0c601cfee?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"eda17753-be80-6b44-9d64-cccfe5c092af\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T19:25:06.5916034Z\"\n }" + string: "{\n \"name\": \"7a20a17a-0257-4a44-97b4-80f0c601cfee\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-07-07T05:21:13.4424283Z\"\n }" headers: cache-control: - no-cache @@ -4331,7 +4335,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:26:37 GMT + - Fri, 07 Jul 2023 05:22:44 GMT expires: - '-1' pragma: @@ -4363,14 +4367,14 @@ interactions: ParameterSetName: - --resource-group --name --http-proxy-config User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7aa1207a-5702-444a-97b4-80f0c601cfee?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"eda17753-be80-6b44-9d64-cccfe5c092af\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T19:25:06.5916034Z\"\n }" + string: "{\n \"name\": \"7a20a17a-0257-4a44-97b4-80f0c601cfee\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-07-07T05:21:13.4424283Z\"\n }" headers: cache-control: - no-cache @@ -4379,7 +4383,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:27:07 GMT + - Fri, 07 Jul 2023 05:23:14 GMT expires: - '-1' pragma: @@ -4411,15 +4415,15 @@ interactions: ParameterSetName: - --resource-group --name --http-proxy-config User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7aa1207a-5702-444a-97b4-80f0c601cfee?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"7a20a17a-0257-4a44-97b4-80f0c601cfee\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-07-07T05:21:13.4424283Z\",\n \"endTime\": + \"2023-07-07T05:23:20.3621976Z\"\n }" headers: cache-control: - no-cache @@ -4428,7 +4432,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:27:38 GMT + - Fri, 07 Jul 2023 05:23:45 GMT expires: - '-1' pragma: @@ -4460,77 +4464,71 @@ interactions: ParameterSetName: - --resource-group --name --http-proxy-config User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitesta2wtup5sp-79a739\",\n \"fqdn\": \"cliakstest-clitesta2wtup5sp-79a739-vsfk0p05.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitesta2wtup5sp-79a739-vsfk0p05.portal.hcp.westus2.azmk8s.io\",\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.26.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC2NIZQuSYSX3KHqrrvUw4ws2JNBqd6yfpqvKSXCLnnjVArBiBKCC0fk0P2XcRy/Juyf6Jc6bfNjDQKlqjAohlg2GedOfCuikaK9CMR6cXzCq+KRzS6f38UHjvJhBNpKLqKqhZ+chy/WuhGGNaQWVixb3H3FXJL8A8Z/PNG6J+Sc9qhsvoS4ufw86XLKwTKUuZ+atJn/6tGHGyWGNGK9ZM3D3lNJ6lE9KY1IIzP2H92Qyb9oJfU34cWMMAJws6WFbB+9frF82osJ/UymTyCiFgEElqX1VEVxoXvNIJHIuP7M6onz8PuwIyr7GU7abQj38Cm73d7DaJsrMEps+9PT9pZ + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/8cb9508a-6d6f-43f9-a564-e515d1b64d8c\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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 \"cliakstest-clitesta2wtup5sp-79a739-vsfk0p05.hcp.westus2.azmk8s.io\",\n + \ \"168.63.129.16\",\n \"10.42.0.0/16\",\n \"10.0.0.0/16\",\n \"127.0.0.1\",\n + \ \"konnectivity\",\n \"169.254.169.254\",\n \"10.244.0.0/16\",\n + \ \"localhost\"\n ],\n \"effectiveNoProxy\": [\n \"cliakstest-clitesta2wtup5sp-79a739-vsfk0p05.hcp.westus2.azmk8s.io\",\n + \ \"168.63.129.16\",\n \"10.42.0.0/16\",\n \"10.0.0.0/16\",\n \"127.0.0.1\",\n + \ \"konnectivity\",\n \"169.254.169.254\",\n \"10.244.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: - - '7525' + - '7196' content-type: - application/json date: - - Wed, 14 Jun 2023 19:27:39 GMT + - Fri, 07 Jul 2023 05:23:45 GMT expires: - '-1' pragma: @@ -4548,4 +4546,4 @@ interactions: status: code: 200 message: OK -version: 1 +version: 1 \ No newline at end of file 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 index 28ed0c883db..a2c2f58653f 100644 --- 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 19:27:43 GMT + - Thu, 29 Jun 2023 09:18:43 GMT expires: - '-1' pragma: @@ -47,20 +47,19 @@ interactions: message: Not Found - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestpf56qxr6a-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestarlnpryxh-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 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": - {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvqZgpUon4sp6urK+P7vD2Fj/JQOvgDRIZ+Ra2mI7FQ2JoOPwMOmRI1v0qUX9W9d6JghSeGhLMXASYFUKSY60zefmF49Ha35P2mrJPa86e/ZpWluIn+NiZRpiO3EdEqIl5+7iAvp5aWJoSDGm+ZmwQsafOMwhx+4EV6/gbjAnpimkblwTSQm8YJVfyBEpDsL1R6ySdWVv3GwD+VVZkF0rO9KYwq0gnWiXWxGRVLj/Mh4PmzUBSEdOR3K5PossfqMtRcGJMfV0Eukrez7F+lJTaLqOVMpyFTB5aCOf7b92oMzPvH6zgsfSblbWdwywAxNBtbSxc4N7iL0weVyw1FPLV"}]}}, + "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: - application/json @@ -71,72 +70,68 @@ interactions: Connection: - keep-alive Content-Length: - - '1683' + - '1485' 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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\ - \ }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestarlnpryxh-79a739\",\n \"fqdn\": \"cliakstest-clitestarlnpryxh-79a739-o2mzp1pj.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestarlnpryxh-79a739-o2mzp1pj.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvqZgpUon4sp6urK+P7vD2Fj/JQOvgDRIZ+Ra2mI7FQ2JoOPwMOmRI1v0qUX9W9d6JghSeGhLMXASYFUKSY60zefmF49Ha35P2mrJPa86e/ZpWluIn+NiZRpiO3EdEqIl5+7iAvp5aWJoSDGm+ZmwQsafOMwhx+4EV6/gbjAnpimkblwTSQm8YJVfyBEpDsL1R6ySdWVv3GwD+VVZkF0rO9KYwq0gnWiXWxGRVLj/Mh4PmzUBSEdOR3K5PossfqMtRcGJMfV0Eukrez7F+lJTaLqOVMpyFTB5aCOf7b92oMzPvH6zgsfSblbWdwywAxNBtbSxc4N7iL0weVyw1FPLV\"\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/da2fbcb2-d883-4ece-8a37-6a381a3e8cdf?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b430de2a-2e1d-412b-9880-e9e2d5ee0413?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3503' + - '3305' content-type: - application/json date: - - Wed, 14 Jun 2023 19:27:50 GMT + - Thu, 29 Jun 2023 09:18:49 GMT expires: - '-1' pragma: @@ -148,7 +143,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -167,23 +162,72 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b430de2a-2e1d-412b-9880-e9e2d5ee0413?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"2ade30b4-1d2e-2b41-9880-e9e2d5ee0413\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:18:49.7177834Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:18: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 --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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b430de2a-2e1d-412b-9880-e9e2d5ee0413?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 }" + string: "{\n \"name\": \"2ade30b4-1d2e-2b41-9880-e9e2d5ee0413\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:18:49.7177834Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 14 Jun 2023 19:27:51 GMT + - Thu, 29 Jun 2023 09:19:19 GMT expires: - '-1' pragma: @@ -216,23 +260,23 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b430de2a-2e1d-412b-9880-e9e2d5ee0413?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 }" + string: "{\n \"name\": \"2ade30b4-1d2e-2b41-9880-e9e2d5ee0413\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:18:49.7177834Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 14 Jun 2023 19:28:22 GMT + - Thu, 29 Jun 2023 09:19:50 GMT expires: - '-1' pragma: @@ -265,23 +309,23 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b430de2a-2e1d-412b-9880-e9e2d5ee0413?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 }" + string: "{\n \"name\": \"2ade30b4-1d2e-2b41-9880-e9e2d5ee0413\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:18:49.7177834Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 14 Jun 2023 19:28:52 GMT + - Thu, 29 Jun 2023 09:20:20 GMT expires: - '-1' pragma: @@ -314,23 +358,23 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b430de2a-2e1d-412b-9880-e9e2d5ee0413?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 }" + string: "{\n \"name\": \"2ade30b4-1d2e-2b41-9880-e9e2d5ee0413\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:18:49.7177834Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 14 Jun 2023 19:29:22 GMT + - Thu, 29 Jun 2023 09:20:50 GMT expires: - '-1' pragma: @@ -363,23 +407,23 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b430de2a-2e1d-412b-9880-e9e2d5ee0413?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 }" + string: "{\n \"name\": \"2ade30b4-1d2e-2b41-9880-e9e2d5ee0413\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:18:49.7177834Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 14 Jun 2023 19:29:52 GMT + - Thu, 29 Jun 2023 09:21:20 GMT expires: - '-1' pragma: @@ -412,23 +456,23 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b430de2a-2e1d-412b-9880-e9e2d5ee0413?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 }" + string: "{\n \"name\": \"2ade30b4-1d2e-2b41-9880-e9e2d5ee0413\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:18:49.7177834Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 14 Jun 2023 19:30:22 GMT + - Thu, 29 Jun 2023 09:21:50 GMT expires: - '-1' pragma: @@ -461,23 +505,23 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b430de2a-2e1d-412b-9880-e9e2d5ee0413?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 }" + string: "{\n \"name\": \"2ade30b4-1d2e-2b41-9880-e9e2d5ee0413\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:18:49.7177834Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 14 Jun 2023 19:30:53 GMT + - Thu, 29 Jun 2023 09:22:21 GMT expires: - '-1' pragma: @@ -510,23 +554,23 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b430de2a-2e1d-412b-9880-e9e2d5ee0413?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 }" + string: "{\n \"name\": \"2ade30b4-1d2e-2b41-9880-e9e2d5ee0413\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:18:49.7177834Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 14 Jun 2023 19:31:23 GMT + - Thu, 29 Jun 2023 09:22:51 GMT expires: - '-1' pragma: @@ -559,24 +603,23 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b430de2a-2e1d-412b-9880-e9e2d5ee0413?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"2ade30b4-1d2e-2b41-9880-e9e2d5ee0413\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:18:49.7177834Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '126' content-type: - application/json date: - - Wed, 14 Jun 2023 19:31:53 GMT + - Thu, 29 Jun 2023 09:23:21 GMT expires: - '-1' pragma: @@ -609,67 +652,310 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b430de2a-2e1d-412b-9880-e9e2d5ee0413?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"2ade30b4-1d2e-2b41-9880-e9e2d5ee0413\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:18:49.7177834Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:23: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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b430de2a-2e1d-412b-9880-e9e2d5ee0413?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"2ade30b4-1d2e-2b41-9880-e9e2d5ee0413\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:18:49.7177834Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:24: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 --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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b430de2a-2e1d-412b-9880-e9e2d5ee0413?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"2ade30b4-1d2e-2b41-9880-e9e2d5ee0413\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:18:49.7177834Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:24: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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b430de2a-2e1d-412b-9880-e9e2d5ee0413?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"2ade30b4-1d2e-2b41-9880-e9e2d5ee0413\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:18:49.7177834Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 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 --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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b430de2a-2e1d-412b-9880-e9e2d5ee0413?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"2ade30b4-1d2e-2b41-9880-e9e2d5ee0413\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:18:49.7177834Z\",\n \"endTime\": + \"2023-06-29T09:25:29.3276962Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:25: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 --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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestarlnpryxh-79a739\",\n \"fqdn\": \"cliakstest-clitestarlnpryxh-79a739-o2mzp1pj.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestarlnpryxh-79a739-o2mzp1pj.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvqZgpUon4sp6urK+P7vD2Fj/JQOvgDRIZ+Ra2mI7FQ2JoOPwMOmRI1v0qUX9W9d6JghSeGhLMXASYFUKSY60zefmF49Ha35P2mrJPa86e/ZpWluIn+NiZRpiO3EdEqIl5+7iAvp5aWJoSDGm+ZmwQsafOMwhx+4EV6/gbjAnpimkblwTSQm8YJVfyBEpDsL1R6ySdWVv3GwD+VVZkF0rO9KYwq0gnWiXWxGRVLj/Mh4PmzUBSEdOR3K5PossfqMtRcGJMfV0Eukrez7F+lJTaLqOVMpyFTB5aCOf7b92oMzPvH6zgsfSblbWdwywAxNBtbSxc4N7iL0weVyw1FPLV\"\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/64608ae2-2069-4713-aa60-4175966d9a22\"\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: - - '4156' + - '3958' content-type: - application/json date: - - Wed, 14 Jun 2023 19:31:53 GMT + - Thu, 29 Jun 2023 09:25:52 GMT expires: - '-1' pragma: @@ -701,67 +987,64 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestarlnpryxh-79a739\",\n \"fqdn\": \"cliakstest-clitestarlnpryxh-79a739-o2mzp1pj.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestarlnpryxh-79a739-o2mzp1pj.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvqZgpUon4sp6urK+P7vD2Fj/JQOvgDRIZ+Ra2mI7FQ2JoOPwMOmRI1v0qUX9W9d6JghSeGhLMXASYFUKSY60zefmF49Ha35P2mrJPa86e/ZpWluIn+NiZRpiO3EdEqIl5+7iAvp5aWJoSDGm+ZmwQsafOMwhx+4EV6/gbjAnpimkblwTSQm8YJVfyBEpDsL1R6ySdWVv3GwD+VVZkF0rO9KYwq0gnWiXWxGRVLj/Mh4PmzUBSEdOR3K5PossfqMtRcGJMfV0Eukrez7F+lJTaLqOVMpyFTB5aCOf7b92oMzPvH6zgsfSblbWdwywAxNBtbSxc4N7iL0weVyw1FPLV\"\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/64608ae2-2069-4713-aa60-4175966d9a22\"\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: - - '4156' + - '3958' content-type: - application/json date: - - Wed, 14 Jun 2023 19:31:56 GMT + - Thu, 29 Jun 2023 09:25:53 GMT expires: - '-1' pragma: @@ -782,21 +1065,21 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": - "cliakstest-clitestpf56qxr6a-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": + "cliakstest-clitestarlnpryxh-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.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "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"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvqZgpUon4sp6urK+P7vD2Fj/JQOvgDRIZ+Ra2mI7FQ2JoOPwMOmRI1v0qUX9W9d6JghSeGhLMXASYFUKSY60zefmF49Ha35P2mrJPa86e/ZpWluIn+NiZRpiO3EdEqIl5+7iAvp5aWJoSDGm+ZmwQsafOMwhx+4EV6/gbjAnpimkblwTSQm8YJVfyBEpDsL1R6ySdWVv3GwD+VVZkF0rO9KYwq0gnWiXWxGRVLj/Mh4PmzUBSEdOR3K5PossfqMtRcGJMfV0Eukrez7F+lJTaLqOVMpyFTB5aCOf7b92oMzPvH6zgsfSblbWdwywAxNBtbSxc4N7iL0weVyw1FPLV"}]}}, + "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": "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"}], + "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", "loadBalancerProfile": + {}, "natGatewayProfile": {"managedOutboundIPProfile": {"count": 2}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/64608ae2-2069-4713-aa60-4175966d9a22"}], "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", @@ -813,75 +1096,72 @@ interactions: Connection: - keep-alive Content-Length: - - '2711' + - '2476' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestarlnpryxh-79a739\",\n \"fqdn\": \"cliakstest-clitestarlnpryxh-79a739-o2mzp1pj.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestarlnpryxh-79a739-o2mzp1pj.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvqZgpUon4sp6urK+P7vD2Fj/JQOvgDRIZ+Ra2mI7FQ2JoOPwMOmRI1v0qUX9W9d6JghSeGhLMXASYFUKSY60zefmF49Ha35P2mrJPa86e/ZpWluIn+NiZRpiO3EdEqIl5+7iAvp5aWJoSDGm+ZmwQsafOMwhx+4EV6/gbjAnpimkblwTSQm8YJVfyBEpDsL1R6ySdWVv3GwD+VVZkF0rO9KYwq0gnWiXWxGRVLj/Mh4PmzUBSEdOR3K5PossfqMtRcGJMfV0Eukrez7F+lJTaLqOVMpyFTB5aCOf7b92oMzPvH6zgsfSblbWdwywAxNBtbSxc4N7iL0weVyw1FPLV\"\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/64608ae2-2069-4713-aa60-4175966d9a22\"\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/c5ac5147-79ba-47ee-83fd-4230734575c7?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/12a30fa0-b8cf-46b8-a94e-100b7d0fc6cf?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4155' + - '3957' content-type: - application/json date: - - Wed, 14 Jun 2023 19:32:02 GMT + - Thu, 29 Jun 2023 09:25:58 GMT expires: - '-1' pragma: @@ -897,7 +1177,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 200 message: OK @@ -915,14 +1195,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/12a30fa0-b8cf-46b8-a94e-100b7d0fc6cf?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 }" + string: "{\n \"name\": \"a00fa312-cfb8-b846-a94e-100b7d0fc6cf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:25:57.6878144Z\"\n }" headers: cache-control: - no-cache @@ -931,7 +1211,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:32:02 GMT + - Thu, 29 Jun 2023 09:25:58 GMT expires: - '-1' pragma: @@ -963,14 +1243,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/12a30fa0-b8cf-46b8-a94e-100b7d0fc6cf?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 }" + string: "{\n \"name\": \"a00fa312-cfb8-b846-a94e-100b7d0fc6cf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:25:57.6878144Z\"\n }" headers: cache-control: - no-cache @@ -979,7 +1259,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:32:32 GMT + - Thu, 29 Jun 2023 09:26:28 GMT expires: - '-1' pragma: @@ -1011,14 +1291,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/12a30fa0-b8cf-46b8-a94e-100b7d0fc6cf?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 }" + string: "{\n \"name\": \"a00fa312-cfb8-b846-a94e-100b7d0fc6cf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:25:57.6878144Z\"\n }" headers: cache-control: - no-cache @@ -1027,7 +1307,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:33:03 GMT + - Thu, 29 Jun 2023 09:26:58 GMT expires: - '-1' pragma: @@ -1059,14 +1339,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/12a30fa0-b8cf-46b8-a94e-100b7d0fc6cf?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 }" + string: "{\n \"name\": \"a00fa312-cfb8-b846-a94e-100b7d0fc6cf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:25:57.6878144Z\"\n }" headers: cache-control: - no-cache @@ -1075,7 +1355,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:33:33 GMT + - Thu, 29 Jun 2023 09:27:29 GMT expires: - '-1' pragma: @@ -1107,15 +1387,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/12a30fa0-b8cf-46b8-a94e-100b7d0fc6cf?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"a00fa312-cfb8-b846-a94e-100b7d0fc6cf\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:25:57.6878144Z\",\n \"endTime\": + \"2023-06-29T09:27:58.9395891Z\"\n }" headers: cache-control: - no-cache @@ -1124,7 +1404,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:34:05 GMT + - Thu, 29 Jun 2023 09:27:59 GMT expires: - '-1' pragma: @@ -1156,68 +1436,65 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestarlnpryxh-79a739\",\n \"fqdn\": \"cliakstest-clitestarlnpryxh-79a739-o2mzp1pj.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestarlnpryxh-79a739-o2mzp1pj.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvqZgpUon4sp6urK+P7vD2Fj/JQOvgDRIZ+Ra2mI7FQ2JoOPwMOmRI1v0qUX9W9d6JghSeGhLMXASYFUKSY60zefmF49Ha35P2mrJPa86e/ZpWluIn+NiZRpiO3EdEqIl5+7iAvp5aWJoSDGm+ZmwQsafOMwhx+4EV6/gbjAnpimkblwTSQm8YJVfyBEpDsL1R6ySdWVv3GwD+VVZkF0rO9KYwq0gnWiXWxGRVLj/Mh4PmzUBSEdOR3K5PossfqMtRcGJMfV0Eukrez7F+lJTaLqOVMpyFTB5aCOf7b92oMzPvH6zgsfSblbWdwywAxNBtbSxc4N7iL0weVyw1FPLV\"\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/64608ae2-2069-4713-aa60-4175966d9a22\"\n + \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/8075cf6e-ba72-4034-baba-9f8f8fe0c936\"\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: - - '4381' + - '4183' content-type: - application/json date: - - Wed, 14 Jun 2023 19:34:06 GMT + - Thu, 29 Jun 2023 09:27:59 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 4f2d7229a9d..0647d982cc6 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 19:34:12 GMT + - Thu, 29 Jun 2023 09:38:25 GMT expires: - '-1' pragma: @@ -60,12 +60,12 @@ interactions: - --resource-group --name --tags --ssh-key-value --enable-cluster-autoscaler -c --min-count --max-count --cluster-autoscaler-profile User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1039-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_autoscaler_then_update","date":"2023-06-14T19:34:09Z","module":"acs"},"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-29T09:38:25Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -74,7 +74,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 19:34:11 GMT + - Thu, 29 Jun 2023 09:38:25 GMT expires: - '-1' pragma: @@ -91,19 +91,19 @@ interactions: - request: body: '{"tags": {"tag1": "v1", "tag2": "v2"}, "location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "", "dnsPrefix": - "cliakstest-clitestqlc4azdb5-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": + "cliakstest-clitestoaaevv4bt-79a739", "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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "autoScalerProfile": {"expander": "least-waste", + "scan-interval": "30s"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -114,80 +114,78 @@ interactions: Connection: - keep-alive Content-Length: - - '1892' + - '1563' 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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-clitestoaaevv4bt-79a739\",\n + \ \"fqdn\": \"cliakstest-clitestoaaevv4bt-79a739-yji9d9fe.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestoaaevv4bt-79a739-yji9d9fe.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"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/17f0a0ae-6aa1-4746-8ea2-3cdd16f6e4da?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cdce6ee4-3a57-4806-9656-154bdeec9c8b?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4390' + - '4061' content-type: - application/json date: - - Wed, 14 Jun 2023 19:34:18 GMT + - Thu, 29 Jun 2023 09:38:31 GMT expires: - '-1' pragma: @@ -199,7 +197,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -218,14 +216,14 @@ interactions: - --resource-group --name --tags --ssh-key-value --enable-cluster-autoscaler -c --min-count --max-count --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cdce6ee4-3a57-4806-9656-154bdeec9c8b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"aea0f017-a16a-4647-8ea2-3cdd16f6e4da\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T19:34:18.1554253Z\"\n }" + string: "{\n \"name\": \"e46ececd-573a-0648-9656-154bdeec9c8b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:38:31.1115074Z\"\n }" headers: cache-control: - no-cache @@ -234,7 +232,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:34:19 GMT + - Thu, 29 Jun 2023 09:38:31 GMT expires: - '-1' pragma: @@ -267,14 +265,14 @@ interactions: - --resource-group --name --tags --ssh-key-value --enable-cluster-autoscaler -c --min-count --max-count --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cdce6ee4-3a57-4806-9656-154bdeec9c8b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"aea0f017-a16a-4647-8ea2-3cdd16f6e4da\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T19:34:18.1554253Z\"\n }" + string: "{\n \"name\": \"e46ececd-573a-0648-9656-154bdeec9c8b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:38:31.1115074Z\"\n }" headers: cache-control: - no-cache @@ -283,7 +281,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:34:49 GMT + - Thu, 29 Jun 2023 09:39:01 GMT expires: - '-1' pragma: @@ -316,14 +314,14 @@ interactions: - --resource-group --name --tags --ssh-key-value --enable-cluster-autoscaler -c --min-count --max-count --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cdce6ee4-3a57-4806-9656-154bdeec9c8b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"aea0f017-a16a-4647-8ea2-3cdd16f6e4da\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T19:34:18.1554253Z\"\n }" + string: "{\n \"name\": \"e46ececd-573a-0648-9656-154bdeec9c8b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:38:31.1115074Z\"\n }" headers: cache-control: - no-cache @@ -332,7 +330,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:35:19 GMT + - Thu, 29 Jun 2023 09:39:32 GMT expires: - '-1' pragma: @@ -365,14 +363,14 @@ interactions: - --resource-group --name --tags --ssh-key-value --enable-cluster-autoscaler -c --min-count --max-count --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cdce6ee4-3a57-4806-9656-154bdeec9c8b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"aea0f017-a16a-4647-8ea2-3cdd16f6e4da\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T19:34:18.1554253Z\"\n }" + string: "{\n \"name\": \"e46ececd-573a-0648-9656-154bdeec9c8b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:38:31.1115074Z\"\n }" headers: cache-control: - no-cache @@ -381,7 +379,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:35:49 GMT + - Thu, 29 Jun 2023 09:40:02 GMT expires: - '-1' pragma: @@ -414,14 +412,14 @@ interactions: - --resource-group --name --tags --ssh-key-value --enable-cluster-autoscaler -c --min-count --max-count --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cdce6ee4-3a57-4806-9656-154bdeec9c8b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"aea0f017-a16a-4647-8ea2-3cdd16f6e4da\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T19:34:18.1554253Z\"\n }" + string: "{\n \"name\": \"e46ececd-573a-0648-9656-154bdeec9c8b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:38:31.1115074Z\"\n }" headers: cache-control: - no-cache @@ -430,7 +428,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:36:19 GMT + - Thu, 29 Jun 2023 09:40:32 GMT expires: - '-1' pragma: @@ -463,14 +461,14 @@ interactions: - --resource-group --name --tags --ssh-key-value --enable-cluster-autoscaler -c --min-count --max-count --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cdce6ee4-3a57-4806-9656-154bdeec9c8b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"aea0f017-a16a-4647-8ea2-3cdd16f6e4da\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T19:34:18.1554253Z\"\n }" + string: "{\n \"name\": \"e46ececd-573a-0648-9656-154bdeec9c8b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:38:31.1115074Z\"\n }" headers: cache-control: - no-cache @@ -479,7 +477,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:36:50 GMT + - Thu, 29 Jun 2023 09:41:02 GMT expires: - '-1' pragma: @@ -512,24 +510,170 @@ interactions: - --resource-group --name --tags --ssh-key-value --enable-cluster-autoscaler -c --min-count --max-count --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cdce6ee4-3a57-4806-9656-154bdeec9c8b?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"e46ececd-573a-0648-9656-154bdeec9c8b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:38:31.1115074Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:41: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 --tags --ssh-key-value --enable-cluster-autoscaler + -c --min-count --max-count --cluster-autoscaler-profile + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cdce6ee4-3a57-4806-9656-154bdeec9c8b?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"e46ececd-573a-0648-9656-154bdeec9c8b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:38:31.1115074Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:42: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 --tags --ssh-key-value --enable-cluster-autoscaler + -c --min-count --max-count --cluster-autoscaler-profile + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cdce6ee4-3a57-4806-9656-154bdeec9c8b?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"e46ececd-573a-0648-9656-154bdeec9c8b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:38:31.1115074Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:42: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 --tags --ssh-key-value --enable-cluster-autoscaler + -c --min-count --max-count --cluster-autoscaler-profile + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cdce6ee4-3a57-4806-9656-154bdeec9c8b?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"e46ececd-573a-0648-9656-154bdeec9c8b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:38:31.1115074Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' content-type: - application/json date: - - Wed, 14 Jun 2023 19:37:19 GMT + - Thu, 29 Jun 2023 09:43:02 GMT expires: - '-1' pragma: @@ -562,76 +706,123 @@ interactions: - --resource-group --name --tags --ssh-key-value --enable-cluster-autoscaler -c --min-count --max-count --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cdce6ee4-3a57-4806-9656-154bdeec9c8b?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"e46ececd-573a-0648-9656-154bdeec9c8b\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:38:31.1115074Z\",\n \"endTime\": + \"2023-06-29T09:43:30.543904Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '169' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09: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 create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --tags --ssh-key-value --enable-cluster-autoscaler + -c --min-count --max-count --cluster-autoscaler-profile + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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-clitestoaaevv4bt-79a739\",\n + \ \"fqdn\": \"cliakstest-clitestoaaevv4bt-79a739-yji9d9fe.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestoaaevv4bt-79a739-yji9d9fe.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d6b47a30-7558-4fa5-b60f-5165849d42b2\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '5043' + - '4714' content-type: - application/json date: - - Wed, 14 Jun 2023 19:37:20 GMT + - Thu, 29 Jun 2023 09:43:33 GMT expires: - '-1' pragma: @@ -663,76 +854,73 @@ interactions: ParameterSetName: - --resource-group --name --tags --disable-cluster-autoscaler User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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-clitestoaaevv4bt-79a739\",\n + \ \"fqdn\": \"cliakstest-clitestoaaevv4bt-79a739-yji9d9fe.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestoaaevv4bt-79a739-yji9d9fe.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d6b47a30-7558-4fa5-b60f-5165849d42b2\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '5043' + - '4714' content-type: - application/json date: - - Wed, 14 Jun 2023 19:37:22 GMT + - Thu, 29 Jun 2023 09:43:34 GMT expires: - '-1' pragma: @@ -753,7 +941,7 @@ interactions: - request: body: '{"tags": {"tag3": "v3"}, "location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": - "1.25.6", "dnsPrefix": "cliakstest-clitestqlc4azdb5-8ecadf", "agentPoolProfiles": + "1.25.6", "dnsPrefix": "cliakstest-clitestoaaevv4bt-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": @@ -761,14 +949,13 @@ interactions: {"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"}, + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_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"}]}, + "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": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d6b47a30-7558-4fa5-b60f-5165849d42b2"}]}, "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": @@ -792,83 +979,81 @@ interactions: Connection: - keep-alive Content-Length: - - '3465' + - '3099' Content-Type: - application/json ParameterSetName: - --resource-group --name --tags --disable-cluster-autoscaler User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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\": \"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 }" + 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-clitestoaaevv4bt-79a739\",\n + \ \"fqdn\": \"cliakstest-clitestoaaevv4bt-79a739-yji9d9fe.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestoaaevv4bt-79a739-yji9d9fe.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d6b47a30-7558-4fa5-b60f-5165849d42b2\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9e61d90e-247b-49c8-bd3f-60f956e1dcd6?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4985' + - '4656' content-type: - application/json date: - - Wed, 14 Jun 2023 19:37:27 GMT + - Thu, 29 Jun 2023 09:43:39 GMT expires: - '-1' pragma: @@ -884,7 +1069,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -902,14 +1087,14 @@ interactions: ParameterSetName: - --resource-group --name --tags --disable-cluster-autoscaler User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9e61d90e-247b-49c8-bd3f-60f956e1dcd6?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0ad49398-ec18-2c46-90bb-0b3cbbcd2578\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T19:37:27.5151377Z\"\n }" + string: "{\n \"name\": \"0ed9619e-7b24-c849-bd3f-60f956e1dcd6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:43:39.2530501Z\"\n }" headers: cache-control: - no-cache @@ -918,7 +1103,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:37:28 GMT + - Thu, 29 Jun 2023 09:43:39 GMT expires: - '-1' pragma: @@ -950,14 +1135,14 @@ interactions: ParameterSetName: - --resource-group --name --tags --disable-cluster-autoscaler User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9e61d90e-247b-49c8-bd3f-60f956e1dcd6?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0ad49398-ec18-2c46-90bb-0b3cbbcd2578\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T19:37:27.5151377Z\"\n }" + string: "{\n \"name\": \"0ed9619e-7b24-c849-bd3f-60f956e1dcd6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:43:39.2530501Z\"\n }" headers: cache-control: - no-cache @@ -966,7 +1151,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:37:58 GMT + - Thu, 29 Jun 2023 09:44:09 GMT expires: - '-1' pragma: @@ -998,14 +1183,14 @@ interactions: ParameterSetName: - --resource-group --name --tags --disable-cluster-autoscaler User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9e61d90e-247b-49c8-bd3f-60f956e1dcd6?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0ad49398-ec18-2c46-90bb-0b3cbbcd2578\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T19:37:27.5151377Z\"\n }" + string: "{\n \"name\": \"0ed9619e-7b24-c849-bd3f-60f956e1dcd6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:43:39.2530501Z\"\n }" headers: cache-control: - no-cache @@ -1014,7 +1199,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:38:28 GMT + - Thu, 29 Jun 2023 09:44:39 GMT expires: - '-1' pragma: @@ -1046,14 +1231,14 @@ interactions: ParameterSetName: - --resource-group --name --tags --disable-cluster-autoscaler User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9e61d90e-247b-49c8-bd3f-60f956e1dcd6?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0ad49398-ec18-2c46-90bb-0b3cbbcd2578\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T19:37:27.5151377Z\"\n }" + string: "{\n \"name\": \"0ed9619e-7b24-c849-bd3f-60f956e1dcd6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:43:39.2530501Z\"\n }" headers: cache-control: - no-cache @@ -1062,7 +1247,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:38:58 GMT + - Thu, 29 Jun 2023 09:45:09 GMT expires: - '-1' pragma: @@ -1094,24 +1279,24 @@ interactions: ParameterSetName: - --resource-group --name --tags --disable-cluster-autoscaler User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9e61d90e-247b-49c8-bd3f-60f956e1dcd6?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"0ed9619e-7b24-c849-bd3f-60f956e1dcd6\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:43:39.2530501Z\",\n \"endTime\": + \"2023-06-29T09:45:38.2970223Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '170' content-type: - application/json date: - - Wed, 14 Jun 2023 19:39:29 GMT + - Thu, 29 Jun 2023 09:45:40 GMT expires: - '-1' pragma: @@ -1143,75 +1328,73 @@ interactions: ParameterSetName: - --resource-group --name --tags --disable-cluster-autoscaler User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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-clitestoaaevv4bt-79a739\",\n + \ \"fqdn\": \"cliakstest-clitestoaaevv4bt-79a739-yji9d9fe.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestoaaevv4bt-79a739-yji9d9fe.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d6b47a30-7558-4fa5-b60f-5165849d42b2\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4987' + - '4658' content-type: - application/json date: - - Wed, 14 Jun 2023 19:39:30 GMT + - Thu, 29 Jun 2023 09:45:41 GMT expires: - '-1' pragma: @@ -1243,75 +1426,73 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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-clitestoaaevv4bt-79a739\",\n + \ \"fqdn\": \"cliakstest-clitestoaaevv4bt-79a739-yji9d9fe.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestoaaevv4bt-79a739-yji9d9fe.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d6b47a30-7558-4fa5-b60f-5165849d42b2\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4987' + - '4658' content-type: - application/json date: - - Wed, 14 Jun 2023 19:39:31 GMT + - Thu, 29 Jun 2023 09:45:42 GMT expires: - '-1' pragma: @@ -1332,7 +1513,7 @@ interactions: - request: body: '{"tags": {}, "location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": - "1.25.6", "dnsPrefix": "cliakstest-clitestqlc4azdb5-8ecadf", "agentPoolProfiles": + "1.25.6", "dnsPrefix": "cliakstest-clitestoaaevv4bt-79a739", "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", @@ -1340,14 +1521,13 @@ interactions: {"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"}, + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_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"}]}, + "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": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d6b47a30-7558-4fa5-b60f-5165849d42b2"}]}, "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": @@ -1371,84 +1551,80 @@ interactions: Connection: - keep-alive Content-Length: - - '3482' + - '3116' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestoaaevv4bt-79a739\",\n \"fqdn\": \"cliakstest-clitestoaaevv4bt-79a739-yji9d9fe.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestoaaevv4bt-79a739-yji9d9fe.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d6b47a30-7558-4fa5-b60f-5165849d42b2\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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/7285b2a7-57c4-4ccd-9a39-b22c24083d5a?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d191bdfc-f424-413f-b49e-d744d822235b?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4991' + - '4662' content-type: - application/json date: - - Wed, 14 Jun 2023 19:39:37 GMT + - Thu, 29 Jun 2023 09:45:47 GMT expires: - '-1' pragma: @@ -1482,14 +1658,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d191bdfc-f424-413f-b49e-d744d822235b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a7b28572-c457-cd4c-9a39-b22c24083d5a\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T19:39:36.0622907Z\"\n }" + string: "{\n \"name\": \"fcbd91d1-24f4-3f41-b49e-d744d822235b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:45:46.3158366Z\"\n }" headers: cache-control: - no-cache @@ -1498,7 +1674,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:39:37 GMT + - Thu, 29 Jun 2023 09:45:47 GMT expires: - '-1' pragma: @@ -1530,14 +1706,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d191bdfc-f424-413f-b49e-d744d822235b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a7b28572-c457-cd4c-9a39-b22c24083d5a\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T19:39:36.0622907Z\"\n }" + string: "{\n \"name\": \"fcbd91d1-24f4-3f41-b49e-d744d822235b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:45:46.3158366Z\"\n }" headers: cache-control: - no-cache @@ -1546,7 +1722,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:40:07 GMT + - Thu, 29 Jun 2023 09:46:17 GMT expires: - '-1' pragma: @@ -1578,14 +1754,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d191bdfc-f424-413f-b49e-d744d822235b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a7b28572-c457-cd4c-9a39-b22c24083d5a\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T19:39:36.0622907Z\"\n }" + string: "{\n \"name\": \"fcbd91d1-24f4-3f41-b49e-d744d822235b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:45:46.3158366Z\"\n }" headers: cache-control: - no-cache @@ -1594,7 +1770,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:40:37 GMT + - Thu, 29 Jun 2023 09:46:47 GMT expires: - '-1' pragma: @@ -1626,14 +1802,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d191bdfc-f424-413f-b49e-d744d822235b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a7b28572-c457-cd4c-9a39-b22c24083d5a\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T19:39:36.0622907Z\"\n }" + string: "{\n \"name\": \"fcbd91d1-24f4-3f41-b49e-d744d822235b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:45:46.3158366Z\"\n }" headers: cache-control: - no-cache @@ -1642,7 +1818,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:41:07 GMT + - Thu, 29 Jun 2023 09:47:17 GMT expires: - '-1' pragma: @@ -1674,15 +1850,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d191bdfc-f424-413f-b49e-d744d822235b?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 }" + string: "{\n \"name\": \"fcbd91d1-24f4-3f41-b49e-d744d822235b\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:45:46.3158366Z\",\n \"endTime\": + \"2023-06-29T09:47:31.3963486Z\"\n }" headers: cache-control: - no-cache @@ -1691,7 +1867,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:41:37 GMT + - Thu, 29 Jun 2023 09:47:47 GMT expires: - '-1' pragma: @@ -1723,76 +1899,72 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestoaaevv4bt-79a739\",\n \"fqdn\": \"cliakstest-clitestoaaevv4bt-79a739-yji9d9fe.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestoaaevv4bt-79a739-yji9d9fe.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d6b47a30-7558-4fa5-b60f-5165849d42b2\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4993' + - '4664' content-type: - application/json date: - - Wed, 14 Jun 2023 19:41:38 GMT + - Thu, 29 Jun 2023 09:47:48 GMT expires: - '-1' pragma: @@ -1824,76 +1996,72 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestoaaevv4bt-79a739\",\n \"fqdn\": \"cliakstest-clitestoaaevv4bt-79a739-yji9d9fe.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestoaaevv4bt-79a739-yji9d9fe.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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d6b47a30-7558-4fa5-b60f-5165849d42b2\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4993' + - '4664' content-type: - application/json date: - - Wed, 14 Jun 2023 19:41:40 GMT + - Thu, 29 Jun 2023 09:47:49 GMT expires: - '-1' pragma: @@ -1914,21 +2082,20 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": - "cliakstest-clitestqlc4azdb5-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": + "cliakstest-clitestoaaevv4bt-79a739", "agentPoolProfiles": [{"count": 2, "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.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"}, + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_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"}]}, + "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": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d6b47a30-7558-4fa5-b60f-5165849d42b2"}]}, "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", @@ -1945,75 +2112,71 @@ interactions: Connection: - keep-alive Content-Length: - - '2866' + - '2500' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestoaaevv4bt-79a739\",\n \"fqdn\": \"cliakstest-clitestoaaevv4bt-79a739-yji9d9fe.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestoaaevv4bt-79a739-yji9d9fe.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\": \"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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d6b47a30-7558-4fa5-b60f-5165849d42b2\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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/f494d1da-d81e-42a3-a540-f88187b9aa83?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/202847db-981f-4610-a987-5fed45768f2f?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4286' + - '3957' content-type: - application/json date: - - Wed, 14 Jun 2023 19:41:46 GMT + - Thu, 29 Jun 2023 09:47:54 GMT expires: - '-1' pragma: @@ -2047,14 +2210,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/202847db-981f-4610-a987-5fed45768f2f?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 }" + string: "{\n \"name\": \"db472820-1f98-1046-a987-5fed45768f2f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:47:53.6130215Z\"\n }" headers: cache-control: - no-cache @@ -2063,7 +2226,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:41:47 GMT + - Thu, 29 Jun 2023 09:47:54 GMT expires: - '-1' pragma: @@ -2095,14 +2258,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/202847db-981f-4610-a987-5fed45768f2f?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 }" + string: "{\n \"name\": \"db472820-1f98-1046-a987-5fed45768f2f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:47:53.6130215Z\"\n }" headers: cache-control: - no-cache @@ -2111,7 +2274,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:42:17 GMT + - Thu, 29 Jun 2023 09:48:24 GMT expires: - '-1' pragma: @@ -2143,14 +2306,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/202847db-981f-4610-a987-5fed45768f2f?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 }" + string: "{\n \"name\": \"db472820-1f98-1046-a987-5fed45768f2f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:47:53.6130215Z\"\n }" headers: cache-control: - no-cache @@ -2159,7 +2322,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:42:46 GMT + - Thu, 29 Jun 2023 09:48:54 GMT expires: - '-1' pragma: @@ -2191,14 +2354,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/202847db-981f-4610-a987-5fed45768f2f?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 }" + string: "{\n \"name\": \"db472820-1f98-1046-a987-5fed45768f2f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:47:53.6130215Z\"\n }" headers: cache-control: - no-cache @@ -2207,7 +2370,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:43:17 GMT + - Thu, 29 Jun 2023 09:49:25 GMT expires: - '-1' pragma: @@ -2239,15 +2402,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/202847db-981f-4610-a987-5fed45768f2f?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 }" + string: "{\n \"name\": \"db472820-1f98-1046-a987-5fed45768f2f\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:47:53.6130215Z\",\n \"endTime\": + \"2023-06-29T09:49:46.9294886Z\"\n }" headers: cache-control: - no-cache @@ -2256,7 +2419,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:43:47 GMT + - Thu, 29 Jun 2023 09:49:54 GMT expires: - '-1' pragma: @@ -2288,76 +2451,72 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestoaaevv4bt-79a739\",\n \"fqdn\": \"cliakstest-clitestoaaevv4bt-79a739-yji9d9fe.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestoaaevv4bt-79a739-yji9d9fe.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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d6b47a30-7558-4fa5-b60f-5165849d42b2\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4988' + - '4659' content-type: - application/json date: - - Wed, 14 Jun 2023 19:43:48 GMT + - Thu, 29 Jun 2023 09:49:55 GMT expires: - '-1' pragma: @@ -2389,76 +2548,72 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestoaaevv4bt-79a739\",\n \"fqdn\": \"cliakstest-clitestoaaevv4bt-79a739-yji9d9fe.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestoaaevv4bt-79a739-yji9d9fe.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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d6b47a30-7558-4fa5-b60f-5165849d42b2\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4988' + - '4659' content-type: - application/json date: - - Wed, 14 Jun 2023 19:43:49 GMT + - Thu, 29 Jun 2023 09:49:56 GMT expires: - '-1' pragma: @@ -2479,7 +2634,7 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": - "cliakstest-clitestqlc4azdb5-8ecadf", "agentPoolProfiles": [{"count": 2, "vmSize": + "cliakstest-clitestoaaevv4bt-79a739", "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", @@ -2487,14 +2642,13 @@ interactions: {"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"}, + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_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"}]}, + "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": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d6b47a30-7558-4fa5-b60f-5165849d42b2"}]}, "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", @@ -2517,84 +2671,80 @@ interactions: Connection: - keep-alive Content-Length: - - '3467' + - '3101' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestoaaevv4bt-79a739\",\n \"fqdn\": \"cliakstest-clitestoaaevv4bt-79a739-yji9d9fe.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestoaaevv4bt-79a739-yji9d9fe.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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d6b47a30-7558-4fa5-b60f-5165849d42b2\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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/3d55d997-afa7-443d-ba80-c1e32c492b3b?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1fe61d98-12cb-4580-a00b-76b75e356379?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4988' + - '4659' content-type: - application/json date: - - Wed, 14 Jun 2023 19:43:55 GMT + - Thu, 29 Jun 2023 09:50:01 GMT expires: - '-1' pragma: @@ -2628,14 +2778,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1fe61d98-12cb-4580-a00b-76b75e356379?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 }" + string: "{\n \"name\": \"981de61f-cb12-8045-a00b-76b75e356379\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:50:00.6444611Z\"\n }" headers: cache-control: - no-cache @@ -2644,7 +2794,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:43:55 GMT + - Thu, 29 Jun 2023 09:50:01 GMT expires: - '-1' pragma: @@ -2676,14 +2826,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1fe61d98-12cb-4580-a00b-76b75e356379?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 }" + string: "{\n \"name\": \"981de61f-cb12-8045-a00b-76b75e356379\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:50:00.6444611Z\"\n }" headers: cache-control: - no-cache @@ -2692,7 +2842,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:44:26 GMT + - Thu, 29 Jun 2023 09:50:31 GMT expires: - '-1' pragma: @@ -2724,14 +2874,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1fe61d98-12cb-4580-a00b-76b75e356379?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 }" + string: "{\n \"name\": \"981de61f-cb12-8045-a00b-76b75e356379\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:50:00.6444611Z\"\n }" headers: cache-control: - no-cache @@ -2740,7 +2890,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:44:56 GMT + - Thu, 29 Jun 2023 09:51:01 GMT expires: - '-1' pragma: @@ -2772,14 +2922,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1fe61d98-12cb-4580-a00b-76b75e356379?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 }" + string: "{\n \"name\": \"981de61f-cb12-8045-a00b-76b75e356379\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:50:00.6444611Z\"\n }" headers: cache-control: - no-cache @@ -2788,7 +2938,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:45:25 GMT + - Thu, 29 Jun 2023 09:51:31 GMT expires: - '-1' pragma: @@ -2820,24 +2970,72 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1fe61d98-12cb-4580-a00b-76b75e356379?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 }" + string: "{\n \"name\": \"981de61f-cb12-8045-a00b-76b75e356379\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:50:00.6444611Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:52: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 --update-cluster-autoscaler --min-count --max-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1fe61d98-12cb-4580-a00b-76b75e356379?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"981de61f-cb12-8045-a00b-76b75e356379\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:50:00.6444611Z\",\n \"endTime\": + \"2023-06-29T09:52:26.131898Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '169' content-type: - application/json date: - - Wed, 14 Jun 2023 19:45:55 GMT + - Thu, 29 Jun 2023 09:52:32 GMT expires: - '-1' pragma: @@ -2869,76 +3067,72 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestoaaevv4bt-79a739\",\n \"fqdn\": \"cliakstest-clitestoaaevv4bt-79a739-yji9d9fe.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestoaaevv4bt-79a739-yji9d9fe.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\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d6b47a30-7558-4fa5-b60f-5165849d42b2\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4990' + - '4661' content-type: - application/json date: - - Wed, 14 Jun 2023 19:45:56 GMT + - Thu, 29 Jun 2023 09:52:32 GMT expires: - '-1' pragma: @@ -2972,8 +3166,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -2981,17 +3175,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/44adabfc-428c-4099-a6a9-110e5b33c518?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 14 Jun 2023 19:45:59 GMT + - Thu, 29 Jun 2023 09:52:34 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/44adabfc-428c-4099-a6a9-110e5b33c518?api-version=2016-03-30 pragma: - no-cache server: @@ -3001,7 +3195,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_blb_vmas.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_blb_vmas.yaml index 210bad02e19..b53d5aecff4 100644 --- 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 19:46:09 GMT + - Thu, 29 Jun 2023 09:07:47 GMT expires: - '-1' pragma: @@ -53,8 +53,8 @@ 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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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", + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": @@ -69,33 +69,64 @@ interactions: Connection: - keep-alive Content-Length: - - '1785' + - '1456' 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-8ovvddrq.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-8ovvddrq.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"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 AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/5c7a340c-4106-4708-8099-237318b29233?api-version=2016-03-30 cache-control: - no-cache content-length: - - '313' + - '2878' content-type: - application/json date: - - Wed, 14 Jun 2023 19:46:13 GMT + - Thu, 29 Jun 2023 09:07:53 GMT expires: - '-1' pragma: @@ -109,59 +140,151 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' status: - code: 404 - message: Not Found + code: 201 + message: Created - 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": {}}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks wait Connection: - keep-alive - Content-Length: - - '1785' - Content-Type: + ParameterSetName: + - -g -n --created + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-8ovvddrq.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-8ovvddrq.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"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 AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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: + - '2878' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:07: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: - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks wait + 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 --no-wait + - -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: PUT + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-8ovvddrq.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-8ovvddrq.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"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 AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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: - - '313' + - '2878' content-type: - application/json date: - - Wed, 14 Jun 2023 19:46:19 GMT + - Thu, 29 Jun 2023 09:08:24 GMT expires: - '-1' pragma: @@ -170,97 +293,158 @@ 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: 404 - message: Not Found + code: 200 + message: OK - 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": {}}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks wait Connection: - keep-alive - Content-Length: - - '1785' - Content-Type: + ParameterSetName: + - -g -n --created + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-8ovvddrq.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-8ovvddrq.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"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 AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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: + - '2878' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:08: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: - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks wait + 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 --no-wait + - -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: PUT + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-8ovvddrq.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-8ovvddrq.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"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 AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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' + - '2878' content-type: - application/json date: - - Wed, 14 Jun 2023 19:46:31 GMT + - Thu, 29 Jun 2023 09:09:24 GMT expires: - '-1' pragma: @@ -269,13 +453,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: - - '1197' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -290,57 +476,55 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-8ovvddrq.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-8ovvddrq.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"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 AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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' + - '2878' content-type: - application/json date: - - Wed, 14 Jun 2023 19:46:31 GMT + - Thu, 29 Jun 2023 09:09:54 GMT expires: - '-1' pragma: @@ -372,57 +556,55 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-8ovvddrq.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-8ovvddrq.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"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 AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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' + - '2878' content-type: - application/json date: - - Wed, 14 Jun 2023 19:47:02 GMT + - Thu, 29 Jun 2023 09:10:24 GMT expires: - '-1' pragma: @@ -454,57 +636,55 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-8ovvddrq.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-8ovvddrq.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"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 AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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' + - '2878' content-type: - application/json date: - - Wed, 14 Jun 2023 19:47:32 GMT + - Thu, 29 Jun 2023 09:10:55 GMT expires: - '-1' pragma: @@ -536,57 +716,55 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-8ovvddrq.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-8ovvddrq.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"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 AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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' + - '2878' content-type: - application/json date: - - Wed, 14 Jun 2023 19:48:02 GMT + - Thu, 29 Jun 2023 09:11:26 GMT expires: - '-1' pragma: @@ -618,57 +796,55 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-8ovvddrq.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-8ovvddrq.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"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 AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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' + - '2878' content-type: - application/json date: - - Wed, 14 Jun 2023 19:48:32 GMT + - Thu, 29 Jun 2023 09:11:56 GMT expires: - '-1' pragma: @@ -700,57 +876,55 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-8ovvddrq.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-8ovvddrq.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"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 AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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' + - '2878' content-type: - application/json date: - - Wed, 14 Jun 2023 19:49:02 GMT + - Thu, 29 Jun 2023 09:12:26 GMT expires: - '-1' pragma: @@ -782,57 +956,55 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-8ovvddrq.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-8ovvddrq.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"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 AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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' + - '2878' content-type: - application/json date: - - Wed, 14 Jun 2023 19:49:33 GMT + - Thu, 29 Jun 2023 09:12:56 GMT expires: - '-1' pragma: @@ -864,57 +1036,55 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-8ovvddrq.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-8ovvddrq.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"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 AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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: - - '3209' + - '2880' content-type: - application/json date: - - Wed, 14 Jun 2023 19:50:03 GMT + - Thu, 29 Jun 2023 09:13:26 GMT expires: - '-1' pragma: @@ -946,61 +1116,57 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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-8ovvddrq.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-8ovvddrq.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"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 AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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: - - '3430' + - '3101' content-type: - application/json date: - - Wed, 14 Jun 2023 19:50:03 GMT + - Thu, 29 Jun 2023 09:13:27 GMT expires: - '-1' pragma: @@ -1032,61 +1198,57 @@ interactions: ParameterSetName: - -g -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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-8ovvddrq.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-8ovvddrq.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"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 AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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: - - '3430' + - '3101' content-type: - application/json date: - - Wed, 14 Jun 2023 19:50:04 GMT + - Thu, 29 Jun 2023 09:13:27 GMT expires: - '-1' pragma: @@ -1118,57 +1280,55 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-8ovvddrq.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-8ovvddrq.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"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 AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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: - - '3209' + - '2880' content-type: - application/json date: - - Wed, 14 Jun 2023 19:50:05 GMT + - Thu, 29 Jun 2023 09:13:28 GMT expires: - '-1' pragma: @@ -1202,15 +1362,15 @@ interactions: ParameterSetName: - -g -n --file User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ - \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVV4YU1WcDVjakZtTDJGbVNVaHFXV0ZEUTI0NWExVjNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDA1cVJUQk5WR3Q2VG1wVmVGZG9aMUJOYWtFeFRYcEJNazFVVVhoUFZGRXlUbFJHWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNqSmhUbEJ5ZVVsUmMzWkJNazUxV1ZCNEsyTnFjREYzZUV4NlJrbDZaVVozY3lzdlRXbDZiazVpVjI1Qk5rWmhkRFZGWmpoQ09YaFZXVVJGV0hoQ1dHOEtVWFIyWW5JMWFsUklkRXhQTHpRMk0xTXlNbGxuTUd0T01FNVhaa3BCWWxKRWJrMUlTVkUyWms1T2FXaFRPSFJNTlVwUE9VUkpZbGQyWkhWcmMxcEVkZ281VTBwSGVrY3JVbFZQVURCdlNuSjBSa05NZUhRdmFUSnVNMVZIWWs1VFFsRnhPV2t2TjFRdmVUZHNOM0JyZDFWWlEwYzJhSEl4TWtkM2JqUnJaRnB3Q25WUWQzVXdSMGR4Ym0xWU5qSklSRVZMUVU5aFVHSXpUR2RXTjNGbFJ6QjNNbVptWjNSNVRXdFJkMXBrUTBnMU9YZzBRekpSV0ZJNU5GQXZhMUYwT0VFS1QxaDFjazltYW5GTWRYaGtSbGxMZEc5S09GVjVNbkVyUVdGTVIyTTJObk5XZUV3NWJXaEViVlZ1VTFNNU1DOXRMMmxtWWtwWWRXbzBaVVZYZWxGWlZBcGpOQzlhUnpRd09YZE5aall5UzNoWFMyUkZUbmg1YWs1NFZGTnZjRWxWVldFNGVqQkhkMUEzZWtsM1JsQnNUMjF6U0N0VWJuaFViMGwzVjBwTVJqQlBDbUZwUTNKV05uUkhVbXd5ZWtaRVYxazJhR1ZHVkVSaVdVazVTeTk2Y25GT1FqTllhVmt5TnpOMlRUTmtTMHhEWjJ0b1NXaGxjbEpwVjNOMU5sQlhhWElLVVhjMk5VbEpkamxZT1VGdVdXWnFiWE5NUzA1TlNXbHlTM1pGYzFGWk1tNDRWazlaTTNCRlYwMTNXRzlSYmtWNVVsbE1lSEJ3VDNObFlUSjRhRUZUT0FwNVVVNVhha0ZEZFUxb1VXTjFSMUZrVUVST2VUaG9VRTB4UjNKMVRWWnpRakZCUjA1b1kwTllaWFpuYW5CelptOU5VMjlXU1c1c1QwVjBkbUp4TUdneUNtMU9VR2w2VlRKNlF6bEhkbkZtU0dFNU1FUkJiVlJQUTFKTU0zbG9Rbk14TTJJdmRYZFhaMHhWU2pVdlRDdEpUa2xIWlhCNU9GaDVkV2xJSzBaV1NuWUtXbGxJWVVwek9YRlhRakphUjNKUlV6WkxTbTV4WkhWa2RrRm1hbWROYkcxTmRtSlZSVTlMY2pSM1kwTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1FuRkVXVWd4TUVvemJHUlljR1pJQ2tnelZHb3dRMXB0T0ZSRVMwMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlF6VTVWMDFTVFRONVYySlBhbTE0S3pSRU5EQXdRWGhETkVFS1JrcHZORmszVjJOM09HdGpSbWRaUWxaS2Vrd3pibTh4V0VWRE15dGlXVXRCUm0xWlZFMTBOalphY21OMWRWTkNhall4T0RSbmRESnBaVzgwVEdJM01RcEpRMDV4Y3k5UFZHazFXbXd2UVd0c1JqQnljRVkyT0dka2QzVXphVEpyTVc1QlFYTmtSV2RNWmtOTU5HZFRaRmhDYlhwUk1FWlpiaXRXU1dWcFR5OWlDbTVwTkdoa1p5czNZM05FTkRac05GSmtkalkwU0hNdloxQXljRFo0ZDFOcVptMWFka0ZLU25FM05YWXpSR2RCTUVkcUsycHVkM0UxUlV4NWJGTTRLM2tLVTNGUlZWcG1ZbEpoWTFKaWIyc3JaSEZEYVZWeVpGUlBSV2RtUlZJMFdFUTVRM1ZpWkU5UEszVlFUbUY2Vm14SloyaERVWE5oUzA5SE5WbDBNRGxKTndwT1kzRkxWRFJZV21Kc1FUbENRbmxVUjNsdFIydGhSMjlqVG1Gc1ZWSjJPREJCWm1NM1lsaEthVGt5UjFodlNsWjJZalp1YUhCSlRsTkpkVzFQWTFWaUNrbEZaVlkzVGtabmIxRmtiakp0Y0dGSE1XeEZVbWxGYkRWUmJsaGlVMDVaYlRsS1ZrdGFVbFl3WTJSSE5UZ3lVa3BSTUVwWVREVndVVEF5ZVhVNVJXY0tRMjAyUlRabU5GUTRjbmxGVGxkdE1tVmthRkpqY1Rnd2EwdGpkVmxLU2pFM1RUTkhiMU5wZVdWR1REUmljbWxzZUdaTVNVcHFVWGhwV0U5c2VVRjNaQXBYYW1aVWJHSlZOMHBTTWpSb0wwdGliR3hVWkVkcGNWUnpOR053U2xSS1RubGhabGhrUXl0T05EWldNRnBUUlRkdWNGTlpVVlZKUlM5MFFuWmxOMEkzQ21ndmFtTlhaSFpWUWpKWmREVkNUbXBTSzA5Q1dGaGlNMU5xVTB4MFR6Tk1ZbmxqVTBkUFNWWnpUVVZGY0N0eGNESmhUMjlKZERGNFFUbFJOREk1TlVnS09XaFJVSEpOVlVkck0xcEVTRVJtTmxGelRqZERZMnRVV2tnd1dIRkRlV051TUZSblZXNXZjVUlyTlRWYVZ6QjJNRTFDWlZWcE5XRmFSamh3TkRKc1p3b3lhVzlrVTB0VWJ6VkVSbTVyUW5wUWVHYzlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5zYnd4ZjRkdS05MWF6YjRxNS5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdGh4c2VjZQpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdGh4c2VjZQogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdGI3emdvZWV6anBfY2xpYWtzdGVzdGh4c2VjZQogIG5hbWU6IGNsaWFrc3Rlc3RoeHNlY2UKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0aHhzZWNlCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdGI3emdvZWV6anBfY2xpYWtzdGVzdGh4c2VjZQogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklWRU5EUVhkWFowRjNTVUpCWjBsUlNVNTRjbkJ1Y0VWV1MyOU5kVmh4TkZJMFVWUkpSRUZPUW1kcmNXaHJhVWM1ZHpCQ1FWRnpSa0ZFUVU0S1RWRnpkME5SV1VSV1VWRkVSWGRLYWxsVVFXVkdkekI1VFhwQk1rMVVVWGhQVkUweVRsUkdZVVozTUhsT1ZFRXlUVlJSZUU5VVVUSk9WRVpoVFVSQmVBcEdla0ZXUW1kT1ZrSkJiMVJFYms0MVl6TlNiR0pVY0hSWldFNHdXbGhLZWsxU1ZYZEZkMWxFVmxGUlJFVjNlSFJaV0U0d1dsaEthbUpIYkd4aWJsRjNDbWRuU1dsTlFUQkhRMU54UjFOSllqTkVVVVZDUVZGVlFVRTBTVU5FZDBGM1oyZEpTMEZ2U1VOQlVVUm1SQ3RQZGxGV2NqWjFkMjB3WTNSVlozSkdNbUVLU1hWTWIzTkZORFpwVFhkcFFUVTRkek5MYkUweVQyOXZLMDkzTjJsTVJuRXlLelZaVldWcmIwTmFSRzFvT1hKME5sZHhXVWRaYkZadlNHczBaWGt4TmdweFVreDFiVlJSUjJONmR6VnFaR3BRWWpWRksycHViVXBrU1daaWJVaDJjWHA0V1hkNlQwOXNXWGN2UkZZM1V6RlpUVTlHVkZCUFNVOXBaSEJsY1ZWTUNrUmxjR0ZxUldwWVJISTBTbUpsWlVGMWIweHNRaTlUYkZOc1VsUjZjbFpYVm0wMGVucFNlaXRWSzNwQ1RGcEVWM1ZNZUd4RVJtaDNlV1ZXTUZsNmVYRUtNSGhVZFdaRWRucExjMFJ5VDJWalJXTlRWMlJDV25KYWVIUlhSRGRhWjFRMVYwbHdlVEJtUVRCTWNXaHFhVGRVU1VoMU9UVnVZMmsyV1VwaWEwbzVUUXBsY2tRM09UUjFXSGRwU0cxM2VFRlROVU5DUldKWVNYQnVkRTlOY0RCT1pXcDJMMU00VVdoaWNHeEROVFZpTlZad1RqTk5ibVZaU1dkSGFYQjBLM1pMQ2pSMFVIUnNTV1IyWkU1aFJESlhSa3c1Ym5wd1ZYRjNWMVZuZURkSFZ5dHhWMU5XVkdNeGNHdFRaR2x6VTFrMVVGRnBlRUpOUmtjd1NXeHJSSGhxTld3S2VIWm9iMUJuTW1oc05YRkVaWEJMVjNGVWQybEhNMk55VTNWMGNqWlFRamczU21Sa2NpOTZWbkphWlZkTEwyNXVNWEJuU1djeE1GaHJZakJ6VVdWV1ZBcFFhVE0wZFV4VGIxZFhVRkF5Ym10dlRGZHRkRFoyVTNaeGVVdGFNMVp0YnpSWldFWTJRMFpPWjBSNVRXRjVURmxTYWxoQlZFa3lRMjlzUlRORmRUZ3hDa1ExVDJSeVVVUXZPR1pRYlZNNVRHOUlPSEk0Um1WbGJtcFVaU3R2YW5OMmJXRlNUSGRtWlVwUFowSkRlakZGWW5GSmJrTlNTakZKZFZaUmJXZ3JNRFlLVlVWMmFpOXJWMWhMV1dWUFJuZFZUVUpUZDNwNmFTdHRUR1F2V20xNVVXVXJUbkIwYUVGa0syVlJSblZ1ZWtOWU0wOURjeTlIU2l0TFowMHZjbkp3THdvemJFZFJjR2xtVW5WdVJsSmhhMWRhWVc4ck5YcDNTVVJCVVVGQ2J6RlpkMVpFUVU5Q1owNVdTRkU0UWtGbU9FVkNRVTFEUW1GQmQwVjNXVVJXVWpCc0NrSkJkM2REWjFsSlMzZFpRa0pSVlVoQmQwbDNSRUZaUkZaU01GUkJVVWd2UWtGSmQwRkVRV1pDWjA1V1NGTk5SVWRFUVZkblFsRmhaekpDT1dSRFpEVUtXRlkyV0hoNE9UQTBPVUZ0V25aRmQzbHFRVTVDWjJ0eGFHdHBSemwzTUVKQlVYTkdRVUZQUTBGblJVRjNWV2hCWnpsRFRtTlVTbk5OUzB4T09XaGFSUXBLZWtGaGVrTnhaRkJrZEhOSlJEbDBMMlZDTWxWRlZrWmljV1pvY1daT1NWaHZWekJuTjBKSmNIQlJSbXg1ZUM4d1YxbGhkbVl5WlhONWVWTTJSM0JJQ2tOaU9FUlVUalJIWnpSb2NtazBha3hZY0ZaYWIwZGpLMUpvSzJ4M04wSnZUek5zYldKQmJYbFJhMkZLVTBkNWN6TlNXbGt4UVRWRWFFRnRXVEY1TDNRS01VeEhWbkJZTTA5UmN6TkRiMDV6VUhkc1pqaGpOSGRRVUZOeFZWUjJSa05rZURaQlRFUXhWSHBJUjNkcVpYRndiMnd2T1VGU2VWWlBWbU5HZVZReVZRb3lRME55WlV0MFl6QjJiRVpYU1RsVE15OHpZV3BsYTBwa01WSTJkRE5MY2tzMWJtOWhMMmRvYUhFdmQwRmhXR1oyZWs5SFoweEVaVFJhYUZGalN6TmpDa05uY1cwd2NUZDBSRE55UWxWTlZHVnFhMDQ1TkVabVdqWTBUSFZ6WkRsUU1rOTVVRlEyUWtoYVp6WlhMekJ6ZVc5YVVVMDBkamx4VkhaaVlWZHJiM1lLUmpoNUt6WlpjRTFIUzJabFpsQnNLMmxLTW01bWRYTm1jRVF5U3pVMFMxUldhVEJTT1ZCRk9XVnVWRmR4Y0ZCa1IyOVRPV05KVlV0U00xVTJNV3BRWndweE1EUk9kWFZsUjBWTWJYZFBUMDVOTWs5RVNGcGpjbEJTYWl0c1UwWXliRUpRYmxkWGF6ZEdWVFV5SzBKSFdIbFdUVkl6TjFweFJtdDViemROYzBWcUNtWnJZa1pxUTJoblJYWlFUMHRpV0RWbGEwSkxiMU5OU0cxalMzazJXV3RPVHpKc01DdDBiRFJtUWtWTVVFZHFSamM1YjBkS1RrdGtOVzQwVmxkcVZtb0tlVmMyZEhCYVdtOVFORzlwWjBGeFZYcHFVR0ZGWTIxNmFtSlJkbUowYkhOSVdFRk5lVmR5Y0hSbmRYaDFNSHBVT1hKWVpIaFhiRlUwU2xSTGNtdFdNQXBqVlhGb1JrSjVWVEpGZVhSRU1VeFdla1ptZDBoNk16RnhTRGhGV1VWeU5tYzRXV2RvZFdKcVNtZEJTRTlFVERVMFowMTJTMDVXYTBrd01IRndaWFZvQ21OTmRWZDNSak4xYkRsdFpFeDNiVUZJUkVadWNteG5QUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MwRkpRa0ZCUzBOQlowVkJNM2N2YW5Jd1JtRXJjbk5LZEVoTVZrbExlR1J0YVV4cE5reENUMDl2YWsxSlowOW1UVTU1Y0ZST2FuRkxVR3B6Q2s4MGFYaGhkSFoxVjBaSWNFdEJiVkUxYjJaaE4yVnNjVzFDYlVwV1lVSTFUMGh6ZEdWeGExTTNjR3N3UW01Tk9FOVpNMWw2TWl0U1VHODFOV2xZVTBnS01qVm9Oelp6T0ZkTlRYcHFjRmROVUhjeFpUQjBWMFJFYUZWNmVtbEViMjVoV0hGc1EzY3pjVmR2ZUVreGR6WXJRMWN6Ym1kTWNVTTFVV1l3Y0ZWd1ZRcFZPRFl4Vm14YWRVMDRNR012YkZCemQxTXlVVEZ5YVRoYVVYaFpZMDF1YkdSSFRUaHhkRTFWTjI1M056aDVja0UyZW01dVFraEZiRzVSVjJFeVkySldDbWNyTWxsRksxWnBTMk4wU0hkT1F6WnZXVFIxTUhsQ04zWmxXak5KZFcxRFZ6VkRabFJJY1hjckwyVk1iRGhKYURWelRWRkZkVkZuVWtjeGVVdGFOMVFLYWt0a1JGaHZOeTh3ZGtWSlZ6WmFVWFZsVnl0V1lWUmtla296YlVOSlFtOXhZbVp5ZVhWTVZEZGFVMGhpTTFSWFp6bHNhRk12V2pnMlZrdHpSbXhKVFFwbGVHeDJjV3hyYkZVelRtRmFSVzVaY2tWdFQxUXdTWE5SVkVKU2RFTktXa0U0V1N0YVkySTBZVVEwVG05YVpXRm5NM0ZUYkhGck9FbG9kRE5MTUhKeUNtRXJhbmRtVDNsWVdHRXZPREZoTWxoc2FYWTFOVGxoV1VOSlRtUkdOVWM1VEVWSWJGVjZOSFFyVEdrd2NVWnNhbm81Y0RWTFF6RndjbVZ5TUhJMmMya0tiV1F4V25GUFIwWjRaV2RvVkZsQk9HcEhjMmt5UlZreGQwVjVUbWR4U2xKT2VFeDJUbEVyVkc1aE1FRXZMMGg2Tld0MlV6WkNMMHN2UWxodWNEUXdNd3AyY1VrM1REVnRhMU00U0ROcFZHOUJVWE01VWtjMmFVcDNhMU5rVTB4c1ZVcHZablJQYkVKTU5DODFSbXg1YlVocWFHTkdSRUZWYzAwNE5IWndhVE5tQ2pKYWMydElkbXBoWWxsUlNHWnVhMEppY0RoM2JEbDZaM0pRZUdsbWFXOUVVRFkyTm1ZNU5WSnJTMWx1TUdKd2VGVlhjRVp0VjNGUWRXTTRRMEYzUlVFS1FWRkxRMEZtT1hvMGN6RnVVRFF3UlhScFpGVnRSbEZvY0ZkeU4zRlRVVFYyTVRkc1Eya3dSR1owTkRGb1J6VjNabXRGY0VORGJYbDRSa1p2VFhSeGFBcENLekJhTXprMWJqVnBlbGhpVjNwNmJVWkVRa3MxTTA5MWFTOXRhV1pDVFVKVmQwTkVaSGM0UTI1WFdsUXhNRzFKZERoQ2FXOXJTMnBUTTFSNk9Fc3pDbXczY1hSTlkyNHJjM0JKZG5GU1dISkxkemxoZEhSMlF6aFFWRTU1VjNvemJtVnZOVEJITjNGa2VUZFBjMmhrVHpWa1RUQkVSMjVFU1V0RlZrOWtTVWdLUmpScU5HMUxSbTUxTUZORlUxaFhXRU5rVEc5NFpuUjJaa0k0U1c5TFJTOVNWWFpuUTFaWmR6TjFVVzFoY1VsbU9HTnRRbGR6ZFZOMmRERkVaVTlwUndwNmFGWTFSblptWlRsMk9XTnpTVTlhU2xOTVFVRktRelZCVjI1Q1ZXWjVaeloyY1dFelZVTXZiM0JsTTA5Tk1rdDJNVWRSVkdaUFlVZ3dkbWN4UjI5VkNreFRWWEZsUkRFMFZuVlBURzE0ZFdkTmJXaFJRVzFhWkhocEt6VlFPRGxFT0VVMk1FUjJaRGN5V0VOVVVHNTNjemQ2WjJoa2VHRlVkMFZqYmxVNFZuY0tSVUpLTW1WQ1lVaHBTbk5KZEZOVmJETTJkakpHYUhsbE9ISm9VM1Z0U0dkNFkweE9jRmxRVTBGcWNXTTBUazFKVFhWcWJ6aHdVbU4yYVVodVNFSXdkUXBEVG1aTlFqRlFTakppU1c5RFlsbEtjVEpDVG1Zd2FsZGthMDRyTDB0NmNHeDFiVXhTV200NVVrSlpWazQ0TWxsTGFqRlZWRGsyY3k4dlFqZDNVRU5rQ2xsWGNHaHZhalYyWkRoeE1qRkVaRFJXYlRKcVJuZ3JUV3cyWkdwNVowaFRRVXA0YW1kU0wzUnlORmx4VWxaT1FVaHFiMmhwZUZaWU4yMVJlVUYzYXpJS1oxUXZWa2gwVW1kM1NsRnhlRUZRZDNKQ1UzcGpSV1pSZG1OWmVrcGFWSEZIT1RCbVVFVlBiVnBWSzNsdWRtMUJORlI1YnpCME16aE1OSEUxWVhOVGN3cDBZVGh4WVZwRU5uVnJhSGxzTDAxUGJVWnFRVE5QY1VkV1NuaFVZU3RzVW5SeVpuaFlRVzgyZERWc01VMXpla0pCYjBsQ1FWRkVlRlo0WlhkRWIxUmlDbXhaY0ZSMVVHcHZObk0xTW1wT1ZEa3ZZbWxPV25kdFRYUnNabVZrTVc4MFZEUm5iaXRQWldGUWJFTkVURGt6YlV4dVpqRlRVMjl4VVhCRFZYbE5OVVlLTHl0WVUweFpZMnhsVjNGdmJuTkpjSEpFVlhaUU1UaDJVMXBJU2tsc09UWnlTa0U1WkhCWlYweFZNMDlKY1hjek9WQXhUaXRpZUd0SWQyOVVlVXRpUndwVWRsWm1TbmhJZG1ZNVZEaEZSMU5RTVZOcGVrZHFWM1Y1YkcxRGFEaDZORzEyTmtKRVRHRmhLMVpOWVU5clJGa3lVRzlITlhWTWVEVkNaSHBrYlhCckNtOW5Oa1ZpU1VoM1dYWjFLMVo1TUVGS2Npc3hOV3hoZUhFMFpVeEVWRXRHZDNkbFQzTlFSRWhsVjNsRFpWTk5WVFp4VnpkYU9UaFliWEpyYkdGWVoxSUtTemswVlU5eFYyTktXRlZET1M4clJFZHFaRU5vYWxZdmJEVm1XRmwxV2s1aFVWRkRXSHBDZFhCd1QzTkRSemRTY0c5dlR5dFVSM0ZFTlRCSWNsbG1VZ281V25saWVHMWxhbWRCTDNaQmIwbENRVkZFYzI1S1JWWmhhbFF5VWpaR1ZuSjZWR1JXWVVSTFEyWlVlR1ZKYzBwaVQySmhSRlZWVEZCdGMzaE5iMk5IQ2xsR1pXNXNZVEZHYVdobmF6ZFpVVUZpUVhsT05GQktVR1l5VEd4Tk4wOHZXbU52UkRSaEt6QmFjVTF0UmtWWFFUWTBjamg1Ykc5T1ZHdGFWRnB3UVhRS1IxaEZVR3gwY1hsbllrUnFVRkJRUm1nMVVuaDVaRlZqYlZCMGVVWkdia2RRYVhKVlVrdDVOVlZSTldkT2JEUnhMMUpQVFZscGVFTTFVV055T1doNmJncDFWMUJZYnpod2VVTnBiWGMyU2twS1VFWk5kMHN6WWs4eVRDdDBSR0ZSYzJrd1NVTk5VbkIyY1haS1ZURlpkRzlDTlhneE9XMXBNVVZET1NzdmNUSm1Da0pzV2podU1WcGpSbVpUUm5Cd2RUQlRZM3AySzBWU00waDNkVzRyWWpScWJHdEJURll4YTFCR1pWRnJPR3RZWVdaV01FdHRWVnBTWmtkdVNqaHBSRzRLV1ZjeGVGUXZTRVV2VUN0TVEzZzRSR3hpU1RkblFYUjNUbUZuVXpOTWVqVk1RbU0wU1ZKUmFFRnZTVUpCVVVOTE5rWTNORGxhU21kMFRsTXlWbHAyYlFweEsyVkVPSEJHVWxVMmVtRnlibWxtY0dkQmVsTnhNRU5DYW5wUVJGRk9OVVYxTjFOWk1GZHpSRUZxT1doRmQyaHZUV2xKTm00NVdHRlBLMFp3Y2tSSUNub3ZaV3M0UTA4dlUzRkJaQzl5UzNocEx6SXJUQ3QxVjNSNVdXRlRiSGRsYWxweVpubzNUV2xVWmpsU01YcEZiM2t6YWtsYVJrRm9hV2xpVDNseVZWZ0tSRnBQZDA1V2N6aE5hWFJJTUhkcll5OTBha0ZQV25WMldqYzJaVEZ2ZEhZM1duUTBWMEpyYXpsMFdVdEVVRU5KTWpScWJqWjZkRmhwY2sxcFdYcFllUW92TTFnMFZ6Qk1TMlZKVFZac2JYUkdkbVl5TkN0cVMyWk1UamN6YzFRMFZrRm1Na1J3TW1WaGVsZG1kekIwZEd0UllXcGFUVXhvY2pSaWVtdEdaRVp0Q21FeVZFc3ZZVlI1WkRZNVozVmtRMjVFVFVSWWRIUlFjSE5GTUdaa1JuaDZRVFoxZUdNdlZXTTVSMk0wVFZKUU1URjVSRUl6TkRWNVQxcFZXRlF2TkhNS04wUlBMMEZ2U1VKQlVVUkdMMEZTVTJaUWIzZEZZVkJ2UWt0RmFHbDVUSFJ5UVUxMloyOVJhM05QUmtOR09WSnpTV2xEYW0wdmJuSXhabGhEYm5KWVRBb3JSVGxZY0hZM1RFMDFORlp2WlVwbWNuVklZbXMzVjFkTkswRnFLekZoUVdneGJVRTFXR3cyT1VwNmNVSlpMM2RxYTNrclVVcFlibWgxUW1GQlVYRnBDbFF5TjNBeFptcE5hMnBSWlU5d2NDdFJWM2N3SzNRMVlubFhNR2hFVVROVFUzZGlVMkoxZGtFMFRqZFpiWFJWWVdKSVdHaDZVMEpIY2xwUWFuWnZVVW9LYUVsT05rdHJSWFF3Y2twNFNHY3haRFl6VVVodkswSTFMMVpUVVdKUVNVZ3JiWGx1YlRjdk5HNXNXRWhTZUZrMlZ6TTNRM0oxZDNOdmNYSXZkMGgzVFFwMFluQlVhM2xQTm1GbU5UTXhZUzlGVmxVdk1XdEVORkJ1VVhWa09HTnlkRzF2TWpaa1NtTkxlV1JrZFhCUE5UUkNUR2x2WVVabmMwSkNVVVoxY2xVNENqbGpORWRXU201M055OVBhRmxtVlhkUlZsZFFOSFpEYkU1elZpOURMemRDUVc5SlFrRklVVzFQUmtaQlFpOXJaRTFIT0ZGbmQydE9hMnhrVmk5VWFFOEtaR1Z3VTNsMlpIZHZhek5rZDNSeWQwRk1aUzlTVVRoelpWWkVSREpqVGtOUFRsTm5PVFZqUTFCUVZVNVRWVmhNZVdKd2VrUnZOSGhRVDB3MmRVTk9hZ3ByTjNGUFNXOTNWVWhKYVhWVWVGcG1hMkl3VEdwVE1VNUZWVXRRTVhCU0wxWm1ha2hGWlVsQ1FtOXpWVTU0YzB0eFMzcENjRlZOV1RKdldUWTFaak00Q2twd1pXVnVUREpyZWpVMU9ISkdXRE5ZYW5oUldscDZaVWh5ZFZKNVlrbzVRUzltVkdac1NVbzJZMEZ3VlZKTmVEUkxjWEZYVm5WQ01UUmpPU3ROY1VJS2IyUTJhVEVyVWpOTVIzUXhSSFpvZVVSblFrcDRVMGRYUzNCUVRGTnNPVTFqUldFd1JVUkhUR05RY1ZGR05XVnNaRE0xVkVwdWNHTkdUVzVOUkZKck9BcHNabVF5U1VWSVl6RlJUazVvUW5OeGNIZHVUSEJGUXpSaVdUWk1aMnRMWW14SVpIVlhRMFZ6Y1c1c2VtTnNkbk5yZEhOSGFuVndOVlJUWnowS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiB2a2d5aW1xYmNiZWFpY2c0c3V5YTJveXM1NnlrYjJoN3diM2JxYm4xZDNzaThuc3VzN2dmOTg0eHU2MDVlaWo0aHZpamw5Yml5ZDV0cDV1aGN5bnY4ZHh1ZTZyMHJhb2V6emc5YW9pMHB6Nnh4MjJ4enBsdmJjZ2k1aml3OHN1Zgo=\"\ - \n }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": + \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVVwQ2JFeHVjM2h1SzB0cE4zSkRhVW8wYjJrd2FVRjNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDA1cVNUVk5SR2N4VDBSRmQxZG9aMUJOYWtFeFRYcEJNazFxYTNkUFZFRTBUVlJDWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNuZFZUR1ZGZFRFME0wMXVlQzlPYmxoR05rRkNibFZCWTFOM1kxbDBTRk5yYUZGMVlWTlZZbE5wVERZeGNVTnRTMW80YjI1YWQyRTJRakZXVWxReU9TOEtlRXRzTjBoNGVWRTNTbTlaVmpWR1NqSldTRGxCVjNvdkwwZERhbkZVYWpWMlVVSmxiemhJYjNkYU1tcExNSFpqY3poM1RYRkRXSGxyYzNaYU9ETXhiUXBVZG5seFIwdERhbWxCVkVsMFVHRnFZbkpETkdaNFdreHlPR2hUVVUwelF5dEhTM0puVUZsaGVXRnZaRGRaY21odVdteE9XWHB1TjBWQldIcG1hVGxLQ25ac1IzZDNUWEZwTmpoeU5VTXdRMlZNZERKWVQwdFhiVTF3YjJJemFUQmlMMmd5Vms1MVlVRjFiRmwwWmtremR6aFlSbXd2TjBKa2FteEJaME5aV2xnS1FVUTVTVXcwZURrMU1IVjBOQ3RxWmt3cllUVm5iRzkzUkhNcmFrVlRlR1JHU0UxdkwzcFNkVkZpUmtocU4yaFpiMUJHUm1FMmNXMTNVU3RETWpkelZBb3phMjVQVW1rM2RrSXZWVkJ2WkRJeVQwaERVME5GUkhwcU5WTTRhVWhyWjA5MVEwaHRZbFpTU2swM2VuQXlZemx1TVhscE1EQldSSGxhWXpNMmRISndDbkpwT1M5SWN6SjNXRXhaT0M4d01tbHdOSFp5VTFKMlUxTkRhWGgxZWpoQlpqbGhXSFZIZHpOME1qQllkbEpUVWxkd2NIaDNXbHB2WWxCVWJFUlRhV0VLZWpobldYVkdRa0k0VVVac1YxQkhkekZoWlZNeFRuQmlSMGhYU2pabWRESjVRakp5UjJ0eVVYQmpjMEk1YTFWTGIyRXhZMXA1UkdVMU4xTlplRTE1U1Fvd01tcGxlRGRIWkZwcU1HWlFUazA1UlU1UlUxWmtjVTF1U0ZGaFpVcFVOV0ozZDJaRFQzWkNURU5HUVd4VE5YVk9MM1ZOWVdWd2NuSnZVV3hqYzNSUENuSnVkekFyZEhCeEsxZElNRzV6TDI5RldHZHJVMUV3WWpOR2JqUllZMHhYT0dwUFpGRXZTMGxXUWl0NVRIVm9hWGN3UVhSdmFERnRiblZCUWpORlIyNEtZMVZRV2xWNlIxQnNNRUpxUzBwa2NrTnlSRTlLZGxsRmRFbDNLM0Z4Y0RsVmQyUndNa1V2Y1UxRk9FTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1NFMHZiVk5aY1V0UVRGQjNjbTV5Q25kSlNraDNaV1UzZDBSSVNrMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlFqZ3paRVpzUlZCd0wzSnZTVE5uYlZGRlJFRnNXa05TUmxBS1JsWTNPVzVoU0N0UVdEa3hiMEY2WmpGVVVWRXhiMnN3VGpWdFQyVkJWVWdyYUZkbmJFRXZiR3hVWldkT1pYQkhaSE5GZUdaeFNFbFlUa2wyZW5GeGJRcGxXVmRvU2xCQ2VXOU9ZM2d4WmxWa1MyRlZjMGx5WTFoUmVDczBabWRtYjBkeWJrTTFNRk4zVW5veFl5dExMMFV5U1ZWcU16Sm1XR0oyY1RORWVFVjRDbXg0Y2xOUU9GcHBURXBUUkM5cE5UWm9Sa05SU2pWeVRGUkJRMjFETlRaSlUxSjFkMjV1ZURGV05qRXJlRzlzWjFSdFEwSnZZMGRrYVZwT01GcEZTbkFLVFU5R0wwSlNUMUEwV0ZCVlJFOVpWM3BwVGpJd2RrUTFaMlo2VFRVMldWaGhaVlJ6U2tOeFFWUnFMMEUzV0RKU01UTXZVVUZzVFhFMlZFOVNXamx1UXdwSE9XaE5SbUZXTlRaUWRGWmthVUp3V201c0szQktiM2hWTjFkcVJtRlVNVzlWV0VwRmFGbDNVVTlJZFZSM2J6WlZWbkZhUW05T1Fpc3hlVllyTkdKYUNuZDNkeTltUlhkT1puUXlObkpCZVhGaU4yMVJiaXRLVGpWU1dHUldaSFZHUmtKNWNFNXJjSFZ5U0hwVmMwZDZhR2cwZGpOSlMyMWFVRzUyVG1od1RGRUtZWEpXT0RGUFdUbHdkbVZCUjNKTmQyTlVRV2gyTTNGa1drcHFNbVo0WW1kT1NVdGtRU3N6TUZsdVVWRjFVRTlJWlV4clRubHJiRzFPVmxsbFUwZHVXUXBUUkVNeFN5ODFZM0V3ZG5CM1NUWkdTVk5wWmtOR1JISnVMMWhTY0VzNVluaDZTa05sWVRKQ1duSTJaR2gwVm1aM1pGQlRjVU54WmxOSlJHWkVkVGhGQ2xaUVZ6RkVTMDVGVTJsQ05tTkNUblpIT0ZkQlpra3ZWVFp6Y1VOS2FtazNXRVV4ZEhsUFEycEVSVVZsSzJFNWJIQk5iMVJ0VW1oMlMyTXJhR00yUVhrS1RERXpiVXhPYjNNM2FERm5ZWEY0UW1kMWVtVlJUbUpzY1RVMU0xTkNSVVpJVVdKQ1dVWllSbEppVVZsTksyTlJXVVpMTUZwSFUwVTVRMDF4TWsxRFNBcEJZbkZIWlN0RFVHZ3JhV0Y1UWxoMWFYYzlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5zb250c2ZpMy04b3Z2ZGRycS5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdGN5MmJkNgpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdGN5MmJkNgogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdGp1d3NndHhwdGNfY2xpYWtzdGVzdGN5MmJkNgogIG5hbWU6IGNsaWFrc3Rlc3RjeTJiZDYKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0Y3kyYmQ2CmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdGp1d3NndHhwdGNfY2xpYWtzdGVzdGN5MmJkNgogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklha05EUVhkaFowRjNTVUpCWjBsU1FVbFZTWEJFVXpGelNqUndiRUU0T0d4alMwcDVNbmQzUkZGWlNrdHZXa2xvZG1OT1FWRkZURUpSUVhjS1JGUkZURTFCYTBkQk1WVkZRWGhOUTFreVJYZElhR05PVFdwTmQwNXFTVFZOUkdjeFQwUkZkMWRvWTA1TmFsVjNUbXBKTlUxRWEzZFBSRVYzVjJwQmR3cE5VbU4zUmxGWlJGWlJVVXRGZHpWNlpWaE9NRnBYTURaaVYwWjZaRWRXZVdONlJWWk5RazFIUVRGVlJVRjRUVTFpVjBaNlpFZFdlVmt5ZUhCYVZ6VXdDazFKU1VOSmFrRk9RbWRyY1docmFVYzVkekJDUVZGRlJrRkJUME5CWnpoQlRVbEpRME5uUzBOQlowVkJkMFZ5WTNoVksySnJLelZMZGxaRFpVUnZVR1FLVVdsT1Z6SkpOVTR4VjJoUVNsTnFheTh6VFZCU1IxWXdlR3BwUTJocVRXWTJRV0UyUjJNdmJqRnBlRFJGVHpsQlNVOTRhbHBqTTJsaWRUZGlhbHAxWXdwcU56UjRTMGhyVVRGdGRYQmlaSFZYVGpReGVEbExPRkY1UlRWaFJWRk1aVkJ0S3pGaE9HeE9VVkl6Y1N0UUswSkdaR2szU1VWaWJqTnZWelF4V1ZSaENrRlBhV1FyZW5ScFRuSjZOSFEwY2pKV1FrTTBWbVpGZDBac04xSTJkMlZxUjBSSWExQXZOQzlOU2xSSU4xVjNXSFp5YkVWdFJ5OHhlREU0VmtKWmRFRUtTR2R4VURGbVUybHdXVWgxWkVGTmRXNTRTakk1WWxBd2FWaHhZV1ZXVjJFclpIVnNSMHh6VjFweWRsQklOVEoyVkdSTFJGQlVlbk5pYjA5TmVXNVRhZ3BwT1RFeWFFNUhhRmhvYjNSVldTOVNWak0xZUhoeU5sQkpaRlJDTm1aRVFYZEVSMkptWkhwQ2JHczFRMjVFZFRnNWNrODBNbXB0UkZWWE9VMUdTRTA0Q2swMVFUYzVhR05WZFZWS1NGbGxZbkJQYzI5VldtMW9ZVWw1ZWs5aVpVdHBNM0ZuTmpCVVZWUkNNVUkzZDNsdUszWkRaM2xIV2xkMFoyTm1lWEJZWTBFS1NsaG1iSGMwWWtOdk1VWkNPR0owUkV0NVRYWlNXVkl2YWtkV0x6SlVRVkZ2ZFV0V04wOXpaVEJDVFZOR1NIcGtjVVJWVkVKUlUzTjJURTB6UVV0Q1RncDNSMXBZYWt4dFpqWnZWRkl2UjJ4alFrVm9TRWt3YUZKM1dVMDRjRXh0WlM5NU5XUnNUWEJxZW5SVU4waGFURTFZVGtsblVXZzFUV0p5YlhsQ1lYSm1DbEZIU0RNeFNrWTNTbkpyTjBsUlIzTkRNblJ3Y0RkdVVESmhPRFkxTWxac05VVTFhR1pOVDI5VFZVNDRNblJSUVRoVVpqVlBRWHBvVWxvemEyZFhXQzhLYUVKS1RsWmFaWGR1Wkd0VFNIY3ZRalF2VURSS1ZYSlVibGhFZDFoQ1UzVTViMlJGYzJ4NFZpOVdNRkJ4UjJKR1NVUktRVlYxYldSU2QwdDJlSGcxY2dwWmFWZFJlU3R2WlN0SFVVTTVZMjl3TUZwUmFsazVhME5CZDBWQlFXRk9WMDFHVVhkRVoxbEVWbEl3VUVGUlNDOUNRVkZFUVdkWFowMUNUVWRCTVZWa0NrcFJVVTFOUVc5SFEwTnpSMEZSVlVaQ2QwMURUVUYzUjBFeFZXUkZkMFZDTDNkUlEwMUJRWGRJZDFsRVZsSXdha0pDWjNkR2IwRlZZM29yV2twcGIyOEtPSE12UTNWbGRrRm5hMlpDTlRkMlFVMWphM2RFVVZsS1MyOWFTV2gyWTA1QlVVVk1RbEZCUkdkblNVSkJTVWhvWjBwclZUWTVZbEZJVlhZMmEybFViZ3BWZW0xaVRUUlhhWEl5SzNsQmVqZGhVa1JvY1hrMmVXZHJTMVJwWW5Sa1RXWlFjV1JYTUdkRU9FMUpRbGxsUm5kWWEyUkthWGRCWm5KQ1VVWjZUbVIwQ21aSGJqUTBjbmxSVldVcldGcFZaMGhxVlhCSE4wRkRlR2hRTkRobGJIRnBUakYyTTA5aVdHY3ZVVzFPU2k5d1NuQjNUM2MySzBGUGRHcG1hM1ZqWms4S2IwaGphbkZsVFRFNVIweHRXVTFSY0dsMlFsZ3pRV3B5U2pCME1tUnhkRmMxY3pOVGVFMUxRbmxpUVRFNEx6WmxiM2hsVUc5WFJIQkZTMDQxV2t4RU1RcFhLMnMxUjJST1EyRkRTbFpRTkZOeFJqTlhVVWhHU201dVRHOVNhVzlDT1hOR2NVeHFhbWx3ZWxWSk1VZE5XU3RrYW5keGNEQnBPVTVPWW1oMUswRXZDbmx4ZDJadWJsbGtWallyTDBveU5HcGFUVEo0V0hCSmQwbE1SR2gyZEZGVlFqWXdUbkJ3V1ZabU5HeElWV2N2Umpob1ZrMHpTbTVoYUVoV1lrRnJSMkVLYjFNd1ZEY3ZhalphVEROS1FtSXZOV1UxWTA5UFZXeHZhM2d4WnpWdFozQkRSbTB2YUROM1dFMTFNVXR2VG1GcGRUazNRMFF3VEZsd01EbENXV3hJY3dwSFdYTTRkR1F5TWxSd09HNTViV1JCYzJ4UWFXdHBkRUZrTDJndmVISTNiMWRTZVRobWNqQldZMUE0WkhSRGFrVnRRMmR4UzA5R2VYVnVPR0ZFVFd0ckNrZG9UVTVNY0RGMGJsTm5PSE5NV2swMGFIVTNUSEpQYVc1RVlVb3ZWRTlDYjNGYWVYRXphM2xWV21GVFNIQnJaM0ZMYkdzNVZHWkhTbGhhU1daQ1dWUUtkazEzYnl0MFVqaGFRMVJSYVhrNVNUZGxOamh5VXl0WGJGUlJPVFZPYVVWS1pUUkdOVGczZUVOUlRrd3JkakIySzBObU4xUnlWa3hLT1ZCRFdWaFlTZ3ByZDNobE5EUm9hRmRRZVdRclpIUnVaU3N6ZUVaRFZucG9LM2xVWVcxM1JESjNaRVpyWW01RFFtWlRVRzU0YUZjMlNHeEZkRXA2ZVdWSU9HMVVUemhDQ2poR2RtczFhQ3RKZEhoU1lUVTRaWFlyYkhaMFltZFdNd290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MxRkpRa0ZCUzBOQlowVkJkMFZ5WTNoVksySnJLelZMZGxaRFpVUnZVR1JSYVU1WE1razFUakZYYUZCS1UycHJMek5OVUZKSFZqQjRhbWxEQ21ocVRXWTJRV0UyUjJNdmJqRnBlRFJGVHpsQlNVOTRhbHBqTTJsaWRUZGlhbHAxWTJvM05IaExTR3RSTVcxMWNHSmtkVmRPTkRGNE9VczRVWGxGTldFS1JWRk1aVkJ0S3pGaE9HeE9VVkl6Y1N0UUswSkdaR2szU1VWaWJqTnZWelF4V1ZSaFFVOXBaQ3Q2ZEdsT2NubzBkRFJ5TWxaQ1F6Uldaa1YzUm13M1VnbzJkMlZxUjBSSWExQXZOQzlOU2xSSU4xVjNXSFp5YkVWdFJ5OHhlREU0VmtKWmRFRklaM0ZRTVdaVGFYQlpTSFZrUVUxMWJuaEtNamxpVURCcFdIRmhDbVZXVjJFclpIVnNSMHh6VjFweWRsQklOVEoyVkdSTFJGQlVlbk5pYjA5TmVXNVRhbWs1TVRKb1RrZG9XR2h2ZEZWWkwxSldNelY0ZUhJMlVFbGtWRUlLTm1aRVFYZEVSMkptWkhwQ2JHczFRMjVFZFRnNWNrODBNbXB0UkZWWE9VMUdTRTA0VFRWQk56bG9ZMVYxVlVwSVdXVmljRTl6YjFWYWJXaGhTWGw2VHdwaVpVdHBNM0ZuTmpCVVZWUkNNVUkzZDNsdUszWkRaM2xIV2xkMFoyTm1lWEJZWTBGS1dHWnNkelJpUTI4eFJrSTRZblJFUzNsTmRsSlpVaTlxUjFZdkNqSlVRVkZ2ZFV0V04wOXpaVEJDVFZOR1NIcGtjVVJWVkVKUlUzTjJURTB6UVV0Q1RuZEhXbGhxVEcxbU5tOVVVaTlIYkdOQ1JXaElTVEJvVW5kWlRUZ0tjRXh0WlM5NU5XUnNUWEJxZW5SVU4waGFURTFZVGtsblVXZzFUV0p5YlhsQ1lYSm1VVWRJTXpGS1JqZEtjbXMzU1ZGSGMwTXlkSEJ3TjI1UU1tRTROZ28xTWxac05VVTFhR1pOVDI5VFZVNDRNblJSUVRoVVpqVlBRWHBvVWxvemEyZFhXQzlvUWtwT1ZscGxkMjVrYTFOSWR5OUNOQzlRTkVwVmNsUnVXRVIzQ2xoQ1UzVTViMlJGYzJ4NFZpOVdNRkJ4UjJKR1NVUktRVlYxYldSU2QwdDJlSGcxY2xscFYxRjVLMjlsSzBkUlF6bGpiM0F3V2xGcVdUbHJRMEYzUlVFS1FWRkxRMEZuUWk4eFZWUlFTbmN3VjFkMVVEQXhlRTA0VFhjeE1GZHRibmh5VTJsNFNuQmlNamRUYWxCaFdEVk5lV1ZZU0c5UGJXdHlXR2RaYkN0Q1FRcExTMkpJUTNWclJ6SlJZVmt6U1RFemMwWmtTSGxEVEU1RlVsbFVkVk41VlRZeVlqSktUSGxPS3psNmVFMVhZMEZqZVVkR1EwSkdORWhoUVVKblpVaHdDblJtYkZaM1RETnJjVzVpTWxCM05tNWtiblpQZDNKalRuVjZVSGxTY2trdmQydHhXV1ZUWjJaWVNrcEdZMHBuWWtOcGQyUnpkM1EyV1Rac1dTOUdTSGNLSzA5VGNFNTZPWGd3V2xFemFIQk1SR2hEY1hkVU9WWTFlV2RxYkRjM0sxQlVVVXRVV2t3eFVrRnZlVXd3TkhGb04xQkJNRTVRTVdOcVJIaHhkbXR2VkFwR2MzcGtibmd3YVhRMFJrUkRlQ3RWU214NFNGYzRlazVEY0RGMU4yUjBUV3ROTDJ3M2VVVlNhRGR3ZW00cmRXcGFRM1JxU1dveVNHVkVWM0pxTURjdkNtSlVTMFUyWVVncmJYWm5WVk5aV1hGRVVFaDJkMVF5YVcxeWFqVndkamxRWkd4WlJISm9VbXRzVTNNM1NtWkVZbXRvV0VWRE1YazBaV1JXVEhKWVZXTUtLM05CY1RoS1pVMWtOVzlXVEd0dmQyUkZTVVpGWVdONFF6SkhiemhuUVVGcFJ6QlhXV1pxVUZOVk5UVllUMHh5WW5GRmVYQTFUM2g1YXpCT1RYUXlad28wWTFCSE5tcExSQ3RYZHk5eWNuaDNiazgyVEd0Qk4wUldXVk0xTTJ0alMzZFhlbEI1U2xkb2QyeG9aVTQyTUcxVFducFBSblY2WkRoSGFEWjRjMlFyQ2pKdlVFbERSRFJJTUdWWVZXSlBOVWhJV1ZGSWFsbGtlRTFNTUdSbVZtWmlZVGxvY21OdllUQTVPVzlyU0VwTmRsbzFVVzVQVm5GbVQyZE9UVWcyTUVRS1NERkdVMUF2T0RkV2NtTlFaRVU0UVcwNE9YbG9RalpzUVdsMFRTOVVNV1ZSSzBWT1drNDVaWFZUV1d4WVMyeHpVSGRGU21kS1VYQjVVMjF2VTFoMlFRcGhRMDlxV1VOUWNIaExiV1ZaVnl0U1FXbzNiR2MzU25CVWIwMVlhRGxXTkRCcVQwNXdkR1V6UzBaMmRWVlNWbGxCVVV0RFFWRkZRVFowT0d0Nk1HTkNDakIzT1RZekszSXdNQzlSYVUxcVRtMURSRVZ5VFVsSFVVWjJVVkZ3THpoSmFXSnllVmgyYkZnMFIwOXBUME12TldsaFMycGhPWFlyYmsxNmVVbEVRVzhLV2taUlpVVkplRXhtVTJaR2RIcHFORkJNTTNCUVRFcHhibUpNVERKQlMyUXlTVzFrVW5ka2RWZFhSRU0yYUdWaVlVdzFkSFZrUWk5elp6SXlZbGRSYndwNldVcDFhWFFyUkRaMlREaFRaa1JwVDJocU4wVXlibVo0Ylhvd01EZFNNRmhZUjFsbmEydzJTbGxXUzNoNFNHeHBSRFkzY2tsTk1WSlhRVWQ2VVRaeUNsZGtaa1EwWWpNd1dEUlZObmMxTW1reE5GRlBSRk40V1VsNU0zTjZSVFpPYVZwaGExSjNjakl6WkUwelozSklXa0l2Vm04NFdFMTJSeTlEY1dNeFIyZ0tkR0pHVm01TWJtVnRPV3BvVFZseVdVbGFXSEZSZGtKR2IxaEpjMkYzVmlzeU0yNUVkRTlZWkRNMFVWUXhRbkJ3YTJweEwwcDNZV3RwZW0xRU5UVkhRUXBaY0V0dlpHTldPV2RKZFRoVFVVdERRVkZGUVRCYVkzQm9jMHhCYURVeFZEZDFNVUpSVUhkUU4wTmxUV2d2ZFVsemNIb3ZUa0p4V2t0UWFGTlhZVFozQ2t4T2JtZ3hXREFyTTNwalVHMW9aVlpqVkd3emNqZFJNVk5pYkZGdUt5dDZTVU5oYWl0b2JVRlJNR2g2YkVNeVpsUkhaakJCTDFFemRrVTNVbTFDTWxZS1NWYzROa3N6Um10a1ZHVktVakEzVUhrNVdVSmhhM1JLZVc5emR5OTZUVm8xZVhWT1ZuQmFRbW94VW5GNE9EVkZLMlVyYzNSd00wUTVXWEZWVG5kSlRBcHRWa001U2xnelRWUndkV1pZZHpKVGVtMTNhRlpQUVRoeWNHTklRVEZZTkZGYVpXVTRNeTk1ZUdwd2JXaGlhMjFKU0ZkMVRIcEROWFYwSzFwc01rMTJDbGgxUmtOT1RERjFRVXRTTjA5NGQxUkdNMm8wVkhaVVVGQklSbEJhYkZoRlNXMDNTbU5PY21ScmRsSk1NVm8xZWtweVlWazFPVE4yVkhwWWNVbFZWemdLVGl0eFJqSnlSVXhZV2pkV05YbGFlaXMyVlhremFubFVNVmx4VDBsaU9UVlBPVmxNZWtJM1RFVlJTME5CVVVWQk16VjVRbFpEU2pka2VrWnRkaXRpV0FwSWVrSjNiV3BFWWs1SVRucGthVkF3VW1oWmNVRllaa3MzYVRSb1kxSkRaR1pLU0M5TlRsWnJSVFJxV0ZrcmJ6UmtOWEZpTjNNNVMzUllTbk5wVkRZMENqVkVhRWxuWnpsdlREVlNlbWxaYTI0dmJXNXhjbmRoVjNRd1JWWnFlbXhuT0hoRmRtOVhXRWRZVTNadlJsb3JUelEzYzNkamRXVklMMVpxZGpJMlJ5OEtNalpHY0ZaNFFsTnZhRTlGWmpGQmRXSTJSSFZYZEhsVllWSTJjMjR5V2t4T05IVXllazQyWVVaSFVEbHJPVzQzYW5Ob1JUQldabXhDV1RGd0wyWk5NZ3A0VUZvMFNYbE9hV3hUVFhoeFdrMU9aWEpxVUcxU1p6QnZjMnBqVFVwTlkzYzRZa1JOT1dkV1JrRkhkVE41YmxaelVtdHdabk00TmxWV2VUZGpTa28xQ21kU1JUQklWa2hsVVdWUFZDOUNWRGRvYVVSSllub3ZNVXhuYlRSeVVFdHZhMXBSVTNWTU5VbDNjVXhTZFU1eldFd3dTV0k1WnpGUFIxRnpaQzlpY0M4S2NWUklaMjFSUzBOQlVVRmxiVWxIUVZsaFpUTmFSbXRtVms1VmEzaHRZMUZ2TUd4YWFFaGxWa1V5VVZJeVFuZHdjR1UxYm14NEszbDJSeTlEVDFwR1dBcENiazl3YlNzeU9UVktVemRQYjFKWk5tTjFRMUJZZVZwdlpYQnZSbEppY2s4MFZtSjVWR3R4TjNwWWJ6Wmtja1pETkVJdlVYcHdSVGhxWVRod2MxaDVDbU53VVVGeE9XMWlkVkJpYkRkSE1uVlBjRzFDWkRWVk9XTk9ZMjFJTjAxalYwVmtjVTlaZEV0TVVtMDJXWFJrTjFoaGNEZFRWRzl0VUVkdlVVMW5aMFVLU21GWGFrODFhMFowZWxVMlltRXlUMFYzTHpoQ1lUTkROMWcxVUhJMGNtbE5lRFZMVVZKbU1uWjRZMXBZYmxOUFpXaDFlWGhPUkdsbFpVZDJWREJRYVFwd2FVRjZTbU56U0hKNWIxbGFTbHB2UkZkYU5ESjFXbEl6U0doa2JVTlhiVlZVUmswd2RDdGxaRU5PYjBoaVlsVnBiSFJQVm1nMkszcDFZVkpaVTNveUNtdHllRXBFVVhvM1dFVmtUSFFyTkdkNWVWRnhaWGRuV1cxM2RVZ3hZWEo0UVc5SlFrRlJRMUJXWWtsUk9WWnZSaXRXTW5RME5rZEpjRlYzWW1SSFdrUUtaVTFRZW1Ga2VtMWxSMGxPY0dwSGJVSlJiVkl5T1VodFowaDBOMFJHTDFWSFZHVk1RMlkxYm0xWFR6QTBObnAyWkVaWVVFSnhiVTlpTkVjMlQySmtWZ3BsYzAxV2RYcGpWekJYWTJGNVZWRjFSa3Q0U1RkTWJFRjViVXBKU0dka1RWa3ZjVGtyY1ZSVmRubHZXakpuS3pNeWMxWlNVV1psWVVaaEt6Uk1OV2h2Q2psRGRYTXJkeXQzYm1NNVNrRjRVMFJCU3k4NWEybzVhaklyYjJ0dGNETlFlRlJoT0hFNFJ6ZzBPR3hDYlUxNE9FeHZUa05uZEVOamJGVjFkMlp5UW13S05rNDNSMDV1Y3l0eVZtSlNVV2NyVTFvM1dHOWtNbmt4VEVGV01XUjFVRkp5VUc5YVNqWjRMemxWUjNOTE1rTTNXbkJqYmpoWVFVTmtRVUpXTDIxT1JncEpSV2sxVlVoM0sxcDFSR3hTUVhwSU1qQm9WRzFxT1VkV01VTktkVmxGT1hWWGEyRnlSRGRPWTFwcU5rcEZUVmhqZEZOelVFeGhhamxHY1NzS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiB3cHA4MGZxeGwwajJkcHg5Z2hkMjYzeWh6MjJndXRrYTRzdDN0NzFyNXNzcnVhamlsNWN5eGJlMms1amlhZmU1YXY4OHMzc28yd21ra2wza295MGRmZHVndmFybXZxcW56MjBuamYwaTEzcGUzdzl3eTVndHNhempqbmc3cHc3dgo=\"\n + \ }\n ]\n }" headers: cache-control: - no-cache @@ -1219,7 +1379,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:50:06 GMT + - Thu, 29 Jun 2023 09:13:28 GMT expires: - '-1' pragma: @@ -1255,8 +1415,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/cliakstest000001?api-version=2023-05-01 response: @@ -1264,17 +1424,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dbd17335-e72c-4274-8678-818ccd0d80d7?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 14 Jun 2023 19:50:07 GMT + - Thu, 29 Jun 2023 09:13:30 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/dbd17335-e72c-4274-8678-818ccd0d80d7?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 index edf73226ba4..61312db2aaa 100644 --- 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 19:50:12 GMT + - Thu, 29 Jun 2023 09:13:32 GMT expires: - '-1' pragma: @@ -54,11 +54,12 @@ interactions: "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": - "basic"}, "disableLocalAccounts": false, "storageProfile": {}}}' + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "basic"}, "disableLocalAccounts": false, "storageProfile": + {}}}' headers: Accept: - application/json @@ -69,68 +70,65 @@ interactions: Connection: - keep-alive Content-Length: - - '1721' + - '1392' 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-jubydmlo.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-jubydmlo.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"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 AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/b4d59cdd-15a2-44b2-a29a-bc3895c6a7cd?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f03c03d1-441c-4325-8007-a1dd507ad262?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3368' + - '3039' content-type: - application/json date: - - Wed, 14 Jun 2023 19:50:18 GMT + - Thu, 29 Jun 2023 09:13:38 GMT expires: - '-1' pragma: @@ -160,59 +158,56 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-jubydmlo.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-jubydmlo.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"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 AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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: - - '3368' + - '3039' content-type: - application/json date: - - Wed, 14 Jun 2023 19:50:18 GMT + - Thu, 29 Jun 2023 09:13:39 GMT expires: - '-1' pragma: @@ -244,59 +239,56 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-jubydmlo.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-jubydmlo.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"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 AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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: - - '3368' + - '3039' content-type: - application/json date: - - Wed, 14 Jun 2023 19:50:50 GMT + - Thu, 29 Jun 2023 09:14:09 GMT expires: - '-1' pragma: @@ -328,59 +320,56 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-jubydmlo.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-jubydmlo.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"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 AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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: - - '3368' + - '3039' content-type: - application/json date: - - Wed, 14 Jun 2023 19:51:20 GMT + - Thu, 29 Jun 2023 09:14:40 GMT expires: - '-1' pragma: @@ -412,62 +401,59 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-jubydmlo.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-jubydmlo.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"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 AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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: - - '3757' + - '3428' content-type: - application/json date: - - Wed, 14 Jun 2023 19:51:50 GMT + - Thu, 29 Jun 2023 09:15:10 GMT expires: - '-1' pragma: @@ -499,62 +485,59 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-jubydmlo.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-jubydmlo.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"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 AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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: - - '3757' + - '3428' content-type: - application/json date: - - Wed, 14 Jun 2023 19:52:20 GMT + - Thu, 29 Jun 2023 09:15:41 GMT expires: - '-1' pragma: @@ -586,62 +569,59 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-jubydmlo.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-jubydmlo.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"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 AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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: - - '3757' + - '3428' content-type: - application/json date: - - Wed, 14 Jun 2023 19:52:50 GMT + - Thu, 29 Jun 2023 09:16:11 GMT expires: - '-1' pragma: @@ -673,62 +653,59 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-jubydmlo.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-jubydmlo.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"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 AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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: - - '3757' + - '3428' content-type: - application/json date: - - Wed, 14 Jun 2023 19:53:21 GMT + - Thu, 29 Jun 2023 09:16:40 GMT expires: - '-1' pragma: @@ -760,62 +737,59 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-jubydmlo.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-jubydmlo.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"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 AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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: - - '3757' + - '3428' content-type: - application/json date: - - Wed, 14 Jun 2023 19:53:51 GMT + - Thu, 29 Jun 2023 09:17:11 GMT expires: - '-1' pragma: @@ -847,62 +821,59 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-jubydmlo.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-jubydmlo.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"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 AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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: - - '3757' + - '3428' content-type: - application/json date: - - Wed, 14 Jun 2023 19:54:21 GMT + - Thu, 29 Jun 2023 09:17:41 GMT expires: - '-1' pragma: @@ -934,62 +905,395 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-jubydmlo.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-jubydmlo.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"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 AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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: - - '3759' + - '3428' content-type: - application/json date: - - Wed, 14 Jun 2023 19:54:51 GMT + - Thu, 29 Jun 2023 09:18: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 wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-jubydmlo.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-jubydmlo.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"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 AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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: + - '3428' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:18: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: + - 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-jubydmlo.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-jubydmlo.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"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 AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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: + - '3428' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:19: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 wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-jubydmlo.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-jubydmlo.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"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 AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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: + - '3428' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:19: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 wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-jubydmlo.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-jubydmlo.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"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 AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:20:13 GMT expires: - '-1' pragma: @@ -1021,67 +1325,61 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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-jubydmlo.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-jubydmlo.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"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 AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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: - - '4004' + - '3675' content-type: - application/json date: - - Wed, 14 Jun 2023 19:54:52 GMT + - Thu, 29 Jun 2023 09:20:13 GMT expires: - '-1' pragma: @@ -1113,67 +1411,61 @@ interactions: ParameterSetName: - -g -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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-jubydmlo.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-jubydmlo.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"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 AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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: - - '4004' + - '3675' content-type: - application/json date: - - Wed, 14 Jun 2023 19:54:52 GMT + - Thu, 29 Jun 2023 09:20:14 GMT expires: - '-1' pragma: @@ -1205,62 +1497,59 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-jubydmlo.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-jubydmlo.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"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 AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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: - - '3759' + - '3430' content-type: - application/json date: - - Wed, 14 Jun 2023 19:54:53 GMT + - Thu, 29 Jun 2023 09:20:14 GMT expires: - '-1' pragma: @@ -1294,24 +1583,24 @@ interactions: ParameterSetName: - -g -n --file User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ - \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSVFVzMGRETkZjMGxYY2xSb1EyUnpOMUkzVDJkUWVrRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxVVVYaFBWRkY0VFZSV1lVZEJPSGxOUkZWNlRVUlplRTVFUlRWT1ZFVjRUbFp2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVNeENrODNhbkJDWkZwWVRXRXlSV1pSTmxCTVl6aFFkR1JTVUUxR2RVZFpOMWxKVjNoNVIxaE5XVlk1UzBOWVVqUmFOVmR5UzJWUU1FMVVXVUYyZEM5dGExWUtjR3B2WVZoVlIwNUtLemx5T0hZd1VUaEpSM2gyUzJSbFlpOW1jMDFTVUdadGVVOXJhVGszT0hSUmNsZElWVWRJUW14bllrWmtUemhzYVV0NVZuRkhSUXBoTlhOaE0xTlNjVFY0UldkVGQyVnRjbk4xUlU1T1JEQjZha040VUVodEswVm1Va0Z2YmxGMWVFdDJlRlJ6TVVWRlIxSmFibmd6UlVwTlkzTmtWMmhqQ25CME9YVlZZek51VUZCcVZqUmpVRTlUTmxac2RXUTNSazlUYkdWMVVVSkdSRWxLVmt4M2VsSlNiM2hqWlZsc2JFUlpWM1JyS3pWbGVIQk1WSHBQTHpFS2JGbFlZazVHYkdkVUwzcE5OelZUUTBObk4yOUJNME5rVkdocFprRlBSVFpwUWtkYWEyWmlVRTk0Vkd4U1ZURlhNbTFYYXpkU1JYVXphVE5xVVZCb1ZBbzNWa2hXVG5wR2FtTXhaMVpKVlhob2VWUjZUMmhNUlVwTlIzaDFXVkUwSzIxRVUxSnhTU3RaVFhSRk0xUk5aSGR6TDBwc1ZIb3JhekJJYUcxRU4xTkxDa2xCUTBRMVdFbHRRMmRNYzNkSUwySnFiR2g0Y0VGdlkycDBWbkpTUm5CcFIyOUZSMnM0UXpCcGNFdGhTWFYyU3paQ05WUnpWV1p2Y1U4M01FbE9aVThLZEdkbldrMTRTMGxRWjFOa2NtazBVVGh2TjFCellXNVNiWHB6ZUVORU4wRTNNa3hpWWswclkxSnNUVGwwT0ZKeFpFSm1SR0ZQY0hOR1VVdHdTMVJ1T1FwREwwOVlRWHBFVFVKaVNtTXpOakUwYnpsRWMxSlVSVmhQWlN0cVVFdGtTRGx6VFVRd1QxSnBNbTFxUVZsd05FWjRRMUJGYVVkcVJDOXJUbXhWV2s5dkNuWnBOVVJ6YW01bVpEWlRSSEI2VVN0NGN6VXZWRlIzVWxJMmFHSjBNMWx3VXpkSFRuSndMMll4V1hnemVITlFSMlZpY0ZRd1JYbDFWbTFrYjNJNWNIWUtORlowYWtKREsyeENRVTlxUzI1SlkzWXJPRVpUVm10WlJVbGpTVU5EUjBWMGNHTkJVMUF4VEROM1NVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWbVRXeDRRV0ZVV1hGWlprVm9RU3QwQ214b01XUnVlVTAxVFRWUmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGSWFHdDBXa2RQUm1SR1lrNTJiM2hWVjB0a04zZGhhR0YxY25FS1JscHRVbXB0YzBNM1FuQXpUVU55TkVkcGIwUm9jMmxpWjBwdVJrSk1OamhXTjBRNFdsbGpTbVF6TnpGVWFGSlZXSEJuUTJKUk1ETkZjRVJHV0drcmFncFJXR3d2U0hGUFFrZENRMG93WTNZemFubGljMnhzYzBOalNIbHdOVnBQTjJSdVRsTkRkSEV6T0UxR01sSkpkMFppZUVOME1tTmpVa2hZWWtwd01TdE1DbW93ZG5aM2RVcFpiekpQWnpoWGJGTmxSV3hzU3pWQmFrcHRjbGxOY0ZoT1dWbHhjRzFvVkZab1QwOVRXRU5CZGxOU1lWWkVWVEZNYjNObk9GRjRWM0VLVm5OeFNtUndhVXd2VHpGVlpXUlNPSEl6UjJ4M0wzTXdVVzFvZDFBd1FVbzVkRGg0YlhWTVIydHVZbFI0U0N0NVRsTkhOUzgwY2pRMVpGaGxaMnRCY3dwWFNHSlJUR1ZRU2s1UlEybzFPSFY0ZVVGSmQwMXljbEJwT1c5YVVYVlpTbVEwU1VWelZrOUlNMGhHYjJaeWRIUlhVM0J0TVZGdVNEWnVTRWRXZUhCbUNqbDJjRVJXWVVObGVXWkthRmQyZG5WWWNrbDJkMWgxYkdoWFlqQm9ZV1o0WlROak1sQXZkalZVZUc1aVpFUm5UVm81ZHlzNFoyaERiR0U1VFZoMVdEVUtja0pqYlV0dlNETjJXVGRFZW5Wb2VFWjVhakpoWkd4NU1FNVZRemd5WmxSeFRrVkxZa2M1VVdsVWNWSlpkamN6VjNKa2NXWkhZMjlzTVVkTVNVWm9SQXB3WjNkd1NFRm5Ra2t5TXpWaU5HWTFOSHBhY25vM2MwVk5WMUUzUjFFcmVsVlBORmRYTnpoVE1ITjNia1p2ZGxvclZtazJNR0pSUlZKalZrTkNjelZQQ20wNFVXSlFiRWxaY0VaWVRWcFRNRGREUkdaSVJFNW9WV05zTVhreUsycHFXVWR4TDNCc2FHVkdablk0VUZwSEwyOVpkMW9yY1ZwRGRIaGFOalpHUzBjS2NrMVNhWGg2Tm1aMGJYYzRTSEptY1VSbVlqbERUWGhaZFdZNGEzRTNUVkZ3UTB3M1IwbHlaRzlPUmpsclduaG9NRkpvVEZWRFprdzFZazFRTHpWQ1VncEZZVkJJUWpCeGVuZDJRbmczVDNOdENpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc2J0Z202eGotMHZodThuc2kuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3RkemRldXUKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3RkemRldXUKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3RmdWtvenh1NWVoX2NsaWFrc3Rlc3RkemRldXUKICBuYW1lOiBjbGlha3N0ZXN0ZHpkZXV1CmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdGR6ZGV1dQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3RmdWtvenh1NWVoX2NsaWFrc3Rlc3RkemRldXUKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJVkVORFFYZFhaMEYzU1VKQlowbFJXblZ2YUZFM1lUTjZTR2xxYldkTlVGRkhlWFl3VkVGT1FtZHJjV2hyYVVjNWR6QkNRVkZ6UmtGRVFVNEtUVkZ6ZDBOUldVUldVVkZFUlhkS2FsbFVRV1ZHZHpCNVRYcEJNazFVVVhoUFZGRjRUVlJXWVVaM01IbE9WRUV5VFZSUmVFOVVWWGhOVkZaaFRVUkJlQXBHZWtGV1FtZE9Wa0pCYjFSRWJrNDFZek5TYkdKVWNIUlpXRTR3V2xoS2VrMVNWWGRGZDFsRVZsRlJSRVYzZUhSWldFNHdXbGhLYW1KSGJHeGlibEYzQ21kblNXbE5RVEJIUTFOeFIxTkpZak5FVVVWQ1FWRlZRVUUwU1VORWQwRjNaMmRKUzBGdlNVTkJVVU4xV2pSNmMweElRbU5KUmtGdlRGVjVUbTFyV1drS2MwTTRTVGc0UTJKNVVXeEJkbTgzYW0xbmVVUm1iR3gxWVdwdFZrMU5OMGc1ZFZOS2IzVjVlRXhvUW1nM1ZUSlBOR2hVUWs1VVVUSllZMUpzYlRnME5ncHhRazl5TTFOdmQzUlpVa1pwU3pkcFIxaDZSRVpZVm1sbVVuaE5UM1pxTW5CSlp6TXlkVEV4TkV4aGFrSXliMUJNVDI5d1pVWjZielpEYTA5V1ZWRmhDa1JVTmpSclpuTlhiWFJVVGs1V01VcHBWa3hqUzNsSlVIcEJPVEpPWm5ScFZsTkVhbHB0Y1dNMGNVTk1VVkJoVTFoRE1XTjZNRTU1ZFROdldrbEhiM2dLV1ZGbFF6aEZRMVJKYjJJcmRVMTRVMW8zVEVWdE1sUk1ObFY2VkU0MGQzTTJZWHBOTlM4d1R6ZEZVV3BxU21Sck5reENaSEJNTTJGbFluSjVTVGRwY1FwRVpqRmlkVTVpZWlzd2JWcDZWbGxVUW1oVFNVbEtTMWRwZVhaa2VYUldUa1JKVFZCd1FYSnlMM0I0ZVZSUE5tNTVVbTB5YW5aelZYbDFVR05TTkdGc0NtVXpTSFpGU21oV1oyeFBaV05zU0d4a1FtWTJObFZ4TWxoT2FsbHlMMHBSUVVaNllUTk9lSGMzV1hOVFpFWmFSR0psWWtKNVZDOXFRMWQxY25aMmRFb0tiMlpZTkZCUVoyTnBkREZwVG1sSlMxbzVWUzgzT0ZWcVJXOUNkamhNSzFGbVZIRnpWekl6ZDNCcFNqUnNUblU1T0RoRWFrRkRTMjV5ZFV4QlREbGhXZ3BQTVhwM1JGZEtORU42VjNwVFZqZHdLMVZtY0dveFJsbHZNblZKUjJjeloyZHBNMHBpVEdGVFYwWndjMFk0TUZZclFTc3ZaVFoxY0dWSVRVd3JNaTlyQ25WbFlqaHJVM0J6Y1hobWQzSnlXRXRTZEZnclZWWnZObWN2ZFdRNFNWWklRVFpNTURaTUswbDJTMGxETkVkMU5FVkZkeTkyTDFsNWFHWlVkakU0U1dZS1VHSlJjVmRKVFZSVmRHb3pOUzluZWpkSk5YaE9ka1paUzBka1Rtc3pOM05hY2t0dVJXUkdWMFZWVFRsa1NDOTJTR1kyU25ad05UWnRUa1ZvYkd0d1dncFVURUkyT0cxMU5FTlRlVEZFTURWbE9HWlpTVUozU1VSQlVVRkNiekZaZDFaRVFVOUNaMDVXU0ZFNFFrRm1PRVZDUVUxRFFtRkJkMFYzV1VSV1VqQnNDa0pCZDNkRFoxbEpTM2RaUWtKUlZVaEJkMGwzUkVGWlJGWlNNRlJCVVVndlFrRkpkMEZFUVdaQ1owNVdTRk5OUlVkRVFWZG5RbEk0ZVZoRlFuQk9hWEFLYURoVFJVUTJNbGRJVmpKbVNYcHJlbXhFUVU1Q1oydHhhR3RwUnpsM01FSkJVWE5HUVVGUFEwRm5SVUZGWWtKUmRVVlRkazlRY0RGMFlqVk5aa0pFWWdwcFZuTXlWMGRoT1VkWVUycExUa05CVTBoRGRtWkpaSGQwU210dlpUYzJOblZvUVRKSFMxYzBSMjlRTmtWbWJIVnFSbTh4Wml0aVVXMXZjbUp5VEZCMENqaGpWRmR0TkZWa1F6bFZjbUUxZEc4dk4zWnNXV3BuVHpWdVdISk1NMFk0V1ZFMFVXWjNaSEpFYkZaclFVRndPVWRSTTAxcmEzbGlXVVEzV1RKWE0zSUtRMjR4WVV0a09WSnVVR3AxUTFGVWRsWmpORlZyUlZWcmFrRlBja2xSTmtWQmFuVXdNbUprVVZKcE5GUXdSbmhIUlhkak9FMVFTV0ZFTjFOV2JpOTZWQXBzUkcxbE1HeHBNVE5JWnpSNmJVVkpXbEIwVHpOTFUyazBTekF4Ym1OWVp6VnVia1ZvTVVWWFlqa3ZlalUwVm5sbVZHMVJaMjlWVEVka1pGRnViV0pNQ21WcE1XWnlPSEpuVm1aRVNtMUhNMnhPT1RGQlJtcFVhUzg1TlU1UFdqVm1ZbGRzUjNRd2JVMUZaMjlLWjJWamNUaDJlVVV5WkU5YVVubGFVbEV6WTBJS2VISnNhM1JpUXpGUVUwTndSVkprTURaUlZGZEdRbEJCTjJOdmRFRjBaakIyV0ZJM2VYSTRObmR6VVdGTmIxbGhRbEU1TjIxV2QyVkhjM1o0VGpFclV3cE9abGhzYTIxQmNHMW9VVmRUTW5KcFNYVnNNMlEyVW1SWVQwMUhOM2d5WjJsalZubFZjVUp4V1VwR2VYQlFZVTFPUkdzNWRVTXlSRkV3T1VGR09YRm9DbkpwTjJsQ1RVbzNkMjByZVRoelJrc3lObXN2WlRaQlptbDJkVXhFUkU4NVRrOUJUbnBzZEZKYWNVeERTVmh1SzJ0R1NFVTJURlpGY0dwaWMyaDJVWFlLTmtvelkxSmxWMkZFYUdGUVlsazVOV2xYYkdadU9YRndjVGczZVZaWGVYWndaVWhOVTJVelpuaHVWVWd3V1hOb2RsSnZVMUpFUVZaT01YbHVWRkJKWmdwUWFuVmhOVGxZYW5aaldGTjVWMmxuTkRsdWJUSnNTWEpSVlhOVVZWUTNXRmxPYldoblVHcGpVemRyZEV3cmMwRkRVRmx5V2k5SGFHdFVMM1JFZVVrM0NtcG1RVlpvUlVrMWRUbHpZMGx5YUhoRWFGcE1ha1kwUFFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMUZKUWtGQlMwTkJaMFZCY20xbFRUZERlSGRZUTBKUlMwTXhUV3BhY0VkSmNrRjJRMUJRUVcwNGEwcFJURFpQTkRWdlRXY3pOVnBpYlc4MUNteFVSRTk0TDJKcmFXRk1jM05UTkZGWlpURk9hblZKVlhkVVZUQk9iRE5GV2xwMlQwOXhaMVJ4T1RCeFRVeFhSVkpaYVhVMGFHdzRkM2hXTVZsdU1HTUtWRVJ5TkRseFUwbE9PWEowWkdWRE1tOTNaSEZFZVhweFMxaG9ZelpQWjNCRWJGWkZSMmN3SzNWS1NEZEdjSEpWZWxSV1pGTlpiRk16UTNOcFJEaDNVQXBrYWxnM1dXeFZaelF5V25GdVQwdG5hVEJFTW10c2QzUllUVGxFWTNKME5rZFRRbkZOVjBWSVozWkNRV3Q1UzBjdmNtcE5WVzFsZVhoS2RHdDVLMnhOQ2pCNlpVMU1UMjF6ZWs5bU9VUjFlRVZKTkhsWVdrOXBkMWhoVXpreWJtMDJPR2xQTkhGbk16bFhOMnBYT0M5MFNtMWpNVmRGZDFsVmFVTkRVMnh2YzNJS00yTnlWbFJSZVVSRU5sRkxOaTgyWTJOcmVuVndPR3RhZEc4M04wWk5jbW96UldWSGNGaDBlRGQ0UTFsV1dVcFVibTVLVWpWWVVWZ3JkV3hMZEd4NldRb3lTeTk1VlVGQ1l6SjBlbU5qVHpKTVJXNVNWMUV5TTIxM1kyc3ZOSGRzY25FM056ZFRZVWd4SzBSNk5FaEpjbVJaYWxscFEyMW1WbEFyTDBaSmVFdEJDbUl2UXk5clNEQTJja1owZERoTFdXbGxTbFJpZG1aUVFUUjNRV2x3TmpkcGQwTXZWMjFVZEdNNFFURnBaVUZ6TVhNd2JHVTJabXhJTmxrNVVsZExUbklLYVVKdlRqUkpTWFI1VjNreWEyeG9ZV0pDWms1R1ptZFFkak4xY25GWWFIcERMM1IyTlV4dWJTOUtSWEZpUzNOWU9FczJNWGxyWWxZdmJFWmhUMjlRTndwdVprTkdVbmRQYVRsUGFTOXBUSGxwUVhWQ2NuVkNRazFRTnk4eVRXOVlNRGM1WmtOSWVqSXdTMnhwUkVVeFRGazVLMlkwVFN0NVQyTlVZbmhYUTJodUNsUmFUaXMzUjJGNWNIaElVbFpvUmtSUVdGSXZOM2d6SzJsaU5tVmxjR3BTU1ZwYVMxZFZlWGRsZGtweWRVRnJjM1JST1U5WWRrZ3lRMEZqUTBGM1JVRUtRVkZMUTBGblJVRnFaRGgxWnk5RGFXUnJOMU0xWkhaNmNXb3dWbFZMUzBKdlNXRnZOa0pHYUhSWmJFOU5NV1prVm1odmVVcGtMMFJrT1d3NFdFczBOZ3AxY25kUFZIaE9jSGRFSzB0R0wwWlNZMDV2VnpONVRHNDBUVUZrZDNoc01qVjRaa05sYkRCMVprZEllalJZYkdGU1JtWjNXbGN6WnpGNVNXZzFTVVo2Q2xSbWVVcHljSEJrT1RoRVVWSm5aMFJrUkdreFZ6aEdMM0JIYXpSUVVHdEtWRXAwZWpWaEswNDNSME00ZDJ4VmVsVnRZa1ZFY0ZkM0wycG9jbWhzU1RVS2NuTkthR1EzTTJwWE1sRTVUVVpLVEd4SVVVZExaemRaUWtKcFlWTm9SR3RUTVN0c1MwRjFkVkpSWlZCTWJtMXpjM05MTVM5RGNVMXNSVlppWjJreVZRcHdRbk5VWjBaQmVVaGlhMEZpZEZoaGIyeExhRWhzYUc0cmVFZFVOWE5JTm13clMwVXJXRkY0UzNsM1pVZE9kVnBYUTAxdVJ6Z3JZVzQxUjJkamEzbzNDbFZJTTJoYVNtZzJTelJFY0c5NFR6QkdkekkwYzJaR1dqWndaRVZ5TkVKQlZETTVlazVJVkRjMloxTjVjMjh2SzNOQmNrcERZbEZ3VDJwaFJVRTFabEVLVm5wM2RqWlRhbWxpVUc5WU0ybFBPWGh5VDFSaFMzTjVNMjB3U0dod1NqUjVWakpGTDBwWFQwcHdhWFY2ZFRWSU4yZFljMVpDYkRGNE1IQndRbGMzT1FwWU4yaHZPR0ZGVG5SdWVsSlVhQ3RSZDBsTk5VWjZhazVHWkVWWmFqaHVNSE5XYUZCaGJFWmpVemRJVjBaNWFXMW1iR1J6VUhWM2VtWmlPSEJJV1V0U0NuZENlWFpFWVUwdlpIaEpObXBaTDNRMmNFaGhkemRtV0c1cGVISkhZbVZhZFdVNE5HOUZkU3RIWVhCMk5GaFFObkZ3WVRoMlJITmhOa0pvTW1VeFpWTUtTblZ5Y2xOQ2JtdDFXbEkxTlM5RU5rSnRjbWxvYTIxR2FFOVZjRVpIV2sxamR6WjRhSFpMUVdGQ1dFbEpUV1l4VFRGU2Vtb3dNelZFZFd4dVNIRk1kd3BSYVVvNFJrZzFTV3hTTm1WRGVFSkNWVkozY1hONldHOUpjR05vY1RKNE0ydFBjVko2U1ZKMGFqWkRTR1ZTYTNGdlFVVkRaMmRGUWtGTlVWb3pNSEZZQ25rMlFuQm9MMjF1VUZsMmFEVnFaMmRYVUZwb01tUTBNbko1YjI0MkwwMVhLMVI2VTBKdmVtZHRZMjE1TWpSUFdsSnZSVXRaTmxVM0x6aEViWEF5Y1hNS2MzTk9aVU5EU1VkdU5GYzFaM0JFYzNkTUswWjFiR0ZsU0dsUFIwVjBlVVpKUnpsQ2NVcFJWakE0TUUxMGQwOXBRbmgzY2xGcVRuTjVWazFzTTIxTlRRbzROSHBZY0VGcGN6bDZTSFk1VGpsa01qRkZMMFZSYUhaQmNIbG1ORVp0ZFdaVlpVUXpXakpoVkRoVE9Ua3pVWGxuVTJFeFpVWkNiak5VZUZkSmREVXhDbEptZEVWdGJ6RTBNRlY0U3pGWllsVjRWWE5aVW5kTFZWbHBkRlppTTJkQ1lscHlSbk52TW5CdVprTTBSVGh6TUM4NFpWQTFWek5aT1VsMmVrVnJjRE1LY2xoUmNXZG9OV2hYU1dKUWFsUlZPRmR0TUVwVWFtUlplV3B0VTBKWWRVTkNiMDV2WVRscmJTOVdWRWhLVG14NFpITkJNRzVwSzAwNVFXVjRjbFZaUVFwMFJuRXlRVFF2YzNWM1Rqa3ZPRVZEWjJkRlFrRlBUM1JJVlhZM1dEQmtiamhRYldGME5VWlFVaTluZDNWSFIyTlNRamgyTUhoeGF6UldVM1prSzBSeENuVnNUMlJOVDBvd2FXNVFkVmsyT1VoSVQzZFZlVXN5T1dKNVQzRnFkR0ZDVG5SME1EbDZRM05YYkdsVFpuazVTVlJuYVVrNFJIcE9kWEo0VmtkTVNGQUtabFZvV0dsSU4wSXlUMjVLVm1aWlpHUkJSelE0V1hZdlMwdGlla3RXTldaM05WWmhiMEl4Ym5ZNVdqUktWVGh4WVROU2ExWnVZaTl0TW1aMUwwZFNaQW81WVdOcE9ISmFRM1kzZFVvNVQyZDVhalprVFdsSFdrWkJkRmxrVVd4TmN6VlRXRTVYTTFWSWVWTkdUMFJJWW1KTWFESTRhbU0wV1hFd1JsUXhZV05IQ2tKRFVFMVJjM0ZaVGxVMVRETjZPWEEwTTNoMmVtZ3pSMDFzY1hwR05rMUhhVXgzYTJ4QlZubHpibk0wVjI5ck4zWjJZa2gyZVhWRk9IRkdhSGw1UVVFS1QwSkNMM2hxYzNObGExRnZiek01WWxCclNGaE5jM28wY1RKWFVrdHJkMjFHUWxOb1NXaFhhV1ZqWTBOblowVkNRVTFQVG5OV1oyNWhORFExTjNKclRncENOV3RaTW05WFdqZEdNREpWZUdJdmJsVnZRM0ZaTm5WdFJHdEphMFJQYjFCdVVXWkJhbmxJWlhkR2RuQk9TeTkwUm14bVMyaENPSGt6T1Rkdk9IbGhDbTlxVjNWUGRpOWxkVWt2UmtGWU9HcERjR05QVDI1NmFETlBhRlp3TlVOVkt6ZE9PVkJJZUVrNVlVbHViVlZ5UXpkNmExWnBSMFp4U25VeVMyeFRPVFVLYmsxRFZuTTNSMVJZVVZBeVUycDNTWGcyWmpnemNrNVJRaXR3Y2tjelRIY3dVamd5SzFNNVRYUm1TWFZCVWpka2JFbGtOSFJwYWpBNVlXRlBWVlJzU0FwQ1EwSTJaRGxwVUVWWVprUmhMM2x6YTBGRU5tNDRRV2xZU0ZJNVRsbFBSRms1WTB4SFpVbEpjR2hGVWpsQk4wbDZXVlpMUkdwR2IybDJXazg1V21KeENrdEhaVE5VWlN0TGEyWnZkSG95ZG5WQ1UzWklOaXRQZDFaSFNubHVVMjVrWTJJNE4wbEJiMlV4Wm1KNVFXUlZWbFZNZW1wbFFrWlpNMjlIWmtKSmNHWUtNMnhoY2t4WlJVTm5aMFZCV1UwNWMzQk1SbTVwZW5CclYyYzFlWFpsVVVSVE1FdFZUa1pWTlVacVdFVjNlRU5ZUXl0YWMzbEJUMjVhVVZKNlJTdG1VUXBOTkcxTVl6WXhLMWM1YUdWdFNtNTZWbmwzWmk5d1FVWkliak15TW1kb0wyaHBaMDB3Y2sxb1JYcHVMMUpUZFVwdGNXeHZhbUp6V0c0MWIzY3pVVEZoQ2xOa1lXeHhZbWhQWVhGclZXUktNM293UlVkWVRuQjZjakJ0WTNSeVJFNUJaa1poYzB4eFVuWXJjR0p5ZFZRdmJ5dGxTRU5EYmpreGFFUk5NVVl4UkRnS2NrTmlNa3cwU0VsWFlrRlBWVGhhUjJSWWMwNW9PR0ZSVkZkdGNqSlFRMDVyYnpkWlpDOVhjeTh4U0RoNmExUndSbE5qY25ONFF6UXdLM1l6TDNGUFNRcEVlRzUwTDAwemRYZERkbVZpWjFOdWVIRTVaV1p4UXpWd1dqWTRTR3BFZFU5aWVqRnhiVXgzVTFscldDOWpOVlJUVmtsSVEwUXhkbTFZZUhKamVDOTJDbWRYYm5sVk5sbGtjU3QwZDIwek1teHBPVTlXVFRkdlFsVmxRazlYVUhFd1dYZExRMEZSUVZjelozQnhWMDVXTlRGd1VsbGxZMUJFV25oSWFHOXVORk1LYjNoMlJUZGpaSEExWldrMFVrcDVTVzFZTVhKSGJsSk1hazFZU0VoTGRXTjBaVVJsVjBOTVl6SllMME13TkhrNUx6VllNM1ZOYUN0aWRGcEhZa1pSWXdwVGR6YzNhRkpIVFZKRFEzUm5UR0ZhU0hKc1NWcFhSV0kxVjNkcGVtaHpXWHBKY2t0M2VFSmFZMk5UWmtaNlJFdEpTR1JITUcwMlUzRk1hbEJMZGk5SUNuVkVVMnBNTnpkaldDOUhSWGhqUVhRNEszbGhURWhxVDJOa05sZDVWSEJFV2poUFJURklabUZETWtOaFNHWXlSVXcxZWtOT00ydFdWbmszTldGQkwyZ0tObk5TUkVSM1F6Vm1ibkZETUVGRmIxa3ZWVnB3VVdkdFpVWXlUbWxsYTJsT01FcDVabGcyV1RrME4ySmlWRlZPYXpkcFRXdDJhelZ0TlZwelJVazFPUW80UmpCdVRpdElhQ3RDTjJsWFIyUjVVV2RQVjBOVVRqQTVhVmN6SzJkV09UTm5SakJQT1RRclQxUkZXWEkzZFVKQmNrVXljbkowV2xZM1YyWUtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogOGs2bG9qZGl1ZjN3NTEyZzNqMzQ5M2tqb3dya3EwOTZ5MnF5b2V5cTNhYXM2ZGNkdTVhZDJiMTdsNDRsbXdvemxieTdranZicjBtMmdkMTdud3RkeDBobzB0aWJ4YXB5dWRjeng5eWpuZG0wMnRyeHoxMHN2anJvbjc2anc2NHQK\"\ - \n }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": + \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVU1YVZsUkZlRFJPUzFCV1R5ODNhWFFyV21wNWJVRjNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDA1cVNUVk5SR3QzVGtSTmVGZG9aMUJOYWtFeFRYcEJNazFxYTNkUFZFVXdUWHBHWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNubzJRbHBDUWxCVU1IcFJUbGh3UkVsNlNEQkZUMVJYWVZkVVFXZzBPRk0yVTBONE1FSnBXbkpuVjFoTVFTdFFiWFJwZEhwNWFEY3lia3d4VG05SGFEZ0tNMmxOZDBWbGIxSkpVMGRUYzB0UlIycEZLMmN2VEUwNU16QlRNMEl5YkVaV01FTldaekpFTkc1M2RtUnlUVlpvYkVrME9WY3pjbVI1U2xkS09VRmFOUXBHTm01c1dYRXhkMEpPTVVWMWJFSlhTM0Y0TlU5cU5rTnJhRkZSYzJKU1FsaHRRMFZpZUZBMFNHSjRiazlFTUM5UE9YQXplbXBQV1VGd1RGTmtXRzU2Q2pCYWNEZ3JaV2RoWW1GQ2REWndlSFJsWW1JeVdqQmhiMEpvU1UxR01sTmpOVXhYTTBvclNWQnNiM2RHUm5OMVJESXliMWxVTWxSdGVTczRiVFJrUkRRS1VFZEdaRmxRTW05T2N5OUhUbVZDYVVoUGIyZzBNSEpJV25ZMlJsWkRXVzF5ZVdKdmRreFZhV1pXUW5KRmFHeElURlJSWkROcWFVeHNZa3M0WlZGbVRRcDNOMUZqZUd3NVFtbDVNazFIT0VFMVpURkpRbTA1YWxVd05UbEJkV050Y0U1d1YyWjJNekpVYUZnM1FXMTZTa1V2VURGS1NVODRWVVJWWjBJMFFqWkdDblpqYzBJd2JDODVSV1F2UTFkVWFrbE9Zell5UjFWQmJVTndSblU0T1ZSRlUzSlJMMloxU0RCaU1IaHFRakZQZFRKdE16SktaM0ZuYUZGbWNWQm9iME1LT0dwWlFUUmpNWFIxVkZWRlYxSnFUM050VkZKSE4zcFFhWEUxUWtaSFFuVmxWVmwzYTNoM1VYWjJOVU5VWm0wMmNVOHhMMnBpTTFKNmEyWndabHBPYndvelVqRlFiRVZzSzNCM2FuZFZlbmxSUlhGb1RFVTJTa2hoZEZsQmRqQlZXR2x3VkZCRk1HSlhPRmhJUjFRNUwxVXlNU3RYVFdrMlFVaGFiMGhZYkVNNENtdEpNM2QwZFd0Sk0zUjVaM2MyVGxSaFJWZHpRVVJJZUdkSmJUSTRXRFZaVm5SelNFZDNWV3huY1d4VWIyTmxOWFV2Um1Gck1UWkZRalozSzNvdk5YY0thM0EwYUdoUFUxbFVOSFpNZWpGVVpHVTVXVEk1TlZCcGMydDFhM1E1YTBaU1ZVcGhZelJOZDFscGMwTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1FtbExMeXRrY1dzclVGQllXVkZXQ20xQk1ETXhTVmQxUVhGb2NrMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlJFZEpVbGhuU3paWFZ6aHlOVmhWVlZONU16aG5VRmRJZEZRS1FqQk1jRWRWWlZsRWFGVnpRM1JQVlZoMlpYVnFUVVpwVlhGUVRIaExWeTk1T0RkM2VFVmlLMnhMYTJ4UFNVUlRiRzVzV0RCMmRHUkphRVpwYVVObVJRcFdWREYwUjI5Wldua3pSbWg0Y0dWMFlteHFSRlJPTURoVlprRnFVVk5LTUhwQk9GRjZOV2hZYWsxWGRYVlBkSFJ1TWxwWkwxRTFMMWRHUjNodVMwMWpDaTloZERBd2RrNXZNbkpRY20wMVRsZEJUR2x3WmpabGVFZENiMDkyYUUxcVV6aENjbXR2ZGpNNE9XZHRTV0o1S3pKS1EyRmpRemhFVEhwclFqVjJibE1LSzNKWGEyRjJLelJaY0VFMVRVZExLM0pNYzNSaFFWaEVaekZRUTFKSVZtMVZhR1JWVGpGM1YyYzVNSGxqY1V0bGIzcFROMnRaWmpselVFVlhXbUV4V2dwUlVWRTVTbHBOSzJaMmFrMDRhamx6YWxKNWQwdHFjekZCYUZocVpVZDJjR1ZhY1ZGbU5GTlhhMng0WlZOeFZHczRRVlJuVG1KNFlXVjZXbnBYSzNwNUNuaDViemRCYm01UVZHRnBNa3RVYjNZdlNFVnhSakpRVUVocU1YazJPVGMwZFZBMmVtTmtWV1p3TWpGSk9TOVBPV3haZWxSRk9UazFaRkZUUmxWQ01sSUtRbGRSTmxKSVJpOXlTRGN4TTNFNFUyZzRla2RaV2xWek5rNDFkRGhsTTFSVFZtVmxWbnAzTm1OU1RFa3JOazFEY2xWak9FTlBRWEIwYzBnMFRpOVBZd3BxUWxKblozSjVRMmg2V1hoQ05XbEdSa2RzUW5rMWFFRnhPRU5aZVhKMFJVUkpWM3BhTWtKWlNsWk1ibGtyUzI1TWJtVjJXREJaYUU1MFVFZ3ZUR0ZDQ21oNFdGUktTRXBMWmxOS01rZFBXRWRVYUdOTk5qWkJkVmQyUTFwSGNXOXRjRGh2Y1Rkbk5WbFpNa3hxY0ZOUlNXdFliV3hXVmxWd1RrMTBaRlJ6UmpJS1JGUnFjV1ZKZUhkcmEwRXZWRU5wTDI5VU56QkdNSE5zY0dkQldqUldhVUpzT1RGMk1WUTRTa0pFTW1GRWNXZFlhVlZaZUhrMVdXczNVa1pqVEZGSmN3cE5WVFU1VmxkdEwzbHNTa1Z6Y0dKTEwwRTlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5zeGJleXF4aS1qdWJ5ZG1sby5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdHhwZ2Rwegpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdHhwZ2RwegogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdG9pZmR4cmt0dmZfY2xpYWtzdGVzdHhwZ2RwegogIG5hbWU6IGNsaWFrc3Rlc3R4cGdkcHoKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0eHBnZHB6CmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdG9pZmR4cmt0dmZfY2xpYWtzdGVzdHhwZ2RwegogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklWRU5EUVhkWFowRjNTVUpCWjBsUlZXWXdiR2N3TDFWek5tWk5kbTF5Y21kc2NFdHNla0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRnpSa0ZFUVU0S1RWRnpkME5SV1VSV1VWRkVSWGRLYWxsVVFXVkdkekI1VFhwQk1rMXFhM2RQVkVFd1RYcEdZVVozTUhsT1ZFRXlUV3ByZDA5VVJUQk5la1poVFVSQmVBcEdla0ZXUW1kT1ZrSkJiMVJFYms0MVl6TlNiR0pVY0hSWldFNHdXbGhLZWsxU1ZYZEZkMWxFVmxGUlJFVjNlSFJaV0U0d1dsaEthbUpIYkd4aWJsRjNDbWRuU1dsTlFUQkhRMU54UjFOSllqTkVVVVZDUVZGVlFVRTBTVU5FZDBGM1oyZEpTMEZ2U1VOQlVVUlJZa1puYTNWYVZFbHBTVWxIVW5sWVpVTXhTRThLT0V4RlExcGlOekJEYW5sSWF6UkZTMnRrSzI5a1pXbHRUMnh3YkVSM2VuRllXRkp6V0ZWQ01FZFVjRUZYV0dKRlptTXpaMlpWT0haU1NuVjZMMjVVU1FwaU56bGlabUpaUzFSbmQxWm1lbEpIVlU5UFpFZHRhaTl2TkhwVWVsWnhOelUyVEVWSWFUTjBjWGN6V204MlFsRnNZMHhUUkRWTVNHbzBUM1IzTkVsaUNqRTFTV1ZPUjFSSmJGUllRU3RpWWxaT2QzZDRjV0Z6VjJsQ05uaHdUVnB0VVU5T1VtcFpjVlZqUVdndmVqazBZa2syYkVOa00xSjFVME5vWjFaQmJqY0tTbUZHTTJORll5dFFRMFpMVFhodFRtVTBXa0p0UlhoeE5DODRWR2czT0ZsSWFsbE5OVmsxYVV4NFoxVXpiWGgzTkZGeU55OWlUa1JwZWtaNlVFZGhOd3BJTUcxb1ZreEVlSFpzT0hseFFsZDNXVkYwZGpoMGRsRkxWRE15ZG1jeVprMU5Xa1pJU0ZKSFJYSm1VR1l4Yld0WE16VTRkMHB3Y1VSRlF5dHlNWEZKQ2xWSlFtVkxWSEZwV0ZwMlMxUlNZVVl5WWxreGIyVlJLMVpPZFN0YVduQnRiMWxHTTBSWFNtUlViMGxDZDJwUFprUndhWEJMWTJSdGEwUnNkbkJJUjBRS1p6ZGpSalY0V1ZKSFoxSlNXRVZpVDNaU1RHRkxRbU00UjJkM1JFbzVjSHBxUVhaU1pUSkpXRU5WZERKRmFrOU1UM2xoWTFoVVpYQkNNV2RKZURWSVdRcDBjMFF2VWtsUlkxaEhUbFZvZURsdE1sSnJXRkZPU3pOeE5ETnNSVWgxZFdsUlF5dFlSRXRIUTI1cWFuTnpUa000Y1U1MFVGTlNVSFV2U0hGb2JqbEZDbmhFWTJORk5VeHVPREZ1TkRSU00yVjFaM0ZXTW5WR1VuZ3piVVoyZFN0UFlUTTNVa1l6TVVWVFEwMVJjMU5HTW5FMlltZE5VRTB3TWpnNVZWWkpLMEVLZHpaTFNFdGlkVlJ6Y2pSa05GQmhOMUZSTWxwcFNtODNhM05LY1ZZdlowTm5hSGxSWkhNeWEyVmhTMmhRV0U5eFMxbEJlbGg0UlVSQlNYSk9PWEJCY1FwS1prWjNZV3BQU0hZMlRscDVWRXBoTUZFNGFYSjNTVVJCVVVGQ2J6RlpkMVpFUVU5Q1owNVdTRkU0UWtGbU9FVkNRVTFEUW1GQmQwVjNXVVJXVWpCc0NrSkJkM2REWjFsSlMzZFpRa0pSVlVoQmQwbDNSRUZaUkZaU01GUkJVVWd2UWtGSmQwRkVRV1pDWjA1V1NGTk5SVWRFUVZkblFsRlphWFl2Ym1Gd1VHb0tlakV5UlVaYVowNU9PVk5HY21kTGIyRjZRVTVDWjJ0eGFHdHBSemwzTUVKQlVYTkdRVUZQUTBGblJVRllVVmhJV0doM1dWTmtMemx3WjFsVlVISnRVUXByZERJd09FNVVZa1JuYUVoNFNrcHpTelJwYWtwWVRuUTJPVlZ3YlhSYWJsaGpaRnBYT1hKelZFSmtLMUowTms1aVNVTm9jR1F6Ymt0bFVEQkRNVkZtQ2tWRlRXZFBSVmRQY3pCQlZIQkpiRmxFTlVrNVMyWXlVMnd3TVRnMFluQjVibVV3YURZeE1tSnFPVGRyUkRFM2JVMXZVVVJZWlM5RWRrZG1OMjB6YzJrS1VtUkdWRVpWSzJVeVYweGpkelpDVGpZemREWmpjMnN3UmxoT2R6WlpVWEprVFRoRWNTdHBMMXAxWkhOV1VqTkVha00yY3paR1dHbFFNVkk0VDFjMU1BcFBabTFvTlRSSWNEbDZZbXhWT1RrM2VHcDNLMlJaUTFCU1EySjBjVWxMVlhnNU56VlZaMmR1Y0hVeWIxSlhUMWwxUzFNclRTOWlZelZJY1ZSaWNrMUZDbmRWY25Cb2NFb3ZTR0psUTJaQmVHRXlUMVZ3WkVaUVMzRkhZVFl3UzFZeWFuUmtOelY2ZG5KMEsycFBiV3hOVW5CQ2JHTTRNbXhDYzFWVmRtOHpVMnNLVmpaNVUwcHRSM1JwTlRoS1IwOURPR1JhZEc1NFMydFdNbFZUYlRSTlQybGxWWGMyVVdKT1ZYbDRaRmQ0SzBGWlJUVjBWM3AzZGxjekwyRk9RazV3WndvNFdUTmllVUY1YlhWU1dFMVRWV3R6TldKYWVVNHJhVWhSZDBGUE5saExReTlCVWxKUVRESlZMemxSWW5selJsVjRPV2h3ZFROb1VqaEZkVUoyT0RrekNrNHJTa2hUVUZSeFdIbEJUR1ZHVVc4MWFFbzBWVEZQY2tSS1drVldWVFZ6ZEdaNVNHUlJSbEl5T0hGS1kzUlpRa0p0U0dWcFZURkhjMVpVWWpWS1QzRUtOMkpPTTIxU05YaHRLemhGVTFnMGNUZE1Ua1JoVFhoU2RYb3hWSE5WVjJoUFZFSTRkMnhDZFVoMVMxQlJSV3htTVZCbFFuSkNRVlp5U1VFeEwyazVSZ29yYUVaM01FOVVVMGhqUlV0cWJXeFZaVWt6VEdsdWNXUnFWbGQwYjBFdmNpc3dXV3RhZW1OUFExcFliRXhIWmtKMlFtSlVURVZ0V2pnNVIweFlNbWRaQ25oWWVHY3lkRXhhVTJONmRHUkxabTlaYW1sQlJrd3dQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MyZEpRa0ZCUzBOQlowVkJNRWQ0V1VwTWJWVjVTV2xEUW10amJETm5kRko2ZGtONFFXMVhLemxCYnpob05VOUNRM0JJWm5GSVdHOXdhbkJoQ2xwUk9FMDJiREV3WWtZeFFXUkNhelpSUm13eWVFZ3pUalJJTVZCTU1GTmljeTgxTUhsSEt5OVhNekl5UTJzMFRVWllPREJTYkVScWJsSndieTgyVDAwS01EZ3hZWFVyWldsNFFqUjBOMkZ6VGpKaFQyZFZTbGhETUdjclUzZzBLMFJ5WTA5RFJ6bGxVMGhxVW10NVNsVXhkMUJ0TWpGVVkwMU5ZVzF5Um05blpRcHpZVlJIV210RWFsVlpNa3RzU0VGSlpqZ3ZaVWQ1VDNCUmJtUXdZbXRuYjFsR1VVb3JlVmRvWkROQ1NGQnFkMmhUYWsxYWFsaDFSMUZhYUUxaGRWQXZDa1UwWlM5SFFqUXlSRTlYVDFscE9GbEdUalZ6WTA5RlN5c3ZNbnBSTkhONFkzcDRiWFY0T1VwdlZsTjNPR0kxWmsxeFoxWnpSMFZNWWk5TVlqQkRhemtLT1hJMFRtNTZSRWRTVW5nd1VtaExNM296T1Zwd1JuUXJaazFEWVdGbmVFRjJjVGxoYVVaRFFWaHBhelp2YkRKaWVXc3dWMmhrYlRKT1lVaHJVR3hVWWdwMmJWZGhXbkZIUW1SM01XbFlWVFpEUVdOSmVtNTNObGx4VTI1SVduQkJOV0kyVW5obk5FOHpRbVZqVjBWU2IwVlZWbmhIZW5Jd1V6SnBaMWhRUW05TkNrRjVabUZqTkhkTU1GaDBhVVozYkV4a2FFbDZhWHB6Ylc1R01ETnhVV1JaUTAxbFVqSk1Za0V2TUZORlNFWjRhbFpKWTJaYWRHdGFSakJFVTNRMmRVNEtOVkpDTjNKdmEwRjJiSGQ1YUdkd05EUTNURVJSZGt0cVlsUXdhMVEzZG5nMmIxb3ZVazFSTTBoQ1QxTTFMMDVhSzA5RlpETnliMHRzWkhKb1ZXTmtOUXBvWWpkMmFtMTBLekJTWkRsU1JXZHFSVXhGYUdSeGRXMDBSRVI2VGs1MlVGWkdVMUJuVFU5cGFIbHROMnMzU3l0SVpVUXlkVEJGVG0xWmFXRlBOVXhEQ21Gc1pqUkJiMGxqYTBoaVRuQkliV2x2VkRGNmNXbHRRVTB4T0ZKQmQwTkxlbVpoVVV0cFdIaGpSMjk2YURjcmFsZGphM2xYZEVWUVNYRTRRMEYzUlVFS1FWRkxRMEZuUlVGeFJqUTVkbW93YXpCbVNtdG9NRzVIWWpFNVdtdFJRMnBJWW5GMmVsWnFVRzFRTkhocGFWcGFUbE00TmpVM00xQTVSRGsyVVZsSFNncFpWbXBpYW0wMGNYWnVNRWhGY1doSFVHZHJPR2hKVXpVck1tVmtWVFpZYVZGaWFVWTNSVVZ6VW1Sc2FXc3dUVmt2U0hGMlVUUlJUbUZpVWtWcVprMU1DbUUzTm5SbU5HUnNVWFZIU25scksxRXJSSGxaWVVKdGNGZENMMDQxVlhZMWRpdHBNMWRqYjJacFIzRjRjR2RCTkVjME5XbHdWM05GTUV0RE5XNVVWR2dLTjJGdFdIWXhNMXB1T1ZvclMwSktaekF3TjBsbllWcE5OVGRSTnpnclVuTlZXalJyUkRCU2JqWkNZbkpzTXpKdU9GTnNhelJvZVZsdVIwSlhiMDVqVndvNWMyZHBaek5LYWpBNFpubGthVll4ZVVOamExQXpXV05XYldvck0wUTNhMHhwTTB0WGVEbGpja0ZHV1hSQmJGSlJabWhCVm1sS1lUWm5ObEl4YmpKRENsUmhXVEI2TnpacVQybzBORmhwZFVSUVMyZHBiRmhUWTJkUE5FeENVVzlrT1cwM05FMUdiM1ZyVFdoblVEazBaSE5TWkVsa2VtbFFUMG8zTW05WFkzRUtjakJvTmxGUmR6WlBXRGxRVEVOR1dFRm5jMWd2ZEc5RmFtdDRTRGRHUW04M1V6Y3lVMnBCSzNGR2JsSnNRbWRKWkc5dWIzbEZSREJtT1c5YWNtb3JNZ3BIZHpaS1ZUazNhREUzUmsxelNFMDRhVzUxZFZCS1VGVlRSakZ2YzJ0aFQzQkxaM1YxWnpJNFowdFlZME5wTlRSbVEyNVRVVTlETDFSWVIwdHFPRWgyQ2tRNWNUVkdibEEyUTJaYVRsSkJabUl2ZWtaUFVVczBXbEoxVDNORlNrTTJWemhhWlcwemRsUkZNbmN3VTJwVE4xSnJiM1JoTHpaeFlYbEpTQzh4VlhNS0x6VlBNMWhMUkVkM1IzVldUMDFhTlRkMWNVbG1NRFF2WldZclZVRXhOVE42VjFJNVNYWTFWMUoxV1U5aE1XZDRla2x5WTBWMU5GUm9TaTlpU0V4R2VncFNlbHBHZDFWaVRFdGpNV2c0V0hWbWVFaFJVVkZLVjNJeFRFUTJaamMwWVdoa1dpOVBNVm9yZURNeVZrcFRUa2RVUkVWRFoyZEZRa0ZQUkRCdmVXWnZDakJSY1ZvNE1VbEpRa3RSUlZjNFNFZENaMEZxUWxSbk5FUnlTWGR3VGxKa1FUZFFLMGdyVTB4MGEwSkRSVFI2UkZsV056ZzNOVXhsVTNkc2RXMDBNVmdLVGpreWMxWklUR1JHTTB4MlUxWlpZVGxMWWpObU1UUnZiMHBVVVhJek4ybHZjRmhVVTFWc1IzVkNZVmhFYTNJMUwzbHpOMFp0YWsxcFUyWjNNVEJyYVFweWJrWkJUbTEzV0doc1FXOVBPRzVTVWxWaE1HdEpOSFVyYjAxalVETkVaRFY1WldaaVdsUm1TRWw2U0ROUE1uTldkR0V4TjJkUVJrbEpRM1kwYjBoR0NtSkVUalo1UzJneFRuWk1OVWhUTjJkclQwVXhlakpzUkU1UU5rZGxMMWhRY0VsVVZtdEVVSFZaZVZKVkwwNUNhbTltV0RGQlVWa3hPVXB6WWs1WUwwVUtaRWc1V0dOamNYazVhV3gwVDBadFZrOUNhakZDV1dKbFNHMXBkSGx2ZGtkWlkwSTRjV2RRTjNOSWExUmpRWEYyWVNzdldrSkpjbEJSUXpaUFVERm1TZ3BsY1hZM01uSlRVSFZZZWt4d1VrMURaMmRGUWtGUE1IWndRbE5hZFZoMlNrRnBLMlJCT0hWRFprazBLemQ2YTJwVGNXZGhVVFZyU0Rka1JuSkRkRFl4Q21GS2NXRnRSamREVVRRMFJVUjViVGhEYUZGNE5GTm5kVWRyZEN0UFREVlpjVmh3YTBGeVNYRnpUVU5CTnpGUk5UUTFMMHMyUzNWaFRrVndWRGhZYm5BS1dUa3hOVmR6Tm5sbGJXazRRbVZZYkZjeU1Xd3hURmxXUjNKRGJqaDFiRTFEU21nMmNWWnRWM0p4VG5wcVVtTjZUSEF3TUZKNGN6QkZZMmxWUW5kalR3cEljbnB6YldNMVFtSkZRWHBpU3poc1JrdDRPWGw2UXl0S1RrcHBURTVWVjFVek5uSkdTeTlvVDJ0dFJEWlJXV0kxWkhOSWQzbGpVa1pwYTFVMVozRkdDbm95VTFCU1NTOVVjakpLUlVOUFVFRklZWHB6UkVZd2NHUnZZelZuTDIxSmJEUjBWRk5RV25CTWVFNURlbGRsWWpkSFoyUlVWakY1TTNSTGRXbzBOWFFLT1hCQ2R6SnVVVGhvYUhvclFWVXdWRGxJYW1Oc1JERjZlVms0U0dOc09IRkpZalpUUVVwcFJIRXpWVU5uWjBWQlFVcHVSMjlqUjIxYVZDOWFMMWh6VndwQlFsbGxOVXB4VW5jMGFGVmhSREJIUmxGWE5rOTJUSGR2Y0dSdlNVZFZZa2hJY2xGelNYbEtRWGRpY2pST2JVWkhPRnBYTVdZM1NXOUhabTlhWkVsbUNsVlBhRUZ4ZFVWNGFrRjVXRWt6YnpaVE5IUjJTRWxwWjFwSlVVYzJlRWx6VW1GemNtdzFiWEJUT0ZaQ2JuaEJSWGRpTWt3MVdqaGFSbWxhVlhaME9Hd0tUbUYxVmpGVmEyZDRWSEZSVGtWRU9UTkZTRVZFV205aFJuVnVMMFZsYlhsdGRFZG9lbTFUY1dGeVNtSnhNV3B2WVVVclVEZEZZa3B5YVRKRGQyRm9iUXBsUTIxblNWWk1jVTFDTDBSeFVWWk1OaXMwVTBGTGMwbFNiVFpJYW5kMmR6WmtWSE5SSzFsM1RsbGljemxOV2t0SEszWnljbUZoY0hCUWJHNTZWMGhEQ2psSlRtUkthV2RYTWxWSk1sQktSREZTWkZKSksxTjVWR05FT0dzclVrOHZLMlZNUzFwemVtNUlaVWhZWlVWT2NtRllVbkI1VDAwMU1UWkhOV2xOWm13S1pDdGlXRlIzUzBOQlVVVkJNeXRUWnpGdVJtMUVaSFJ3U0U1cWVYaERRMmQzZDFoV1pTOUpPR1ozUzB3elQwVklUbE12SzFOemVXcDFXVEZHVmlzeU5RcEtNRE5rYjJ3dlIyYzViWGd5VDFCelNHMWpMekpUTmtscVQyWnlVVFZRV1RGV04yZHFTR3MwZWxwWlZXNURaM05TUWpKS1ZFeE9jbVZhTUdObmVFVnVDbE00V25oTGRIRmxkVEV6YzNSU1UyMDFVM05yZFdWVU1FZEVkSGh6VVdZd1VXOWlTa2xMVmtnd01ESk9PR0ptZEUxYVNFdE5TR0UzZGxWeU5uaFRRWE1LZERBelZIZHRSVmRoZERCNksxRmpSV0Y2VVZKaVpsSjBWRXA2YVVsclVsSmhVMUZFZVRab05rTmFRVU5RT1ZvMVVFdzFiR2xJYkZoc1J6RktTWGgxU0FvMmVFdGtPRm81WjFrclRrOXhTVXRFVTBwTFlXRmxjblZaY1RWNmNWZGpVVGhRVjFkUU55dEpTVm92U0dJdlkwaE1OR3h2UzJWTVZGcFFWMmwzVTJGQkNqQnpNVlJJVW1SQ1NuWllVbGRXUkRkaGRrSXdibXBDTDA5bk1VbFZjU3MwU1ZGTFEwRlJSVUZ0Y0d4RlVrMUJkVm94YTIxcWFFSkVOa0pqVlZkcWFXd0tMMWxNTUdsemFrUjVXVXBhT1c0dk5UbEpja05PWWpJM00wNUtSV0pTUzJGdWF5OU1WWHAyVlZwd1dDdEVUM1pIYmpBeFUxcGlOR3AyWWpoWUwxWmxTQXBrSzNnNVZHMDNaRTVpZW05TFdrOUZUV040UmxkNE4xZHFOa2N6WTI0emVXWTJWRVptZVdkVFRqUjVhM2RCT0RkVFFuWkRPRlEwVUc5UWFVZDNja3RUQ2xGaVNXNU1aRWRyWlV4VllYWklRVXhrZHpScVRHMUVSMWRUWkdzMmNWUk1kV1pOV2xWeGFXZERUbXR5YUZST09FUXZibFZaZWpWUU1EUnlVM2ROYUU0S05VbHRUbVJzY0RkNk4wZ3lTMmRHU0VZMlkyRjVaamxyWkZGQ2NIaGtWM2hWYldOWmNqazBSbFZEVjNVclIycFVORXRoVldoeGNUSTNUbEJtU21FMFF3cEdWbVJUZDNack1rZFZWR3hxYmtWcVRIQkRWakpNV1cxWFZtcHphbmMzZERVeGNURTRZbEJ1TWxGNFdXNVlSalpvYlZORVFWUlNSMUk0SzBkVVVUMDlDaTB0TFMwdFJVNUVJRkpUUVNCUVVrbFdRVlJGSUV0RldTMHRMUzB0Q2c9PQogICAgdG9rZW46IGozN21xNzhhd3U3amM5dGJzdmhyZmhkaGlhbjZ2NDRubmtyaDYwaWR0Zm1kMXBvY200cXY0Nng2N2hnNW9kdjludTNhcGxzaDByYzdzczBnd2QwOXFlNXh2ajh6NGJmeDZoa3Q0aXNkb2hocHA3eWNmY2hqNndnNnpxZzRzZnBhCg==\"\n + \ }\n ]\n }" headers: cache-control: - no-cache content-length: - - '13072' + - '13096' content-type: - application/json date: - - Wed, 14 Jun 2023 19:54:54 GMT + - Thu, 29 Jun 2023 09:20:15 GMT expires: - '-1' pragma: @@ -1320,10 +1609,6 @@ 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: @@ -1347,8 +1632,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/cliakstest000001?api-version=2023-05-01 response: @@ -1356,17 +1641,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/516fba3a-ab63-478d-a6c9-b79c976eee13?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 14 Jun 2023 19:54:55 GMT + - Thu, 29 Jun 2023 09:20:17 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/516fba3a-ab63-478d-a6c9-b79c976eee13?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.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default.yaml index 0be1965c36f..87f8f237af9 100644 --- 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 19:54:58 GMT + - Thu, 29 Jun 2023 09:20:20 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-clitestsrtaj3dnw-8ecadf", + "SystemAssigned"}, "properties": {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestkk3f6oenm-79a739", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": @@ -55,11 +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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {}}}' headers: Accept: - application/json @@ -70,72 +71,71 @@ interactions: Connection: - keep-alive Content-Length: - - '1875' + - '1546' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --node-count --ssh-key-value --tags --nodepool-labels --nodepool-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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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-clitestkk3f6oenm-79a739\",\n + \ \"fqdn\": \"cliakstest-clitestkk3f6oenm-79a739-j7hr68wc.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestkk3f6oenm-79a739-j7hr68wc.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"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/63ca612c-99b6-4db7-a0c2-7f904f69b722?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c4bfeb65-d265-4d19-a739-1f96e49c0d4c?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3777' + - '3448' content-type: - application/json date: - - Wed, 14 Jun 2023 19:55:04 GMT + - Thu, 29 Jun 2023 09:20:27 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c4bfeb65-d265-4d19-a739-1f96e49c0d4c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2c61ca63-b699-b74d-a0c2-7f904f69b722\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T19:55:04.7053328Z\"\n }" + string: "{\n \"name\": \"65ebbfc4-65d2-194d-a739-1f96e49c0d4c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:20:26.7650188Z\"\n }" headers: cache-control: - no-cache @@ -182,7 +182,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 19:55:05 GMT + - Thu, 29 Jun 2023 09:20:27 GMT expires: - '-1' pragma: @@ -215,24 +215,514 @@ interactions: - --resource-group --name --location --node-count --ssh-key-value --tags --nodepool-labels --nodepool-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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c4bfeb65-d265-4d19-a739-1f96e49c0d4c?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"65ebbfc4-65d2-194d-a739-1f96e49c0d4c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:20:26.7650188Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:20: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 --node-count --ssh-key-value --tags --nodepool-labels + --nodepool-tags + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c4bfeb65-d265-4d19-a739-1f96e49c0d4c?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"65ebbfc4-65d2-194d-a739-1f96e49c0d4c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:20:26.7650188Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:21: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 --ssh-key-value --tags --nodepool-labels + --nodepool-tags + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c4bfeb65-d265-4d19-a739-1f96e49c0d4c?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"65ebbfc4-65d2-194d-a739-1f96e49c0d4c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:20:26.7650188Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:21: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 --node-count --ssh-key-value --tags --nodepool-labels + --nodepool-tags + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c4bfeb65-d265-4d19-a739-1f96e49c0d4c?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"65ebbfc4-65d2-194d-a739-1f96e49c0d4c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:20:26.7650188Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 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 create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --node-count --ssh-key-value --tags --nodepool-labels + --nodepool-tags + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c4bfeb65-d265-4d19-a739-1f96e49c0d4c?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"65ebbfc4-65d2-194d-a739-1f96e49c0d4c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:20:26.7650188Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:22: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 --node-count --ssh-key-value --tags --nodepool-labels + --nodepool-tags + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c4bfeb65-d265-4d19-a739-1f96e49c0d4c?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"65ebbfc4-65d2-194d-a739-1f96e49c0d4c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:20:26.7650188Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:23: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 --ssh-key-value --tags --nodepool-labels + --nodepool-tags + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c4bfeb65-d265-4d19-a739-1f96e49c0d4c?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"65ebbfc4-65d2-194d-a739-1f96e49c0d4c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:20:26.7650188Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:23: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 --node-count --ssh-key-value --tags --nodepool-labels + --nodepool-tags + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c4bfeb65-d265-4d19-a739-1f96e49c0d4c?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"65ebbfc4-65d2-194d-a739-1f96e49c0d4c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:20:26.7650188Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:24: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 --node-count --ssh-key-value --tags --nodepool-labels + --nodepool-tags + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c4bfeb65-d265-4d19-a739-1f96e49c0d4c?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"65ebbfc4-65d2-194d-a739-1f96e49c0d4c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:20:26.7650188Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:24: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 --node-count --ssh-key-value --tags --nodepool-labels + --nodepool-tags + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c4bfeb65-d265-4d19-a739-1f96e49c0d4c?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"65ebbfc4-65d2-194d-a739-1f96e49c0d4c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:20:26.7650188Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:25: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 --node-count --ssh-key-value --tags --nodepool-labels + --nodepool-tags + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c4bfeb65-d265-4d19-a739-1f96e49c0d4c?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"65ebbfc4-65d2-194d-a739-1f96e49c0d4c\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:20:26.7650188Z\",\n \"endTime\": + \"2023-06-29T09:25:42.9028271Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' content-type: - application/json date: - - Wed, 14 Jun 2023 20:37:16 GMT + - Thu, 29 Jun 2023 09:25:58 GMT expires: - '-1' pragma: @@ -265,71 +755,66 @@ interactions: - --resource-group --name --location --node-count --ssh-key-value --tags --nodepool-labels --nodepool-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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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\ - \ }" + 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-clitestkk3f6oenm-79a739\",\n + \ \"fqdn\": \"cliakstest-clitestkk3f6oenm-79a739-j7hr68wc.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestkk3f6oenm-79a739-j7hr68wc.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": 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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/fcf634e0-c5f4-413a-8eef-4a363b9c7acb\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4762' + - '4101' content-type: - application/json date: - - Wed, 14 Jun 2023 20:37:17 GMT + - Thu, 29 Jun 2023 09:25:58 GMT expires: - '-1' pragma: @@ -361,71 +846,66 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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\ - \ }" + 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-clitestkk3f6oenm-79a739\",\n + \ \"fqdn\": \"cliakstest-clitestkk3f6oenm-79a739-j7hr68wc.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestkk3f6oenm-79a739-j7hr68wc.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": 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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/fcf634e0-c5f4-413a-8eef-4a363b9c7acb\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4762' + - '4101' content-type: - application/json date: - - Wed, 14 Jun 2023 20:37:19 GMT + - Thu, 29 Jun 2023 09:26:00 GMT expires: - '-1' pragma: @@ -457,75 +937,68 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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-clitestkk3f6oenm-79a739\",\n + \ \"fqdn\": \"cliakstest-clitestkk3f6oenm-79a739-j7hr68wc.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestkk3f6oenm-79a739-j7hr68wc.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": + 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n + \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": 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.19.0\",\n \"upgradeSettings\": + {},\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": + {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": + [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 \"supportPlan\": \"KubernetesOfficial\",\n + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": + \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": + {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/fcf634e0-c5f4-413a-8eef-4a363b9c7acb\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"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: - - '5065' + - '4390' content-type: - application/json date: - - Wed, 14 Jun 2023 20:37:20 GMT + - Thu, 29 Jun 2023 09:26:00 GMT expires: - '-1' pragma: @@ -557,75 +1030,68 @@ interactions: ParameterSetName: - -g -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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-clitestkk3f6oenm-79a739\",\n + \ \"fqdn\": \"cliakstest-clitestkk3f6oenm-79a739-j7hr68wc.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestkk3f6oenm-79a739-j7hr68wc.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": + 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n + \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": 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.19.0\",\n \"upgradeSettings\": + {},\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": + {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": + [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 \"supportPlan\": \"KubernetesOfficial\",\n + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": + \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": + {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/fcf634e0-c5f4-413a-8eef-4a363b9c7acb\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"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: - - '5065' + - '4390' content-type: - application/json date: - - Wed, 14 Jun 2023 20:37:21 GMT + - Thu, 29 Jun 2023 09:26:01 GMT expires: - '-1' pragma: @@ -659,15 +1125,15 @@ interactions: ParameterSetName: - -g -n --file User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ - \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSVTIxRlpFRjZTMGxPZFhwRVZFeGtOQzhyVTNkTGVrRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxVVVYaFBWRkV4VGxSQ1lVZEJPSGxOUkZWNlRVUlplRTVFUlRWT1ZGVXhUVVp2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVOd0NrcGliM2szYWpKS2VEQXlRVlU0YjJSUEwyRmpkM1pPYUhGVUswd3ZWMk5aZHpSQmRVRXhhMnRXU0VSRmFqZzBRVkJzV0RselUzZFdjV3hFWWtSd1R6WUthMjlGUlc1elNsRXhjMlY1TlU1cVpFaG1iWEkxVDB0d09YQnJUSGM1UW5Fd05WVXJRMnN3WkRsSGVIQmxSMUZTVERKUGVXNUJZM2x6VnpsellUTjBjd3AxWjNGSlNEVkpaV1F6V1hZeFpVVjFkVTlCU1hoNE5rUnBTM0o2YVdOdlJGWktZa1JWUW5SS05YQTJkWEF3WXk5SE5ucGlUa2hNZFdOeVZGTlNTVEZVQ21KWlpuWXZRWFJqVFhWRE16RXphRkZ0WWxaNVRYRnNUV1JNTm14d1FrMWhLMWcwVFU5dVpqVkphME4yUTBScFVtbFBXWEptVWtSRldXVm9OVWRUWVUwS2F5dFBhV3BPUWlzNFNsRTJXRUZLVUdWQ1IwWlpUREJTWkRGT1psRlFWa2RFY2xFMVVGTlROM05VY1UxaFozUkdUbU5CZUV4VmEzSTRUa3h0V1hvMGJBcHdjVFJTUkhCNGVUSXlUWFkxV1RORVRXVXJPRnBYTnpGRFNtVmxhUzkyUTNZelVTc3lTVEZOYVRSUFIxTm5jRkJHVVhCWFlreDFTMU5aTmpObFFrcHVDazFsYURsUlNrRTNOMWRCVlM5R1JGSXlMMUpPYkd4TFJ6ZE9SakU0U0RsWGFISTVSV1JzUW1KQlUybzRjM1JWVEVwVldHSmlOWFU1WlZoVE1tSnBjM29LYTNVM2FVTlNZelY2UTNkTWVuUTRaWFZwUlRCNFJqQk9lVE5YUm1KUWVtVkpMMFkwUms5U1VIRnJlbFl5TjJVNGJVVnlXazV3VjNSSGF6ZEtTemh0Y3dvM01UUlNlWFpqVjJkRk1qWkdVVlprZEVaNlVIbExUbmhOVm5ad2FqSlZaakpHVkhwa09FWmxTMDFGUTFOa2VsTnVjbXh3ZFRCWWJubGxRM1pQWVRoWENsbEtla3hYVFhCNE5HbG1jMVV5UjJ4YVdVMUllbkZXZDBacWVHbFJOa05uV25WdVZrNHlibWx4YTNKVWJYZG9NVEZaV2pneGR6bEVOR1JPZUVkNE5GWUtjMDk0VTBVNWVUazNXRFJXTWxORmJuSllObUppZWxJNVJUUmlRMWhDTDFFM05rYzJlbWsxUm5OUlNVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWRGNtSXljRFp4WTFOMWIxRkZWRXBIQ2t0TmJYRnlOWFJZU0ZCVmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGRk9WRktWVGxpUVRsWFF6WlFjalJyZDNkQ1NVMW5aalJSTjJJS1IyTndhbFEwV1hoMFNXOW9lWEZoUm1GaGRTdG5ObTlwYnpFMVpqUkRlVTVrWTJwWlQyMXVVRTFzYm1keE1tRTBlRGxaVERneFNWRlpSbnBEWWpGUmJ3cG9iSGxNTVZoR2VrMXFlWFIxYmxoU1JXdDVPV1p0UmxoVUwyMWhOV0Z1TDFWYU9VczNSWFpuZEN0WFJIWlFTRlJqTDBGSFRERllUSEpQZDA1SVkzWjNDbXBFWmpoc1lqWlVOblo2U1ZaYUwzZGtkVXRoTlhwdVkyTnlWMUY1TkRkUlNIbG1Xak55U0ZORlkyUnhOVWhvWjJObU1rWkVVbFI0VDAxUVNFcGlibFVLZUZZMFpGTk1PVFUzTUc1d1dXRkZNVGhzT0ZGTWVFNURia3B6YWxoNFZUZERZWE5wVlZCMGNtZEhaVzVOYlU4MGVXRmhVbXNyV2xFdmIwbDRjbVV2U2dwMU1VSmpSalExTm5Cc2NuTkZOM00zVVZwWWIxUTVSeXQwYkcxcFRrTlRha05sVG5KcWFGWTViMUJsTURsT1ZFeG5TSGt4UVU1WFpEQTJUbmxKVEZBekNrTldSRXhpU21WUVdWZEhUSFZqTmtaM2RHMXlTR3A2U0VkS1ozazVZbHAxTVhVM1YwbFFWV0ZyYzJoa2VrNXVPV0ZtWVVGeFJVOXNZemc0VGpCclkxa0tWRE5oYUVGVFQzZG1PVUZRUVc5S09WTjRhVlpqVkN0emQyVmFOMFpEU0ZJMmNXdEdiR1ZqYjAxaVVVUnNZVzkyU1ZSUGJWcDRRMjF5Y0dGQmFVSlRad3BIZG1nMWJXaEtjbTl0VTFKdFJUQklka05GVmxsUFEwdHBiakZoUkU5NVZHczRSWFpQUjNNeEx5OHpjRTlrTWpCSFprUm9UMFZSVUdGck1IZFBRM2xyQ25SSFZYSlFTVWRKTW1KRWRWZzVRMUpTVFZwUmJIbG5NMU5CZVRNMVJYaGtNWFZzWlRseVVtdEJNRXBFYW14VVZsQkNiV1J4ZVVkRlpGbHNWVzh2YzJjS1MyeE5ibUl4VEVWSWVDdHJMek0xYkU5YVpHNXNWa0V6WVd0TFVVUTRWRmxPYWtoTVpXMUpXbWN5U0hjeE0wUkZSa3hYUkV0dkwzTlpVVGxHVGs0MVdncDRiVzFyWkVrMFVEaDFOMkZyZVRSNkNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc3Rlc3QtY2xpdGVzdHNydGFqM2Rudy04ZWNhZGYtbmk5ZXZnYXQuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3RmcDVnbTUKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3RmcDVnbTUKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3RzcnRhajNkbndzX2NsaWFrc3Rlc3RmcDVnbTUKICBuYW1lOiBjbGlha3N0ZXN0ZnA1Z201CmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdGZwNWdtNQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3RzcnRhajNkbndzX2NsaWFrc3Rlc3RmcDVnbTUKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJVkVORFFYZFhaMEYzU1VKQlowbFJWbWRSVDI1d2EyOTZSRlpNUmpWV1NTOUJXV05CYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZ6UmtGRVFVNEtUVkZ6ZDBOUldVUldVVkZFUlhkS2FsbFVRV1ZHZHpCNVRYcEJNazFVVVhoUFZGRXhUbFJDWVVaM01IbE9WRUV5VFZSUmVFOVVWVEZPVkVKaFRVUkJlQXBHZWtGV1FtZE9Wa0pCYjFSRWJrNDFZek5TYkdKVWNIUlpXRTR3V2xoS2VrMVNWWGRGZDFsRVZsRlJSRVYzZUhSWldFNHdXbGhLYW1KSGJHeGlibEYzQ21kblNXbE5RVEJIUTFOeFIxTkpZak5FVVVWQ1FWRlZRVUUwU1VORWQwRjNaMmRKUzBGdlNVTkJVVVJMVjNZMVIyTTBWRzFQUlZSSldXZE9TVm8zVTNBS2FEWTRZMGR2ZVRCU1VuZFVjMjVPWTJwYU1VZDNOMWsxWVdSNkswdGpTSGs0T0N0SFZqZHNNa3h0WTFaT01uVTNUM1ZzTVVWblltWlVla1psUWtzNE9BcG9ka0o0ZEdVeWNFSjFjeXRRVEhWek1uQmllRlJLT0d3MVducGtXVGs0VWpkTk4yRTRORFZDVFVOdFZFdzJUWEo2WlhVdlZFaE9PV1EzWVhObFp6QnJDbVYwYVhSamNWZENlSEozVjFNM2FuRndObTlOWmpCSFZWbzJOVGw1U25OT1VGUnlhbkJHYVdFNVJrOTZNemxHV1d4ck4wYzVRM0JxTUdsNWFWb3hXRWNLUkdRNFJHNHZlRlZpY2pBeVdVVnRVVmswYUVKbk0xZHZibXBTVUdvMmNXeEJXbVZxV0dwWWFVSmhPV2xEY3poUWVWTTVjR2hSVTI5dWRFbG9jMlV3ZGdwWk5DdERXbXB0YVVWUFNGcHlOekJVYVdaNUwwTXdWa015VmtwdEsybEVjVE5DU1VSc05VTlRXaXN6Y0hoTFNHTTBjeTlqU0RaQ2VtTnBjbXc1Y1VGcENsTkVjWFZYWW1jMFNrRlROMGR0SzBOamMyVlFWMEk1YzNvNU5TOWlTWGdyTlRFd01FeFBkbkY1V25odWNVOVZUbk53TDA1MVpVcDRORk5SVkhJeFUzb0tTMjFKWkd0eE9FOXpPVk4xU25kWlR6SnVjRmRaVEhJNE1VdHdURUZaUXpFMlNUZ3paM2RsVm5wdWFuaERiVUYxY0U4NE9DOUdkWGRHZW0xT05XTjRSd3BMYm1GcFIzbEVkRk1yY2tkWWNYcGtaV04zY1cxeWJHMHhXbFl3VlhKaWJsUXlNM05NTW01Q1JtMVJOVFZtTW5sSVdtdFliWGgwVGk5c1VWTllaMll4Q21VeVVrSkZjRFJqZVRsWFRXSjRjSEZvUTFCeGRUWlpZMVZ1VFhoUldXaEplbWQxTkVKSWRHUXlZVkF5VXpWSFQwSnhLMmxyZUVObGVqZzNTVk0wTDBvS1dEQk5OV0YzUVVaRWFIZzVNRW96U0d0dWNsZGhjekk1Wm1nd1UybDBZVkEzZFVSSGNFeFFPSE4wZVVkNmVrOXZVRGdyYVZkTGFDOWhiREJvYVZGaGVRb3lVRlJsYVRacGJUZERNMEpNZFVWUWFHWXJiM2hSU1VSQlVVRkNiekZaZDFaRVFVOUNaMDVXU0ZFNFFrRm1PRVZDUVUxRFFtRkJkMFYzV1VSV1VqQnNDa0pCZDNkRFoxbEpTM2RaUWtKUlZVaEJkMGwzUkVGWlJGWlNNRlJCVVVndlFrRkpkMEZFUVdaQ1owNVdTRk5OUlVkRVFWZG5RbEZMZEhaaGJuRndlRXNLTm1oQlVrMXJXVzk1WVhGMmJURmpZemxVUVU1Q1oydHhhR3RwUnpsM01FSkJVWE5HUVVGUFEwRm5SVUZvWldsSFkzTkRkV1prU0RSV2EweHFXRTFTZUFwc2JteEZlbUZ2VGpjdmRGQmpTalZHTkRSR1ZHTmFNRGR5WVcxblZreHdUVXBZT0dwVGNESXlVbkZhTmpVeGFGaEdja0l4U1RaTVJISnVXbVZwVmtGRkNqZDFiVEo1UTBKdGEyaGxkV3RHUjNKelJYcFFRVGRxV1hFcmJtODNjM2RLU0ZodlpXSk5VemhYUVdoNlFVWlNjbVZGYWtwNk1YUXlhbXRPY25GQ1RtVUtjVkJPVkNzeFZsWkpUa052VVRKdGJEUkhabk5QYkRkbVIyMTJZbWRpTm5aVmVFcFhObk5MY1hsWk5uaEZUQzlwYXk5c2EzTmpSRTkzTTFCcGNsTmpXQXB6ZHpadFdVNUxha3RtTkRkbFNFSlNUaTg0Y205eFZVYzVSWG80VjNWT09ISllLM2NyZFVkQ1NsQk1kRVYxTW5KTk1EZE9OWGQ1TUZVMVdFVkhRbkZUQ2xGdlVsTjNUbmd6VG05cldYZ3JPRkowUjJGR1JrVkROMkoyY0ZwT09XNXlabVJFV1doemFrNUJTRmt5V0ZCellYTndNa3BEVERKR1NEUjVSV2s1U1hZS1lreENNV2N5TTNVd1NrWXllVXR5Y0VzME9FSXJVbXBNVDBaaVdXMUhjSHBwVGt4QmVqVjNZM1pJUWtaS1lsUTVWMVJpY0UxQ1RESkJaM1pUWW1KUFdBcEJOREZXZW1wYWJqSXlhVGc1Y21GWGFXOVFjRU5DWjBSS1prNURUVzlQYm05blFXdzVWemRvS3pkbmFXUmhSVGQxZEhKSlMyMWpTRzFJT0RaR05uSk5DbXRsVGtRMVoxWkNPRVpKTkRoaVpGQkNNRFpNY2pCblNuRlRXVFJ2ZUdKWGJIcDZXa1ZwTW5oR1VXZHNNR04yUW01U1prSTFNVmhDSzFKVVFWUjFLMllLTVhZelVEWnZibE5NV0VoSFFucFllRXBHTlhwR05EWmtjbE5EZW01SWJXWXhMM0ZEYWl0VGNIZG1kM0U1YkZoclZsUktSRE5XUlhKbmVGcDZWRTVCWndweU1tdEVNVkJUWkV4UWFFOHlaa2hWYTNoeGQyd3dOVWxqT1VKUFYyOVJXVFpMV0dZNFRuWkZNVWhMVkRWeVF6QmtXblpZVVhobGFreFdURW95VFZjd0NuQkNZemw1TTNjM0wyaGFWVTkyUTFKRUszWTViMFZGUFFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMUZKUWtGQlMwTkJaMFZCZVd4eUsxSnVUMFUxYW1oRmVVZEpSRk5IWlRCeFdXVjJTRUp4VFhSRlZXTkZOMHA2V0VreVpGSnpUekpQVjI1akNpOXBia0k0ZGxCUWFHeGxOV1JwTlc1R1ZHUnlkWHB5Y0dSU1NVY3pNRGg0V0dkVGRsQkpZbmRqWWxoMGNWRmljbEJxZVRkeVRuRlhPRlY1WmtwbFYyTUtNMWRRWmtWbGVrOHlkazlQVVZSQmNHdDVLMnBMT0ROeWRqQjRlbVpZWlRKeVNHOU9Ta2h5V1hKWVMyeG5ZMkU0Um10MU5EWnhaWEZFU0RsQ2JFZGxkUXBtWTJsaVJGUXdOalEyVWxsdGRsSlVjemt2VWxkS1drOTRkbEZ4V1RsSmMyOXRaRlo0WnpObVFUVXZPRlpITmpsT2JVSkthMGRQU1ZGWlRqRnhTalF3Q2xRMEszRndVVWRZYnpFME1UUm5WM1paWjNKUVJEaHJkbUZaVlVWeFNqZFRTV0pJZEV3eVQxQm5iVmsxYjJoRWFESmhLemxGTkc0NGRuZDBSbEYwYkZNS1duWnZaelowZDFOQk5XVlJhMjFtZERaalUyZ3pUMHhRTTBJcloyTXpTWEUxWm1GblNXdG5ObkpzYlRSUFExRkZkWGh3ZG1kdVRFaHFNV2RtWWswdlpRcG1NbmxOWm5Wa1pFNURlbkkyYzIxaldqWnFiRVJpUzJaNlltNXBZMlZGYTBVMk9WVnplWEJwU0ZwTGRrUnlVRlZ5YVdOSFJIUndObFp0UXpZdlRsTnhDbE4zUjBGMFpXbFFUalJOU0d4ak5UUTRVWEJuVEhGVWRsQlFlR0p6UW1NMWFtVllUVkpwY0RKdmFITm5OMVYyY1hoc05uTXpXRzVOUzNCeE5WcDBWMVlLWkVaTE1qVXdPWFEzUXpsd2QxSmFhMDlsV0RsemFESmFSalZ6WWxSbU5WVkZiRFJJT1ZoMGExRlNTMlZJVFhaV2FrYzRZV0Z2VVdvMmNuVnRTRVpLZWdwTlZVZEpVMDAwVEhWQlVqZFlaRzFxT1d0MVVtcG5ZWFp2Y0UxUmJuTXZUM2xGZFZCNVZqbEVUMWR6UVVKUk5HTm1aRU5rZURWS05qRnRjazUyV0RSa0NrVnZjbGRxS3pkbmVIRlRlaTlNVEdOb2N6aDZjVVF2VUc5c2FXOW1NbkJrU1ZsclIzTjBhakF6YjNWdmNIVjNkSGRUTjJoRU5GZ3ZjVTFWUTBGM1JVRUtRVkZMUTBGblFtbHBTSGhaWjJSbGN6UnhiR0pwV2pWbWJURXZNVlJSVTFCbmNqUlJObUpaUzFGV1N6ZE9jRzV0TkRGWVVVUjVVakF2Y0VKaFdsTTBad3BHU1dSVFlreFlNVTV6T1Zkc1FrVndNa2RXVVZJMVpXRlhSakppT0ROclVscGhNR05MVTNCVVZ5czViVGdyYldOQ1pIUlpPRXd5TldJdlFXNUpiRUl6Q21aVVJTOTJUbmRDZERacFZXOHJhWFprWlV0dGNtRjRaSFl2UXpKWGNuTXpaV2xRZEZaWlFYZDFlRFpJTlV0NVFTdFdXazVzVlRjMlNVeDVabUppYkVnS1REZGxWbVpJVG14dGR6WjBVRVZQVUhwVlZESTFiR2xzYlM5MlFWQlFSR3BMZG5kTVoxRkVVbWRaUmxGMFlXRmlaMEV2UXpBMFdsWldNMlZaWTFoWlRncE1jM0VyUkVaaGFWQjJSV3RzY1hCdWFqQllPV1JhYVUxdU56aEhNMFYyT1VONGJqRlBTazVDUmt4dVZUQmtVVzlyY1hobVMwMU9aazFXZW13dk9VMXNDblpLTDBKTGNYQkhjMjFES3pGb1MzYzVVbGRGU1ZsMVVpOXpNWEZDWkU5QlRHWXlORkE1Wnk4MFRuRm1SVTlKYTFvMWMzWkJhMDFLVVN0SlUwUjFhSG9LTXk5UlF6TllabmQ1UVhGeU9Xa3dheXMzTWpoclJFUndjMkpxYm13MmNYWm5NazFpYVdJNGJtbHdVVFFyUm5vNVFtSk1abWhRTUhZeFpGcGhSMmt3TkFwc1IwSmhZek5yTlhacWNWZzNNbkpJUTFKS1MyRnRjRk5NWlZaUWQxWkZTRlZ5YkhWdVlqTnRNMjFuU0ZsVkszaHhVMEYxU2k5UFlsQm5VRTR5YkUxTENqZFJaMUo1VUV0bk1FNW1XalZPYW04dmFVeDVORVZRUWxaTFdFWnBibHBhTmsxeWFGbHpWMFpuYVU0d00yTjRSeXR3WmxwTFUyWTRZMnhqWVRZNFMwWUtkMnM0SzFkeVMwMHJhbGxwVEdGNmExcHpjalIwWkc1dVluRnRMekZtVUZoeWNrTmljR3BxVDB4cFp6aHNVVTh4U1c5cGVreFJRWHBHUTNFNWVtUnFkUXBaY0hsRmFHZDFXblpCT1cwMmVqSklhVmwyWjA1eFdFdFhiM0V2YlRjeU0zcE9ZWEJyT0hJemRHeFdhemRGZDFwQlVVdERRVkZGUVRsTlZUYzFabVo1Q2xkbVMxZDBVRWhRYTNoQ1ozbE5ZMmRLYlhacGNFTkxSbkpXUkRORVMwZDBSVmx5UzFkUFkyYzVlbEV5ZVhOUU1GcFpUQzkzUlRKNlZUSXlMM2d5WnpnS2JIUldNR2hNVFZWVlJUTmxiR1Z5Tm1WSmJXRm5TRGRVZGxkYVEzbENOR1ZWYWs5eFNGRkJSWFJzUkdwaGExSTBhbWRoT0hOSU9XMXBhRTl0V25sTmN3b3lUVkUwVmtaT2RteENWelZqY0ROMWNVRjZPVXQyVFRSV2JVaDNjMDlTYms5bFNpdG1kRVl6VVV4dFVGbFFaVVJIYm00clYyRXpTVlpwZVhKVlZVNW9Dazl3UW5kR04xZ3JWVXhNT0Rac09XVmhkeXRyYW1oaGJHTlVla1p4ZFhBNWNXMUllV05aYUZrNVEzUlVVM0JHVHpWNk1WbENObkp2SzNZNFZsZzRRM2tLYjJObk1GTldSek5IUmt3MVZtZHlORkZPVEN0YU9VVllPRkF3YzBkTGRISXZWWEl6WkRGVlVVOXRiaXN5WjNoTVNuaG1NR3RET1V4M1VrMTJPQzh5T0FwRVUyWmtia0ZaUTI4eEwxTk1VVXREUVZGRlFUQTJUMkpKVFcxdlJVTllTVk14Ym1wcWExRlRUR2MyUWpoMWJsTTVUbmxNYVhCSE1FZDVaMnREVm5WbUNuZEdXbFEyT0hweVozWlhPRlpCTVRBNGIyeEZXVU5XUjJjelJYWnNSbVkwYVRWT1VuVkJUVmxXZUhCd1ptaHdPVnBUZEZocGQzVkxaMVpoVkdZdllXVUtaQ3RZWW5JeFIySmpkbEpZVmtkb1RuUllZamt2YWxSV2VuaEdVVzFOYXpCcGVtdzRkR2h1YTFOR0sxSkJNWEptTkU1MGJEQTFMM1ZhZEVSV1FXZFBPUXBVVDNSVVZubDJTMmd6UkdOUldUa3JRMGxtY1hGQ2MyVndiek4wYkVkNGFXSk5SbUp6Y0VSS1ZESlNPVlphU1ZsNE5VVmlVMUpCUTJFeE0zRkVWakpOQ204d1V6WldhRzlzU2pKTmEyaE5RM2gxU0RWR1RuZzNabXBDZVVaQlR6QmxlVFZtTW10dGJDOTBLMjk0WkZwMk0yMHpLMFZRY1dNcllrOUtlbXBZVlZJS1VGUnZiVllyVW5ReVltRm9aVWt4SzIxb1RqQlpPVXhyYlRodFN6RXJNVmxpWW1ndlZFZEZTQ3RSUzBOQlVVVkJNMVUzYW1KSVl6RmxXbmM0U2xKbmNBcHVVV1ZITm5GSldEaEpWa1pKZWtKUVpYcG5hMVo0YUhKUFpIZHhVR2d5YTBWaU56QTVNMjlpU2tKc1FXdHBablY0Y2xWS1dFRjBhMFpQUTJ0bVJVeExDbFZDTVVnM2JtSktlRzFvY2l0R1ozcHlRME5yY1hadFNWbHllSGg0T0hrelpHWjRSekJzVG1OVFRsaFJhbmxvZUd4MFFsUmxVbU14ZFdwM1dIcHBOblVLVTAwNGJtOUlhM0JUYlhGTlJVOVNaVUZOVTBjNFpteG9WamxZZDJ3d2RHVnlibVpaUzJzeFFVUmFWbFp2ZEVoamRrRlhhRlpHVlN0MVRYWldabUZ5UVFwaFZXbGpTVzVFWlVaeFJFeEpUMnhoTlhKeFV6UnZhMjR6UVVNMVV6SjFSRTlwYkdWSmNVdHNSemRET0ZGb2NVZHJhMHBIYldjdlNuTjZjMjlCTURkT0NqVkZSa3BVVlVkWU1tdDVjbFl3VTFob0x6TjNaVGxIY1ZSNFkxVkVjVWx5YWxKVkwwcDJiRTFxWldzM05UUXpUSGxoVGtkcVV6TlRaRWhoYVVOVGNuRUtRV0owYldSUlMwTkJVVUZCYW1wR1pVTkxiREJSVjFWb1RGZzRNMXBHTlZneVNtNXRkRlUxYTJKb0t5OXZWbkJFY0M5MFVVOTJiRlZYSzFkclprMXJlQXBqYzNWdWRrNUdUbmRoV2pSVGFVUkNVRFEzVFdGT05ubEllRlJpTUhOYVFteEZVWEZ1U1RoMmMwMXNkVUl2TWpWRlV6QmFOMDR2Um0xTmFsY3dVRkZFQ21aVWFYUmtRV2xuVEZWMlJsZDNXV3R2VUhOQ1N6WlpSSEEwWWpSUk1rVm9Mek0wTVRoQmMyVllMMVZKWkZOaUwwSm9Wa3BEUWtZM1NHcE1PWGsxVDJjS1pqRTVWVzVNWmt3NVpUbGlkVnBhTDBGWGFHRk9NVFpoZDI1amJrcE9TV2xpZWxWV1FVZHJiMUJQTVVKYU9WWmFlWE5zVDJRMmVHa3dWVGxpTkc0eWRRcGxUV2RxZDFFeU1sZHFOVGhSYjNnM2NHRmxSSFJTZFdKc1V6WkZaVGx3YkRsVGRHdEVOa00yZFRjM2VFZDVaRU41WlZaaWRtRTNjRFZxYTNKcFpVaDJDamRHWWtsS2FtSnhNa3B2TlcxT1oxbDNTa3R2ZEcxeVFTOTJZakpyUm5Gb1FXOUpRa0ZSUXpod2JVaERMemxaZHpSQ1lVUTVNak5DWTBKSmVYRkxjVUlLWXpCTVlsRmxRM05vZWxoMU9EY3hkMFZqVlZwcU5uaG1WVmhWT1RKUlVVNVZZMVJyY1d4MFFrSnlTV1o0WmpSSE56bDJlR3R2WVdSbGVDOVJZMDlKVEFwWlNYazJXbE5yVTBJM2NWcHhkME5wWTB0eWJ5OVJaV1Z0YmtjME5HSm1jMjFIWm5WSGR6VlZXbXhqYVRVMGJHTXhOMjFGYVZOc2NEaHpSRzkxTjFndkNtZFJjSEV6YW5BeFNHVktNVEFyZVRkNlNXUTJXVzFsVlVab1NreDFPRFY1VEhnMVRWcDZMMHRYTDJkc1JHTTBkMnAyVTAwclJVaHlNMlJyV1hsdFdYQUtWWEl2SzJJd1dYZExORE5YYVhFNFQwTlhibmcyZFhCcWRrMHZWMjVyVVZaa1FqRlFPVE5SVjJOUmRtUmtiSGhVY2xaRFNGUnBWVkJLZUhrek5XMXlUZ3B5YTNsUlowMHlaekpMY3pBMVdHZHRkRWxXYjNwTFpIVXJiRGQwZG5rNVJFUk5iMlpyVURZdlZIaDBWWEUyYmtGVFJFNHJOVkkxVlZkNmQzZ0tMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogc3NnOHJoY21lem4yNnQ4NmZ0c3V1d21jbzJmcmE3YzBwNW54b3R4NmpsbTl4YnIzbzd1dzdqcnF1MHI2NHM4cmd1dGc0Y2xjYW84MmtkNzV5andjYjlxcnRjNWQ4bmFnbWVraGZybDJnZWtoYzRvbnkxOWdmeGdycW00eWJiYngK\"\ - \n }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": + \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSUldseVNUUm1aRkpwU1dKNFVIVXZRa1p2VjNGRWVrRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxcWEzZFBWRVY0VFdwR1lVZEJPSGxOUkZWNlRVUlplVTlVUVRWTmFrVjVUVlp2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVSV0NsWmtjMmhXVEc1V1NXVXliRmxhVFZGRFlrSmljMll2VFhFd1MzQjVOSFZsYVVabVJXdGtRbXhMTURSblFXSlRVWEF5TlVsa1ZFeEhTR2hNVFZRd2QzUUtTbkpVV1d0bVZucE5lVzFUZGpkVFpIcE1hWHBaU2tWVlMzTXhNVUpPY0hWWFZEUXhSbEp0UzJGa1IzaG9ZbXhPVEdkMlZXRnRSbmh3ZWxwQlFXSTJNUXBoVFZNMVRTOVRaa2d6VEdNdk1qVkZZVlZsT1daRlJYRjZRVVJuYVZZNU0ySktlVTkzWmtselZXNUVkMWQ0YVV0MWJGbG1jMVJOYW5CRlJtaFNkalIzQ25oRGQwSnhjVzFJTTBsaU9EUnNaa2hrUVVJMVdTOWtObkpzV0VwU1MyUktXQzl2VGtkc1ZsaEZUV0pCZUZKM1VscE1kRXA2Y3k4NVZYRm9PWElyYWpJS1EzbEJORTlOT0RVM2RXSm9VbTVsYzNSVVVteDJaWGR4TVhaSlJIVk5TM0ZDT1hwa00waFNRbEIxTmxKSk1FSnJZbHBxUlcxaWJGWmtNM3BOYW1wUVF3cFlRelF5WkRZeGRuYzJPRXRSUldOMFNucG1iRVpxZUhsemFYWnpTR1ZoWkZkVVlsaHZWRGhQYm5kTlFqZG1XakpzY2xjMVJsRkdVMjV3V0ZOMVdFRmlDa2wwZW5oVGVqVldOVkZaZG5wblNrdHBjVVExTWxvM01XWmxabTVSTXpSb2VtaFJjakZqSzB4RVlVUjZTRXhwYVZCdGMweHNjMUp4Y1V3ME4zZFNTbFVLVG1KYUt6bFFkRTl1ZUhFNE4zbzJOMnRuU0VrclFrbEhWbnB1ZERFMk0zUlRlbW9yTm00MVZDOWxhVVZ6YjNGVlFtUlVaMDFUWm1oM2NtcEVWRTVMVVFvNGVGWTJSRXN4VlhCWUwzZHVSR1JEWXk5UFdUZzFURnBzWVU1R1ZFRXJTekJJVTBwS1UyaEJlV05CVG5KQmEwa3lTV1JHVjBkSFpUVTFNVVpqU0dSMUNqVmFSREp4VFUxT1pscFNUMGw1VmpSUVR6TXJMM2t3VWs1dVdqUmhhVU5WUldKa1IzbzRlVEZsZG5vd01VeFhTazlNWW5SMk0zQlhTWFJ5VEVoTVFqZ0tiVEZUYjNGUk1ESkpTVkZOWVRoYVNrMVlkMjFFYURBck9WaDJlbFppYXk4eFkybE9Za3hSY0daUlNVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWWVdYQkliVXRGUmxJNWJXOVRZMGd2Q210aWJVTTROR2RZYzBOemQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGSEszTnRWVVJrWkcxdVkweDVlSGxRV0UxQk1rSlRMMGR3TDFRS1JWRlJTMmx0VlhRNFZXWjBZVnBJV0RaSFIwSTNaWGxDVkZsVVQxRTVia2R1YkhSS09UWTBNbk5JTVVNeVV6bFFXbGxzVkU5cVdXTjRZMVpIVlVkNlJncHhWQzlIU2xKV2EwMU1ZVkJWYm05RmMwbFBOa04wVVZSTmFIRk1lbEpJTDFCNVZESlJNM0owY0Roak9FRTFXV3RUTkZaaVJGSnZjbWtyVldSSWNUQjVDbTAwUWpNdlRGQnFNSGhEUVU4dmVtMWFSblJhVkN0MGNrczBlbW8wV2twUFMyMTBabkZTWjFWcFoxVjBOVVZPYW1kRmJTczNkRnBIZUhWUWNESlFiVGdLVlVWdFYzaEtOVnB0YVVGUVJXWmpWQzg1WW14SVRHeHpibTFoYldSUGVrOUJkMUJ4ZVc1TGIwUnJiWHBTYnpNeFZ6QkROVzFWUXpWQkx6QldjR1ZETkFwTFNWQTJWRVZTT0d4WVprbHdaU3M0T1daYVFqSXZlSE13VlZsdE5EWjFlbkptVUVGUGJEbHlabmhTYWtKMGJuZDRTbUkzWkZsWU0xUnZaVEZXYmt0bENuQklUbTEwTjBGa1ozWXlSemxKUm5SdlNHOXJZVFYzVFhnM1NUWk1NM2h0YkVWamRtbFpkV3BzVjFvNU5IQlJlRkpWVmtsNGFWVktNMjUyTlRKeWJUQUtMM0U1VkdoQksyTjRhVFV5YmtwcFJtWm5VVFkwY3l0b2RqVlJka1JaZUZGNVVIaGtTMWRVUzNvMmQzTm1XVUZxZFRKamFYVmlXbUpDZG5aVFNteDRhd3BZUVU1dVNYTklRMmhFTUhadmVrUnhkRWw1WW05NFFuWkhlbFZoVkV0UlQwbG5NV28zUlRCaFRWVTNWemt4VlN0dVozVm5ObVF2YW14S0wwUndaakZ5Q21sbFZ6RjBVbVJ4ZFdwS1dtZGllR1J1WVhoVGEwdFdUbFpaWTJwUVMwODRVVll6WWtZM2FGSnVaRlJMZDB3MFlUVnBZekY0Um10T1FrZ3dTM1V3VkVZS1YzWTRZVVZTWTJKb1Z6bDFabTFwUmpOU2FHdG5TRlJYZGpKV1ZIVnRUSEJGTWxsRFZXc3pOVEpwVlhCWkwySXZVemcxUjBSVlkzWkdjbVZxVVZoelV3cDNTME51ZFhFeVdrVnZWV0pFTURZckNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc3Rlc3QtY2xpdGVzdGtrM2Y2b2VubS03OWE3MzktajdocjY4d2MuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3RncWthY2IKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3RncWthY2IKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3RrazNmNm9lbm1nX2NsaWFrc3Rlc3RncWthY2IKICBuYW1lOiBjbGlha3N0ZXN0Z3FrYWNiCmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdGdxa2FjYgpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3RrazNmNm9lbm1nX2NsaWFrc3Rlc3RncWthY2IKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJYWtORFFYZGhaMEYzU1VKQlowbFNRVW94VDNwbWNrMDFZWGRFTXpObGVFYzVZbTg1Um1OM1JGRlpTa3R2V2tsb2RtTk9RVkZGVEVKUlFYY0tSRlJGVEUxQmEwZEJNVlZGUVhoTlExa3lSWGRJYUdOT1RXcE5kMDVxU1RWTlJHdDRUVlJKZUZkb1kwNU5hbFYzVG1wSk5VMUVhM2xOVkVsNFYycEJkd3BOVW1OM1JsRlpSRlpSVVV0RmR6VjZaVmhPTUZwWE1EWmlWMFo2WkVkV2VXTjZSVlpOUWsxSFFURlZSVUY0VFUxaVYwWjZaRWRXZVZreWVIQmFWelV3Q2sxSlNVTkpha0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRkZSa0ZCVDBOQlp6aEJUVWxKUTBOblMwTkJaMFZCZFhGUlpEaHJTVFZtYTBkSVJVVjJObmx4V1RVS2N6QlhUR2t3UlZCbWVreHBZMFV5TlRkdmFrRXJVWGxIWlRoa2JHOXllRVpuU0U1YVprUktNM1p5VHk5YVZ6bHhOSFZYWWtaa1UzcElSVTVRVDFGTFp3cGtLMFpFTDFkRFJURTRTbmtyT1RFM1MwWk1jM1ZyWmxFeFVsVlphMFo1UVM5WllYUTBZbEJDTkhoVlptSk5SWEpIZW1jclozcHlRVFUyVnl0dFJGSklDbWxzZFhsWWFXdDRaWFJrZVZnemRGaERNVlU1ZUVsRmIwWXpPR3RaYzFVMWFtSjNNamRVTms5T2NVSkdhMGxoT0dSSlJVWk1Na2R4SzJzMksxZFFlbEVLVDBGUU5YVjRNREJtUTFKblJXdzBTbEZSWkdWbGRsZHFiV28zYkdwUFdEbFBkbFZ1T0Zwd2FqTjJOVEpYU2poeFpqQnplbFFyYWpCbGRXZDRXVzV3VXdvd1QxSlNTWFZHZVU1YVRFTnlTMGtyUkVWRGF6TnZObXhJTXpOSWRTdGtXbXRQWVhoNWVEaDFWR3B1SzBsd2JFZFFTVkpvZG1WMlVYbFVUamR2TkdGS0NrY3liSHA1YWxaamFUQk1WRVIxYWtsbmEwTnBXakJQVFROb1MydG1TemxRUjJsWE1Vb3dXVEJHUmpWeFFuTlllWGxHT1Zwd1ZGTndZVGRWU0c1c1dVd0taSHBhWWtGMlJUaDJlVFpaTURSdGJEQktNSEJVVGtzNGMwaERiVmhHYzFJM2VIRjBkRkEzT1c5NkwzTXdPVnBUU201MFdHczBTakpLTW1aSE4yTlJWZ3BGWVZCSVlrTXlXVVIxVjFJd2EwdFlhVWMyWWtKeVNqTmlOR052YTJsV1kweGhjVVpDWTBKM00wOUNhRGxHYzJSWlZWRlVPRmR0YWpOak1IaE9NSGRzQ2xOT1psSlZkMDU1U1VwcmNWSjFTWHAyUjAxNWIxcGliM1ZQVmpkcFlWVnpTMHMyVVhBcldtdzNMMHR5WlVvMFRqQk9ZMnAzYWtsQlQxVkJiV2h0TTJRS1FXVlFielZHY3pjeVNuRTJZV3A0YW1zNWRuSnNNRVkyWkd0blRYaFdZMFU1VEVvNE9WcHBOVWt6ZFRCUmJESnlaME4yVnpOTmQzSldSVXh1UVhNd2R3cHFkbkJDWkhSM1JGazJWRlUwTDBRNFdFaHdabkJ2YzBOQmQwVkJRV0ZPVjAxR1VYZEVaMWxFVmxJd1VFRlJTQzlDUVZGRVFXZFhaMDFDVFVkQk1WVmtDa3BSVVUxTlFXOUhRME56UjBGUlZVWkNkMDFEVFVGM1IwRXhWV1JGZDBWQ0wzZFJRMDFCUVhkSWQxbEVWbEl3YWtKQ1ozZEdiMEZWV0Zsd1NHMUxSVVlLVWpsdGIxTmpTQzlyWW0xRE9EUm5XSE5EYzNkRVVWbEtTMjlhU1doMlkwNUJVVVZNUWxGQlJHZG5TVUpCU3k5dWFua3hUSFZ3VjBoU1NsazNNRFZqZHdwcFVrUnJjRmR2TWxkd2FWUm9PWE5xVmxoc1pITmtha1o0WldOellVRlJZalY0WmxnNVJqbFVNRGM0U0hWS1FtZGpSVlo0ZWpOTWRXVjJVbG9yYzNnMUNrbzViV0ZYVkdSWmFYaENOSFJqVmxOa2FVcFNPVVJLTkhSd1FuVlZNeTlSUlV0VFlXVmtTRGhYWjFkS05rWmFaV05WYjAxalVtTnpSVWxETUVWSlIyMEtVMVEzVVVnNWNFSlBURTk0ZFU4MlRGSmlWbmhyTkhvNE1GWmpXamczYTJJd05WVm5WVTFwVWpOek1YY3lSR295YlVSbVJVWTVOR0Z4TlhSME4zWmxZd3AyT1ZWRllrOU9SemRTYUdsWk5HWnFiMlJ0T1hKU1YxaG1RemxoUW5oQlNrZHFabE13TkZkaVowTnZPV3hJVGtwR2EwNXFRMWN5ZFVKamFsQlZiM1JMQ2psMVEwaDBTbVpUVEdKTmR6UjFWVTFHZDFneFUzcE1NR0U0ZWpKMWRrSk5UR2hQVUdscFNVOUtjekpYT1daSFZ6Wk1LekZ2UjNOSk5URXJWbkpUWW1NS2FUVnVWa2swVjFoUWMzcHFNamxDTkZWQ2FsVjVUVkpUTms5bWVGbDRiMjl4ZGpVellVeFRWWGxHTjJwbWJYQldORmh6T0dwTWNVOTJhbk5JYlhwT1F3cExSREpIWmk5a1QzWjBVWEp5Y1RadFNtaDNhUzlEVTJOUFVtdEJTMHRXUkZFdk5GZHRhbkppU1Rkc2IxcHRWRmxaU0c5NGJFWldPV2hOYm1aa1ZFRlpDbkY1YnpSQ1UzUk5UbXBIWW5KcFV6Vk1ZVEptTlcxTUsxRXZVWGMzYzNGVGRHRXJNakJLVkZGWFFVdFlTakZ5YlhOcFNETnVPV2g0VkVoS01WQkZPV29LTkdaMU9EZzFkRkJrZDA1YWRrb3hibUpGYXpGVFRFRlRUMmgyUkZCdE5XRmtNWGRsY1ZBeldrNU1hakpHUW01c2IyOHdNblJ5THk5UlQzcGlZMkV5S3dwVmVsRkZlbFJMZEZCNlMzTmlUbkJSTVhSeFZsSkZTVzFTU21sbmEwNURibFUySzNkMVRrbFViREZzYmpSR1J6UlNSSFpqUVV0T015OHJURVJaUmtkeUNuQTBVVzVOTW1SM1ExVmtaMWwyTVRWTFJFNXZPVGxSS3dvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMUZKUWtGQlMwTkJaMFZCZFhGUlpEaHJTVFZtYTBkSVJVVjJObmx4V1RWek1GZE1hVEJGVUdaNlRHbGpSVEkxTjI5cVFTdFJlVWRsT0dSc0NtOXllRVpuU0U1YVprUktNM1p5VHk5YVZ6bHhOSFZYWWtaa1UzcElSVTVRVDFGTFoyUXJSa1F2VjBORk1UaEtlU3M1TVRkTFJreHpkV3RtVVRGU1ZWa0thMFo1UVM5WllYUTBZbEJDTkhoVlptSk5SWEpIZW1jclozcHlRVFUyVnl0dFJGSklhV3gxZVZocGEzaGxkR1I1V0ROMFdFTXhWVGw0U1VWdlJqTTRhd3BaYzFVMWFtSjNNamRVTms5T2NVSkdhMGxoT0dSSlJVWk1Na2R4SzJzMksxZFFlbEZQUVZBMWRYZ3dNR1pEVW1kRmJEUktVVkZrWldWMlYycHRhamRzQ21wUFdEbFBkbFZ1T0Zwd2FqTjJOVEpYU2poeFpqQnplbFFyYWpCbGRXZDRXVzV3VXpCUFVsSkpkVVo1VGxwTVEzSkxTU3RFUlVOck0yODJiRWd6TTBnS2RTdGtXbXRQWVhoNWVEaDFWR3B1SzBsd2JFZFFTVkpvZG1WMlVYbFVUamR2TkdGS1J6SnNlbmxxVm1OcE1FeFVSSFZxU1dkclEybGFNRTlOTTJoTGF3cG1TemxRUjJsWE1Vb3dXVEJHUmpWeFFuTlllWGxHT1Zwd1ZGTndZVGRWU0c1c1dVeGtlbHBpUVhaRk9IWjVObGt3Tkcxc01Fb3djRlJPU3poelNFTnRDbGhHYzFJM2VIRjBkRkEzT1c5NkwzTXdPVnBUU201MFdHczBTakpLTW1aSE4yTlJWa1ZoVUVoaVF6SlpSSFZYVWpCclMxaHBSelppUW5KS00ySTBZMjhLYTJsV1kweGhjVVpDWTBKM00wOUNhRGxHYzJSWlZWRlVPRmR0YWpOak1IaE9NSGRzVTA1bVVsVjNUbmxKU210eFVuVkplblpIVFhsdldtSnZkVTlXTndwcFlWVnpTMHMyVVhBcldtdzNMMHR5WlVvMFRqQk9ZMnAzYWtsQlQxVkJiV2h0TTJSQlpWQnZOVVp6TnpKS2NUWmhhbmhxYXpsMmNtd3dSalprYTJkTkNuaFdZMFU1VEVvNE9WcHBOVWt6ZFRCUmJESnlaME4yVnpOTmQzSldSVXh1UVhNd2QycDJjRUprZEhkRVdUWlVWVFF2UkRoWVNIQm1jRzl6UTBGM1JVRUtRVkZMUTBGblJVRnNhSEJXV25wa2VHazJVR2h1ZFRaelVsQjVTVzVVUVV0UFZGWmhOVVEyYkU1Q1MyVjJWVTVKYURCT1YybFJabXhMYjNKdFJIQmpNZ3BYV21ONFJFeE1PRGd2VVRKaU1FdG1hRzFCYjNGRmRFNHhTbXBVVHpOYU1IVnljemhQTVZoTlMyUnRTRXRtWmk5SlVsZFBNREJCUkVsR056QTRia014Q2s5VVltSmpUMnBWTDBJNGFYSjFTaXRFUVZwa2FrTXJWbUZGTVhKV09DOUdWazF6YlZkNFoxbHBUV1p0VTJ4M1JYTkNkamRvVjBsblptcHpSblpaUzI4S1dHZGpXVlZ6UWpGRlpsZzJZa2QzZWtsc1kxaE1abGhWVTJwalVYTnRkMjlHVWpnMGVtSndibVJZTkdoVVUxcEVRM1p4ZHpFclZreHphRkp3YnpGbU1RcENkVGRYT0ZWdFVFaHNhbkl3WWtwSFJYcGtWVWdyUkV4cWRIRXpOMlkwYUdKeU9FaHVhVkp2Tkc1UlpFZE1aVWx2VDBSNE1XSkVVSGxOVVZsSFZuZG1DbXQ1SzBKcGVrcERkVGh4ZGxoUk5VOXRXRXRyTWtwMlMwUk5jWFpUYm1aYVppOURLMmRoUW5obWQybFlaamR5WjJveU0wSllha2d2Y0VkQ1lTdEpaWFFLV21Oc2RFNXJSVFpQY0dadmNuZHZjRGsyWVRBdldGSnNiV2xuUTNObGVWUkpUVWRxTldOU2MwMVJTRlkyVDNGMVExUnRLeXROWms1dlIwVlFhRUZMTHdwcE9GZFJSMEpXYW0wM1FWVjBUVVJCT0RWdFNWSTBla3cyTlV0bE5tdEJia2hHU1d4V1ozUlFXSGt6Y2tweFdXRklSbXRhV1RRM1pVVjZNalYyZEZKdENubEtaemRFVDFGcWNWZDVlRWN2Vld0aU1uVkhOVGh2V0dKVWVHa3JkMVprYVdoR2NHOUtWemhyWlM5aFExTnBPVnBJZVhkTFoxSlhVa2R4Y1UweVpIVUtjV1p5V2pkVVpUbDVRbTkwUTBkdE4yRkpUemN5YUVOQ1lrbzFPV3hrYUV0UFRHVnpiakJvY2k5V0szTTBha04xTWt0Wk9UQnBjRGxCU0dWcGRsWklZd3B0TVVGbU1XNUZSMGxOUVRWa2NXWjZVV2xIUVM5aVQzSTRXRXRMTDI5U1lYWjJUMnR5VmpCQ04weFdURXBKTDIwMVprVkRaMmRGUWtGT2FVUk5lbVExQ21WRWExbGtVV2N3T0hsSFNrTm1RbTR5V0cxb1p6UkNXQzlQTW10RWFXWjBZbXR6WTJOVlpGRkRXR1JMVlRoV2JYaHBjRmwzYVc5MFpIUnpNVGR4UjFjS2RDOUNZbVZFSzJsdmNsRlVZa0ZDU21wSmQzVjRXRlp5TVZkMWEweG5VWFZSZWpOS01FYzFNVEZOZG5oUFJWaEtVVE5wWTJ0Sk5FWnNWRnBtVkZKakt3cFVSR0kwU21KTk5GVkVObXRqZGpaR05WVktTazFMVm1kNk5tbFNXRGxQVUVWcVN6Sm5lbTFTZDB0MU9VMHZZWE5QVHpaNk56UXJRMUZDWkVFMVJuVnZDamROU0hoSlYwZGtOa3hYWlRkWVNGQkVOell6Y2pneVJtMWtZMlJhZG1oSGFIVkRSR05qSzNOUVJYRXpWSEJ3YkV0UmVFYzRja3h3VkRFeVNVMVVNRTBLUjJzNU4xaHBlalJqUTNOQ2VpOVJPWHBaZVdFeE9UQnVObkJWYkU1c2NIZFNkVEJoZVZFMVdUUnVkVVJZYm05QmFWQklRbGxZVlhBdlVrRlpjRGtyYkFwMmRXOWFSV2xJYkc5R1QxY3lUazFEWjJkRlFrRk9lWFZRYlVRd1RWcElVbFpoV214aVQwMW9PV05SYzJVNFUzTklha3gyZVZKR1VsVXdjVFZDYUhSUENraEJSU3QxZEZWSk5YbEdVMDQzUVhOdVIyb3lPRlUyTHpKcFpIZFdUM3BTUVRKNlZrODJTVEE1TDFWTWNHaEZjbGN6YTBSRVpFOVJaRzlwUkhwU2QxVUtZVWRhVUV4NGVFdHFjelpGY21KU09GQk5hSFpUY2tsbmEyWkVSR1l3TDA4Mk1UWjNUVVF4ZUZWVGExTm5kV3BOY1ZWeU1VdFlOR0YxTlZwM1MxTklad3BhVkRaQlNVdGxVbW8xWjA0eU9IZG5PRE01VGtaUUx5dHJXVVpDY1M5TVpFbzVOMWhWZGtZM1FtbE1abGd6VEVKNFRIRnhZVTFaWlhSalNraFdZMEpSQ25Nd1FYWnJZamxHTW1abVkxZHJVVkowZW1SaGRFTTJTV05rTlhwYVlrcExkWEpLWTJWblluUktTa1IyTWpSNlNFaEdSM1pYTDJwc1YxTjVSbXBYYUVzS1JGaHZZM1ZSZG14a2FTOUViaTlTTkhSMFZqVXllbmRuU1hsSVZFOVJRakl2UzNGYVVGVTBTbUZIYTBOblowVkJWR2hMUWxaWEsyNTFiVGR1VWtvMVZBcFVZbEp6YzFKUVFtZ3JjVVl3VEVod2MyOWxSakI2THpac1dITmpTR1Z5ZFdaMVZpdGlOa0YyZEZCV2MycHRhakpuZGxabWNEQlZRamQwYjAwNGJWWnBDalZwZUdGMFdDOVFMMjU1WmtZd2FHSklVVmRITUd4elkxSkNkVkl6VlUxQlEwMXdhVEJGWkZNelVuTlllRkkyWlZBMGVqazNNMDh6V2pseWVsQlVNRUlLVFhCV05rbGxNa2RVWmtNeVlXVjNUemxYYmpKa1FVMVVVRTVaZWxjek9FUlRkWEJsTkc5UldIY3pkQ3N4ZGtSUmVUVklTM2h2UzFSWVVuWnRVRm93UkFwWVVIRkRRa3BtTVhoWUwxaEdVRlZ2UmtSdE1UazNSREl3WkRaVlJ6VTJkak4zUm1Gb2NrbFVjWGx0Y1U5dWJVYzVUMDB6V0doM1VFbE1iMHh4TkhWeENscDBaWGRrVWtsVlNFczVOVkl6V1hSVlRIRnhZblJKZEhkVVNETmlaMVF2U21seGJ6RnlWalp5UkVwbVVXcENlRFJIZDBSdVRraFliR1pMVlZvd1V6SUtSekkwTlc5UlMwTkJVVVZCYVRrMlkyaDBUQzluUVRaUlNFNUVORkJPV0ZCallrWkpSMUpYUjFwdU5UUnJSazVrVjFkVlFVczVjRTFCWWxsRGMxQm1aQXBzY3poSWIwNUJSbkZ5YlhCd1IwbFNTVk5KWm10aFNFRmlRVU5UZEZoTGFFaHNNWFIxYTBGcE1FRmFVbWQ1UW5wSlNEazFVbmw2WjBwemFGWmpZbU5JQ2pSSWJGUndOblFyTUhkT1J6aHlUMWRFUjFjNGExcGllWE0yWXpCVVFqRkJaR0Z1V0RoNmJWVnhNeTlNT1hKT01qVm9hbU15VXpOcGRtTlNlamRuUm1rS1dUbDFWWHByUzNOVmNXeEhaME5MV0d0eVpGQkNjbGRLYVdOSmMxQm5XR1JyT0dwRlRraFlMeTlPWmpWYVIydGxhSEUyZWl0U2NYUkphV1ZGVm5ocmN3b3hPVFpCUkRscGVYRmFSVUl4ZFZOQlZqWkJTV1YzVEVkYWFtOWhNV0l3UldscFEyTndVazl0VEZabVlVVldNRGhOWlROTUwwdG1RemwyZVhob1NYSkNDbG92UTNwMGVqSjZiRWxoVW05QlFUSm9SQzlsVW5nNGFtTm1WME5XTmpJMk1GRkxRMEZSUVRkRlNWWm9aR3c1YzBrelMxb3ZWVFUzTUdablRHRnRWVU1LT0V4Q1l6ZHhRMmxuZDJaRk1GbFdaQzlhWlZoMFFuRkhlbU5YTkVOcVdqUXhXWEJGZVU5UllXTnVabXh3ZG1WaUt6QXhNMU01UmtOV1VVZHlaVzB3VlFwbmVXVTJlRlYxWlc5cGJ6SmtNRGs1YmtwVU1tcDRkRlpNWkd4c1VtVnpjMmR4WjNsMU9IUjNaMHhCZGtWRFQwWTRhVm8xU0U1aGFYWnFObWxRVUcxNENsQmlVVU5WVDNsdGRUbG1iRnBZV1ZWMVIyd3JjR3BNUkdOMll6QnpVVXRSUVc1TGFIUlZjbWx1Y0VGU05IQm9PRTlwVURGcFVXOVhXVGx4WW13eFV6Y0thblUyY1RWUGQwcFpSVWxKTWtKUFJEaDBZMWM0WTJRM1ZpdGhSVkJZWjFReVduVlBjVlVyVERSNVIwWXlRbmcxZG04d1NVNHJOMkY2VUROTWIwWlZiQXBHUW5KdWVUTnpTVE5oZERkSmVFeEZTMFpOY1cxc09XNDRObEJxVW5sWmNEUk1hM1puV0dsSVdrOXVXWE5rWjI1UFpXTm9UV0l6Y20xM01uUUtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogemwxZWo4OGEzM3hiMGt2aTN2ZTJkamxyY2lvb2VpYzExdjl1bDNwOHlwdDhxZ3Z3NjkxemgxMDV1a3k1NGlnMWo0N3VsOXNlNGQ3a2NlNnJ2ZTY1eTF5OXdva2lvdXk4ZGFpdjlkMTBsenFmOGY5N2kybzMyNTF3ajZkOGF2dTAK\"\n + \ }\n ]\n }" headers: cache-control: - no-cache @@ -676,7 +1142,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 20:37:23 GMT + - Thu, 29 Jun 2023 09:26:02 GMT expires: - '-1' pragma: @@ -712,15 +1178,15 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ - \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSVTIxRlpFRjZTMGxPZFhwRVZFeGtOQzhyVTNkTGVrRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxVVVYaFBWRkV4VGxSQ1lVZEJPSGxOUkZWNlRVUlplRTVFUlRWT1ZGVXhUVVp2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVOd0NrcGliM2szYWpKS2VEQXlRVlU0YjJSUEwyRmpkM1pPYUhGVUswd3ZWMk5aZHpSQmRVRXhhMnRXU0VSRmFqZzBRVkJzV0RselUzZFdjV3hFWWtSd1R6WUthMjlGUlc1elNsRXhjMlY1TlU1cVpFaG1iWEkxVDB0d09YQnJUSGM1UW5Fd05WVXJRMnN3WkRsSGVIQmxSMUZTVERKUGVXNUJZM2x6VnpsellUTjBjd3AxWjNGSlNEVkpaV1F6V1hZeFpVVjFkVTlCU1hoNE5rUnBTM0o2YVdOdlJGWktZa1JWUW5SS05YQTJkWEF3WXk5SE5ucGlUa2hNZFdOeVZGTlNTVEZVQ21KWlpuWXZRWFJqVFhWRE16RXphRkZ0WWxaNVRYRnNUV1JNTm14d1FrMWhLMWcwVFU5dVpqVkphME4yUTBScFVtbFBXWEptVWtSRldXVm9OVWRUWVUwS2F5dFBhV3BPUWlzNFNsRTJXRUZLVUdWQ1IwWlpUREJTWkRGT1psRlFWa2RFY2xFMVVGTlROM05VY1UxaFozUkdUbU5CZUV4VmEzSTRUa3h0V1hvMGJBcHdjVFJTUkhCNGVUSXlUWFkxV1RORVRXVXJPRnBYTnpGRFNtVmxhUzkyUTNZelVTc3lTVEZOYVRSUFIxTm5jRkJHVVhCWFlreDFTMU5aTmpObFFrcHVDazFsYURsUlNrRTNOMWRCVlM5R1JGSXlMMUpPYkd4TFJ6ZE9SakU0U0RsWGFISTVSV1JzUW1KQlUybzRjM1JWVEVwVldHSmlOWFU1WlZoVE1tSnBjM29LYTNVM2FVTlNZelY2UTNkTWVuUTRaWFZwUlRCNFJqQk9lVE5YUm1KUWVtVkpMMFkwUms5U1VIRnJlbFl5TjJVNGJVVnlXazV3VjNSSGF6ZEtTemh0Y3dvM01UUlNlWFpqVjJkRk1qWkdVVlprZEVaNlVIbExUbmhOVm5ad2FqSlZaakpHVkhwa09FWmxTMDFGUTFOa2VsTnVjbXh3ZFRCWWJubGxRM1pQWVRoWENsbEtla3hYVFhCNE5HbG1jMVV5UjJ4YVdVMUllbkZXZDBacWVHbFJOa05uV25WdVZrNHlibWx4YTNKVWJYZG9NVEZaV2pneGR6bEVOR1JPZUVkNE5GWUtjMDk0VTBVNWVUazNXRFJXTWxORmJuSllObUppZWxJNVJUUmlRMWhDTDFFM05rYzJlbWsxUm5OUlNVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWRGNtSXljRFp4WTFOMWIxRkZWRXBIQ2t0TmJYRnlOWFJZU0ZCVmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGRk9WRktWVGxpUVRsWFF6WlFjalJyZDNkQ1NVMW5aalJSTjJJS1IyTndhbFEwV1hoMFNXOW9lWEZoUm1GaGRTdG5ObTlwYnpFMVpqUkRlVTVrWTJwWlQyMXVVRTFzYm1keE1tRTBlRGxaVERneFNWRlpSbnBEWWpGUmJ3cG9iSGxNTVZoR2VrMXFlWFIxYmxoU1JXdDVPV1p0UmxoVUwyMWhOV0Z1TDFWYU9VczNSWFpuZEN0WFJIWlFTRlJqTDBGSFRERllUSEpQZDA1SVkzWjNDbXBFWmpoc1lqWlVOblo2U1ZaYUwzZGtkVXRoTlhwdVkyTnlWMUY1TkRkUlNIbG1Xak55U0ZORlkyUnhOVWhvWjJObU1rWkVVbFI0VDAxUVNFcGlibFVLZUZZMFpGTk1PVFUzTUc1d1dXRkZNVGhzT0ZGTWVFNURia3B6YWxoNFZUZERZWE5wVlZCMGNtZEhaVzVOYlU4MGVXRmhVbXNyV2xFdmIwbDRjbVV2U2dwMU1VSmpSalExTm5Cc2NuTkZOM00zVVZwWWIxUTVSeXQwYkcxcFRrTlRha05sVG5KcWFGWTViMUJsTURsT1ZFeG5TSGt4UVU1WFpEQTJUbmxKVEZBekNrTldSRXhpU21WUVdWZEhUSFZqTmtaM2RHMXlTR3A2U0VkS1ozazVZbHAxTVhVM1YwbFFWV0ZyYzJoa2VrNXVPV0ZtWVVGeFJVOXNZemc0VGpCclkxa0tWRE5oYUVGVFQzZG1PVUZRUVc5S09WTjRhVlpqVkN0emQyVmFOMFpEU0ZJMmNXdEdiR1ZqYjAxaVVVUnNZVzkyU1ZSUGJWcDRRMjF5Y0dGQmFVSlRad3BIZG1nMWJXaEtjbTl0VTFKdFJUQklka05GVmxsUFEwdHBiakZoUkU5NVZHczRSWFpQUjNNeEx5OHpjRTlrTWpCSFprUm9UMFZSVUdGck1IZFBRM2xyQ25SSFZYSlFTVWRKTW1KRWRWZzVRMUpTVFZwUmJIbG5NMU5CZVRNMVJYaGtNWFZzWlRseVVtdEJNRXBFYW14VVZsQkNiV1J4ZVVkRlpGbHNWVzh2YzJjS1MyeE5ibUl4VEVWSWVDdHJMek0xYkU5YVpHNXNWa0V6WVd0TFVVUTRWRmxPYWtoTVpXMUpXbWN5U0hjeE0wUkZSa3hYUkV0dkwzTlpVVGxHVGs0MVdncDRiVzFyWkVrMFVEaDFOMkZyZVRSNkNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc3Rlc3QtY2xpdGVzdHNydGFqM2Rudy04ZWNhZGYtbmk5ZXZnYXQuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3RmcDVnbTUKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3RmcDVnbTUKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3RzcnRhajNkbndzX2NsaWFrc3Rlc3RmcDVnbTUKICBuYW1lOiBjbGlha3N0ZXN0ZnA1Z201CmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdGZwNWdtNQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3RzcnRhajNkbndzX2NsaWFrc3Rlc3RmcDVnbTUKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJVkVORFFYZFhaMEYzU1VKQlowbFJWbWRSVDI1d2EyOTZSRlpNUmpWV1NTOUJXV05CYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZ6UmtGRVFVNEtUVkZ6ZDBOUldVUldVVkZFUlhkS2FsbFVRV1ZHZHpCNVRYcEJNazFVVVhoUFZGRXhUbFJDWVVaM01IbE9WRUV5VFZSUmVFOVVWVEZPVkVKaFRVUkJlQXBHZWtGV1FtZE9Wa0pCYjFSRWJrNDFZek5TYkdKVWNIUlpXRTR3V2xoS2VrMVNWWGRGZDFsRVZsRlJSRVYzZUhSWldFNHdXbGhLYW1KSGJHeGlibEYzQ21kblNXbE5RVEJIUTFOeFIxTkpZak5FVVVWQ1FWRlZRVUUwU1VORWQwRjNaMmRKUzBGdlNVTkJVVVJMVjNZMVIyTTBWRzFQUlZSSldXZE9TVm8zVTNBS2FEWTRZMGR2ZVRCU1VuZFVjMjVPWTJwYU1VZDNOMWsxWVdSNkswdGpTSGs0T0N0SFZqZHNNa3h0WTFaT01uVTNUM1ZzTVVWblltWlVla1psUWtzNE9BcG9ka0o0ZEdVeWNFSjFjeXRRVEhWek1uQmllRlJLT0d3MVducGtXVGs0VWpkTk4yRTRORFZDVFVOdFZFdzJUWEo2WlhVdlZFaE9PV1EzWVhObFp6QnJDbVYwYVhSamNWZENlSEozVjFNM2FuRndObTlOWmpCSFZWbzJOVGw1U25OT1VGUnlhbkJHYVdFNVJrOTZNemxHV1d4ck4wYzVRM0JxTUdsNWFWb3hXRWNLUkdRNFJHNHZlRlZpY2pBeVdVVnRVVmswYUVKbk0xZHZibXBTVUdvMmNXeEJXbVZxV0dwWWFVSmhPV2xEY3poUWVWTTVjR2hSVTI5dWRFbG9jMlV3ZGdwWk5DdERXbXB0YVVWUFNGcHlOekJVYVdaNUwwTXdWa015VmtwdEsybEVjVE5DU1VSc05VTlRXaXN6Y0hoTFNHTTBjeTlqU0RaQ2VtTnBjbXc1Y1VGcENsTkVjWFZYWW1jMFNrRlROMGR0SzBOamMyVlFWMEk1YzNvNU5TOWlTWGdyTlRFd01FeFBkbkY1V25odWNVOVZUbk53TDA1MVpVcDRORk5SVkhJeFUzb0tTMjFKWkd0eE9FOXpPVk4xU25kWlR6SnVjRmRaVEhJNE1VdHdURUZaUXpFMlNUZ3paM2RsVm5wdWFuaERiVUYxY0U4NE9DOUdkWGRHZW0xT05XTjRSd3BMYm1GcFIzbEVkRk1yY2tkWWNYcGtaV04zY1cxeWJHMHhXbFl3VlhKaWJsUXlNM05NTW01Q1JtMVJOVFZtTW5sSVdtdFliWGgwVGk5c1VWTllaMll4Q21VeVVrSkZjRFJqZVRsWFRXSjRjSEZvUTFCeGRUWlpZMVZ1VFhoUldXaEplbWQxTkVKSWRHUXlZVkF5VXpWSFQwSnhLMmxyZUVObGVqZzNTVk0wTDBvS1dEQk5OV0YzUVVaRWFIZzVNRW96U0d0dWNsZGhjekk1Wm1nd1UybDBZVkEzZFVSSGNFeFFPSE4wZVVkNmVrOXZVRGdyYVZkTGFDOWhiREJvYVZGaGVRb3lVRlJsYVRacGJUZERNMEpNZFVWUWFHWXJiM2hSU1VSQlVVRkNiekZaZDFaRVFVOUNaMDVXU0ZFNFFrRm1PRVZDUVUxRFFtRkJkMFYzV1VSV1VqQnNDa0pCZDNkRFoxbEpTM2RaUWtKUlZVaEJkMGwzUkVGWlJGWlNNRlJCVVVndlFrRkpkMEZFUVdaQ1owNVdTRk5OUlVkRVFWZG5RbEZMZEhaaGJuRndlRXNLTm1oQlVrMXJXVzk1WVhGMmJURmpZemxVUVU1Q1oydHhhR3RwUnpsM01FSkJVWE5HUVVGUFEwRm5SVUZvWldsSFkzTkRkV1prU0RSV2EweHFXRTFTZUFwc2JteEZlbUZ2VGpjdmRGQmpTalZHTkRSR1ZHTmFNRGR5WVcxblZreHdUVXBZT0dwVGNESXlVbkZhTmpVeGFGaEdja0l4U1RaTVJISnVXbVZwVmtGRkNqZDFiVEo1UTBKdGEyaGxkV3RHUjNKelJYcFFRVGRxV1hFcmJtODNjM2RLU0ZodlpXSk5VemhYUVdoNlFVWlNjbVZGYWtwNk1YUXlhbXRPY25GQ1RtVUtjVkJPVkNzeFZsWkpUa052VVRKdGJEUkhabk5QYkRkbVIyMTJZbWRpTm5aVmVFcFhObk5MY1hsWk5uaEZUQzlwYXk5c2EzTmpSRTkzTTFCcGNsTmpXQXB6ZHpadFdVNUxha3RtTkRkbFNFSlNUaTg0Y205eFZVYzVSWG80VjNWT09ISllLM2NyZFVkQ1NsQk1kRVYxTW5KTk1EZE9OWGQ1TUZVMVdFVkhRbkZUQ2xGdlVsTjNUbmd6VG05cldYZ3JPRkowUjJGR1JrVkROMkoyY0ZwT09XNXlabVJFV1doemFrNUJTRmt5V0ZCellYTndNa3BEVERKR1NEUjVSV2s1U1hZS1lreENNV2N5TTNVd1NrWXllVXR5Y0VzME9FSXJVbXBNVDBaaVdXMUhjSHBwVGt4QmVqVjNZM1pJUWtaS1lsUTVWMVJpY0UxQ1RESkJaM1pUWW1KUFdBcEJOREZXZW1wYWJqSXlhVGc1Y21GWGFXOVFjRU5DWjBSS1prNURUVzlQYm05blFXdzVWemRvS3pkbmFXUmhSVGQxZEhKSlMyMWpTRzFJT0RaR05uSk5DbXRsVGtRMVoxWkNPRVpKTkRoaVpGQkNNRFpNY2pCblNuRlRXVFJ2ZUdKWGJIcDZXa1ZwTW5oR1VXZHNNR04yUW01U1prSTFNVmhDSzFKVVFWUjFLMllLTVhZelVEWnZibE5NV0VoSFFucFllRXBHTlhwR05EWmtjbE5EZW01SWJXWXhMM0ZEYWl0VGNIZG1kM0U1YkZoclZsUktSRE5XUlhKbmVGcDZWRTVCWndweU1tdEVNVkJUWkV4UWFFOHlaa2hWYTNoeGQyd3dOVWxqT1VKUFYyOVJXVFpMV0dZNFRuWkZNVWhMVkRWeVF6QmtXblpZVVhobGFreFdURW95VFZjd0NuQkNZemw1TTNjM0wyaGFWVTkyUTFKRUszWTViMFZGUFFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMUZKUWtGQlMwTkJaMFZCZVd4eUsxSnVUMFUxYW1oRmVVZEpSRk5IWlRCeFdXVjJTRUp4VFhSRlZXTkZOMHA2V0VreVpGSnpUekpQVjI1akNpOXBia0k0ZGxCUWFHeGxOV1JwTlc1R1ZHUnlkWHB5Y0dSU1NVY3pNRGg0V0dkVGRsQkpZbmRqWWxoMGNWRmljbEJxZVRkeVRuRlhPRlY1WmtwbFYyTUtNMWRRWmtWbGVrOHlkazlQVVZSQmNHdDVLMnBMT0ROeWRqQjRlbVpZWlRKeVNHOU9Ta2h5V1hKWVMyeG5ZMkU0Um10MU5EWnhaWEZFU0RsQ2JFZGxkUXBtWTJsaVJGUXdOalEyVWxsdGRsSlVjemt2VWxkS1drOTRkbEZ4V1RsSmMyOXRaRlo0WnpObVFUVXZPRlpITmpsT2JVSkthMGRQU1ZGWlRqRnhTalF3Q2xRMEszRndVVWRZYnpFME1UUm5WM1paWjNKUVJEaHJkbUZaVlVWeFNqZFRTV0pJZEV3eVQxQm5iVmsxYjJoRWFESmhLemxGTkc0NGRuZDBSbEYwYkZNS1duWnZaelowZDFOQk5XVlJhMjFtZERaalUyZ3pUMHhRTTBJcloyTXpTWEUxWm1GblNXdG5ObkpzYlRSUFExRkZkWGh3ZG1kdVRFaHFNV2RtWWswdlpRcG1NbmxOWm5Wa1pFNURlbkkyYzIxaldqWnFiRVJpUzJaNlltNXBZMlZGYTBVMk9WVnplWEJwU0ZwTGRrUnlVRlZ5YVdOSFJIUndObFp0UXpZdlRsTnhDbE4zUjBGMFpXbFFUalJOU0d4ak5UUTRVWEJuVEhGVWRsQlFlR0p6UW1NMWFtVllUVkpwY0RKdmFITm5OMVYyY1hoc05uTXpXRzVOUzNCeE5WcDBWMVlLWkVaTE1qVXdPWFEzUXpsd2QxSmFhMDlsV0RsemFESmFSalZ6WWxSbU5WVkZiRFJJT1ZoMGExRlNTMlZJVFhaV2FrYzRZV0Z2VVdvMmNuVnRTRVpLZWdwTlZVZEpVMDAwVEhWQlVqZFlaRzFxT1d0MVVtcG5ZWFp2Y0UxUmJuTXZUM2xGZFZCNVZqbEVUMWR6UVVKUk5HTm1aRU5rZURWS05qRnRjazUyV0RSa0NrVnZjbGRxS3pkbmVIRlRlaTlNVEdOb2N6aDZjVVF2VUc5c2FXOW1NbkJrU1ZsclIzTjBhakF6YjNWdmNIVjNkSGRUTjJoRU5GZ3ZjVTFWUTBGM1JVRUtRVkZMUTBGblFtbHBTSGhaWjJSbGN6UnhiR0pwV2pWbWJURXZNVlJSVTFCbmNqUlJObUpaUzFGV1N6ZE9jRzV0TkRGWVVVUjVVakF2Y0VKaFdsTTBad3BHU1dSVFlreFlNVTV6T1Zkc1FrVndNa2RXVVZJMVpXRlhSakppT0ROclVscGhNR05MVTNCVVZ5czViVGdyYldOQ1pIUlpPRXd5TldJdlFXNUpiRUl6Q21aVVJTOTJUbmRDZERacFZXOHJhWFprWlV0dGNtRjRaSFl2UXpKWGNuTXpaV2xRZEZaWlFYZDFlRFpJTlV0NVFTdFdXazVzVlRjMlNVeDVabUppYkVnS1REZGxWbVpJVG14dGR6WjBVRVZQVUhwVlZESTFiR2xzYlM5MlFWQlFSR3BMZG5kTVoxRkVVbWRaUmxGMFlXRmlaMEV2UXpBMFdsWldNMlZaWTFoWlRncE1jM0VyUkVaaGFWQjJSV3RzY1hCdWFqQllPV1JhYVUxdU56aEhNMFYyT1VONGJqRlBTazVDUmt4dVZUQmtVVzlyY1hobVMwMU9aazFXZW13dk9VMXNDblpLTDBKTGNYQkhjMjFES3pGb1MzYzVVbGRGU1ZsMVVpOXpNWEZDWkU5QlRHWXlORkE1Wnk4MFRuRm1SVTlKYTFvMWMzWkJhMDFLVVN0SlUwUjFhSG9LTXk5UlF6TllabmQ1UVhGeU9Xa3dheXMzTWpoclJFUndjMkpxYm13MmNYWm5NazFpYVdJNGJtbHdVVFFyUm5vNVFtSk1abWhRTUhZeFpGcGhSMmt3TkFwc1IwSmhZek5yTlhacWNWZzNNbkpJUTFKS1MyRnRjRk5NWlZaUWQxWkZTRlZ5YkhWdVlqTnRNMjFuU0ZsVkszaHhVMEYxU2k5UFlsQm5VRTR5YkUxTENqZFJaMUo1VUV0bk1FNW1XalZPYW04dmFVeDVORVZRUWxaTFdFWnBibHBhTmsxeWFGbHpWMFpuYVU0d00yTjRSeXR3WmxwTFUyWTRZMnhqWVRZNFMwWUtkMnM0SzFkeVMwMHJhbGxwVEdGNmExcHpjalIwWkc1dVluRnRMekZtVUZoeWNrTmljR3BxVDB4cFp6aHNVVTh4U1c5cGVreFJRWHBHUTNFNWVtUnFkUXBaY0hsRmFHZDFXblpCT1cwMmVqSklhVmwyWjA1eFdFdFhiM0V2YlRjeU0zcE9ZWEJyT0hJemRHeFdhemRGZDFwQlVVdERRVkZGUVRsTlZUYzFabVo1Q2xkbVMxZDBVRWhRYTNoQ1ozbE5ZMmRLYlhacGNFTkxSbkpXUkRORVMwZDBSVmx5UzFkUFkyYzVlbEV5ZVhOUU1GcFpUQzkzUlRKNlZUSXlMM2d5WnpnS2JIUldNR2hNVFZWVlJUTmxiR1Z5Tm1WSmJXRm5TRGRVZGxkYVEzbENOR1ZWYWs5eFNGRkJSWFJzUkdwaGExSTBhbWRoT0hOSU9XMXBhRTl0V25sTmN3b3lUVkUwVmtaT2RteENWelZqY0ROMWNVRjZPVXQyVFRSV2JVaDNjMDlTYms5bFNpdG1kRVl6VVV4dFVGbFFaVVJIYm00clYyRXpTVlpwZVhKVlZVNW9Dazl3UW5kR04xZ3JWVXhNT0Rac09XVmhkeXRyYW1oaGJHTlVla1p4ZFhBNWNXMUllV05aYUZrNVEzUlVVM0JHVHpWNk1WbENObkp2SzNZNFZsZzRRM2tLYjJObk1GTldSek5IUmt3MVZtZHlORkZPVEN0YU9VVllPRkF3YzBkTGRISXZWWEl6WkRGVlVVOXRiaXN5WjNoTVNuaG1NR3RET1V4M1VrMTJPQzh5T0FwRVUyWmtia0ZaUTI4eEwxTk1VVXREUVZGRlFUQTJUMkpKVFcxdlJVTllTVk14Ym1wcWExRlRUR2MyUWpoMWJsTTVUbmxNYVhCSE1FZDVaMnREVm5WbUNuZEdXbFEyT0hweVozWlhPRlpCTVRBNGIyeEZXVU5XUjJjelJYWnNSbVkwYVRWT1VuVkJUVmxXZUhCd1ptaHdPVnBUZEZocGQzVkxaMVpoVkdZdllXVUtaQ3RZWW5JeFIySmpkbEpZVmtkb1RuUllZamt2YWxSV2VuaEdVVzFOYXpCcGVtdzRkR2h1YTFOR0sxSkJNWEptTkU1MGJEQTFMM1ZhZEVSV1FXZFBPUXBVVDNSVVZubDJTMmd6UkdOUldUa3JRMGxtY1hGQ2MyVndiek4wYkVkNGFXSk5SbUp6Y0VSS1ZESlNPVlphU1ZsNE5VVmlVMUpCUTJFeE0zRkVWakpOQ204d1V6WldhRzlzU2pKTmEyaE5RM2gxU0RWR1RuZzNabXBDZVVaQlR6QmxlVFZtTW10dGJDOTBLMjk0WkZwMk0yMHpLMFZRY1dNcllrOUtlbXBZVlZJS1VGUnZiVllyVW5ReVltRm9aVWt4SzIxb1RqQlpPVXhyYlRodFN6RXJNVmxpWW1ndlZFZEZTQ3RSUzBOQlVVVkJNMVUzYW1KSVl6RmxXbmM0U2xKbmNBcHVVV1ZITm5GSldEaEpWa1pKZWtKUVpYcG5hMVo0YUhKUFpIZHhVR2d5YTBWaU56QTVNMjlpU2tKc1FXdHBablY0Y2xWS1dFRjBhMFpQUTJ0bVJVeExDbFZDTVVnM2JtSktlRzFvY2l0R1ozcHlRME5yY1hadFNWbHllSGg0T0hrelpHWjRSekJzVG1OVFRsaFJhbmxvZUd4MFFsUmxVbU14ZFdwM1dIcHBOblVLVTAwNGJtOUlhM0JUYlhGTlJVOVNaVUZOVTBjNFpteG9WamxZZDJ3d2RHVnlibVpaUzJzeFFVUmFWbFp2ZEVoamRrRlhhRlpHVlN0MVRYWldabUZ5UVFwaFZXbGpTVzVFWlVaeFJFeEpUMnhoTlhKeFV6UnZhMjR6UVVNMVV6SjFSRTlwYkdWSmNVdHNSemRET0ZGb2NVZHJhMHBIYldjdlNuTjZjMjlCTURkT0NqVkZSa3BVVlVkWU1tdDVjbFl3VTFob0x6TjNaVGxIY1ZSNFkxVkVjVWx5YWxKVkwwcDJiRTFxWldzM05UUXpUSGxoVGtkcVV6TlRaRWhoYVVOVGNuRUtRV0owYldSUlMwTkJVVUZCYW1wR1pVTkxiREJSVjFWb1RGZzRNMXBHTlZneVNtNXRkRlUxYTJKb0t5OXZWbkJFY0M5MFVVOTJiRlZYSzFkclprMXJlQXBqYzNWdWRrNUdUbmRoV2pSVGFVUkNVRFEzVFdGT05ubEllRlJpTUhOYVFteEZVWEZ1U1RoMmMwMXNkVUl2TWpWRlV6QmFOMDR2Um0xTmFsY3dVRkZFQ21aVWFYUmtRV2xuVEZWMlJsZDNXV3R2VUhOQ1N6WlpSSEEwWWpSUk1rVm9Mek0wTVRoQmMyVllMMVZKWkZOaUwwSm9Wa3BEUWtZM1NHcE1PWGsxVDJjS1pqRTVWVzVNWmt3NVpUbGlkVnBhTDBGWGFHRk9NVFpoZDI1amJrcE9TV2xpZWxWV1FVZHJiMUJQTVVKYU9WWmFlWE5zVDJRMmVHa3dWVGxpTkc0eWRRcGxUV2RxZDFFeU1sZHFOVGhSYjNnM2NHRmxSSFJTZFdKc1V6WkZaVGx3YkRsVGRHdEVOa00yZFRjM2VFZDVaRU41WlZaaWRtRTNjRFZxYTNKcFpVaDJDamRHWWtsS2FtSnhNa3B2TlcxT1oxbDNTa3R2ZEcxeVFTOTJZakpyUm5Gb1FXOUpRa0ZSUXpod2JVaERMemxaZHpSQ1lVUTVNak5DWTBKSmVYRkxjVUlLWXpCTVlsRmxRM05vZWxoMU9EY3hkMFZqVlZwcU5uaG1WVmhWT1RKUlVVNVZZMVJyY1d4MFFrSnlTV1o0WmpSSE56bDJlR3R2WVdSbGVDOVJZMDlKVEFwWlNYazJXbE5yVTBJM2NWcHhkME5wWTB0eWJ5OVJaV1Z0YmtjME5HSm1jMjFIWm5WSGR6VlZXbXhqYVRVMGJHTXhOMjFGYVZOc2NEaHpSRzkxTjFndkNtZFJjSEV6YW5BeFNHVktNVEFyZVRkNlNXUTJXVzFsVlVab1NreDFPRFY1VEhnMVRWcDZMMHRYTDJkc1JHTTBkMnAyVTAwclJVaHlNMlJyV1hsdFdYQUtWWEl2SzJJd1dYZExORE5YYVhFNFQwTlhibmcyZFhCcWRrMHZWMjVyVVZaa1FqRlFPVE5SVjJOUmRtUmtiSGhVY2xaRFNGUnBWVkJLZUhrek5XMXlUZ3B5YTNsUlowMHlaekpMY3pBMVdHZHRkRWxXYjNwTFpIVXJiRGQwZG5rNVJFUk5iMlpyVURZdlZIaDBWWEUyYmtGVFJFNHJOVkkxVlZkNmQzZ0tMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogc3NnOHJoY21lem4yNnQ4NmZ0c3V1d21jbzJmcmE3YzBwNW54b3R4NmpsbTl4YnIzbzd1dzdqcnF1MHI2NHM4cmd1dGc0Y2xjYW84MmtkNzV5andjYjlxcnRjNWQ4bmFnbWVraGZybDJnZWtoYzRvbnkxOWdmeGdycW00eWJiYngK\"\ - \n }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": + \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSUldseVNUUm1aRkpwU1dKNFVIVXZRa1p2VjNGRWVrRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxcWEzZFBWRVY0VFdwR1lVZEJPSGxOUkZWNlRVUlplVTlVUVRWTmFrVjVUVlp2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVSV0NsWmtjMmhXVEc1V1NXVXliRmxhVFZGRFlrSmljMll2VFhFd1MzQjVOSFZsYVVabVJXdGtRbXhMTURSblFXSlRVWEF5TlVsa1ZFeEhTR2hNVFZRd2QzUUtTbkpVV1d0bVZucE5lVzFUZGpkVFpIcE1hWHBaU2tWVlMzTXhNVUpPY0hWWFZEUXhSbEp0UzJGa1IzaG9ZbXhPVEdkMlZXRnRSbmh3ZWxwQlFXSTJNUXBoVFZNMVRTOVRaa2d6VEdNdk1qVkZZVlZsT1daRlJYRjZRVVJuYVZZNU0ySktlVTkzWmtselZXNUVkMWQ0YVV0MWJGbG1jMVJOYW5CRlJtaFNkalIzQ25oRGQwSnhjVzFJTTBsaU9EUnNaa2hrUVVJMVdTOWtObkpzV0VwU1MyUktXQzl2VGtkc1ZsaEZUV0pCZUZKM1VscE1kRXA2Y3k4NVZYRm9PWElyYWpJS1EzbEJORTlOT0RVM2RXSm9VbTVsYzNSVVVteDJaWGR4TVhaSlJIVk5TM0ZDT1hwa00waFNRbEIxTmxKSk1FSnJZbHBxUlcxaWJGWmtNM3BOYW1wUVF3cFlRelF5WkRZeGRuYzJPRXRSUldOMFNucG1iRVpxZUhsemFYWnpTR1ZoWkZkVVlsaHZWRGhQYm5kTlFqZG1XakpzY2xjMVJsRkdVMjV3V0ZOMVdFRmlDa2wwZW5oVGVqVldOVkZaZG5wblNrdHBjVVExTWxvM01XWmxabTVSTXpSb2VtaFJjakZqSzB4RVlVUjZTRXhwYVZCdGMweHNjMUp4Y1V3ME4zZFNTbFVLVG1KYUt6bFFkRTl1ZUhFNE4zbzJOMnRuU0VrclFrbEhWbnB1ZERFMk0zUlRlbW9yTm00MVZDOWxhVVZ6YjNGVlFtUlVaMDFUWm1oM2NtcEVWRTVMVVFvNGVGWTJSRXN4VlhCWUwzZHVSR1JEWXk5UFdUZzFURnBzWVU1R1ZFRXJTekJJVTBwS1UyaEJlV05CVG5KQmEwa3lTV1JHVjBkSFpUVTFNVVpqU0dSMUNqVmFSREp4VFUxT1pscFNUMGw1VmpSUVR6TXJMM2t3VWs1dVdqUmhhVU5WUldKa1IzbzRlVEZsZG5vd01VeFhTazlNWW5SMk0zQlhTWFJ5VEVoTVFqZ0tiVEZUYjNGUk1ESkpTVkZOWVRoYVNrMVlkMjFFYURBck9WaDJlbFppYXk4eFkybE9Za3hSY0daUlNVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWWVdYQkliVXRGUmxJNWJXOVRZMGd2Q210aWJVTTROR2RZYzBOemQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGSEszTnRWVVJrWkcxdVkweDVlSGxRV0UxQk1rSlRMMGR3TDFRS1JWRlJTMmx0VlhRNFZXWjBZVnBJV0RaSFIwSTNaWGxDVkZsVVQxRTVia2R1YkhSS09UWTBNbk5JTVVNeVV6bFFXbGxzVkU5cVdXTjRZMVpIVlVkNlJncHhWQzlIU2xKV2EwMU1ZVkJWYm05RmMwbFBOa04wVVZSTmFIRk1lbEpJTDFCNVZESlJNM0owY0Roak9FRTFXV3RUTkZaaVJGSnZjbWtyVldSSWNUQjVDbTAwUWpNdlRGQnFNSGhEUVU4dmVtMWFSblJhVkN0MGNrczBlbW8wV2twUFMyMTBabkZTWjFWcFoxVjBOVVZPYW1kRmJTczNkRnBIZUhWUWNESlFiVGdLVlVWdFYzaEtOVnB0YVVGUVJXWmpWQzg1WW14SVRHeHpibTFoYldSUGVrOUJkMUJ4ZVc1TGIwUnJiWHBTYnpNeFZ6QkROVzFWUXpWQkx6QldjR1ZETkFwTFNWQTJWRVZTT0d4WVprbHdaU3M0T1daYVFqSXZlSE13VlZsdE5EWjFlbkptVUVGUGJEbHlabmhTYWtKMGJuZDRTbUkzWkZsWU0xUnZaVEZXYmt0bENuQklUbTEwTjBGa1ozWXlSemxKUm5SdlNHOXJZVFYzVFhnM1NUWk1NM2h0YkVWamRtbFpkV3BzVjFvNU5IQlJlRkpWVmtsNGFWVktNMjUyTlRKeWJUQUtMM0U1VkdoQksyTjRhVFV5YmtwcFJtWm5VVFkwY3l0b2RqVlJka1JaZUZGNVVIaGtTMWRVUzNvMmQzTm1XVUZxZFRKamFYVmlXbUpDZG5aVFNteDRhd3BZUVU1dVNYTklRMmhFTUhadmVrUnhkRWw1WW05NFFuWkhlbFZoVkV0UlQwbG5NV28zUlRCaFRWVTNWemt4VlN0dVozVm5ObVF2YW14S0wwUndaakZ5Q21sbFZ6RjBVbVJ4ZFdwS1dtZGllR1J1WVhoVGEwdFdUbFpaWTJwUVMwODRVVll6WWtZM2FGSnVaRlJMZDB3MFlUVnBZekY0Um10T1FrZ3dTM1V3VkVZS1YzWTRZVVZTWTJKb1Z6bDFabTFwUmpOU2FHdG5TRlJYZGpKV1ZIVnRUSEJGTWxsRFZXc3pOVEpwVlhCWkwySXZVemcxUjBSVlkzWkdjbVZxVVZoelV3cDNTME51ZFhFeVdrVnZWV0pFTURZckNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc3Rlc3QtY2xpdGVzdGtrM2Y2b2VubS03OWE3MzktajdocjY4d2MuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3RncWthY2IKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3RncWthY2IKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3RrazNmNm9lbm1nX2NsaWFrc3Rlc3RncWthY2IKICBuYW1lOiBjbGlha3N0ZXN0Z3FrYWNiCmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdGdxa2FjYgpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3RrazNmNm9lbm1nX2NsaWFrc3Rlc3RncWthY2IKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJYWtORFFYZGhaMEYzU1VKQlowbFNRVW94VDNwbWNrMDFZWGRFTXpObGVFYzVZbTg1Um1OM1JGRlpTa3R2V2tsb2RtTk9RVkZGVEVKUlFYY0tSRlJGVEUxQmEwZEJNVlZGUVhoTlExa3lSWGRJYUdOT1RXcE5kMDVxU1RWTlJHdDRUVlJKZUZkb1kwNU5hbFYzVG1wSk5VMUVhM2xOVkVsNFYycEJkd3BOVW1OM1JsRlpSRlpSVVV0RmR6VjZaVmhPTUZwWE1EWmlWMFo2WkVkV2VXTjZSVlpOUWsxSFFURlZSVUY0VFUxaVYwWjZaRWRXZVZreWVIQmFWelV3Q2sxSlNVTkpha0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRkZSa0ZCVDBOQlp6aEJUVWxKUTBOblMwTkJaMFZCZFhGUlpEaHJTVFZtYTBkSVJVVjJObmx4V1RVS2N6QlhUR2t3UlZCbWVreHBZMFV5TlRkdmFrRXJVWGxIWlRoa2JHOXllRVpuU0U1YVprUktNM1p5VHk5YVZ6bHhOSFZYWWtaa1UzcElSVTVRVDFGTFp3cGtLMFpFTDFkRFJURTRTbmtyT1RFM1MwWk1jM1ZyWmxFeFVsVlphMFo1UVM5WllYUTBZbEJDTkhoVlptSk5SWEpIZW1jclozcHlRVFUyVnl0dFJGSklDbWxzZFhsWWFXdDRaWFJrZVZnemRGaERNVlU1ZUVsRmIwWXpPR3RaYzFVMWFtSjNNamRVTms5T2NVSkdhMGxoT0dSSlJVWk1Na2R4SzJzMksxZFFlbEVLVDBGUU5YVjRNREJtUTFKblJXdzBTbEZSWkdWbGRsZHFiV28zYkdwUFdEbFBkbFZ1T0Zwd2FqTjJOVEpYU2poeFpqQnplbFFyYWpCbGRXZDRXVzV3VXdvd1QxSlNTWFZHZVU1YVRFTnlTMGtyUkVWRGF6TnZObXhJTXpOSWRTdGtXbXRQWVhoNWVEaDFWR3B1SzBsd2JFZFFTVkpvZG1WMlVYbFVUamR2TkdGS0NrY3liSHA1YWxaamFUQk1WRVIxYWtsbmEwTnBXakJQVFROb1MydG1TemxRUjJsWE1Vb3dXVEJHUmpWeFFuTlllWGxHT1Zwd1ZGTndZVGRWU0c1c1dVd0taSHBhWWtGMlJUaDJlVFpaTURSdGJEQktNSEJVVGtzNGMwaERiVmhHYzFJM2VIRjBkRkEzT1c5NkwzTXdPVnBUU201MFdHczBTakpLTW1aSE4yTlJWZ3BGWVZCSVlrTXlXVVIxVjFJd2EwdFlhVWMyWWtKeVNqTmlOR052YTJsV1kweGhjVVpDWTBKM00wOUNhRGxHYzJSWlZWRlVPRmR0YWpOak1IaE9NSGRzQ2xOT1psSlZkMDU1U1VwcmNWSjFTWHAyUjAxNWIxcGliM1ZQVmpkcFlWVnpTMHMyVVhBcldtdzNMMHR5WlVvMFRqQk9ZMnAzYWtsQlQxVkJiV2h0TTJRS1FXVlFielZHY3pjeVNuRTJZV3A0YW1zNWRuSnNNRVkyWkd0blRYaFdZMFU1VEVvNE9WcHBOVWt6ZFRCUmJESnlaME4yVnpOTmQzSldSVXh1UVhNd2R3cHFkbkJDWkhSM1JGazJWRlUwTDBRNFdFaHdabkJ2YzBOQmQwVkJRV0ZPVjAxR1VYZEVaMWxFVmxJd1VFRlJTQzlDUVZGRVFXZFhaMDFDVFVkQk1WVmtDa3BSVVUxTlFXOUhRME56UjBGUlZVWkNkMDFEVFVGM1IwRXhWV1JGZDBWQ0wzZFJRMDFCUVhkSWQxbEVWbEl3YWtKQ1ozZEdiMEZWV0Zsd1NHMUxSVVlLVWpsdGIxTmpTQzlyWW0xRE9EUm5XSE5EYzNkRVVWbEtTMjlhU1doMlkwNUJVVVZNUWxGQlJHZG5TVUpCU3k5dWFua3hUSFZ3VjBoU1NsazNNRFZqZHdwcFVrUnJjRmR2TWxkd2FWUm9PWE5xVmxoc1pITmtha1o0WldOellVRlJZalY0WmxnNVJqbFVNRGM0U0hWS1FtZGpSVlo0ZWpOTWRXVjJVbG9yYzNnMUNrbzViV0ZYVkdSWmFYaENOSFJqVmxOa2FVcFNPVVJLTkhSd1FuVlZNeTlSUlV0VFlXVmtTRGhYWjFkS05rWmFaV05WYjAxalVtTnpSVWxETUVWSlIyMEtVMVEzVVVnNWNFSlBURTk0ZFU4MlRGSmlWbmhyTkhvNE1GWmpXamczYTJJd05WVm5WVTFwVWpOek1YY3lSR295YlVSbVJVWTVOR0Z4TlhSME4zWmxZd3AyT1ZWRllrOU9SemRTYUdsWk5HWnFiMlJ0T1hKU1YxaG1RemxoUW5oQlNrZHFabE13TkZkaVowTnZPV3hJVGtwR2EwNXFRMWN5ZFVKamFsQlZiM1JMQ2psMVEwaDBTbVpUVEdKTmR6UjFWVTFHZDFneFUzcE1NR0U0ZWpKMWRrSk5UR2hQVUdscFNVOUtjekpYT1daSFZ6Wk1LekZ2UjNOSk5URXJWbkpUWW1NS2FUVnVWa2swVjFoUWMzcHFNamxDTkZWQ2FsVjVUVkpUTms5bWVGbDRiMjl4ZGpVellVeFRWWGxHTjJwbWJYQldORmh6T0dwTWNVOTJhbk5JYlhwT1F3cExSREpIWmk5a1QzWjBVWEp5Y1RadFNtaDNhUzlEVTJOUFVtdEJTMHRXUkZFdk5GZHRhbkppU1Rkc2IxcHRWRmxaU0c5NGJFWldPV2hOYm1aa1ZFRlpDbkY1YnpSQ1UzUk5UbXBIWW5KcFV6Vk1ZVEptTlcxTUsxRXZVWGMzYzNGVGRHRXJNakJLVkZGWFFVdFlTakZ5YlhOcFNETnVPV2g0VkVoS01WQkZPV29LTkdaMU9EZzFkRkJrZDA1YWRrb3hibUpGYXpGVFRFRlRUMmgyUkZCdE5XRmtNWGRsY1ZBeldrNU1hakpHUW01c2IyOHdNblJ5THk5UlQzcGlZMkV5S3dwVmVsRkZlbFJMZEZCNlMzTmlUbkJSTVhSeFZsSkZTVzFTU21sbmEwNURibFUySzNkMVRrbFViREZzYmpSR1J6UlNSSFpqUVV0T015OHJURVJaUmtkeUNuQTBVVzVOTW1SM1ExVmtaMWwyTVRWTFJFNXZPVGxSS3dvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMUZKUWtGQlMwTkJaMFZCZFhGUlpEaHJTVFZtYTBkSVJVVjJObmx4V1RWek1GZE1hVEJGVUdaNlRHbGpSVEkxTjI5cVFTdFJlVWRsT0dSc0NtOXllRVpuU0U1YVprUktNM1p5VHk5YVZ6bHhOSFZYWWtaa1UzcElSVTVRVDFGTFoyUXJSa1F2VjBORk1UaEtlU3M1TVRkTFJreHpkV3RtVVRGU1ZWa0thMFo1UVM5WllYUTBZbEJDTkhoVlptSk5SWEpIZW1jclozcHlRVFUyVnl0dFJGSklhV3gxZVZocGEzaGxkR1I1V0ROMFdFTXhWVGw0U1VWdlJqTTRhd3BaYzFVMWFtSjNNamRVTms5T2NVSkdhMGxoT0dSSlJVWk1Na2R4SzJzMksxZFFlbEZQUVZBMWRYZ3dNR1pEVW1kRmJEUktVVkZrWldWMlYycHRhamRzQ21wUFdEbFBkbFZ1T0Zwd2FqTjJOVEpYU2poeFpqQnplbFFyYWpCbGRXZDRXVzV3VXpCUFVsSkpkVVo1VGxwTVEzSkxTU3RFUlVOck0yODJiRWd6TTBnS2RTdGtXbXRQWVhoNWVEaDFWR3B1SzBsd2JFZFFTVkpvZG1WMlVYbFVUamR2TkdGS1J6SnNlbmxxVm1OcE1FeFVSSFZxU1dkclEybGFNRTlOTTJoTGF3cG1TemxRUjJsWE1Vb3dXVEJHUmpWeFFuTlllWGxHT1Zwd1ZGTndZVGRWU0c1c1dVeGtlbHBpUVhaRk9IWjVObGt3Tkcxc01Fb3djRlJPU3poelNFTnRDbGhHYzFJM2VIRjBkRkEzT1c5NkwzTXdPVnBUU201MFdHczBTakpLTW1aSE4yTlJWa1ZoVUVoaVF6SlpSSFZYVWpCclMxaHBSelppUW5KS00ySTBZMjhLYTJsV1kweGhjVVpDWTBKM00wOUNhRGxHYzJSWlZWRlVPRmR0YWpOak1IaE9NSGRzVTA1bVVsVjNUbmxKU210eFVuVkplblpIVFhsdldtSnZkVTlXTndwcFlWVnpTMHMyVVhBcldtdzNMMHR5WlVvMFRqQk9ZMnAzYWtsQlQxVkJiV2h0TTJSQlpWQnZOVVp6TnpKS2NUWmhhbmhxYXpsMmNtd3dSalprYTJkTkNuaFdZMFU1VEVvNE9WcHBOVWt6ZFRCUmJESnlaME4yVnpOTmQzSldSVXh1UVhNd2QycDJjRUprZEhkRVdUWlVWVFF2UkRoWVNIQm1jRzl6UTBGM1JVRUtRVkZMUTBGblJVRnNhSEJXV25wa2VHazJVR2h1ZFRaelVsQjVTVzVVUVV0UFZGWmhOVVEyYkU1Q1MyVjJWVTVKYURCT1YybFJabXhMYjNKdFJIQmpNZ3BYV21ONFJFeE1PRGd2VVRKaU1FdG1hRzFCYjNGRmRFNHhTbXBVVHpOYU1IVnljemhQTVZoTlMyUnRTRXRtWmk5SlVsZFBNREJCUkVsR056QTRia014Q2s5VVltSmpUMnBWTDBJNGFYSjFTaXRFUVZwa2FrTXJWbUZGTVhKV09DOUdWazF6YlZkNFoxbHBUV1p0VTJ4M1JYTkNkamRvVjBsblptcHpSblpaUzI4S1dHZGpXVlZ6UWpGRlpsZzJZa2QzZWtsc1kxaE1abGhWVTJwalVYTnRkMjlHVWpnMGVtSndibVJZTkdoVVUxcEVRM1p4ZHpFclZreHphRkp3YnpGbU1RcENkVGRYT0ZWdFVFaHNhbkl3WWtwSFJYcGtWVWdyUkV4cWRIRXpOMlkwYUdKeU9FaHVhVkp2Tkc1UlpFZE1aVWx2VDBSNE1XSkVVSGxOVVZsSFZuZG1DbXQ1SzBKcGVrcERkVGh4ZGxoUk5VOXRXRXRyTWtwMlMwUk5jWFpUYm1aYVppOURLMmRoUW5obWQybFlaamR5WjJveU0wSllha2d2Y0VkQ1lTdEpaWFFLV21Oc2RFNXJSVFpQY0dadmNuZHZjRGsyWVRBdldGSnNiV2xuUTNObGVWUkpUVWRxTldOU2MwMVJTRlkyVDNGMVExUnRLeXROWms1dlIwVlFhRUZMTHdwcE9GZFJSMEpXYW0wM1FWVjBUVVJCT0RWdFNWSTBla3cyTlV0bE5tdEJia2hHU1d4V1ozUlFXSGt6Y2tweFdXRklSbXRhV1RRM1pVVjZNalYyZEZKdENubEtaemRFVDFGcWNWZDVlRWN2Vld0aU1uVkhOVGh2V0dKVWVHa3JkMVprYVdoR2NHOUtWemhyWlM5aFExTnBPVnBJZVhkTFoxSlhVa2R4Y1UweVpIVUtjV1p5V2pkVVpUbDVRbTkwUTBkdE4yRkpUemN5YUVOQ1lrbzFPV3hrYUV0UFRHVnpiakJvY2k5V0szTTBha04xTWt0Wk9UQnBjRGxCU0dWcGRsWklZd3B0TVVGbU1XNUZSMGxOUVRWa2NXWjZVV2xIUVM5aVQzSTRXRXRMTDI5U1lYWjJUMnR5VmpCQ04weFdURXBKTDIwMVprVkRaMmRGUWtGT2FVUk5lbVExQ21WRWExbGtVV2N3T0hsSFNrTm1RbTR5V0cxb1p6UkNXQzlQTW10RWFXWjBZbXR6WTJOVlpGRkRXR1JMVlRoV2JYaHBjRmwzYVc5MFpIUnpNVGR4UjFjS2RDOUNZbVZFSzJsdmNsRlVZa0ZDU21wSmQzVjRXRlp5TVZkMWEweG5VWFZSZWpOS01FYzFNVEZOZG5oUFJWaEtVVE5wWTJ0Sk5FWnNWRnBtVkZKakt3cFVSR0kwU21KTk5GVkVObXRqZGpaR05WVktTazFMVm1kNk5tbFNXRGxQVUVWcVN6Sm5lbTFTZDB0MU9VMHZZWE5QVHpaNk56UXJRMUZDWkVFMVJuVnZDamROU0hoSlYwZGtOa3hYWlRkWVNGQkVOell6Y2pneVJtMWtZMlJhZG1oSGFIVkRSR05qSzNOUVJYRXpWSEJ3YkV0UmVFYzRja3h3VkRFeVNVMVVNRTBLUjJzNU4xaHBlalJqUTNOQ2VpOVJPWHBaZVdFeE9UQnVObkJWYkU1c2NIZFNkVEJoZVZFMVdUUnVkVVJZYm05QmFWQklRbGxZVlhBdlVrRlpjRGtyYkFwMmRXOWFSV2xJYkc5R1QxY3lUazFEWjJkRlFrRk9lWFZRYlVRd1RWcElVbFpoV214aVQwMW9PV05SYzJVNFUzTklha3gyZVZKR1VsVXdjVFZDYUhSUENraEJSU3QxZEZWSk5YbEdVMDQzUVhOdVIyb3lPRlUyTHpKcFpIZFdUM3BTUVRKNlZrODJTVEE1TDFWTWNHaEZjbGN6YTBSRVpFOVJaRzlwUkhwU2QxVUtZVWRhVUV4NGVFdHFjelpGY21KU09GQk5hSFpUY2tsbmEyWkVSR1l3TDA4Mk1UWjNUVVF4ZUZWVGExTm5kV3BOY1ZWeU1VdFlOR0YxTlZwM1MxTklad3BhVkRaQlNVdGxVbW8xWjA0eU9IZG5PRE01VGtaUUx5dHJXVVpDY1M5TVpFbzVOMWhWZGtZM1FtbE1abGd6VEVKNFRIRnhZVTFaWlhSalNraFdZMEpSQ25Nd1FYWnJZamxHTW1abVkxZHJVVkowZW1SaGRFTTJTV05rTlhwYVlrcExkWEpLWTJWblluUktTa1IyTWpSNlNFaEdSM1pYTDJwc1YxTjVSbXBYYUVzS1JGaHZZM1ZSZG14a2FTOUViaTlTTkhSMFZqVXllbmRuU1hsSVZFOVJRakl2UzNGYVVGVTBTbUZIYTBOblowVkJWR2hMUWxaWEsyNTFiVGR1VWtvMVZBcFVZbEp6YzFKUVFtZ3JjVVl3VEVod2MyOWxSakI2THpac1dITmpTR1Z5ZFdaMVZpdGlOa0YyZEZCV2MycHRhakpuZGxabWNEQlZRamQwYjAwNGJWWnBDalZwZUdGMFdDOVFMMjU1WmtZd2FHSklVVmRITUd4elkxSkNkVkl6VlUxQlEwMXdhVEJGWkZNelVuTlllRkkyWlZBMGVqazNNMDh6V2pseWVsQlVNRUlLVFhCV05rbGxNa2RVWmtNeVlXVjNUemxYYmpKa1FVMVVVRTVaZWxjek9FUlRkWEJsTkc5UldIY3pkQ3N4ZGtSUmVUVklTM2h2UzFSWVVuWnRVRm93UkFwWVVIRkRRa3BtTVhoWUwxaEdVRlZ2UmtSdE1UazNSREl3WkRaVlJ6VTJkak4zUm1Gb2NrbFVjWGx0Y1U5dWJVYzVUMDB6V0doM1VFbE1iMHh4TkhWeENscDBaWGRrVWtsVlNFczVOVkl6V1hSVlRIRnhZblJKZEhkVVNETmlaMVF2U21seGJ6RnlWalp5UkVwbVVXcENlRFJIZDBSdVRraFliR1pMVlZvd1V6SUtSekkwTlc5UlMwTkJVVVZCYVRrMlkyaDBUQzluUVRaUlNFNUVORkJPV0ZCallrWkpSMUpYUjFwdU5UUnJSazVrVjFkVlFVczVjRTFCWWxsRGMxQm1aQXBzY3poSWIwNUJSbkZ5YlhCd1IwbFNTVk5KWm10aFNFRmlRVU5UZEZoTGFFaHNNWFIxYTBGcE1FRmFVbWQ1UW5wSlNEazFVbmw2WjBwemFGWmpZbU5JQ2pSSWJGUndOblFyTUhkT1J6aHlUMWRFUjFjNGExcGllWE0yWXpCVVFqRkJaR0Z1V0RoNmJWVnhNeTlNT1hKT01qVm9hbU15VXpOcGRtTlNlamRuUm1rS1dUbDFWWHByUzNOVmNXeEhaME5MV0d0eVpGQkNjbGRLYVdOSmMxQm5XR1JyT0dwRlRraFlMeTlPWmpWYVIydGxhSEUyZWl0U2NYUkphV1ZGVm5ocmN3b3hPVFpCUkRscGVYRmFSVUl4ZFZOQlZqWkJTV1YzVEVkYWFtOWhNV0l3UldscFEyTndVazl0VEZabVlVVldNRGhOWlROTUwwdG1RemwyZVhob1NYSkNDbG92UTNwMGVqSjZiRWxoVW05QlFUSm9SQzlsVW5nNGFtTm1WME5XTmpJMk1GRkxRMEZSUVRkRlNWWm9aR3c1YzBrelMxb3ZWVFUzTUdablRHRnRWVU1LT0V4Q1l6ZHhRMmxuZDJaRk1GbFdaQzlhWlZoMFFuRkhlbU5YTkVOcVdqUXhXWEJGZVU5UllXTnVabXh3ZG1WaUt6QXhNMU01UmtOV1VVZHlaVzB3VlFwbmVXVTJlRlYxWlc5cGJ6SmtNRGs1YmtwVU1tcDRkRlpNWkd4c1VtVnpjMmR4WjNsMU9IUjNaMHhCZGtWRFQwWTRhVm8xU0U1aGFYWnFObWxRVUcxNENsQmlVVU5WVDNsdGRUbG1iRnBZV1ZWMVIyd3JjR3BNUkdOMll6QnpVVXRSUVc1TGFIUlZjbWx1Y0VGU05IQm9PRTlwVURGcFVXOVhXVGx4WW13eFV6Y0thblUyY1RWUGQwcFpSVWxKTWtKUFJEaDBZMWM0WTJRM1ZpdGhSVkJZWjFReVduVlBjVlVyVERSNVIwWXlRbmcxZG04d1NVNHJOMkY2VUROTWIwWlZiQXBHUW5KdWVUTnpTVE5oZERkSmVFeEZTMFpOY1cxc09XNDRObEJxVW5sWmNEUk1hM1puV0dsSVdrOXVXWE5rWjI1UFpXTm9UV0l6Y20xM01uUUtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogemwxZWo4OGEzM3hiMGt2aTN2ZTJkamxyY2lvb2VpYzExdjl1bDNwOHlwdDhxZ3Z3NjkxemgxMDV1a3k1NGlnMWo0N3VsOXNlNGQ3a2NlNnJ2ZTY1eTF5OXdva2lvdXk4ZGFpdjlkMTBsenFmOGY5N2kybzMyNTF3ajZkOGF2dTAK\"\n + \ }\n ]\n }" headers: cache-control: - no-cache @@ -729,7 +1195,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 20:37:24 GMT + - Thu, 29 Jun 2023 09:26:03 GMT expires: - '-1' pragma: @@ -763,71 +1229,66 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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\ - \ }" + 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-clitestkk3f6oenm-79a739\",\n + \ \"fqdn\": \"cliakstest-clitestkk3f6oenm-79a739-j7hr68wc.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestkk3f6oenm-79a739-j7hr68wc.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": 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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/fcf634e0-c5f4-413a-8eef-4a363b9c7acb\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4762' + - '4101' content-type: - application/json date: - - Wed, 14 Jun 2023 20:37:25 GMT + - Thu, 29 Jun 2023 09:26:04 GMT expires: - '-1' pragma: @@ -848,7 +1309,7 @@ interactions: - request: body: '{"tags": {"key1": "value1"}, "location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": - "1.25.6", "dnsPrefix": "cliakstest-clitestsrtaj3dnw-8ecadf", "agentPoolProfiles": + "1.25.6", "dnsPrefix": "cliakstest-clitestkk3f6oenm-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": @@ -857,19 +1318,18 @@ interactions: "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"}]}, + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_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/fcf634e0-c5f4-413a-8eef-4a363b9c7acb"}]}, "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": + "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {"diskCSIDriver": {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": {"enabled": true}}, "workloadAutoScalerProfile": {}}}' headers: @@ -882,79 +1342,74 @@ interactions: Connection: - keep-alive Content-Length: - - '3261' + - '2638' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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\": \"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\ - \ }" + 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-clitestkk3f6oenm-79a739\",\n + \ \"fqdn\": \"cliakstest-clitestkk3f6oenm-79a739-j7hr68wc.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestkk3f6oenm-79a739-j7hr68wc.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/fcf634e0-c5f4-413a-8eef-4a363b9c7acb\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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/def041d5-d6fd-4628-a390-dcbc13e0cf8e?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/591292d3-8746-4ca7-ae5b-5997545ca489?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4760' + - '4099' content-type: - application/json date: - - Wed, 14 Jun 2023 20:37:32 GMT + - Thu, 29 Jun 2023 09:26:09 GMT expires: - '-1' pragma: @@ -970,7 +1425,199 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' + 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/591292d3-8746-4ca7-ae5b-5997545ca489?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"d3921259-4687-a74c-ae5b-5997545ca489\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:26:09.1253836Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:26: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 scale + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/591292d3-8746-4ca7-ae5b-5997545ca489?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"d3921259-4687-a74c-ae5b-5997545ca489\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:26:09.1253836Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09: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: + - '*/*' + 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/591292d3-8746-4ca7-ae5b-5997545ca489?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"d3921259-4687-a74c-ae5b-5997545ca489\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:26:09.1253836Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:27: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 scale + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/591292d3-8746-4ca7-ae5b-5997545ca489?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"d3921259-4687-a74c-ae5b-5997545ca489\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:26:09.1253836Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:27: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 @@ -988,14 +1635,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/591292d3-8746-4ca7-ae5b-5997545ca489?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d541f0de-fdd6-2846-a390-dcbc13e0cf8e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T20:37:32.2118226Z\"\n }" + string: "{\n \"name\": \"d3921259-4687-a74c-ae5b-5997545ca489\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:26:09.1253836Z\"\n }" headers: cache-control: - no-cache @@ -1004,7 +1651,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 20:37:32 GMT + - Thu, 29 Jun 2023 09:28:10 GMT expires: - '-1' pragma: @@ -1036,14 +1683,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/591292d3-8746-4ca7-ae5b-5997545ca489?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d541f0de-fdd6-2846-a390-dcbc13e0cf8e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T20:37:32.2118226Z\"\n }" + string: "{\n \"name\": \"d3921259-4687-a74c-ae5b-5997545ca489\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:26:09.1253836Z\"\n }" headers: cache-control: - no-cache @@ -1052,7 +1699,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 20:38:02 GMT + - Thu, 29 Jun 2023 09:28:40 GMT expires: - '-1' pragma: @@ -1084,14 +1731,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/591292d3-8746-4ca7-ae5b-5997545ca489?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d541f0de-fdd6-2846-a390-dcbc13e0cf8e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T20:37:32.2118226Z\"\n }" + string: "{\n \"name\": \"d3921259-4687-a74c-ae5b-5997545ca489\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:26:09.1253836Z\"\n }" headers: cache-control: - no-cache @@ -1100,7 +1747,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 20:38:33 GMT + - Thu, 29 Jun 2023 09:29:10 GMT expires: - '-1' pragma: @@ -1132,14 +1779,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/591292d3-8746-4ca7-ae5b-5997545ca489?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d541f0de-fdd6-2846-a390-dcbc13e0cf8e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T20:37:32.2118226Z\"\n }" + string: "{\n \"name\": \"d3921259-4687-a74c-ae5b-5997545ca489\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:26:09.1253836Z\"\n }" headers: cache-control: - no-cache @@ -1148,7 +1795,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 20:39:03 GMT + - Thu, 29 Jun 2023 09:29:40 GMT expires: - '-1' pragma: @@ -1180,14 +1827,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/591292d3-8746-4ca7-ae5b-5997545ca489?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d541f0de-fdd6-2846-a390-dcbc13e0cf8e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T20:37:32.2118226Z\"\n }" + string: "{\n \"name\": \"d3921259-4687-a74c-ae5b-5997545ca489\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:26:09.1253836Z\"\n }" headers: cache-control: - no-cache @@ -1196,7 +1843,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 20:39:34 GMT + - Thu, 29 Jun 2023 09:30:10 GMT expires: - '-1' pragma: @@ -1228,14 +1875,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/591292d3-8746-4ca7-ae5b-5997545ca489?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d541f0de-fdd6-2846-a390-dcbc13e0cf8e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T20:37:32.2118226Z\"\n }" + string: "{\n \"name\": \"d3921259-4687-a74c-ae5b-5997545ca489\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:26:09.1253836Z\"\n }" headers: cache-control: - no-cache @@ -1244,7 +1891,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 20:40:03 GMT + - Thu, 29 Jun 2023 09:30:41 GMT expires: - '-1' pragma: @@ -1276,14 +1923,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/591292d3-8746-4ca7-ae5b-5997545ca489?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d541f0de-fdd6-2846-a390-dcbc13e0cf8e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T20:37:32.2118226Z\"\n }" + string: "{\n \"name\": \"d3921259-4687-a74c-ae5b-5997545ca489\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:26:09.1253836Z\"\n }" headers: cache-control: - no-cache @@ -1292,7 +1939,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 20:40:33 GMT + - Thu, 29 Jun 2023 09:31:11 GMT expires: - '-1' pragma: @@ -1324,14 +1971,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/591292d3-8746-4ca7-ae5b-5997545ca489?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d541f0de-fdd6-2846-a390-dcbc13e0cf8e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T20:37:32.2118226Z\"\n }" + string: "{\n \"name\": \"d3921259-4687-a74c-ae5b-5997545ca489\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:26:09.1253836Z\"\n }" headers: cache-control: - no-cache @@ -1340,7 +1987,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 20:41:04 GMT + - Thu, 29 Jun 2023 09:31:41 GMT expires: - '-1' pragma: @@ -1372,15 +2019,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/591292d3-8746-4ca7-ae5b-5997545ca489?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"d3921259-4687-a74c-ae5b-5997545ca489\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:26:09.1253836Z\",\n \"endTime\": + \"2023-06-29T09:31:45.2370474Z\"\n }" headers: cache-control: - no-cache @@ -1389,7 +2036,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 20:41:34 GMT + - Thu, 29 Jun 2023 09:32:11 GMT expires: - '-1' pragma: @@ -1421,71 +2068,66 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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\ - \ }" + 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-clitestkk3f6oenm-79a739\",\n + \ \"fqdn\": \"cliakstest-clitestkk3f6oenm-79a739-j7hr68wc.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestkk3f6oenm-79a739-j7hr68wc.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": 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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/fcf634e0-c5f4-413a-8eef-4a363b9c7acb\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4762' + - '4101' content-type: - application/json date: - - Wed, 14 Jun 2023 20:41:35 GMT + - Thu, 29 Jun 2023 09:32:11 GMT expires: - '-1' pragma: @@ -1517,71 +2159,66 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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\ - \ }" + 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-clitestkk3f6oenm-79a739\",\n + \ \"fqdn\": \"cliakstest-clitestkk3f6oenm-79a739-j7hr68wc.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestkk3f6oenm-79a739-j7hr68wc.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": 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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/fcf634e0-c5f4-413a-8eef-4a363b9c7acb\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4762' + - '4101' content-type: - application/json date: - - Wed, 14 Jun 2023 20:41:36 GMT + - Thu, 29 Jun 2023 09:32:13 GMT expires: - '-1' pragma: @@ -1615,8 +2252,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -1624,17 +2261,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f79ef6f0-c93e-48dc-8d00-bc59eddcda40?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 14 Jun 2023 20:41:37 GMT + - Thu, 29 Jun 2023 09:32:14 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/f79ef6f0-c93e-48dc-8d00-bc59eddcda40?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 index 2b0a18d5686..dcdca58bd1a 100644 --- 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -32,7 +32,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 20:41:47 GMT + - Thu, 29 Jun 2023 09:32:17 GMT expires: - '-1' pragma: @@ -56,8 +56,8 @@ 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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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", + "adminuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": @@ -72,7 +72,7 @@ interactions: Connection: - keep-alive Content-Length: - - '1936' + - '1607' Content-Type: - application/json ParameterSetName: @@ -80,63 +80,62 @@ interactions: --service-principal --client-secret --tags --nodepool-labels --nodepool-tags --max-pods --admin-username User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: 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.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 }" + 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-039q8gip.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000002-039q8gip.portal.hcp.westus2.azmk8s.io\",\n \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"adminuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/8c101f0c-f19d-4764-9b10-cad2e47ebe6a?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e2f31542-0eae-4a07-8db9-63cb9d033ffa?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3559' + - '3230' content-type: - application/json date: - - Wed, 14 Jun 2023 20:41:57 GMT + - Thu, 29 Jun 2023 09:32:22 GMT expires: - '-1' pragma: @@ -148,7 +147,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -168,23 +167,23 @@ interactions: --service-principal --client-secret --tags --nodepool-labels --nodepool-tags --max-pods --admin-username User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e2f31542-0eae-4a07-8db9-63cb9d033ffa?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0c1f108c-9df1-6447-9b10-cad2e47ebe6a\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T20:41:57.4154795Z\"\n }" + string: "{\n \"name\": \"4215f3e2-ae0e-074a-8db9-63cb9d033ffa\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:32:22.422782Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 14 Jun 2023 20:41:57 GMT + - Thu, 29 Jun 2023 09:32:22 GMT expires: - '-1' pragma: @@ -218,23 +217,23 @@ interactions: --service-principal --client-secret --tags --nodepool-labels --nodepool-tags --max-pods --admin-username User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e2f31542-0eae-4a07-8db9-63cb9d033ffa?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0c1f108c-9df1-6447-9b10-cad2e47ebe6a\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T20:41:57.4154795Z\"\n }" + string: "{\n \"name\": \"4215f3e2-ae0e-074a-8db9-63cb9d033ffa\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:32:22.422782Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 14 Jun 2023 20:42:27 GMT + - Thu, 29 Jun 2023 09:32:52 GMT expires: - '-1' pragma: @@ -268,23 +267,23 @@ interactions: --service-principal --client-secret --tags --nodepool-labels --nodepool-tags --max-pods --admin-username User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e2f31542-0eae-4a07-8db9-63cb9d033ffa?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0c1f108c-9df1-6447-9b10-cad2e47ebe6a\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T20:41:57.4154795Z\"\n }" + string: "{\n \"name\": \"4215f3e2-ae0e-074a-8db9-63cb9d033ffa\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:32:22.422782Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 14 Jun 2023 20:42:57 GMT + - Thu, 29 Jun 2023 09:33:22 GMT expires: - '-1' pragma: @@ -318,23 +317,23 @@ interactions: --service-principal --client-secret --tags --nodepool-labels --nodepool-tags --max-pods --admin-username User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e2f31542-0eae-4a07-8db9-63cb9d033ffa?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0c1f108c-9df1-6447-9b10-cad2e47ebe6a\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T20:41:57.4154795Z\"\n }" + string: "{\n \"name\": \"4215f3e2-ae0e-074a-8db9-63cb9d033ffa\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:32:22.422782Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 14 Jun 2023 20:43:28 GMT + - Thu, 29 Jun 2023 09:33:53 GMT expires: - '-1' pragma: @@ -368,23 +367,23 @@ interactions: --service-principal --client-secret --tags --nodepool-labels --nodepool-tags --max-pods --admin-username User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e2f31542-0eae-4a07-8db9-63cb9d033ffa?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0c1f108c-9df1-6447-9b10-cad2e47ebe6a\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T20:41:57.4154795Z\"\n }" + string: "{\n \"name\": \"4215f3e2-ae0e-074a-8db9-63cb9d033ffa\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:32:22.422782Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 14 Jun 2023 20:43:58 GMT + - Thu, 29 Jun 2023 09:34:23 GMT expires: - '-1' pragma: @@ -418,23 +417,23 @@ interactions: --service-principal --client-secret --tags --nodepool-labels --nodepool-tags --max-pods --admin-username User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e2f31542-0eae-4a07-8db9-63cb9d033ffa?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0c1f108c-9df1-6447-9b10-cad2e47ebe6a\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T20:41:57.4154795Z\"\n }" + string: "{\n \"name\": \"4215f3e2-ae0e-074a-8db9-63cb9d033ffa\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:32:22.422782Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 14 Jun 2023 20:44:28 GMT + - Thu, 29 Jun 2023 09:34:53 GMT expires: - '-1' pragma: @@ -468,24 +467,73 @@ interactions: --service-principal --client-secret --tags --nodepool-labels --nodepool-tags --max-pods --admin-username User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e2f31542-0eae-4a07-8db9-63cb9d033ffa?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"4215f3e2-ae0e-074a-8db9-63cb9d033ffa\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:32:22.422782Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '125' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:35: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 --tags --nodepool-labels --nodepool-tags + --max-pods --admin-username + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e2f31542-0eae-4a07-8db9-63cb9d033ffa?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"4215f3e2-ae0e-074a-8db9-63cb9d033ffa\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:32:22.422782Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' content-type: - application/json date: - - Wed, 14 Jun 2023 20:44:58 GMT + - Thu, 29 Jun 2023 09:35:53 GMT expires: - '-1' pragma: @@ -519,63 +567,162 @@ interactions: --service-principal --client-secret --tags --nodepool-labels --nodepool-tags --max-pods --admin-username User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e2f31542-0eae-4a07-8db9-63cb9d033ffa?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"4215f3e2-ae0e-074a-8db9-63cb9d033ffa\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:32:22.422782Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:36: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 --tags --nodepool-labels --nodepool-tags + --max-pods --admin-username + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e2f31542-0eae-4a07-8db9-63cb9d033ffa?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"4215f3e2-ae0e-074a-8db9-63cb9d033ffa\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:32:22.422782Z\",\n \"endTime\": + \"2023-06-29T09:36:39.7514201Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '169' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09: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 create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + --service-principal --client-secret --tags --nodepool-labels --nodepool-tags + --max-pods --admin-username + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: 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.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 }" + 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-039q8gip.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000002-039q8gip.portal.hcp.westus2.azmk8s.io\",\n \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"adminuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/4153e1ce-33ac-4916-a2ad-fd4fa1084a6f\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3823' + - '3494' content-type: - application/json date: - - Wed, 14 Jun 2023 20:44:59 GMT + - Thu, 29 Jun 2023 09:36:55 GMT expires: - '-1' pragma: @@ -607,67 +754,64 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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-039q8gip.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000002-039q8gip.portal.hcp.westus2.azmk8s.io\",\n \"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.19.0\",\n \"upgradeSettings\": + {},\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": + {\n \"adminUsername\": \"adminuser\",\n \"ssh\": {\n \"publicKeys\": + [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/4153e1ce-33ac-4916-a2ad-fd4fa1084a6f\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": + [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": + false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": + {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\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: - - '4088' + - '3759' content-type: - application/json date: - - Wed, 14 Jun 2023 20:45:02 GMT + - Thu, 29 Jun 2023 09:36:56 GMT expires: - '-1' pragma: @@ -699,67 +843,64 @@ interactions: ParameterSetName: - -g -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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-039q8gip.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000002-039q8gip.portal.hcp.westus2.azmk8s.io\",\n \"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.19.0\",\n \"upgradeSettings\": + {},\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": + {\n \"adminUsername\": \"adminuser\",\n \"ssh\": {\n \"publicKeys\": + [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/4153e1ce-33ac-4916-a2ad-fd4fa1084a6f\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": + [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": + false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": + {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\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: - - '4088' + - '3759' content-type: - application/json date: - - Wed, 14 Jun 2023 20:45:02 GMT + - Thu, 29 Jun 2023 09:36:57 GMT expires: - '-1' pragma: @@ -791,63 +932,61 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: 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.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 }" + 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-039q8gip.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000002-039q8gip.portal.hcp.westus2.azmk8s.io\",\n \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"adminuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/4153e1ce-33ac-4916-a2ad-fd4fa1084a6f\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3823' + - '3494' content-type: - application/json date: - - Wed, 14 Jun 2023 20:45:04 GMT + - Thu, 29 Jun 2023 09:36:57 GMT expires: - '-1' pragma: @@ -856,10 +995,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -881,15 +1016,15 @@ interactions: ParameterSetName: - -g -n --file User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ - \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVU1TGVsVm1kV2hTTmpFMGJETlhUWE01ZHpoNlJuTjNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDA1cVJUQk5ha0Y2VFdwSmVGZG9aMUJOYWtFeFRYcEJNazFVVVhsTlJGRjVUV3BHWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNuUkJXRkYyVWxoMlNURndURWhQTUdkblprUlNTRlZpY2xGU0sySXZWbU5FUm1VelpXaHJWMjExTmk5blZWcDFMelJhZDBOalVHTkRSbkJ0UVhwcGNtSUtZVlJPU2tWNVNVcEdWVUZDT1V4Q2FVUkJORW80TUVnNGQwTlJOMWx6WkhFclNpOHlNRFJFYUd4WWIyOVhZMnBIWnpaUWJrNU9NM0I0VVZkTGVFRm1ZZ3BGTUhCVWRWWjBSamRsYkhVellXOTRVemh6Y2pCR1owWk1iVUpoUlZScVdrdHRjbGM1YzFod1ZFSTFZVXhZWWpKNGRuZGxXRmxwYW10aWF5dDVXalZWQ214Qk5qUmlWM2R0VG1Wc1kwVm9OSGRsUjNWT2VIVmtkMEphWWpCcFJtSlJVbGN5UVcxeGRuZExRMUJzYzFvNVlsVTNSRWN2UjBNNFNuaHNZMEZYWlVjS01Dc3plRXBOT0d0amEwRTRaM0Z1V2pSWGNXTlROalEwZFZWNFpXRm1RV1JNV0ZnelZteFZPRE16UkRKc2VrSjZLM3BKVTNob1UzUnpSRWRaY0RCMWVncEdTbk55T1ZRNVJsQjRNakZZYTFkSkx5dFZMMFZ2WTBsREsxWnFRVGsyTjFsNWQydDVNa0pETWpneVMxTk9XR2d6ZUdjNGRtb3ljVEp6TTJoMloyRTNDbWsyY1c1SlowUjRaMVV5UTJ4emNHUjBabGwwU0VwcWRVZFpSbTVaUjFaR1dWUlZTSGxKTmtaWkwzaHhXSHBXU3poS1RYVnhVVTgzYkVSSVpsbzVVRThLVW10QmRucEhLMjlyTHpCeFZrbHhSemgxTWpOamRWcEhhRGRLVldVd09YVlFSVTVhTkVGUVpYTjNhVUZ6Ym1ZM2F5czFZMnRxZDIwdlFVMU1WR2RVY3dwcGJHcHhNbGxrTTFwdVZXSkpjMUJFTUhWTUsydHJWVzlXYkZsaFdtSnBVR3BZV21kelQwZHBkVWR5WW1aVk1rVnphVGRHUzFweWNUVkdlVEZrZEhabUNqQmhaSGd4TTBGblJUUm9URmxTUTBoMWEwNVNTemsxUjAxRVpYSjNRMlZLVnl0NWFFOTZhR2xGVlhnclRGTkhlVzAyTW1WeVEzTm9UV1JYVlVvd09IY0tkR3gwY21KNGRrUTJOa3hEZVhsMVFVUjZXWGxhY1ZCNmJGZFBURXRrVlc5YVRWZFRjSGQzU0c0NU1FTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1FXZHBTVmg1YW1nMWJUQmtWSEk1Q2xad1l5OU9OQ3RvU0VSbWNFMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlFuRnhTSGM0WW5CdVYzazVNalpVVVRCWEwwdDRSM1poTXpJS2JqbEdWMmR1Y0dsRFMxZDNjbFU0YVhGMGVESlNTa0U0ZFdvMWRGQk1jbFJhU1UwMVRVSjZORVZCUld4a2FXeFBlbTFGYm1wTlNHZFBObWxRY2paQ0t3cHRUMnR5WkhOUWRrVXJSR1ZUY3pSalZsVkpUVXRXTHpSQmFIRk5SVTlUV0UxamIwbHdLeXRJVmxsV1ZuRTNSM1JxYnpKTFNFNU5VWFpEZG5SMmFWbHRDbWRKSzA5eWFuSXJMMEl5ZVdGUVNHeHNiVGxGYlZaMGRIYzRVMjA1WVhOblJWRkxNMEZpVHpaT1F6SlNhbFF4YW1oR2JuSlpXbFZaWkdZNVNVbG5OMDBLZEZKeFZXSkZZbk5SWWxWTVp6bHpRM0l6TkhGdU9XdERkazFuT0VKdVNEaFBlUzl4YTJsTU5taGhWbWwzV1VGWk0xZHBXazFRWlVVeVZESTRhRTVXYlFvdllsVkhkazA1TkdKVVpUWkhXREZJYzI5R05rUlRVR1pJTDFSVmIydzFhbVUyU3pnNWRuQnFSVlp2TkVsUlNYaHpka1pRVUdGalMwVlViemgyVEdScENtbHNhbGxWZFc5NU4yRldTbGxLWTI5VFJUbHNUblkyTmpOMFRHMDFibE5XTmt0VVYwbDNXbTVwZWtsVFkyVTNRbFZUUTNGalFWb3hObEF2U0VwaVlWSUtOM1ZEWkU1U01UVldOR055V2pWYWRFZFZNRkVyZFd0R1MzTldlRU01UVhsT2ExbDRiSGhaTHpodVpHSTJiVUZsTDNac2EyMHJSSGN6TDFSNmMweEZMd3BsYTBWUFVIaFJPV0puVkRoRWMwOWhUVVkwYTFsck9EUnNhbkJaTjBObWRVUnlVbkZITVdsSWVYWjBLMDVQVUdaNE1sWXJSSGRSWkM4eVJUUkJja0Z2Q205NVZYbDVRblI2UW0xcGMxQTJjVU5sYW5OU1dXOUVabGhQY25aNmQxbDNUbTVIVERKSFNXbzFjeXN2Y0cxNlpqQnZibkJtWW1WaGQzSlhXVXhPWjFrS1lsbGhVVmRRYVRKSlYydHFibTUzVG1sRFJpdHJiMnAyVWpSU2FHZElUVzQxV1hsVFZERnFkWEJNTUd4TlZVRkpUMUpOWVRkRVNWTnZNalZqVmtGNk9RcHdZMk56UVdzMFVWQndaWHBTYzJJeldGRTlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5zd2RmbW9raS04MWM1aG9haS5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdDZsZHpibwpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdDZsZHpibwogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdGUyb2F1cTJjaGhfY2xpYWtzdGVzdDZsZHpibwogIG5hbWU6IGNsaWFrc3Rlc3Q2bGR6Ym8KY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0NmxkemJvCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdGUyb2F1cTJjaGhfY2xpYWtzdGVzdDZsZHpibwogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklha05EUVhkaFowRjNTVUpCWjBsU1FVcGxhVlZMUTNaVVoyczFRWGQzUTJ4WU5HUlJlV3QzUkZGWlNrdHZXa2xvZG1OT1FWRkZURUpSUVhjS1JGUkZURTFCYTBkQk1WVkZRWGhOUTFreVJYZElhR05PVFdwTmQwNXFSVEJOYWtGNlRXcEplRmRvWTA1TmFsVjNUbXBGTUUxcVFUQk5ha2w0VjJwQmR3cE5VbU4zUmxGWlJGWlJVVXRGZHpWNlpWaE9NRnBYTURaaVYwWjZaRWRXZVdONlJWWk5RazFIUVRGVlJVRjRUVTFpVjBaNlpFZFdlVmt5ZUhCYVZ6VXdDazFKU1VOSmFrRk9RbWRyY1docmFVYzVkekJDUVZGRlJrRkJUME5CWnpoQlRVbEpRME5uUzBOQlowVkJOeTl0UTIxbFNVOVBVV05LVUZwRVltSnJaSFVLUzA1VGFtUkVZbHAwVGsxSVJ6TjRWMjkzTjJFMVdXNDVSRTFJZDBKTFVWWnRNbEJQYjBFdlVqTTNTak5WZDIwdmQwTnRNSGx5U1VadUx6bE5iWEp1U3dwNmFXNUVTbWhyYVZaUFVYZDRVMjVPUldZeFZqWXlhVVEwVUVzNWVUSTJhV05HTURRM1dVOXhNV3N5Wm5CTFVFVTVTSFZ0VEZWM1VIY3lSVTh5YUV0UkNtRnFjV1JFU3pkU2RDdFliV2hKTm5vMllYTnpNVzB3UTA1WlJsbG1VbkJxYVZKTFpGaG1lV3d6VFhSbmRqQXJSVkkwU1daaWVGVXhPVk56YlVNek9YVUtORXRVUmpsQ1ZFTnZZbG96YkRsU01sWllUekJ0UkROTVpIUndWelpwWTFobk1HMTNTMmd6VGpOUlZtczJWbGRVUkVNclduWlFNWFo2Y1VGYVZUSnpXUXAzTjJ4dlozRmtibXRvWVZaNWRrWlpTemRMUWtsQlRVdzBiVTFOZFRoUU1FRjJTMFoxTWpGUmRHTlFaM3BWT1ZkelVtbHVlRWh4WTNOV1VFMVNTVlp0Q210aVVWbFhhR0l3VFZwTlkxaHFNekp0Y2s1R0wwVnllVFZWV1hWa2NXZHhRalo1VFRkQ1NUaHNka042TW1GVGQwRXZlVmhRYVZwTWF6TkNVbUpIU2xJS05HMTFRVXB2WkRaclFYVk5aMnhKY2pjMk1XMTZjMWxoVkZWcmMzZGtXRkZRWVRGMWVGQmxjMkZCTnk5WFlsSnVNVEZWTURSU1QydFNjRXRxYWpONWFRcFlkR3hJYlhsSVFrSjRkekJtZURkM1VVaFBPV0pLTTFnMVVsWlpaVkJQYUVwVE5Fa3dMeXR4ZFdWdGMybG5aMUZ5WkVKdU5EaGtSblZSZDB0dmVVOXVDbkZwT0UxRmJqVXphMHM1YVZacWFtNWFkSGxCYmtScmJWWnhWbVE0VTBwUVVFZExOREpIYlhSU2MwUnlXSFEyVkZORE1tNUlOSEp4VFVSTll6aHBTREFLZVU1NWVYTlNlblJRTWxodlkyMTBRbEEyVkdoeVpWaFZiV05CVjJkVU1GVTNlSFJoVG1SSlUzWkhOME5IWTBKU1dqUkJTRVpFUldSek1qbElUSFF6S3dwb1pVcG5XVmR1U25kWGRGQmtTRmd3WkVjdlFUVXhPRU5CZDBWQlFXRk9WMDFHVVhkRVoxbEVWbEl3VUVGUlNDOUNRVkZFUVdkWFowMUNUVWRCTVZWa0NrcFJVVTFOUVc5SFEwTnpSMEZSVlVaQ2QwMURUVUYzUjBFeFZXUkZkMFZDTDNkUlEwMUJRWGRJZDFsRVZsSXdha0pDWjNkR2IwRlZRME5KYUdaTFQwZ0tiV0pTTVU5Mk1WZHNlamd6YWpaRlkwNHJhM2RFVVZsS1MyOWFTV2gyWTA1QlVVVk1RbEZCUkdkblNVSkJTMUZWZVRGNk56WkdTMjlsWlRGWVpXdEdaQXBzYWxGTFVuUlBVak5uYlUxSk9FRTFValZUUTJZM1VYb3JSWGxyT1N0blpqQmxSak56UW10WU4wOUhMM1IzYWtVMU1FZHlla3RCY3pSdFZGVmllblZEQ2xGeGMxUkRkVEZRVDJKSVF6QlJRbmg1WlRGSFYwOVRTRFJ3WmpoMmFqRkdiM1pwTDA5S2VVYzVRVnBFTlZoU1lWVm1SVko1YkdOT2QySkRjRGw2YW5JS1lUaHVRMWxGTlRWYVlsbHRPRXR5YUZWTVIxRTNkWGhVTlVsS1IzZDRObEVyVWpneFpEVXlkMEpXTDFSeldYWlNXSEl6U0Zkak9FNVFVMHh3Wm5ndmJRcDZWalZZZFhoclVXZHZaWFUxT1dWUFRURTJUR3hTT1hNeVMyZFRjM2swU3k5UFR6aDNhMDl5ZVdwRGNFTldPUzluU0dscWJGQkNjbm8xVWs5NFR6aDVDamhKTkdwdFoyRmhlRU5vVDNCaFJEY3phRzFJWldJNWFXSkdlRlZQTTFKUGJFSm5ZblJNWkRObmNuZzBSbGR3TWs5WFJGY3dhR0Z3VFdSb2NGTmhZM2NLYTB0TVdFWlpkRUZPVG5sWk9ERXpkMFFyZUVwR1RVNHJNMnhhV1hremRtOTRjR3BPVldzNGVsTkNielZvTms5cWQzVkVlRk5USzBwdWJ6STVUV1ozS3dwUWVFOWxSREJqVkVVeVp6ZFVhbGM0TWxvMlp6QXpZa3RNYldKdlpHOWtUbTUxTkZwYWNTODBiRmN6Tm5RME5VOW1XRTV6U0ZkcmNEaDFXSHA0T1VoT0NqVnVSbTVaVDBWcE1GVjViamhUZDNCRmVDdEZaRTl6VUVkdVVqbFZSU3N5TTFCNGRIWktRMHhEYWt0R1RVMHpka05zVTJvd1kzSm5VemxsZUdKUlZIVUtSbWxXTldGc05EQXZVVFJ6V0dSRU5tNUtjelpSV1dSU00wcFdZVlpuYkhCSVkyVlNjbEJ1UWpsUmJURmhNRXBLZVc1b1pYcElkbm81YURsaU9VNVdSZ3B6VGtZd2VHZG5iMGxCVTBST1dYazBRVzVJZDNocmRXbDZTMGc0YjFaYWF5OVRNbWRCVmxOaWFUTkdSVmxKWTFwRFZVa3pkRFZzVkVaUmNuZEVTV0p2Q2xKbVp6WkZUVXRVYTBZd04zUkVOVFZRUTJsa1VUZ3lMd290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MxRkpRa0ZCUzBOQlowVkJOeTl0UTIxbFNVOVBVV05LVUZwRVltSnJaSFZMVGxOcVpFUmlXblJPVFVoSE0zaFhiM2MzWVRWWmJqbEVUVWgzQ2tKTFVWWnRNbEJQYjBFdlVqTTNTak5WZDIwdmQwTnRNSGx5U1VadUx6bE5iWEp1UzNwcGJrUkthR3RwVms5UmQzaFRiazVGWmpGV05qSnBSRFJRU3prS2VUSTJhV05HTURRM1dVOXhNV3N5Wm5CTFVFVTVTSFZ0VEZWM1VIY3lSVTh5YUV0UllXcHhaRVJMTjFKMEsxaHRhRWsyZWpaaGMzTXhiVEJEVGxsR1dRcG1VbkJxYVZKTFpGaG1lV3d6VFhSbmRqQXJSVkkwU1daaWVGVXhPVk56YlVNek9YVTBTMVJHT1VKVVEyOWlXak5zT1ZJeVZsaFBNRzFFTTB4a2RIQlhDalpwWTFobk1HMTNTMmd6VGpOUlZtczJWbGRVUkVNclduWlFNWFo2Y1VGYVZUSnpXWGMzYkc5bmNXUnVhMmhoVm5sMlJsbExOMHRDU1VGTlREUnRUVTBLZFRoUU1FRjJTMFoxTWpGUmRHTlFaM3BWT1ZkelVtbHVlRWh4WTNOV1VFMVNTVlp0YTJKUldWZG9ZakJOV2sxaldHb3pNbTF5VGtZdlJYSjVOVlZaZFFwa2NXZHhRalo1VFRkQ1NUaHNka042TW1GVGQwRXZlVmhRYVZwTWF6TkNVbUpIU2xJMGJYVkJTbTlrTm10QmRVMW5iRWx5TnpZeGJYcHpXV0ZVVld0ekNuZGtXRkZRWVRGMWVGQmxjMkZCTnk5WFlsSnVNVEZWTURSU1QydFNjRXRxYWpONWFWaDBiRWh0ZVVoQ1FuaDNNR1o0TjNkUlNFODVZa296V0RWU1Zsa0taVkJQYUVwVE5Fa3dMeXR4ZFdWdGMybG5aMUZ5WkVKdU5EaGtSblZSZDB0dmVVOXVjV2s0VFVWdU5UTnJTemxwVm1wcWJscDBlVUZ1Ukd0dFZuRldaQW80VTBwUVVFZExOREpIYlhSU2MwUnlXSFEyVkZORE1tNUlOSEp4VFVSTll6aHBTREI1VG5sNWMxSjZkRkF5V0c5amJYUkNVRFpVYUhKbFdGVnRZMEZYQ21kVU1GVTNlSFJoVG1SSlUzWkhOME5IWTBKU1dqUkJTRVpFUldSek1qbElUSFF6SzJobFNtZFpWMjVLZDFkMFVHUklXREJrUnk5Qk5URTRRMEYzUlVFS1FWRkxRMEZuUVdkelpYcDVWRVpPUm5ZNGFYQm5OaTk0TUZobFdIaHZhbE5xTlhGUWQxZFRjR2RSU2tsNWQwSldNemQzUkZobVZESnVUMmcwZFVaMGVBcG5WbHBHTVZGdVpUTlhaM0p3VlUxR2FuTlhibUVyUVdwQlNXTTJSMWxUUjBRd2VWaEtiRkJwZFZCU1FYSkVVbXhyTWt4TldtbFpibkpzV1doWGQwbHFDbXRvYmxobmRFaHhWelJ0T1VOWkt6Rm5hbEoyYlZONWRERXpUMjVzV0RkTFQwcE9TVXNyUjBKVkwxQTVUbEkwZUhoTU5WWlVaRGhvYUVaUWJGaEJlbTBLZG10S1Z6RTNja0owWmtzcmVqSkxOaTl5WmxGU1IxY3hhMVpKYnpsNWIyeFFRMHhqV2pSRVduaGpLM1JwYzNOcVNuVkJkWFpGWVRGT2EyaEZNR1ZvV0Fwb1MwbEZjQzlTT0hWbVZVUTFkMUpoVGtkc2ExUklia2N6VFU5T0wzaG1XRWhVYmtkT1NpdEtLeXRJV1dGclUyWmxUM0pKYlVabmJYbFBZbGs0TDFBeUNtVnJiRko1YmswMVdtTk1XVGxDVUM5a0wydGlVeXRDTjNkWVZXTjRNRGRHVldwb2QxZDFOVGtyVG1GQ1ZIVkhOa1l5ZEdOeWFIbEtNa0ZRTldkMGVpOEtPVXhMU2sxeVQxWk1ablpRVG1wMVEwNVpTVVYxU1N0TFJXWkljRTQ1UW5WaWJteDFkVEV2V21WNVVYRkRaVmRsVGpCM1N6Vnpia1JYZVUxVU1WQTBid3BpU0ZFMGVVMXJOazVGVUVkTVVGTlBjVWRRVVZFd2FESTRZbFZoVjBwMVlqSTBRemQzTVRWdFVFcE5SMjlpZEVGWU5UQlFNbFkxYkc5dmEwVndlblpVQ2taWmFYRlZZVE5sUzNoTU1YSkpPWGNyZUZoVU5XdDVaVkJwUkVwSVdITjFTMDB6WW1NeFVtUXZNVTVuY1c5eU5XcDNWRGxhWm5sTVIyMXZaMEpJUmxvS1VucEdVMmRxVEhSVFpXTnFlRWRKY0VVeGVtdG9PVEZwUkRReU4yVm5SVWcwZGl0eFQzQnlXR1J3ZDFsYVNWVTRRa2dyWm5Oa1ZuVXlNWEZMYzJFd1NRcGhaWEpxVTFwMmMzUnNiVU5rTTA1VlkxWkxSbmxqUTFFM1ZXdDNkMFpDYlhFMFRWcFliWFpCWm5CMFlWVXZkVmxyVVV0RFFWRkZRUzlrZUZGRk5tbFhDbkZ1YWl0blJESlJRV0ppYnlzeVpqRlFRMk5tVERkVVpVRmtNMkoyY2k4NE1rVjZlbVpaYTJKSEx5OWFTWHBLZFRrM1ZsTnROWFphU0hKdk1XbG1kMk1LS3pKV1pWbDVZbXBvVmxsR1NFUkZWVkJtTkc1QllVMVFWM2xQVWxjMU5HVklLMHhxWTJwVFRHUmhXRWgwTW13eVNXOHlPRlJtTjNwU1NqWnpjM05UY3dwMFprUkxhMFJCYm1sd2FVTlpZMUZCY0dwR05FWlpjSFJLTWxZdlpISlRUV0pYZFZoall6SkZSVzEzYUZOaGJUZFpZMVF2Y1hoWWR6bHJSa2hTVW5WeUNtOUdNV3hvZHpWMFZXTkJha2RaTUV0U2Qza3pVa1JEU3k5UlJVOHZaVmhzTWxrdmVYbG1UM1JSVUV4ME5reHpUREZMUVZOeVNEY3lNa1pzVjBoV2NWQUtjV3d3YVZSMmFGaHplRUpKWjBkdFJYZGtiamxaVVVsdGFtZDJjRGhyU21GWGRpdERTVEpUVW1vMVZtOUdjRWxFUWk4eldTdE1SRlZzVGtjMlV6VlBkUXBuWVZkcFdWWTRUMFJoYXpGa2QwdERRVkZGUVRobU9EbFNjbFF3UVdGVGVVVjBlR3BqYkRSeFFUTTNTRk5PTlZGME5VVm9Wa0ZpVGtWMFNVUjRUR1kzQ204NFJUZzRSRzFUVm5kTE0wdFpRVVJ0V2xkRk5rTlpPVXMzWTBOMlRGSnViVXh6TTB0VFRHZE1RemRWVmtORk1ra3ZVbFE1YzJORmIxTjBZVzV5T1VJS1EwTlRZWFZoYjBFd1pHOVFhMVp1WVd0M1RreEZOVmxIU3pKMU4wZHJSVVpvYWt4NVNqWXlaRVJ4WVdzeUszWjRSMk5OYW1WbGFYTTBlbXhWUjBWWll3b3lWMEp4UlVkb09UZEtTREEwTWxoU09VRXlSVXhITURWS1l6UmpaVlF2UzNGR2FrbzFUVzE2ZDFWclVUUkxabGRaWWpFNGRHODNMMGQzV25aRVZsWk9Da3BzZFRRdlJFRnVRMmRDWVhsMmNtRnFkR0l3YjFWalNuWnlVa2xMY1ZGT2QxQlFkRWhqWm1OeVNFbGFlUzlJU0d4bVdsaFFWWFJDVG1SRk1XSkVkRW9LVkdvNFowdDVjbFZwWjNZeFZXUjJLM1J0ZURCblluWkJhbE5VT1ZadGFGY3pNV2s0UjFWV00xZFJTME5CVVVWQk56VXdZa1JIVFhSNWVubHVXa0kwTXdwd2FHRnBkRWRKT0hKSmJEQjFNQzl3TWxSTmVUZHJjRU1yTVhOMU0xRm5hbmxZY213eGJqUk9SbU40Vm1FNFJtWXpPSFk1UzNkQlNIcDRZWGRVT0VKMUNrMTJWM1J1ZURKSlRVeGxTekE1VnpSalpITlNiMkoxVDFSaFUxZzRUREFyUVZVM05GRjBkazVuVUVoMGEyMVZXamd5VVdWUFEweENjbTR6V1doT05tWUtRa0ZtVGpCVUwzcExUM00yYjBsS2JsbDVPQzlpTm10a1pqQTFNWGhTYjNGR2ExWjJObWh5UjFod1RsZHBORTFNVkZSVWVXTXpNbHB6Y1ZaV1dtNVJjd3B3VjFKSkwxSTBUMWhHTDFwUlFXcGtkRGc1WlN0cVNXTnJVVEUxUzJwMlUwSmhUVWhCYjNoRGNqTkNhMFFyVGt4V1dYbEdXblpIU3preFFYWlRVVVJLQ25Kd0syOHZNbEZhZUdWMlptRk5hR2cwWlZCSE4zbzNTVVZIY0hCNVRWSjBWRWQ2UjNOaU9HbEZNVWc0YTFWbkwySjZWRU4wWjBaM1ZISnJjbTExVEdjS00yVTBaMGwzUzBOQlVVVkJaM2xRV2xablltSnpSVkpNUWk5UFRYQk1ObTl5SzI4eFNIRlVlbEYyWTFGQk5WRklOeXR2Um1oeldscFNUREpGVVRNMEx3cGpiekpVUzNCamJqTkZVSFJ0VlhsWWJUWm1ObWRNTmxjMFYzRmlSWFI2UjJSTmMxQXpNazQ0Ukc1SWNWTnVTa0ppVVVkelozaHBUSEZzYTBSNlFtUXpDbWxGUms5aVIzTjNRM0pyWmtvd1kwZHZkVTF1Y1hGMVVIcGtRM1kzTldGcE5WQjVhbTVHV1RRcmMyZElOSEJ0V0dwNU9WUkNha05CYXpoQmRUSnBUaklLUldkNGNXeEJlSEZuV1VsT2JsaEhNMHBYYVZSbU5WWXhVV3hQVkZoVWREbEJVVXRUWkdSM1pWUnBjemhsVlZneWMzWlBRMjVOZDJOSFpYaGplVGRXWndwbmIyWTRjVGhFVkZSa1RIQkZUR3RLWVN0SlVYUmhUR1p1VXk5VE1FY3JkR2N6YmpGNGRFdEpXVkpxTURNNE9UTlZRek5IWTBwbFZVOTVXREJVWkVKU0NrTXhiemx2UWxoRE5qWk1UVnBFTWxaMFEyUlhZbXQyZFhZcmR6ZFRjM0ZrVTFGTFEwRlJRVlphYmxCRlpXVkdXVk5GZFVwS1dVZ3pkelJDZEVOVmFFY0tObkFyUTNCdk5rMUJjRUZ0VGpOaU1Fa3laMDFWTVRWVVNUTkNSRGxWVnpOMWVGRjNNVFI1T0dGcU0xZDZaVFJZWVdkWE16VlFVMDlvWlRSTmVYVjFVQXBaY1djeEwxb3hkSFZGVDBvNU5rd3ZTVkZ5ZVhsUVV6UTBabWN4Y2xaV04xTmtlakJWVDJ4dFVucDFiM1IzVG5oS1NUWnlWVzluWW5SUlJtUkNTRWw1Q2xGSlRXdG9hREpGV1RkRmJDdE9abTltU1RCUmNsYzJjbUp3U0dOVFVFRjNiVWhYVFZWeVZUSlJVRVZxY0V0TGRGcENibTlqUkVKNFNsaGlhM2hoTm04S09YcElaMUoxWmxRekwyNU1WRkZLUm1OcU9GbDFjRkZ0U0c1RVNDOHlOaXRSWTFsVFVGaEhVQ3RVT0hoQ1IydE1NMkkwVDNOTVpuWnZSMjQxTlUwNVFncExkSE55V1VGUVJ6UktTMVZSZFVJeEsyaEVja1ZDTWs0NE5YWXlaRVpWV1ZWMU1VOUlaa2h0U2t0NE9WZzJRakU0V2tNNVZEaEZLMVF3TUVNS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiAybzJqejl2cGQxZGJpdGMxYm96ang3cGh6ZnhyaWZoY285YWF3bzk2amlhdTl5Y2J0d3ZwY3EyZ2JyMG8xa3IxdW1uNnVlNXV4bGRqaTQ2OWRkZXF1OXptaDIzOGhqaTI5dGN2MmhyNnlxbHZxaXh3aDg3Nml5amVxc2hnNTJnego=\"\ - \n }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": + \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVVsRk9VUTRlRXR2YzFrd2NsQXhXSHBoV2tFdmVHTjNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDA1cVNUVk5SR3Q1VFdwUmVGZG9aMUJOYWtFeFRYcEJNazFxYTNkUFZFMTVUa1JHWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNuSmhiRE5oVVVOUUswcDROVkpGTXl0WlN5dDZiblJqT1RSRFZrRkZVRFJTWm1SQk4yNHZUak40UkdNeFpETmpWV2R3ZGpGb1J6VkJTMkZaVVVKRU5VY0tUMkZ5Y1dFNFFUYzJNRXhRVFdkVEszQnpOWGN5WjFvMFRFRkljV0V6UjBrNWREQXJWRkJrTjNaM1lXSm5WbEJKY2taQ1ZsRnlWMGxxY2toUFZYazVad296Um1KbEszRkphRVZ4TmtKVlNDdExTR0ZtY3pNcmJHcE1NbFJHV1ZGMlFuWmlhWFJCZGtSbUsySlVWV3hOVmpCU2F6ZzVXbGhPZFVnd1VXWnBSMGhOQ2xwQ016RndXVVZRZVV0aVp6aFlhRGhYY1U1UWIwNDJTRUl4VG1kTlVYUjZVa0pCUjIxM2NXbERaVzlWT1ZsaGVtZERWVVJxVGxCd01VeE5VbU5qVEhjS05tdDZXRWhzUjJ4eVVYWnpRVkpzTWpaaE5tcDNTWEpwT0VsVFJFTktVakJaYmsxNmIzSTNOM0pFU2xSYVUwTjRXa1JCY2pJMlFVbEJNbFJ2Umt0TFR3cEdVMlZuTm1vd01IRjRkbVpRWlhJMmRFbENWWFIxTW1obU9HSklXa2xyWlhZdlRDOTJlRzV6YlhRM1JVeEhRMjVGZHpONFRIcFlOWFZVV0hZMFdFVm1Da3MyYlcxQ1F6Vk1RVGsyWVV4QlJsUlZVRXhwZDBZNU5sRmlOMGxpUTNveE0wcGljbVpyWWxCR2IzbFZRekEyTUU5UVRVNXFMMVkyY1NzM01XdE1lRVVLWkhsU1RFeFRhWGN4ZFdkTVJFMVNSMmx5UzJaSVZsTXlkSGtyUXpKb1R6aExWbkJyTjJsaFNHUmlWV042Tnl0NlJVTkhlVTVHVkdwWFRUWjBVMnRtVkFwSE4zQnVaVUpMTjBsR1FsQnBTbTFwTUhCTGEzSXdkWE50UjNZdlREWmFRV3haY3poRWNVMXBibEpuZEVneVJrNHdaRTVMU0ZKWFEyVlBPRXhuSzJ4ckNrNVJNVEJQVVVvM2VGSjFTMUExTVVObk0zVXlVM2w1ZVRKd1IyZDVRWGhzYjBoUlZEVk9OSGxSU0dKUmRtRktkV1JTZFZwQlEySkZkakJ3UWpNdmFVUUtLMDUxTUZKMk0wMU1UMnhKWVVncloxZHZWR1JrZWpWeFltbEpUa3BSVmxaUGJrZzRiVkpHVlU5MWMwTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1RHOVpkMmxPTVU5bFJYcHhWa0V2Q2t4RlUyNXNVbU0zTnpoT1FVMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlExVmlXVEpXT0RoYWFXeHVOREpXWm1kRVJtOTFiV05RZVNzS2FVcGpjVzFwYVVvekx6QlBiR0ZuZDJkU1dtVnpNWGxDZGpkQlprNXJTamg0VldZeVRVMXJhMFI1Y0dNM01UTklWWEUyYTBaV1VuSXZObFpRVEZsU2FncHVUbVphWjI1NmNXUjJla2w2TDBwV2VVNXBaVEY2YTNkSUwyZ3laRzl6UzNSR2RsbHJXVmxFTlZkNmRHUllNbGxISzFCQ1N6VjNhbWxHT0dSTk4zazRDblZMYW1kb1EzbDRRV2h2VEVSM2NIVlRVUzlXT0RCcFFsRjJhWGRLVmxWWGJHRjZaa2hNYm5obVJrSjVOVk5pU0hwTWVtcHFLMmRhTlhWYVNuUkVjV0lLYW1SbU5sWmFjVzF0WTFsS1oyOU5XbEE0Vmxaa0wxRkdhMWxtZFM5MFlWRndNWGR3VTJrMWEwbzNhRmxRZFdJclRqZDBWR0pNZDFwdk5VbExZMWRSY3dvMVZYQm5jbmRRVFRSS01XRndSVTR4Y1hOYU0wTkhVa0pqTmxvMU5YVkhlbHBSYkM4ek1HOTZiM0psUkVvd2RtWlZRbmczUmxKNmFVd3hUbmhQYlVWaUNpOXZkamRZVkRNMFJFZE5ZakJYVkRoTFNVbG5ibmQyVUV4M1RUa3dkVzVIUzIxS2RDOVlaMGRKUzNCck5rbFlXamhHUzBKeWFFODVVemd3TTFCYU9WUUtjemhoUlRFek5UQlZhRnB2T0haaE0yNUpkMkp6YkdnMWNIcFJORzV3U1d4RlNFZG9lRk5oVmpkMFdqVkliR3B6TjFGUVpqZ3ZOVVZJYUVwU2RIZEdNQXBZZEhGTlVpdFBZa1Z5Ykhka0wwd3ZUMFJ6TWpJdlZFTnhVVkJ1VFVKd1lXeGtiek5EYTBnMVVFUjZRVWxwWTNoSGNuUllSV05tVkhSR1IxZFlWbnBRQ2xZeVltY3dSRk5xYUZKbmJXcGhaRkZJWkhKSUswbGpNVkJaWjNsclNXYzBWREo1WWtOWVJ5c3ZaRFEyVW1KdU0ydHdXakJhYldOVk1uaFdkM1JWTmxJS2RtRXlSVzVXWjJrclVFRTVkekZZWmtwbk9HSlNlbE5OWnpob1UwSkpVbUo2VjFKaWRFdzJMMVYyYkZoTlVFWnpibHBxTkRaQ1pFdzVjaXM0ZUV4VlpBcFphamR0T0hGRmFTdEhUbVpUVjB3clVrRTlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5zM2l1cGRndS0wMzlxOGdpcC5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdHpybzdqegpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdHpybzdqegogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdGZtbG1pajVtdGpfY2xpYWtzdGVzdHpybzdqegogIG5hbWU6IGNsaWFrc3Rlc3R6cm83anoKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0enJvN2p6CmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdGZtbG1pajVtdGpfY2xpYWtzdGVzdHpybzdqegogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklha05EUVhkaFowRjNTVUpCWjBsU1FVdFJibXBsWTNoWk1rdFVlbU5vVG14VGJYQnBPRmwzUkZGWlNrdHZXa2xvZG1OT1FWRkZURUpSUVhjS1JGUkZURTFCYTBkQk1WVkZRWGhOUTFreVJYZElhR05PVFdwTmQwNXFTVFZOUkd0NVRXcFJlRmRvWTA1TmFsVjNUbXBKTlUxRWEzcE5hbEY0VjJwQmR3cE5VbU4zUmxGWlJGWlJVVXRGZHpWNlpWaE9NRnBYTURaaVYwWjZaRWRXZVdONlJWWk5RazFIUVRGVlJVRjRUVTFpVjBaNlpFZFdlVmt5ZUhCYVZ6VXdDazFKU1VOSmFrRk9RbWRyY1docmFVYzVkekJDUVZGRlJrRkJUME5CWnpoQlRVbEpRME5uUzBOQlowVkJOelpvUTA1cmNWSjJNMnMyTnpOSWFUUTJlVE1LVUVONVNFVm9WMDltYzNSRmFtZHFNVWRtZFVFcmVEbHBjblJOZVhsT00yUktSRmhaVm5kTVRtMWFLMmRQUlRWR2NFWlFOa2xYWTAwemRuaEdTSEZQVXdwc1drUnZNa0kwVFhkVlRtSjRSMmhhTjBreUwyNUliM1kwV1VSV1ZYUktRVzVxZUN0UFNFZHVUa1JKVG1aVE1WSlBkR2R2ZUhvMlpVcGxaMHcxWlRoMkNqRnFNV3R1WlV4V2VsaGtlWHAyYkhsVWFHcFVaMUJ3VkdzdmFsVlNka2hPYUdZMEswTTJkRGRUVlcxS1NGY3pPRTR5V0ZsTWFFOTFSSEZYVGt3ck1Vb0tOR2xIVDI1RVowTktUMHBvVFZkWVJVOVFSbWxHTkdwbGN6VkVkWFF6WWxoaWJVTnRSblIwUmxOdlJWTXhNM0J5ZDNKdFoweGlVRGR1UlRoSk4yMVBjd3B0UjBGREt6ZGtRVWhpVFdsWWJGVTVXR2RDWkdFM2FWcFJXRE5LWXk5V2VFOWxWSEpOS3pabmJ6Tm5TM2x0Y1VOS1pIbHZNM0ZhVTFsNVZuWkxkbWs1Q2prM1RHMTZOVEYzV1hjeVQxTlFZMEpJVjNodFpsVnFaa2hIYVd4b2N6WnRVbkJKVEhGRlF6VjFNR1ZHZEVSM00zSm9hbHBZVjBNM09XOXVaRWxRVWxNS01FVlpNVWh3WkVob1pqVnRUVVl6YWs5RWNGWTVWRzl6YVZoTWVHeHhXbUZvYTJVeFNtTnJabGhEYnk5bVZFTnBja00zUW1sSFoyMUZVRmhrTUVnMmRBb3djbG94UlZwUWJVa3ZjRXBLZWpGblR6WklkakU0VFRaSGRpdGpZbTh2V0ZKcFlXMVZZUzlWWkdGb1ZWRXZOR2MxVnpJNGVXOVZaVVJuVEZKUU4yTm1Da1V4TkVNeWJFTnlaRmR5YlRoUlJVZGxWbGt6UXpVdmNXTllaV3BCYkVkM1dteHZSamt4UlRreWRrSTJUVWR0Y0ZoU1VsWnRkRXRMTW1sM09XbDJTRTRLS3pka1FYa3hka3Q0V2pCV1ptTldORUZwVVc1dmRUUmpRMHBGU3lzMFRqZzRjMkZtYlRsWlJVNVdPR2hzTTNwRk0xSmpWRmhWYWs5MGVFTklSRXhsYVFwdlFVWTBaR0Z1VEd0R1FWbHlZbGhPVmpSUE1XbGhjME5CZDBWQlFXRk9WMDFHVVhkRVoxbEVWbEl3VUVGUlNDOUNRVkZFUVdkWFowMUNUVWRCTVZWa0NrcFJVVTFOUVc5SFEwTnpSMEZSVlVaQ2QwMURUVUYzUjBFeFZXUkZkMFZDTDNkUlEwMUJRWGRJZDFsRVZsSXdha0pDWjNkR2IwRlZkV2hxUTBrelZUVUtORlJQY0ZWRU9ITlNTMlZXUm5wMmRuY3dRWGRFVVZsS1MyOWFTV2gyWTA1QlVVVk1RbEZCUkdkblNVSkJSakV2YlhOTGNFaG9VRGhFY201NlVVODVad3AyUmtzMlUxb3hOV0pOTmxKMk1XZDNLM1ZrZGxrMlZFTnpkakJyYUdwbFlqazRORlpQVkZoeFZ6VXJVbmhrZG5WeVl6aHdOelpYUm05ek4zVnlSMlJIQ2xkb1IzUnpWV3Q1ZG5Rck9WSXJXVkZIZDNCd1VIcGtjVVpTZVV4UE9GRlFhbXBsZEdWWldGWTJjRkZIZEc5b2RVaDVXVWx4ZGxWd1dETk9lWHBLU21FS1QwcERSWGhGVW5KUGVYRTVjR2RYUjAxM2EyZFhReXRvVUU5Q1NDOVVVamhGVTNaWFJuWmhWbk5yVGtjNVkyVjBNRmh3WlhwWlYyRTBkazlxZG1KVmFBbzJUa0pNVEdoaVVFdGpZemxSVjIxVmNXTlZkWE12TDNSNFRFWjVVSGhKVjFSNVRtSlNjbXRPTm5SdFVHMHdRbTVSUW5JME9IbHdSV2RHU1ZWR1FWUTBDa2c0TVVscU9HOWpjamRTTVVkNFkwaG1NMFpqT0ZoU1VUbHBUWEV2TlU5cVYzQmtjM2xuUlVVeFpqUk1jV0ZCUlRFM1J6ZFVkbTlTWW5WaFkxb3hhMlFLVVdKVFNFbGpUR28xY1hjcmRuQkNSMGsxZUZwcVRYZFhLM1E1ZGtJM2RuRmtlSFpKVWpoWVRuTXZhR3RTTTJkVVNWTmFkVmQ1ZG5kemRHUkVNREpuUlFwaVJYRlBSaTk1SzA1NlVEQkhaSE5VYTJNNFVuVm9ObWxqTHpBNWExUTFUemxtYkVKSlJXdFZOelZvZEdWclREbDVhVXRRV25KWWNteG9OM1YwYUhsWUNtazNVMWxVTDAxcmFrMXRWa3MwTkhZemVHSllOMmgzWVUxTEt6WjVPVkpPYlVWeFV6UkZXRWRHV21WMk1VaGxPVGhNVDA5V05uSjNSMmw1TTJKV1REQUtiRkowZEVGTVYwNU1UbGxLUjJNeGExRTRiakZ1TTJoM1dEUm1XbVZESzBSM1ZGZDZOV0VyV1hKTmVVcEtjMGRITW5SUVRYUnZiV2hHVlVablNGWmlZUXBOVmpNd05YWklPRXBVV25SblZteHNhbWRMY0M5S2VEWjRSbHBKZFRSRllqVjNhVWhaVlZwVVVFWjNhekJwU3pWeWFtbEtXamhHTlc4elJYWk5NazVSQ25KV1EyUjBVbUZvUzIwd1JGRnVhRlpZT0d4cVUxQllPQW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MxRkpRa0ZCUzBOQlowVkJOelpvUTA1cmNWSjJNMnMyTnpOSWFUUTJlVE5RUTNsSVJXaFhUMlp6ZEVWcVoyb3hSMloxUVN0NE9XbHlkRTE1Q25sT00yUktSRmhaVm5kTVRtMWFLMmRQUlRWR2NFWlFOa2xYWTAwemRuaEdTSEZQVTJ4YVJHOHlRalJOZDFWT1luaEhhRm8zU1RJdmJraHZkalJaUkZZS1ZYUktRVzVxZUN0UFNFZHVUa1JKVG1aVE1WSlBkR2R2ZUhvMlpVcGxaMHcxWlRoMk1Xb3hhMjVsVEZaNldHUjVlblpzZVZSb2FsUm5VSEJVYXk5cVZRcFNka2hPYUdZMEswTTJkRGRUVlcxS1NGY3pPRTR5V0ZsTWFFOTFSSEZYVGt3ck1VbzBhVWRQYmtSblEwcFBTbWhOVjFoRlQxQkdhVVkwYW1Wek5VUjFDblF6WWxoaWJVTnRSblIwUmxOdlJWTXhNM0J5ZDNKdFoweGlVRGR1UlRoSk4yMVBjMjFIUVVNck4yUkJTR0pOYVZoc1ZUbFlaMEprWVRkcFdsRllNMG9LWXk5V2VFOWxWSEpOS3pabmJ6Tm5TM2x0Y1VOS1pIbHZNM0ZhVTFsNVZuWkxkbWs1T1RkTWJYbzFNWGRaZHpKUFUxQmpRa2hYZUcxbVZXcG1TRWRwYkFwb2N6WnRVbkJKVEhGRlF6VjFNR1ZHZEVSM00zSm9hbHBZVjBNM09XOXVaRWxRVWxNd1JWa3hTSEJrU0dobU5XMU5Sak5xVDBSd1ZqbFViM05wV0V4NENteHhXbUZvYTJVeFNtTnJabGhEYnk5bVZFTnBja00zUW1sSFoyMUZVRmhrTUVnMmREQnlXakZGV2xCdFNTOXdTa3A2TVdkUE5raDJNVGhOTmtkMksyTUtZbTh2V0ZKcFlXMVZZUzlWWkdGb1ZWRXZOR2MxVnpJNGVXOVZaVVJuVEZKUU4yTm1SVEUwUXpKc1EzSmtWM0p0T0ZGRlIyVldXVE5ETlM5eFkxaGxhZ3BCYkVkM1dteHZSamt4UlRreWRrSTJUVWR0Y0ZoU1VsWnRkRXRMTW1sM09XbDJTRTRyTjJSQmVURjJTM2hhTUZabVkxWTBRV2xSYm05MU5HTkRTa1ZMQ2lzMFRqZzRjMkZtYlRsWlJVNVdPR2hzTTNwRk0xSmpWRmhWYWs5MGVFTklSRXhsYVc5QlJqUmtZVzVNYTBaQldYSmlXRTVXTkU4eGFXRnpRMEYzUlVFS1FWRkxRMEZuUlVFM1ozUnhLMUpLU1dkeEsyWTBiMW93YmpCRVNFbElXRFpGTDFKc1psaDJXblJHYzJoWFdsWXZTQzlEYTNwS1NISk9ObXh2U25Ka01RcEZOMmQwUlVKTFJubHRaVEIwVDNwVk0zRnFSa2RDWm5KaUszUTFhR2xhVW05YWFqTm5iQ3QwYm5kRmJtdE9aV0pKTkc5aFZsSnljWGxWUldRdlp6WkpDazFRYUhrMVJqRjZSMGx6VTNwRFp6VkhUemhTYkhkV1QwUkRNM2RxYUZOa1FrWmFlbXcwY1RFNWRTc3JiMlZRTWpoWU1ub3hjRFp3S3pJemFXWjBNWGtLVFRWVk5DdERjV0ZxZVdwWlFsRTJZMFVyYUc5VmVGRk9hMVJXV1RGamQxQkpkM2hsTVU1UmJsSnFSMWhJYUdoc1NHOTBUVFpZT1d0SVkyUnNXa3hYVEFwUk9XazBhM0pDZVZSeFdFTnpPRUU1V1dsblRVYzROVVpUVFZOdlozaEhZVFZRZFRSTE9HWnhjekZvYm1oQ09VbHhPVGRKUnpBd1pEbEtaM1Y0ZUhGcENuQlJjVFZrUzFkbU1HbzNTVEV5U3l0UFlXeHhNME5CY1hNM2QzVnplRmxyT1ZkelZYRldRV1o2WVU4NE1FUkhkR3BXUm5sV1ZYbG5TV2hyU1ZocWQzSUtWMEZ0WlhKaFNIbGFVVWxyVTBOVlVUTllUMjFLVEVGeU1FSmhObHBWYUdwNmFGWTNVWEpLSzJWV2RFOW9jWFJrUW5NeU5WUk5UaTltYlhCRVlqQkhad3BvU0hkMmRrZFNXbVJ5YmtsemFuQkJkMWdyWmxkb2RXVm5PV1pyWVZNclJuSjVWa2szV2tWWWFHNDFWVGh2Tnl0T2VIRmlWVkZuWlVneGVpOUJPV2NyQ25CTmJ6TmhWRzFKY1VOYVprTlRMMjQ1SzBsSlRERjNjMXBTVm5GQmQyMUdXalY1YVdjMVRHZHlOa1ZrUkVoUU5EWkVaRXRNYWtWamFWY3hOREUwV200S1FrNVVSa1J3UjBGS2RGTjNiVmxqUTJOd2JYVmxTalpFWkhSWmNrRTRaakV4TWxoWFpsUkVhamR6TUVseGEycGFUakV5UjFSdFdrSXdaVnBIY1U1MVZRcFJhbXBLWm5KcE5ESXhhMkpVVlRoWVduTlBNMjF2Tm1kdE5HZENTbE5HUlc5UU5HMUNTMFZJTTBoRFNHNTFZemMzVFVWRFoyZEZRa0ZQS3pSSGRqSjRDbUZxYW1KV1kwbzVObk5RUTI1cFQzQXpURUo1Y0ZOdFMyTnpRV3RVYkhKalVtdDNla0puZUdFclNVZFBhMDQ1TVZONFMyTldWMkpwVEhScGJITm5lU3NLUlhocGJVRnJSV2RGZEc5eVZuaHpUVGd4U1RkSE5tMHJNazFFTW5SUWNXcHVVakZIYkhaRlIzVkhaM0l2ZVhFdmRtTkdURmxPTWpVelQyMWxRMHRrUndwR1ZuRmpUVzlDTWpOT1FrUlpOMFp0VlRKU1dsZElWRVZhSzA1NWVscENZM1UwU1N0TVRqTXlSM1Z6UjI5Q1NGa3djRlpzTUhocFkySnJXSEpLZVZKU0NrTTVRVkZpT0M5NE1EUjVaSFl6T0hkNk1UaHNNRzlPUlhCVUt6QkpNRTVQYVRkbGMxZFRVVWRQYzFoaFNXVnJhbU5sVnpaT01tbG9TSEZxZG0xMGIxRUtWelZvT1V4UFFtaFZNa3BQUVZOMWJsbFdXWEJST1RSVmRXdE1NRmNyY2xnM05HdDBObFUzV2s1dFVua3lTemRxVlVKaU1GSnNaVzR5ZUZORVpGSnhZd3BtYWtSc0t6VmtZbEUwWkV0UGVGVkRaMmRGUWtGUUwzWkZOMDFsVFVKaWFtMVJORWR0U2taUFFrcGhVV0ppUVM5NVVtNUNNbVZtVkdNemVtbFVaeTlPQ2pKMlFTdEZjVmhwTXpFd2RFSjNOV05CYUVOWWEwWldhM3BOTmpGU1ozSnRNMHc0YVZaM1QxaDZOa1l6WjNOTFoyY3hSWEpMY1VONlVqUk1UbU4xV1VFS1JETnpOMEZUUzFsemRYbHhkSGRWYjFWall6bG5lVkJXY2k5RE0wRjZiMUpQV0RBMFpHUXhXSFpHTVVSQmVWbHhja3R4TjFwNFkyUlJUa3gyTDFkcEt3cDRNa0ZTWWpFNFpqSkZkMUo1V2pGNVRuZHBXalZLYlRKRGFTOWxWa05EU1VJNE5tMTVNbXNyVlRWV1dISkVObXREUVdkTmFVaEhlR1JUT0ZkYWVFMHJDbXRMT1RWdVRHeElSRlJSYlhwMlNEa3JVSFp2VGxKeGMzcHdNMDE0YjNoQlYyZFFUQzk0U21kcFYyNWxkVm96Y25WTE9GbFZRVzVqZUhvMk5FcHlOVXdLWTFCTE0xQnFVMnBSTTJKWmQwdFdNMFJLUVVGdlpEVkxRMGhJTVRGUVkwcE1WVzVCWXpCR1R6UmlPRU5uWjBWQ1FVMDRNV1UxWXpRMlVrWXlabWd6WkFwRE4xaHNTSGczUTNORVIxSkdOMVJrY1V0NmRtUlJPVlJCYVhwU2JXWlFTMGR4Tm1GV2FETm9NMFlyWXpWTVJrYzFObXczUzBodFpGQjRTalpTVFRaWkNtTTVUa1I2VlhCcWJXeDJSa2htWkZCTlZITjVlRmROTVZaQ1V5OU9TeTl2TWtSUGNtWkRaM1ZxTURWeE5ISk5iQ3R2SzNobE9XUnFXRUZtZW5CcEsyNEtSSFF5ZVhOd1ZHZFdNSE5TWXpoWFZFWkNNMnd5Vlhock5pdDJOelZJY1VWU1pWcE1NWE5qTW1aWGFVbEhUREZaVlc1V04yVXhNRWc1VldOSVVHazRiZ28wUnpOWE1saFhUemh0UmxSYWVrUjVaMFZwWkZwRVNFVjZhalpaTm05RFlVcGxiSEF3VWtGbFFrWkVTRGg1WTNONGFucFBlVVJMWjBkNGVXNWljMmRTQ2s5TGRISnpPVlpTU0VoRlIzZEdVbEkxUjAxR2NVRktTMWg0U21KeWFWUnhNblp3WlhveUx6QnhkMFE0WVRKV1VHZGhObk53ZFdVeWVEbHNjVzlzZGtZS2JHOTRNa2hNVlVOblowVkJRblpEUkd4NmNUbFZVa2RSZURsdFZEY3pVM1pIVTI5SVdERXdURnBsUW10MVV6RTFiSGw0U0hNMVVVRlhUREZIU1dsMFdncHdVbmRuWTJSdk5qQkNjR0k1YjFSTFRFNTVjbUp2V1RrdlFYcENWVlEyWm1saFFrVTRiVkZLZVRONWFFcHJVbGRNZDNwR1JHTnNORzltTTBOc1VqWlJDakF5ZGpWc1NFVTBZbTByVkdrM1ozbHJhRTVWVTJoSVNHWnJZVEp2TWpkTGF6ZHFTMk5DUml0S2R6Y3plRFVyY1dJd00wVnJSQ3RGUW0welUyMUZRM29LZVRkUk4zaEZTV2hxWlVWdFYzRnBaRGxDYUZOTVlVOXBiVzgzV2s5NGVFOW9aVVZtYzFnNFpraExSRU5ZYkhKVFl6VnNiVFpDVjNST1MxUlhhRUYxVXdwS2VGUmhWR0ZPTWxOa1drNUJiRVZ1VGxFMGJGbEJOSEZ2Y1cwMFZ6bFpNRkUyVDJaWmRFaFBZWGxxT0cxd1ptRTJlVGw0UmxnelZVeFVRMk40YVRaaUNrZE1SR1EwUmpaMUx6UlRWVE4zVFdjMFdEUndOMUo2V214dlRtRllTek16TTNkTFEwRlJRak5XWVRWak4xZDZla1l6UzNsT05UTnBOWHBSTlRVckwxa0tVSFpIWkM5ME5EQndiRzQxUlhSVUwzZ3hZeTlxWVhkamVuWnVNbVZzUmtGcFdGcEZWbGwzYW00NFEwSjJaVWhLWlU1MGRtRkNjSFoyVkhSTlRUQkhVQXBNTDA1aE1ITlNZbXBPWlhrdmFDOW1PRzkzYlRaUlQxcFdhVEZ2UWtRdmVGRndlVWx0VDBaNU0zUkxNbFl3ZFZaaFRuTkhNSFpSY3pab2NqbGFNWFUxQ25ZNWEyUTVMMGxxYUc1MFlXdFFiV1V3VTAxM2NVeHBSRzRyUWtndlNYUnhRa00yTXpGek0yRkRiREpqYld4dFFVb3ZSRzlCUzNOcU9FTm5LeXN3WldVS1kydDFNVzAyV1ZORVJtbGhaVTltVlROMVZ5dEZNVU54UTJ3dlIyVkNRMHBDU0dFNVVqVktTVlJoWTJaek1tZDFRMUY1VEdwWlNFaDNkbVF4VVdrMmFRcERPV3h0WkhSSk1ETkRTblZNYzJwTVptNTVkbTlwVjI5SVdGVklZMnhzYWxnemNYSXZUVlZLT1ZGRmJYaERORWx3U21SMlVDdFRkMkp6WjJnS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiBvc2xkYmRtYWd1djE1a3Z2NGhydmM3d2Y0YzAyem94cm8xYXNhMzF3YTdsM3ZoOWswMmttY3p2aGlpcGQybTNmbXRzN2hvMWxlcnN4MjRqZnplMDZncTk4aWQxNnVjNGdmbjB4ZnczNW12dXlpcjJ1MGt4dng1anV0M3JiZDEyYgo=\"\n + \ }\n ]\n }" headers: cache-control: - no-cache @@ -898,7 +1033,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 20:45:04 GMT + - Thu, 29 Jun 2023 09:36:58 GMT expires: - '-1' pragma: @@ -934,15 +1069,15 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ - \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVU1TGVsVm1kV2hTTmpFMGJETlhUWE01ZHpoNlJuTjNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDA1cVJUQk5ha0Y2VFdwSmVGZG9aMUJOYWtFeFRYcEJNazFVVVhsTlJGRjVUV3BHWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNuUkJXRkYyVWxoMlNURndURWhQTUdkblprUlNTRlZpY2xGU0sySXZWbU5FUm1VelpXaHJWMjExTmk5blZWcDFMelJhZDBOalVHTkRSbkJ0UVhwcGNtSUtZVlJPU2tWNVNVcEdWVUZDT1V4Q2FVUkJORW80TUVnNGQwTlJOMWx6WkhFclNpOHlNRFJFYUd4WWIyOVhZMnBIWnpaUWJrNU9NM0I0VVZkTGVFRm1ZZ3BGTUhCVWRWWjBSamRsYkhVellXOTRVemh6Y2pCR1owWk1iVUpoUlZScVdrdHRjbGM1YzFod1ZFSTFZVXhZWWpKNGRuZGxXRmxwYW10aWF5dDVXalZWQ214Qk5qUmlWM2R0VG1Wc1kwVm9OSGRsUjNWT2VIVmtkMEphWWpCcFJtSlJVbGN5UVcxeGRuZExRMUJzYzFvNVlsVTNSRWN2UjBNNFNuaHNZMEZYWlVjS01Dc3plRXBOT0d0amEwRTRaM0Z1V2pSWGNXTlROalEwZFZWNFpXRm1RV1JNV0ZnelZteFZPRE16UkRKc2VrSjZLM3BKVTNob1UzUnpSRWRaY0RCMWVncEdTbk55T1ZRNVJsQjRNakZZYTFkSkx5dFZMMFZ2WTBsREsxWnFRVGsyTjFsNWQydDVNa0pETWpneVMxTk9XR2d6ZUdjNGRtb3ljVEp6TTJoMloyRTNDbWsyY1c1SlowUjRaMVV5UTJ4emNHUjBabGwwU0VwcWRVZFpSbTVaUjFaR1dWUlZTSGxKTmtaWkwzaHhXSHBXU3poS1RYVnhVVTgzYkVSSVpsbzVVRThLVW10QmRucEhLMjlyTHpCeFZrbHhSemgxTWpOamRWcEhhRGRLVldVd09YVlFSVTVhTkVGUVpYTjNhVUZ6Ym1ZM2F5czFZMnRxZDIwdlFVMU1WR2RVY3dwcGJHcHhNbGxrTTFwdVZXSkpjMUJFTUhWTUsydHJWVzlXYkZsaFdtSnBVR3BZV21kelQwZHBkVWR5WW1aVk1rVnphVGRHUzFweWNUVkdlVEZrZEhabUNqQmhaSGd4TTBGblJUUm9URmxTUTBoMWEwNVNTemsxUjAxRVpYSjNRMlZLVnl0NWFFOTZhR2xGVlhnclRGTkhlVzAyTW1WeVEzTm9UV1JYVlVvd09IY0tkR3gwY21KNGRrUTJOa3hEZVhsMVFVUjZXWGxhY1ZCNmJGZFBURXRrVlc5YVRWZFRjSGQzU0c0NU1FTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1FXZHBTVmg1YW1nMWJUQmtWSEk1Q2xad1l5OU9OQ3RvU0VSbWNFMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlFuRnhTSGM0WW5CdVYzazVNalpVVVRCWEwwdDRSM1poTXpJS2JqbEdWMmR1Y0dsRFMxZDNjbFU0YVhGMGVESlNTa0U0ZFdvMWRGQk1jbFJhU1UwMVRVSjZORVZCUld4a2FXeFBlbTFGYm1wTlNHZFBObWxRY2paQ0t3cHRUMnR5WkhOUWRrVXJSR1ZUY3pSalZsVkpUVXRXTHpSQmFIRk5SVTlUV0UxamIwbHdLeXRJVmxsV1ZuRTNSM1JxYnpKTFNFNU5VWFpEZG5SMmFWbHRDbWRKSzA5eWFuSXJMMEl5ZVdGUVNHeHNiVGxGYlZaMGRIYzRVMjA1WVhOblJWRkxNMEZpVHpaT1F6SlNhbFF4YW1oR2JuSlpXbFZaWkdZNVNVbG5OMDBLZEZKeFZXSkZZbk5SWWxWTVp6bHpRM0l6TkhGdU9XdERkazFuT0VKdVNEaFBlUzl4YTJsTU5taGhWbWwzV1VGWk0xZHBXazFRWlVVeVZESTRhRTVXYlFvdllsVkhkazA1TkdKVVpUWkhXREZJYzI5R05rUlRVR1pJTDFSVmIydzFhbVUyU3pnNWRuQnFSVlp2TkVsUlNYaHpka1pRVUdGalMwVlViemgyVEdScENtbHNhbGxWZFc5NU4yRldTbGxLWTI5VFJUbHNUblkyTmpOMFRHMDFibE5XTmt0VVYwbDNXbTVwZWtsVFkyVTNRbFZUUTNGalFWb3hObEF2U0VwaVlWSUtOM1ZEWkU1U01UVldOR055V2pWYWRFZFZNRkVyZFd0R1MzTldlRU01UVhsT2ExbDRiSGhaTHpodVpHSTJiVUZsTDNac2EyMHJSSGN6TDFSNmMweEZMd3BsYTBWUFVIaFJPV0puVkRoRWMwOWhUVVkwYTFsck9EUnNhbkJaTjBObWRVUnlVbkZITVdsSWVYWjBLMDVQVUdaNE1sWXJSSGRSWkM4eVJUUkJja0Z2Q205NVZYbDVRblI2UW0xcGMxQTJjVU5sYW5OU1dXOUVabGhQY25aNmQxbDNUbTVIVERKSFNXbzFjeXN2Y0cxNlpqQnZibkJtWW1WaGQzSlhXVXhPWjFrS1lsbGhVVmRRYVRKSlYydHFibTUzVG1sRFJpdHJiMnAyVWpSU2FHZElUVzQxV1hsVFZERnFkWEJNTUd4TlZVRkpUMUpOWVRkRVNWTnZNalZqVmtGNk9RcHdZMk56UVdzMFVWQndaWHBTYzJJeldGRTlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5zd2RmbW9raS04MWM1aG9haS5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdDZsZHpibwpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdDZsZHpibwogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdGUyb2F1cTJjaGhfY2xpYWtzdGVzdDZsZHpibwogIG5hbWU6IGNsaWFrc3Rlc3Q2bGR6Ym8KY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0NmxkemJvCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdGUyb2F1cTJjaGhfY2xpYWtzdGVzdDZsZHpibwogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklha05EUVhkaFowRjNTVUpCWjBsU1FVcGxhVlZMUTNaVVoyczFRWGQzUTJ4WU5HUlJlV3QzUkZGWlNrdHZXa2xvZG1OT1FWRkZURUpSUVhjS1JGUkZURTFCYTBkQk1WVkZRWGhOUTFreVJYZElhR05PVFdwTmQwNXFSVEJOYWtGNlRXcEplRmRvWTA1TmFsVjNUbXBGTUUxcVFUQk5ha2w0VjJwQmR3cE5VbU4zUmxGWlJGWlJVVXRGZHpWNlpWaE9NRnBYTURaaVYwWjZaRWRXZVdONlJWWk5RazFIUVRGVlJVRjRUVTFpVjBaNlpFZFdlVmt5ZUhCYVZ6VXdDazFKU1VOSmFrRk9RbWRyY1docmFVYzVkekJDUVZGRlJrRkJUME5CWnpoQlRVbEpRME5uUzBOQlowVkJOeTl0UTIxbFNVOVBVV05LVUZwRVltSnJaSFVLUzA1VGFtUkVZbHAwVGsxSVJ6TjRWMjkzTjJFMVdXNDVSRTFJZDBKTFVWWnRNbEJQYjBFdlVqTTNTak5WZDIwdmQwTnRNSGx5U1VadUx6bE5iWEp1U3dwNmFXNUVTbWhyYVZaUFVYZDRVMjVPUldZeFZqWXlhVVEwVUVzNWVUSTJhV05HTURRM1dVOXhNV3N5Wm5CTFVFVTVTSFZ0VEZWM1VIY3lSVTh5YUV0UkNtRnFjV1JFU3pkU2RDdFliV2hKTm5vMllYTnpNVzB3UTA1WlJsbG1VbkJxYVZKTFpGaG1lV3d6VFhSbmRqQXJSVkkwU1daaWVGVXhPVk56YlVNek9YVUtORXRVUmpsQ1ZFTnZZbG96YkRsU01sWllUekJ0UkROTVpIUndWelpwWTFobk1HMTNTMmd6VGpOUlZtczJWbGRVUkVNclduWlFNWFo2Y1VGYVZUSnpXUXAzTjJ4dlozRmtibXRvWVZaNWRrWlpTemRMUWtsQlRVdzBiVTFOZFRoUU1FRjJTMFoxTWpGUmRHTlFaM3BWT1ZkelVtbHVlRWh4WTNOV1VFMVNTVlp0Q210aVVWbFhhR0l3VFZwTlkxaHFNekp0Y2s1R0wwVnllVFZWV1hWa2NXZHhRalo1VFRkQ1NUaHNka042TW1GVGQwRXZlVmhRYVZwTWF6TkNVbUpIU2xJS05HMTFRVXB2WkRaclFYVk5aMnhKY2pjMk1XMTZjMWxoVkZWcmMzZGtXRkZRWVRGMWVGQmxjMkZCTnk5WFlsSnVNVEZWTURSU1QydFNjRXRxYWpONWFRcFlkR3hJYlhsSVFrSjRkekJtZURkM1VVaFBPV0pLTTFnMVVsWlpaVkJQYUVwVE5Fa3dMeXR4ZFdWdGMybG5aMUZ5WkVKdU5EaGtSblZSZDB0dmVVOXVDbkZwT0UxRmJqVXphMHM1YVZacWFtNWFkSGxCYmtScmJWWnhWbVE0VTBwUVVFZExOREpIYlhSU2MwUnlXSFEyVkZORE1tNUlOSEp4VFVSTll6aHBTREFLZVU1NWVYTlNlblJRTWxodlkyMTBRbEEyVkdoeVpWaFZiV05CVjJkVU1GVTNlSFJoVG1SSlUzWkhOME5IWTBKU1dqUkJTRVpFUldSek1qbElUSFF6S3dwb1pVcG5XVmR1U25kWGRGQmtTRmd3WkVjdlFUVXhPRU5CZDBWQlFXRk9WMDFHVVhkRVoxbEVWbEl3VUVGUlNDOUNRVkZFUVdkWFowMUNUVWRCTVZWa0NrcFJVVTFOUVc5SFEwTnpSMEZSVlVaQ2QwMURUVUYzUjBFeFZXUkZkMFZDTDNkUlEwMUJRWGRJZDFsRVZsSXdha0pDWjNkR2IwRlZRME5KYUdaTFQwZ0tiV0pTTVU5Mk1WZHNlamd6YWpaRlkwNHJhM2RFVVZsS1MyOWFTV2gyWTA1QlVVVk1RbEZCUkdkblNVSkJTMUZWZVRGNk56WkdTMjlsWlRGWVpXdEdaQXBzYWxGTFVuUlBVak5uYlUxSk9FRTFValZUUTJZM1VYb3JSWGxyT1N0blpqQmxSak56UW10WU4wOUhMM1IzYWtVMU1FZHlla3RCY3pSdFZGVmllblZEQ2xGeGMxUkRkVEZRVDJKSVF6QlJRbmg1WlRGSFYwOVRTRFJ3WmpoMmFqRkdiM1pwTDA5S2VVYzVRVnBFTlZoU1lWVm1SVko1YkdOT2QySkRjRGw2YW5JS1lUaHVRMWxGTlRWYVlsbHRPRXR5YUZWTVIxRTNkWGhVTlVsS1IzZDRObEVyVWpneFpEVXlkMEpXTDFSeldYWlNXSEl6U0Zkak9FNVFVMHh3Wm5ndmJRcDZWalZZZFhoclVXZHZaWFUxT1dWUFRURTJUR3hTT1hNeVMyZFRjM2swU3k5UFR6aDNhMDl5ZVdwRGNFTldPUzluU0dscWJGQkNjbm8xVWs5NFR6aDVDamhKTkdwdFoyRmhlRU5vVDNCaFJEY3phRzFJWldJNWFXSkdlRlZQTTFKUGJFSm5ZblJNWkRObmNuZzBSbGR3TWs5WFJGY3dhR0Z3VFdSb2NGTmhZM2NLYTB0TVdFWlpkRUZPVG5sWk9ERXpkMFFyZUVwR1RVNHJNMnhhV1hremRtOTRjR3BPVldzNGVsTkNielZvTms5cWQzVkVlRk5USzBwdWJ6STVUV1ozS3dwUWVFOWxSREJqVkVVeVp6ZFVhbGM0TWxvMlp6QXpZa3RNYldKdlpHOWtUbTUxTkZwYWNTODBiRmN6Tm5RME5VOW1XRTV6U0ZkcmNEaDFXSHA0T1VoT0NqVnVSbTVaVDBWcE1GVjViamhUZDNCRmVDdEZaRTl6VUVkdVVqbFZSU3N5TTFCNGRIWktRMHhEYWt0R1RVMHpka05zVTJvd1kzSm5VemxsZUdKUlZIVUtSbWxXTldGc05EQXZVVFJ6V0dSRU5tNUtjelpSV1dSU00wcFdZVlpuYkhCSVkyVlNjbEJ1UWpsUmJURmhNRXBLZVc1b1pYcElkbm81YURsaU9VNVdSZ3B6VGtZd2VHZG5iMGxCVTBST1dYazBRVzVJZDNocmRXbDZTMGc0YjFaYWF5OVRNbWRCVmxOaWFUTkdSVmxKWTFwRFZVa3pkRFZzVkVaUmNuZEVTV0p2Q2xKbVp6WkZUVXRVYTBZd04zUkVOVFZRUTJsa1VUZ3lMd290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MxRkpRa0ZCUzBOQlowVkJOeTl0UTIxbFNVOVBVV05LVUZwRVltSnJaSFZMVGxOcVpFUmlXblJPVFVoSE0zaFhiM2MzWVRWWmJqbEVUVWgzQ2tKTFVWWnRNbEJQYjBFdlVqTTNTak5WZDIwdmQwTnRNSGx5U1VadUx6bE5iWEp1UzNwcGJrUkthR3RwVms5UmQzaFRiazVGWmpGV05qSnBSRFJRU3prS2VUSTJhV05HTURRM1dVOXhNV3N5Wm5CTFVFVTVTSFZ0VEZWM1VIY3lSVTh5YUV0UllXcHhaRVJMTjFKMEsxaHRhRWsyZWpaaGMzTXhiVEJEVGxsR1dRcG1VbkJxYVZKTFpGaG1lV3d6VFhSbmRqQXJSVkkwU1daaWVGVXhPVk56YlVNek9YVTBTMVJHT1VKVVEyOWlXak5zT1ZJeVZsaFBNRzFFTTB4a2RIQlhDalpwWTFobk1HMTNTMmd6VGpOUlZtczJWbGRVUkVNclduWlFNWFo2Y1VGYVZUSnpXWGMzYkc5bmNXUnVhMmhoVm5sMlJsbExOMHRDU1VGTlREUnRUVTBLZFRoUU1FRjJTMFoxTWpGUmRHTlFaM3BWT1ZkelVtbHVlRWh4WTNOV1VFMVNTVlp0YTJKUldWZG9ZakJOV2sxaldHb3pNbTF5VGtZdlJYSjVOVlZaZFFwa2NXZHhRalo1VFRkQ1NUaHNka042TW1GVGQwRXZlVmhRYVZwTWF6TkNVbUpIU2xJMGJYVkJTbTlrTm10QmRVMW5iRWx5TnpZeGJYcHpXV0ZVVld0ekNuZGtXRkZRWVRGMWVGQmxjMkZCTnk5WFlsSnVNVEZWTURSU1QydFNjRXRxYWpONWFWaDBiRWh0ZVVoQ1FuaDNNR1o0TjNkUlNFODVZa296V0RWU1Zsa0taVkJQYUVwVE5Fa3dMeXR4ZFdWdGMybG5aMUZ5WkVKdU5EaGtSblZSZDB0dmVVOXVjV2s0VFVWdU5UTnJTemxwVm1wcWJscDBlVUZ1Ukd0dFZuRldaQW80VTBwUVVFZExOREpIYlhSU2MwUnlXSFEyVkZORE1tNUlOSEp4VFVSTll6aHBTREI1VG5sNWMxSjZkRkF5V0c5amJYUkNVRFpVYUhKbFdGVnRZMEZYQ21kVU1GVTNlSFJoVG1SSlUzWkhOME5IWTBKU1dqUkJTRVpFUldSek1qbElUSFF6SzJobFNtZFpWMjVLZDFkMFVHUklXREJrUnk5Qk5URTRRMEYzUlVFS1FWRkxRMEZuUVdkelpYcDVWRVpPUm5ZNGFYQm5OaTk0TUZobFdIaHZhbE5xTlhGUWQxZFRjR2RSU2tsNWQwSldNemQzUkZobVZESnVUMmcwZFVaMGVBcG5WbHBHTVZGdVpUTlhaM0p3VlUxR2FuTlhibUVyUVdwQlNXTTJSMWxUUjBRd2VWaEtiRkJwZFZCU1FYSkVVbXhyTWt4TldtbFpibkpzV1doWGQwbHFDbXRvYmxobmRFaHhWelJ0T1VOWkt6Rm5hbEoyYlZONWRERXpUMjVzV0RkTFQwcE9TVXNyUjBKVkwxQTVUbEkwZUhoTU5WWlVaRGhvYUVaUWJGaEJlbTBLZG10S1Z6RTNja0owWmtzcmVqSkxOaTl5WmxGU1IxY3hhMVpKYnpsNWIyeFFRMHhqV2pSRVduaGpLM1JwYzNOcVNuVkJkWFpGWVRGT2EyaEZNR1ZvV0Fwb1MwbEZjQzlTT0hWbVZVUTFkMUpoVGtkc2ExUklia2N6VFU5T0wzaG1XRWhVYmtkT1NpdEtLeXRJV1dGclUyWmxUM0pKYlVabmJYbFBZbGs0TDFBeUNtVnJiRko1YmswMVdtTk1XVGxDVUM5a0wydGlVeXRDTjNkWVZXTjRNRGRHVldwb2QxZDFOVGtyVG1GQ1ZIVkhOa1l5ZEdOeWFIbEtNa0ZRTldkMGVpOEtPVXhMU2sxeVQxWk1ablpRVG1wMVEwNVpTVVYxU1N0TFJXWkljRTQ1UW5WaWJteDFkVEV2V21WNVVYRkRaVmRsVGpCM1N6Vnpia1JYZVUxVU1WQTBid3BpU0ZFMGVVMXJOazVGVUVkTVVGTlBjVWRRVVZFd2FESTRZbFZoVjBwMVlqSTBRemQzTVRWdFVFcE5SMjlpZEVGWU5UQlFNbFkxYkc5dmEwVndlblpVQ2taWmFYRlZZVE5sUzNoTU1YSkpPWGNyZUZoVU5XdDVaVkJwUkVwSVdITjFTMDB6WW1NeFVtUXZNVTVuY1c5eU5XcDNWRGxhWm5sTVIyMXZaMEpJUmxvS1VucEdVMmRxVEhSVFpXTnFlRWRKY0VVeGVtdG9PVEZwUkRReU4yVm5SVWcwZGl0eFQzQnlXR1J3ZDFsYVNWVTRRa2dyWm5Oa1ZuVXlNWEZMYzJFd1NRcGhaWEpxVTFwMmMzUnNiVU5rTTA1VlkxWkxSbmxqUTFFM1ZXdDNkMFpDYlhFMFRWcFliWFpCWm5CMFlWVXZkVmxyVVV0RFFWRkZRUzlrZUZGRk5tbFhDbkZ1YWl0blJESlJRV0ppYnlzeVpqRlFRMk5tVERkVVpVRmtNMkoyY2k4NE1rVjZlbVpaYTJKSEx5OWFTWHBLZFRrM1ZsTnROWFphU0hKdk1XbG1kMk1LS3pKV1pWbDVZbXBvVmxsR1NFUkZWVkJtTkc1QllVMVFWM2xQVWxjMU5HVklLMHhxWTJwVFRHUmhXRWgwTW13eVNXOHlPRlJtTjNwU1NqWnpjM05UY3dwMFprUkxhMFJCYm1sd2FVTlpZMUZCY0dwR05FWlpjSFJLTWxZdlpISlRUV0pYZFZoall6SkZSVzEzYUZOaGJUZFpZMVF2Y1hoWWR6bHJSa2hTVW5WeUNtOUdNV3hvZHpWMFZXTkJha2RaTUV0U2Qza3pVa1JEU3k5UlJVOHZaVmhzTWxrdmVYbG1UM1JSVUV4ME5reHpUREZMUVZOeVNEY3lNa1pzVjBoV2NWQUtjV3d3YVZSMmFGaHplRUpKWjBkdFJYZGtiamxaVVVsdGFtZDJjRGhyU21GWGRpdERTVEpUVW1vMVZtOUdjRWxFUWk4eldTdE1SRlZzVGtjMlV6VlBkUXBuWVZkcFdWWTRUMFJoYXpGa2QwdERRVkZGUVRobU9EbFNjbFF3UVdGVGVVVjBlR3BqYkRSeFFUTTNTRk5PTlZGME5VVm9Wa0ZpVGtWMFNVUjRUR1kzQ204NFJUZzRSRzFUVm5kTE0wdFpRVVJ0V2xkRk5rTlpPVXMzWTBOMlRGSnViVXh6TTB0VFRHZE1RemRWVmtORk1ra3ZVbFE1YzJORmIxTjBZVzV5T1VJS1EwTlRZWFZoYjBFd1pHOVFhMVp1WVd0M1RreEZOVmxIU3pKMU4wZHJSVVpvYWt4NVNqWXlaRVJ4WVdzeUszWjRSMk5OYW1WbGFYTTBlbXhWUjBWWll3b3lWMEp4UlVkb09UZEtTREEwTWxoU09VRXlSVXhITURWS1l6UmpaVlF2UzNGR2FrbzFUVzE2ZDFWclVUUkxabGRaWWpFNGRHODNMMGQzV25aRVZsWk9Da3BzZFRRdlJFRnVRMmRDWVhsMmNtRnFkR0l3YjFWalNuWnlVa2xMY1ZGT2QxQlFkRWhqWm1OeVNFbGFlUzlJU0d4bVdsaFFWWFJDVG1SRk1XSkVkRW9LVkdvNFowdDVjbFZwWjNZeFZXUjJLM1J0ZURCblluWkJhbE5VT1ZadGFGY3pNV2s0UjFWV00xZFJTME5CVVVWQk56VXdZa1JIVFhSNWVubHVXa0kwTXdwd2FHRnBkRWRKT0hKSmJEQjFNQzl3TWxSTmVUZHJjRU1yTVhOMU0xRm5hbmxZY213eGJqUk9SbU40Vm1FNFJtWXpPSFk1UzNkQlNIcDRZWGRVT0VKMUNrMTJWM1J1ZURKSlRVeGxTekE1VnpSalpITlNiMkoxVDFSaFUxZzRUREFyUVZVM05GRjBkazVuVUVoMGEyMVZXamd5VVdWUFEweENjbTR6V1doT05tWUtRa0ZtVGpCVUwzcExUM00yYjBsS2JsbDVPQzlpTm10a1pqQTFNWGhTYjNGR2ExWjJObWh5UjFod1RsZHBORTFNVkZSVWVXTXpNbHB6Y1ZaV1dtNVJjd3B3VjFKSkwxSTBUMWhHTDFwUlFXcGtkRGc1WlN0cVNXTnJVVEUxUzJwMlUwSmhUVWhCYjNoRGNqTkNhMFFyVGt4V1dYbEdXblpIU3preFFYWlRVVVJLQ25Kd0syOHZNbEZhZUdWMlptRk5hR2cwWlZCSE4zbzNTVVZIY0hCNVRWSjBWRWQ2UjNOaU9HbEZNVWc0YTFWbkwySjZWRU4wWjBaM1ZISnJjbTExVEdjS00yVTBaMGwzUzBOQlVVVkJaM2xRV2xablltSnpSVkpNUWk5UFRYQk1ObTl5SzI4eFNIRlVlbEYyWTFGQk5WRklOeXR2Um1oeldscFNUREpGVVRNMEx3cGpiekpVUzNCamJqTkZVSFJ0VlhsWWJUWm1ObWRNTmxjMFYzRmlSWFI2UjJSTmMxQXpNazQ0Ukc1SWNWTnVTa0ppVVVkelozaHBUSEZzYTBSNlFtUXpDbWxGUms5aVIzTjNRM0pyWmtvd1kwZHZkVTF1Y1hGMVVIcGtRM1kzTldGcE5WQjVhbTVHV1RRcmMyZElOSEJ0V0dwNU9WUkNha05CYXpoQmRUSnBUaklLUldkNGNXeEJlSEZuV1VsT2JsaEhNMHBYYVZSbU5WWXhVV3hQVkZoVWREbEJVVXRUWkdSM1pWUnBjemhsVlZneWMzWlBRMjVOZDJOSFpYaGplVGRXWndwbmIyWTRjVGhFVkZSa1RIQkZUR3RLWVN0SlVYUmhUR1p1VXk5VE1FY3JkR2N6YmpGNGRFdEpXVkpxTURNNE9UTlZRek5IWTBwbFZVOTVXREJVWkVKU0NrTXhiemx2UWxoRE5qWk1UVnBFTWxaMFEyUlhZbXQyZFhZcmR6ZFRjM0ZrVTFGTFEwRlJRVlphYmxCRlpXVkdXVk5GZFVwS1dVZ3pkelJDZEVOVmFFY0tObkFyUTNCdk5rMUJjRUZ0VGpOaU1Fa3laMDFWTVRWVVNUTkNSRGxWVnpOMWVGRjNNVFI1T0dGcU0xZDZaVFJZWVdkWE16VlFVMDlvWlRSTmVYVjFVQXBaY1djeEwxb3hkSFZGVDBvNU5rd3ZTVkZ5ZVhsUVV6UTBabWN4Y2xaV04xTmtlakJWVDJ4dFVucDFiM1IzVG5oS1NUWnlWVzluWW5SUlJtUkNTRWw1Q2xGSlRXdG9hREpGV1RkRmJDdE9abTltU1RCUmNsYzJjbUp3U0dOVFVFRjNiVWhYVFZWeVZUSlJVRVZxY0V0TGRGcENibTlqUkVKNFNsaGlhM2hoTm04S09YcElaMUoxWmxRekwyNU1WRkZLUm1OcU9GbDFjRkZ0U0c1RVNDOHlOaXRSWTFsVFVGaEhVQ3RVT0hoQ1IydE1NMkkwVDNOTVpuWnZSMjQxTlUwNVFncExkSE55V1VGUVJ6UktTMVZSZFVJeEsyaEVja1ZDTWs0NE5YWXlaRVpWV1ZWMU1VOUlaa2h0U2t0NE9WZzJRakU0V2tNNVZEaEZLMVF3TUVNS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiAybzJqejl2cGQxZGJpdGMxYm96ang3cGh6ZnhyaWZoY285YWF3bzk2amlhdTl5Y2J0d3ZwY3EyZ2JyMG8xa3IxdW1uNnVlNXV4bGRqaTQ2OWRkZXF1OXptaDIzOGhqaTI5dGN2MmhyNnlxbHZxaXh3aDg3Nml5amVxc2hnNTJnego=\"\ - \n }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": + \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVVsRk9VUTRlRXR2YzFrd2NsQXhXSHBoV2tFdmVHTjNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDA1cVNUVk5SR3Q1VFdwUmVGZG9aMUJOYWtFeFRYcEJNazFxYTNkUFZFMTVUa1JHWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNuSmhiRE5oVVVOUUswcDROVkpGTXl0WlN5dDZiblJqT1RSRFZrRkZVRFJTWm1SQk4yNHZUak40UkdNeFpETmpWV2R3ZGpGb1J6VkJTMkZaVVVKRU5VY0tUMkZ5Y1dFNFFUYzJNRXhRVFdkVEszQnpOWGN5WjFvMFRFRkljV0V6UjBrNWREQXJWRkJrTjNaM1lXSm5WbEJKY2taQ1ZsRnlWMGxxY2toUFZYazVad296Um1KbEszRkphRVZ4TmtKVlNDdExTR0ZtY3pNcmJHcE1NbFJHV1ZGMlFuWmlhWFJCZGtSbUsySlVWV3hOVmpCU2F6ZzVXbGhPZFVnd1VXWnBSMGhOQ2xwQ016RndXVVZRZVV0aVp6aFlhRGhYY1U1UWIwNDJTRUl4VG1kTlVYUjZVa0pCUjIxM2NXbERaVzlWT1ZsaGVtZERWVVJxVGxCd01VeE5VbU5qVEhjS05tdDZXRWhzUjJ4eVVYWnpRVkpzTWpaaE5tcDNTWEpwT0VsVFJFTktVakJaYmsxNmIzSTNOM0pFU2xSYVUwTjRXa1JCY2pJMlFVbEJNbFJ2Umt0TFR3cEdVMlZuTm1vd01IRjRkbVpRWlhJMmRFbENWWFIxTW1obU9HSklXa2xyWlhZdlRDOTJlRzV6YlhRM1JVeEhRMjVGZHpONFRIcFlOWFZVV0hZMFdFVm1Da3MyYlcxQ1F6Vk1RVGsyWVV4QlJsUlZVRXhwZDBZNU5sRmlOMGxpUTNveE0wcGljbVpyWWxCR2IzbFZRekEyTUU5UVRVNXFMMVkyY1NzM01XdE1lRVVLWkhsU1RFeFRhWGN4ZFdkTVJFMVNSMmx5UzJaSVZsTXlkSGtyUXpKb1R6aExWbkJyTjJsaFNHUmlWV042Tnl0NlJVTkhlVTVHVkdwWFRUWjBVMnRtVkFwSE4zQnVaVUpMTjBsR1FsQnBTbTFwTUhCTGEzSXdkWE50UjNZdlREWmFRV3haY3poRWNVMXBibEpuZEVneVJrNHdaRTVMU0ZKWFEyVlBPRXhuSzJ4ckNrNVJNVEJQVVVvM2VGSjFTMUExTVVObk0zVXlVM2w1ZVRKd1IyZDVRWGhzYjBoUlZEVk9OSGxSU0dKUmRtRktkV1JTZFZwQlEySkZkakJ3UWpNdmFVUUtLMDUxTUZKMk0wMU1UMnhKWVVncloxZHZWR1JrZWpWeFltbEpUa3BSVmxaUGJrZzRiVkpHVlU5MWMwTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1RHOVpkMmxPTVU5bFJYcHhWa0V2Q2t4RlUyNXNVbU0zTnpoT1FVMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlExVmlXVEpXT0RoYWFXeHVOREpXWm1kRVJtOTFiV05RZVNzS2FVcGpjVzFwYVVvekx6QlBiR0ZuZDJkU1dtVnpNWGxDZGpkQlprNXJTamg0VldZeVRVMXJhMFI1Y0dNM01UTklWWEUyYTBaV1VuSXZObFpRVEZsU2FncHVUbVphWjI1NmNXUjJla2w2TDBwV2VVNXBaVEY2YTNkSUwyZ3laRzl6UzNSR2RsbHJXVmxFTlZkNmRHUllNbGxISzFCQ1N6VjNhbWxHT0dSTk4zazRDblZMYW1kb1EzbDRRV2h2VEVSM2NIVlRVUzlXT0RCcFFsRjJhWGRLVmxWWGJHRjZaa2hNYm5obVJrSjVOVk5pU0hwTWVtcHFLMmRhTlhWYVNuUkVjV0lLYW1SbU5sWmFjVzF0WTFsS1oyOU5XbEE0Vmxaa0wxRkdhMWxtZFM5MFlWRndNWGR3VTJrMWEwbzNhRmxRZFdJclRqZDBWR0pNZDFwdk5VbExZMWRSY3dvMVZYQm5jbmRRVFRSS01XRndSVTR4Y1hOYU0wTkhVa0pqTmxvMU5YVkhlbHBSYkM4ek1HOTZiM0psUkVvd2RtWlZRbmczUmxKNmFVd3hUbmhQYlVWaUNpOXZkamRZVkRNMFJFZE5ZakJYVkRoTFNVbG5ibmQyVUV4M1RUa3dkVzVIUzIxS2RDOVlaMGRKUzNCck5rbFlXamhHUzBKeWFFODVVemd3TTFCYU9WUUtjemhoUlRFek5UQlZhRnB2T0haaE0yNUpkMkp6YkdnMWNIcFJORzV3U1d4RlNFZG9lRk5oVmpkMFdqVkliR3B6TjFGUVpqZ3ZOVVZJYUVwU2RIZEdNQXBZZEhGTlVpdFBZa1Z5Ykhka0wwd3ZUMFJ6TWpJdlZFTnhVVkJ1VFVKd1lXeGtiek5EYTBnMVVFUjZRVWxwWTNoSGNuUllSV05tVkhSR1IxZFlWbnBRQ2xZeVltY3dSRk5xYUZKbmJXcGhaRkZJWkhKSUswbGpNVkJaWjNsclNXYzBWREo1WWtOWVJ5c3ZaRFEyVW1KdU0ydHdXakJhYldOVk1uaFdkM1JWTmxJS2RtRXlSVzVXWjJrclVFRTVkekZZWmtwbk9HSlNlbE5OWnpob1UwSkpVbUo2VjFKaWRFdzJMMVYyYkZoTlVFWnpibHBxTkRaQ1pFdzVjaXM0ZUV4VlpBcFphamR0T0hGRmFTdEhUbVpUVjB3clVrRTlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5zM2l1cGRndS0wMzlxOGdpcC5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdHpybzdqegpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdHpybzdqegogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdGZtbG1pajVtdGpfY2xpYWtzdGVzdHpybzdqegogIG5hbWU6IGNsaWFrc3Rlc3R6cm83anoKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0enJvN2p6CmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdGZtbG1pajVtdGpfY2xpYWtzdGVzdHpybzdqegogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklha05EUVhkaFowRjNTVUpCWjBsU1FVdFJibXBsWTNoWk1rdFVlbU5vVG14VGJYQnBPRmwzUkZGWlNrdHZXa2xvZG1OT1FWRkZURUpSUVhjS1JGUkZURTFCYTBkQk1WVkZRWGhOUTFreVJYZElhR05PVFdwTmQwNXFTVFZOUkd0NVRXcFJlRmRvWTA1TmFsVjNUbXBKTlUxRWEzcE5hbEY0VjJwQmR3cE5VbU4zUmxGWlJGWlJVVXRGZHpWNlpWaE9NRnBYTURaaVYwWjZaRWRXZVdONlJWWk5RazFIUVRGVlJVRjRUVTFpVjBaNlpFZFdlVmt5ZUhCYVZ6VXdDazFKU1VOSmFrRk9RbWRyY1docmFVYzVkekJDUVZGRlJrRkJUME5CWnpoQlRVbEpRME5uUzBOQlowVkJOelpvUTA1cmNWSjJNMnMyTnpOSWFUUTJlVE1LVUVONVNFVm9WMDltYzNSRmFtZHFNVWRtZFVFcmVEbHBjblJOZVhsT00yUktSRmhaVm5kTVRtMWFLMmRQUlRWR2NFWlFOa2xYWTAwemRuaEdTSEZQVXdwc1drUnZNa0kwVFhkVlRtSjRSMmhhTjBreUwyNUliM1kwV1VSV1ZYUktRVzVxZUN0UFNFZHVUa1JKVG1aVE1WSlBkR2R2ZUhvMlpVcGxaMHcxWlRoMkNqRnFNV3R1WlV4V2VsaGtlWHAyYkhsVWFHcFVaMUJ3VkdzdmFsVlNka2hPYUdZMEswTTJkRGRUVlcxS1NGY3pPRTR5V0ZsTWFFOTFSSEZYVGt3ck1Vb0tOR2xIVDI1RVowTktUMHBvVFZkWVJVOVFSbWxHTkdwbGN6VkVkWFF6WWxoaWJVTnRSblIwUmxOdlJWTXhNM0J5ZDNKdFoweGlVRGR1UlRoSk4yMVBjd3B0UjBGREt6ZGtRVWhpVFdsWWJGVTVXR2RDWkdFM2FWcFJXRE5LWXk5V2VFOWxWSEpOS3pabmJ6Tm5TM2x0Y1VOS1pIbHZNM0ZhVTFsNVZuWkxkbWs1Q2prM1RHMTZOVEYzV1hjeVQxTlFZMEpJVjNodFpsVnFaa2hIYVd4b2N6WnRVbkJKVEhGRlF6VjFNR1ZHZEVSM00zSm9hbHBZVjBNM09XOXVaRWxRVWxNS01FVlpNVWh3WkVob1pqVnRUVVl6YWs5RWNGWTVWRzl6YVZoTWVHeHhXbUZvYTJVeFNtTnJabGhEYnk5bVZFTnBja00zUW1sSFoyMUZVRmhrTUVnMmRBb3djbG94UlZwUWJVa3ZjRXBLZWpGblR6WklkakU0VFRaSGRpdGpZbTh2V0ZKcFlXMVZZUzlWWkdGb1ZWRXZOR2MxVnpJNGVXOVZaVVJuVEZKUU4yTm1Da1V4TkVNeWJFTnlaRmR5YlRoUlJVZGxWbGt6UXpVdmNXTllaV3BCYkVkM1dteHZSamt4UlRreWRrSTJUVWR0Y0ZoU1VsWnRkRXRMTW1sM09XbDJTRTRLS3pka1FYa3hka3Q0V2pCV1ptTldORUZwVVc1dmRUUmpRMHBGU3lzMFRqZzRjMkZtYlRsWlJVNVdPR2hzTTNwRk0xSmpWRmhWYWs5MGVFTklSRXhsYVFwdlFVWTBaR0Z1VEd0R1FWbHlZbGhPVmpSUE1XbGhjME5CZDBWQlFXRk9WMDFHVVhkRVoxbEVWbEl3VUVGUlNDOUNRVkZFUVdkWFowMUNUVWRCTVZWa0NrcFJVVTFOUVc5SFEwTnpSMEZSVlVaQ2QwMURUVUYzUjBFeFZXUkZkMFZDTDNkUlEwMUJRWGRJZDFsRVZsSXdha0pDWjNkR2IwRlZkV2hxUTBrelZUVUtORlJQY0ZWRU9ITlNTMlZXUm5wMmRuY3dRWGRFVVZsS1MyOWFTV2gyWTA1QlVVVk1RbEZCUkdkblNVSkJSakV2YlhOTGNFaG9VRGhFY201NlVVODVad3AyUmtzMlUxb3hOV0pOTmxKMk1XZDNLM1ZrZGxrMlZFTnpkakJyYUdwbFlqazRORlpQVkZoeFZ6VXJVbmhrZG5WeVl6aHdOelpYUm05ek4zVnlSMlJIQ2xkb1IzUnpWV3Q1ZG5Rck9WSXJXVkZIZDNCd1VIcGtjVVpTZVV4UE9GRlFhbXBsZEdWWldGWTJjRkZIZEc5b2RVaDVXVWx4ZGxWd1dETk9lWHBLU21FS1QwcERSWGhGVW5KUGVYRTVjR2RYUjAxM2EyZFhReXRvVUU5Q1NDOVVVamhGVTNaWFJuWmhWbk5yVGtjNVkyVjBNRmh3WlhwWlYyRTBkazlxZG1KVmFBbzJUa0pNVEdoaVVFdGpZemxSVjIxVmNXTlZkWE12TDNSNFRFWjVVSGhKVjFSNVRtSlNjbXRPTm5SdFVHMHdRbTVSUW5JME9IbHdSV2RHU1ZWR1FWUTBDa2c0TVVscU9HOWpjamRTTVVkNFkwaG1NMFpqT0ZoU1VUbHBUWEV2TlU5cVYzQmtjM2xuUlVVeFpqUk1jV0ZCUlRFM1J6ZFVkbTlTWW5WaFkxb3hhMlFLVVdKVFNFbGpUR28xY1hjcmRuQkNSMGsxZUZwcVRYZFhLM1E1ZGtJM2RuRmtlSFpKVWpoWVRuTXZhR3RTTTJkVVNWTmFkVmQ1ZG5kemRHUkVNREpuUlFwaVJYRlBSaTk1SzA1NlVEQkhaSE5VYTJNNFVuVm9ObWxqTHpBNWExUTFUemxtYkVKSlJXdFZOelZvZEdWclREbDVhVXRRV25KWWNteG9OM1YwYUhsWUNtazNVMWxVTDAxcmFrMXRWa3MwTkhZemVHSllOMmgzWVUxTEt6WjVPVkpPYlVWeFV6UkZXRWRHV21WMk1VaGxPVGhNVDA5V05uSjNSMmw1TTJKV1REQUtiRkowZEVGTVYwNU1UbGxLUjJNeGExRTRiakZ1TTJoM1dEUm1XbVZESzBSM1ZGZDZOV0VyV1hKTmVVcEtjMGRITW5SUVRYUnZiV2hHVlVablNGWmlZUXBOVmpNd05YWklPRXBVV25SblZteHNhbWRMY0M5S2VEWjRSbHBKZFRSRllqVjNhVWhaVlZwVVVFWjNhekJwU3pWeWFtbEtXamhHTlc4elJYWk5NazVSQ25KV1EyUjBVbUZvUzIwd1JGRnVhRlpZT0d4cVUxQllPQW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MxRkpRa0ZCUzBOQlowVkJOelpvUTA1cmNWSjJNMnMyTnpOSWFUUTJlVE5RUTNsSVJXaFhUMlp6ZEVWcVoyb3hSMloxUVN0NE9XbHlkRTE1Q25sT00yUktSRmhaVm5kTVRtMWFLMmRQUlRWR2NFWlFOa2xYWTAwemRuaEdTSEZQVTJ4YVJHOHlRalJOZDFWT1luaEhhRm8zU1RJdmJraHZkalJaUkZZS1ZYUktRVzVxZUN0UFNFZHVUa1JKVG1aVE1WSlBkR2R2ZUhvMlpVcGxaMHcxWlRoMk1Xb3hhMjVsVEZaNldHUjVlblpzZVZSb2FsUm5VSEJVYXk5cVZRcFNka2hPYUdZMEswTTJkRGRUVlcxS1NGY3pPRTR5V0ZsTWFFOTFSSEZYVGt3ck1VbzBhVWRQYmtSblEwcFBTbWhOVjFoRlQxQkdhVVkwYW1Wek5VUjFDblF6WWxoaWJVTnRSblIwUmxOdlJWTXhNM0J5ZDNKdFoweGlVRGR1UlRoSk4yMVBjMjFIUVVNck4yUkJTR0pOYVZoc1ZUbFlaMEprWVRkcFdsRllNMG9LWXk5V2VFOWxWSEpOS3pabmJ6Tm5TM2x0Y1VOS1pIbHZNM0ZhVTFsNVZuWkxkbWs1T1RkTWJYbzFNWGRaZHpKUFUxQmpRa2hYZUcxbVZXcG1TRWRwYkFwb2N6WnRVbkJKVEhGRlF6VjFNR1ZHZEVSM00zSm9hbHBZVjBNM09XOXVaRWxRVWxNd1JWa3hTSEJrU0dobU5XMU5Sak5xVDBSd1ZqbFViM05wV0V4NENteHhXbUZvYTJVeFNtTnJabGhEYnk5bVZFTnBja00zUW1sSFoyMUZVRmhrTUVnMmREQnlXakZGV2xCdFNTOXdTa3A2TVdkUE5raDJNVGhOTmtkMksyTUtZbTh2V0ZKcFlXMVZZUzlWWkdGb1ZWRXZOR2MxVnpJNGVXOVZaVVJuVEZKUU4yTm1SVEUwUXpKc1EzSmtWM0p0T0ZGRlIyVldXVE5ETlM5eFkxaGxhZ3BCYkVkM1dteHZSamt4UlRreWRrSTJUVWR0Y0ZoU1VsWnRkRXRMTW1sM09XbDJTRTRyTjJSQmVURjJTM2hhTUZabVkxWTBRV2xSYm05MU5HTkRTa1ZMQ2lzMFRqZzRjMkZtYlRsWlJVNVdPR2hzTTNwRk0xSmpWRmhWYWs5MGVFTklSRXhsYVc5QlJqUmtZVzVNYTBaQldYSmlXRTVXTkU4eGFXRnpRMEYzUlVFS1FWRkxRMEZuUlVFM1ozUnhLMUpLU1dkeEsyWTBiMW93YmpCRVNFbElXRFpGTDFKc1psaDJXblJHYzJoWFdsWXZTQzlEYTNwS1NISk9ObXh2U25Ka01RcEZOMmQwUlVKTFJubHRaVEIwVDNwVk0zRnFSa2RDWm5KaUszUTFhR2xhVW05YWFqTm5iQ3QwYm5kRmJtdE9aV0pKTkc5aFZsSnljWGxWUldRdlp6WkpDazFRYUhrMVJqRjZSMGx6VTNwRFp6VkhUemhTYkhkV1QwUkRNM2RxYUZOa1FrWmFlbXcwY1RFNWRTc3JiMlZRTWpoWU1ub3hjRFp3S3pJemFXWjBNWGtLVFRWVk5DdERjV0ZxZVdwWlFsRTJZMFVyYUc5VmVGRk9hMVJXV1RGamQxQkpkM2hsTVU1UmJsSnFSMWhJYUdoc1NHOTBUVFpZT1d0SVkyUnNXa3hYVEFwUk9XazBhM0pDZVZSeFdFTnpPRUU1V1dsblRVYzROVVpUVFZOdlozaEhZVFZRZFRSTE9HWnhjekZvYm1oQ09VbHhPVGRKUnpBd1pEbEtaM1Y0ZUhGcENuQlJjVFZrUzFkbU1HbzNTVEV5U3l0UFlXeHhNME5CY1hNM2QzVnplRmxyT1ZkelZYRldRV1o2WVU4NE1FUkhkR3BXUm5sV1ZYbG5TV2hyU1ZocWQzSUtWMEZ0WlhKaFNIbGFVVWxyVTBOVlVUTllUMjFLVEVGeU1FSmhObHBWYUdwNmFGWTNVWEpLSzJWV2RFOW9jWFJrUW5NeU5WUk5UaTltYlhCRVlqQkhad3BvU0hkMmRrZFNXbVJ5YmtsemFuQkJkMWdyWmxkb2RXVm5PV1pyWVZNclJuSjVWa2szV2tWWWFHNDFWVGh2Tnl0T2VIRmlWVkZuWlVneGVpOUJPV2NyQ25CTmJ6TmhWRzFKY1VOYVprTlRMMjQ1SzBsSlRERjNjMXBTVm5GQmQyMUdXalY1YVdjMVRHZHlOa1ZrUkVoUU5EWkVaRXRNYWtWamFWY3hOREUwV200S1FrNVVSa1J3UjBGS2RGTjNiVmxqUTJOd2JYVmxTalpFWkhSWmNrRTRaakV4TWxoWFpsUkVhamR6TUVseGEycGFUakV5UjFSdFdrSXdaVnBIY1U1MVZRcFJhbXBLWm5KcE5ESXhhMkpVVlRoWVduTlBNMjF2Tm1kdE5HZENTbE5HUlc5UU5HMUNTMFZJTTBoRFNHNTFZemMzVFVWRFoyZEZRa0ZQS3pSSGRqSjRDbUZxYW1KV1kwbzVObk5RUTI1cFQzQXpURUo1Y0ZOdFMyTnpRV3RVYkhKalVtdDNla0puZUdFclNVZFBhMDQ1TVZONFMyTldWMkpwVEhScGJITm5lU3NLUlhocGJVRnJSV2RGZEc5eVZuaHpUVGd4U1RkSE5tMHJNazFFTW5SUWNXcHVVakZIYkhaRlIzVkhaM0l2ZVhFdmRtTkdURmxPTWpVelQyMWxRMHRrUndwR1ZuRmpUVzlDTWpOT1FrUlpOMFp0VlRKU1dsZElWRVZhSzA1NWVscENZM1UwU1N0TVRqTXlSM1Z6UjI5Q1NGa3djRlpzTUhocFkySnJXSEpLZVZKU0NrTTVRVkZpT0M5NE1EUjVaSFl6T0hkNk1UaHNNRzlPUlhCVUt6QkpNRTVQYVRkbGMxZFRVVWRQYzFoaFNXVnJhbU5sVnpaT01tbG9TSEZxZG0xMGIxRUtWelZvT1V4UFFtaFZNa3BQUVZOMWJsbFdXWEJST1RSVmRXdE1NRmNyY2xnM05HdDBObFUzV2s1dFVua3lTemRxVlVKaU1GSnNaVzR5ZUZORVpGSnhZd3BtYWtSc0t6VmtZbEUwWkV0UGVGVkRaMmRGUWtGUUwzWkZOMDFsVFVKaWFtMVJORWR0U2taUFFrcGhVV0ppUVM5NVVtNUNNbVZtVkdNemVtbFVaeTlPQ2pKMlFTdEZjVmhwTXpFd2RFSjNOV05CYUVOWWEwWldhM3BOTmpGU1ozSnRNMHc0YVZaM1QxaDZOa1l6WjNOTFoyY3hSWEpMY1VONlVqUk1UbU4xV1VFS1JETnpOMEZUUzFsemRYbHhkSGRWYjFWall6bG5lVkJXY2k5RE0wRjZiMUpQV0RBMFpHUXhXSFpHTVVSQmVWbHhja3R4TjFwNFkyUlJUa3gyTDFkcEt3cDRNa0ZTWWpFNFpqSkZkMUo1V2pGNVRuZHBXalZLYlRKRGFTOWxWa05EU1VJNE5tMTVNbXNyVlRWV1dISkVObXREUVdkTmFVaEhlR1JUT0ZkYWVFMHJDbXRMT1RWdVRHeElSRlJSYlhwMlNEa3JVSFp2VGxKeGMzcHdNMDE0YjNoQlYyZFFUQzk0U21kcFYyNWxkVm96Y25WTE9GbFZRVzVqZUhvMk5FcHlOVXdLWTFCTE0xQnFVMnBSTTJKWmQwdFdNMFJLUVVGdlpEVkxRMGhJTVRGUVkwcE1WVzVCWXpCR1R6UmlPRU5uWjBWQ1FVMDRNV1UxWXpRMlVrWXlabWd6WkFwRE4xaHNTSGczUTNORVIxSkdOMVJrY1V0NmRtUlJPVlJCYVhwU2JXWlFTMGR4Tm1GV2FETm9NMFlyWXpWTVJrYzFObXczUzBodFpGQjRTalpTVFRaWkNtTTVUa1I2VlhCcWJXeDJSa2htWkZCTlZITjVlRmROTVZaQ1V5OU9TeTl2TWtSUGNtWkRaM1ZxTURWeE5ISk5iQ3R2SzNobE9XUnFXRUZtZW5CcEsyNEtSSFF5ZVhOd1ZHZFdNSE5TWXpoWFZFWkNNMnd5Vlhock5pdDJOelZJY1VWU1pWcE1NWE5qTW1aWGFVbEhUREZaVlc1V04yVXhNRWc1VldOSVVHazRiZ28wUnpOWE1saFhUemh0UmxSYWVrUjVaMFZwWkZwRVNFVjZhalpaTm05RFlVcGxiSEF3VWtGbFFrWkVTRGg1WTNONGFucFBlVVJMWjBkNGVXNWljMmRTQ2s5TGRISnpPVlpTU0VoRlIzZEdVbEkxUjAxR2NVRktTMWg0U21KeWFWUnhNblp3WlhveUx6QnhkMFE0WVRKV1VHZGhObk53ZFdVeWVEbHNjVzlzZGtZS2JHOTRNa2hNVlVOblowVkJRblpEUkd4NmNUbFZVa2RSZURsdFZEY3pVM1pIVTI5SVdERXdURnBsUW10MVV6RTFiSGw0U0hNMVVVRlhUREZIU1dsMFdncHdVbmRuWTJSdk5qQkNjR0k1YjFSTFRFNTVjbUp2V1RrdlFYcENWVlEyWm1saFFrVTRiVkZLZVRONWFFcHJVbGRNZDNwR1JHTnNORzltTTBOc1VqWlJDakF5ZGpWc1NFVTBZbTByVkdrM1ozbHJhRTVWVTJoSVNHWnJZVEp2TWpkTGF6ZHFTMk5DUml0S2R6Y3plRFVyY1dJd00wVnJSQ3RGUW0welUyMUZRM29LZVRkUk4zaEZTV2hxWlVWdFYzRnBaRGxDYUZOTVlVOXBiVzgzV2s5NGVFOW9aVVZtYzFnNFpraExSRU5ZYkhKVFl6VnNiVFpDVjNST1MxUlhhRUYxVXdwS2VGUmhWR0ZPTWxOa1drNUJiRVZ1VGxFMGJGbEJOSEZ2Y1cwMFZ6bFpNRkUyVDJaWmRFaFBZWGxxT0cxd1ptRTJlVGw0UmxnelZVeFVRMk40YVRaaUNrZE1SR1EwUmpaMUx6UlRWVE4zVFdjMFdEUndOMUo2V214dlRtRllTek16TTNkTFEwRlJRak5XWVRWak4xZDZla1l6UzNsT05UTnBOWHBSTlRVckwxa0tVSFpIWkM5ME5EQndiRzQxUlhSVUwzZ3hZeTlxWVhkamVuWnVNbVZzUmtGcFdGcEZWbGwzYW00NFEwSjJaVWhLWlU1MGRtRkNjSFoyVkhSTlRUQkhVQXBNTDA1aE1ITlNZbXBPWlhrdmFDOW1PRzkzYlRaUlQxcFdhVEZ2UWtRdmVGRndlVWx0VDBaNU0zUkxNbFl3ZFZaaFRuTkhNSFpSY3pab2NqbGFNWFUxQ25ZNWEyUTVMMGxxYUc1MFlXdFFiV1V3VTAxM2NVeHBSRzRyUWtndlNYUnhRa00yTXpGek0yRkRiREpqYld4dFFVb3ZSRzlCUzNOcU9FTm5LeXN3WldVS1kydDFNVzAyV1ZORVJtbGhaVTltVlROMVZ5dEZNVU54UTJ3dlIyVkNRMHBDU0dFNVVqVktTVlJoWTJaek1tZDFRMUY1VEdwWlNFaDNkbVF4VVdrMmFRcERPV3h0WkhSSk1ETkRTblZNYzJwTVptNTVkbTlwVjI5SVdGVklZMnhzYWxnemNYSXZUVlZLT1ZGRmJYaERORWx3U21SMlVDdFRkMkp6WjJnS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiBvc2xkYmRtYWd1djE1a3Z2NGhydmM3d2Y0YzAyem94cm8xYXNhMzF3YTdsM3ZoOWswMmttY3p2aGlpcGQybTNmbXRzN2hvMWxlcnN4MjRqZnplMDZncTk4aWQxNnVjNGdmbjB4ZnczNW12dXlpcjJ1MGt4dng1anV0M3JiZDEyYgo=\"\n + \ }\n ]\n }" headers: cache-control: - no-cache @@ -951,7 +1086,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 20:45:05 GMT + - Thu, 29 Jun 2023 09:36:58 GMT expires: - '-1' pragma: @@ -985,63 +1120,61 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: 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.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 }" + 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-039q8gip.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000002-039q8gip.portal.hcp.westus2.azmk8s.io\",\n \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"adminuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/4153e1ce-33ac-4916-a2ad-fd4fa1084a6f\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3823' + - '3494' content-type: - application/json date: - - Wed, 14 Jun 2023 20:45:06 GMT + - Thu, 29 Jun 2023 09:37:00 GMT expires: - '-1' pragma: @@ -1070,13 +1203,14 @@ interactions: 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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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"}]}, + "adminuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_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/4153e1ce-33ac-4916-a2ad-fd4fa1084a6f"}]}, "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": @@ -1091,71 +1225,69 @@ interactions: Connection: - keep-alive Content-Length: - - '2552' + - '2223' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: 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.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 }" + 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-039q8gip.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000002-039q8gip.portal.hcp.westus2.azmk8s.io\",\n \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"adminuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/4153e1ce-33ac-4916-a2ad-fd4fa1084a6f\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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/be152709-a77b-46a3-bf85-9cb231dbe21e?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/71aaf8d4-89f8-46ac-b032-4e49ae4b0ab5?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3821' + - '3492' content-type: - application/json date: - - Wed, 14 Jun 2023 20:45:13 GMT + - Thu, 29 Jun 2023 09:37:06 GMT expires: - '-1' pragma: @@ -1189,14 +1321,206 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/71aaf8d4-89f8-46ac-b032-4e49ae4b0ab5?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"d4f8aa71-f889-ac46-b032-4e49ae4b0ab5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:37:05.4547318Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:37: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 scale + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/71aaf8d4-89f8-46ac-b032-4e49ae4b0ab5?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"d4f8aa71-f889-ac46-b032-4e49ae4b0ab5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:37:05.4547318Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:37: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 scale + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/71aaf8d4-89f8-46ac-b032-4e49ae4b0ab5?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"d4f8aa71-f889-ac46-b032-4e49ae4b0ab5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:37:05.4547318Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:38: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 scale + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/71aaf8d4-89f8-46ac-b032-4e49ae4b0ab5?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"d4f8aa71-f889-ac46-b032-4e49ae4b0ab5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:37:05.4547318Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:38: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 scale + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/71aaf8d4-89f8-46ac-b032-4e49ae4b0ab5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"092715be-7ba7-a346-bf85-9cb231dbe21e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T20:45:13.6190673Z\"\n }" + string: "{\n \"name\": \"d4f8aa71-f889-ac46-b032-4e49ae4b0ab5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:37:05.4547318Z\"\n }" headers: cache-control: - no-cache @@ -1205,7 +1529,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 20:45:14 GMT + - Thu, 29 Jun 2023 09:39:06 GMT expires: - '-1' pragma: @@ -1237,14 +1561,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/71aaf8d4-89f8-46ac-b032-4e49ae4b0ab5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"092715be-7ba7-a346-bf85-9cb231dbe21e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T20:45:13.6190673Z\"\n }" + string: "{\n \"name\": \"d4f8aa71-f889-ac46-b032-4e49ae4b0ab5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:37:05.4547318Z\"\n }" headers: cache-control: - no-cache @@ -1253,7 +1577,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 20:45:44 GMT + - Thu, 29 Jun 2023 09:39:37 GMT expires: - '-1' pragma: @@ -1285,14 +1609,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/71aaf8d4-89f8-46ac-b032-4e49ae4b0ab5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"092715be-7ba7-a346-bf85-9cb231dbe21e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T20:45:13.6190673Z\"\n }" + string: "{\n \"name\": \"d4f8aa71-f889-ac46-b032-4e49ae4b0ab5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:37:05.4547318Z\"\n }" headers: cache-control: - no-cache @@ -1301,7 +1625,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 20:46:14 GMT + - Thu, 29 Jun 2023 09:40:07 GMT expires: - '-1' pragma: @@ -1333,14 +1657,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/71aaf8d4-89f8-46ac-b032-4e49ae4b0ab5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"092715be-7ba7-a346-bf85-9cb231dbe21e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T20:45:13.6190673Z\"\n }" + string: "{\n \"name\": \"d4f8aa71-f889-ac46-b032-4e49ae4b0ab5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:37:05.4547318Z\"\n }" headers: cache-control: - no-cache @@ -1349,7 +1673,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 20:46:44 GMT + - Thu, 29 Jun 2023 09:40:37 GMT expires: - '-1' pragma: @@ -1381,14 +1705,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/71aaf8d4-89f8-46ac-b032-4e49ae4b0ab5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"092715be-7ba7-a346-bf85-9cb231dbe21e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T20:45:13.6190673Z\"\n }" + string: "{\n \"name\": \"d4f8aa71-f889-ac46-b032-4e49ae4b0ab5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:37:05.4547318Z\"\n }" headers: cache-control: - no-cache @@ -1397,7 +1721,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 20:47:15 GMT + - Thu, 29 Jun 2023 09:41:07 GMT expires: - '-1' pragma: @@ -1429,15 +1753,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/71aaf8d4-89f8-46ac-b032-4e49ae4b0ab5?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"d4f8aa71-f889-ac46-b032-4e49ae4b0ab5\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:37:05.4547318Z\",\n \"endTime\": + \"2023-06-29T09:41:25.9561512Z\"\n }" headers: cache-control: - no-cache @@ -1446,7 +1770,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 20:47:45 GMT + - Thu, 29 Jun 2023 09:41:37 GMT expires: - '-1' pragma: @@ -1478,63 +1802,61 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: 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.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 }" + 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-039q8gip.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000002-039q8gip.portal.hcp.westus2.azmk8s.io\",\n \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"adminuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/4153e1ce-33ac-4916-a2ad-fd4fa1084a6f\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3823' + - '3494' content-type: - application/json date: - - Wed, 14 Jun 2023 20:47:46 GMT + - Thu, 29 Jun 2023 09:41:37 GMT expires: - '-1' pragma: @@ -1566,63 +1888,61 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: 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.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 }" + 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-039q8gip.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000002-039q8gip.portal.hcp.westus2.azmk8s.io\",\n \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"adminuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/4153e1ce-33ac-4916-a2ad-fd4fa1084a6f\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3823' + - '3494' content-type: - application/json date: - - Wed, 14 Jun 2023 20:47:48 GMT + - Thu, 29 Jun 2023 09:41:39 GMT expires: - '-1' pragma: @@ -1656,8 +1976,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/cliakstest000001?api-version=2023-05-01 response: @@ -1665,17 +1985,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b27b45c2-d6e6-493c-a9da-8b276a7016b4?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 14 Jun 2023 20:47:50 GMT + - Thu, 29 Jun 2023 09:41:40 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/b27b45c2-d6e6-493c-a9da-8b276a7016b4?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 index 2c9b417bcfa..246be82eff1 100644 --- 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 20:47:56 GMT + - Thu, 29 Jun 2023 09:07:46 GMT expires: - '-1' pragma: @@ -55,11 +55,12 @@ 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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": {}}}' + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {}}}' headers: Accept: - application/json @@ -70,71 +71,70 @@ interactions: Connection: - keep-alive Content-Length: - - '1816' + - '1487' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --tags --nodepool-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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: 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.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 }" + 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-n3hqst1n.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000002-n3hqst1n.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": + [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": + \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/47b45d38-b50c-4d7b-af1b-fdd7e1bf9568?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c1e48b8-8087-43b4-9395-7ba6f23c73ea?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3656' + - '3327' content-type: - application/json date: - - Wed, 14 Jun 2023 20:48:02 GMT + - Thu, 29 Jun 2023 09:07:52 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c1e48b8-8087-43b4-9395-7ba6f23c73ea?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"385db447-0cb5-7b4d-af1b-fdd7e1bf9568\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T20:48:02.7132093Z\"\n }" + string: "{\n \"name\": \"b8481e5c-8780-b443-9395-7ba6f23c73ea\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:07:52.9353341Z\"\n }" headers: cache-control: - no-cache @@ -181,7 +181,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 20:48:03 GMT + - Thu, 29 Jun 2023 09:07:52 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c1e48b8-8087-43b4-9395-7ba6f23c73ea?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"385db447-0cb5-7b4d-af1b-fdd7e1bf9568\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T20:48:02.7132093Z\"\n }" + string: "{\n \"name\": \"b8481e5c-8780-b443-9395-7ba6f23c73ea\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:07:52.9353341Z\"\n }" headers: cache-control: - no-cache @@ -230,7 +230,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 20:48:34 GMT + - Thu, 29 Jun 2023 09:08:23 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c1e48b8-8087-43b4-9395-7ba6f23c73ea?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"385db447-0cb5-7b4d-af1b-fdd7e1bf9568\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T20:48:02.7132093Z\"\n }" + string: "{\n \"name\": \"b8481e5c-8780-b443-9395-7ba6f23c73ea\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:07:52.9353341Z\"\n }" headers: cache-control: - no-cache @@ -279,7 +279,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 20:49:03 GMT + - Thu, 29 Jun 2023 09:08:53 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c1e48b8-8087-43b4-9395-7ba6f23c73ea?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"385db447-0cb5-7b4d-af1b-fdd7e1bf9568\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T20:48:02.7132093Z\"\n }" + string: "{\n \"name\": \"b8481e5c-8780-b443-9395-7ba6f23c73ea\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:07:52.9353341Z\"\n }" headers: cache-control: - no-cache @@ -328,7 +328,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 20:49:33 GMT + - Thu, 29 Jun 2023 09:09:23 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c1e48b8-8087-43b4-9395-7ba6f23c73ea?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"385db447-0cb5-7b4d-af1b-fdd7e1bf9568\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T20:48:02.7132093Z\"\n }" + string: "{\n \"name\": \"b8481e5c-8780-b443-9395-7ba6f23c73ea\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:07:52.9353341Z\"\n }" headers: cache-control: - no-cache @@ -377,7 +377,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 20:50:04 GMT + - Thu, 29 Jun 2023 09:09:53 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c1e48b8-8087-43b4-9395-7ba6f23c73ea?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"385db447-0cb5-7b4d-af1b-fdd7e1bf9568\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T20:48:02.7132093Z\"\n }" + string: "{\n \"name\": \"b8481e5c-8780-b443-9395-7ba6f23c73ea\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:07:52.9353341Z\"\n }" headers: cache-control: - no-cache @@ -426,7 +426,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 20:50:34 GMT + - Thu, 29 Jun 2023 09:10:23 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c1e48b8-8087-43b4-9395-7ba6f23c73ea?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"385db447-0cb5-7b4d-af1b-fdd7e1bf9568\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T20:48:02.7132093Z\"\n }" + string: "{\n \"name\": \"b8481e5c-8780-b443-9395-7ba6f23c73ea\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:07:52.9353341Z\"\n }" headers: cache-control: - no-cache @@ -475,7 +475,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 20:51:04 GMT + - Thu, 29 Jun 2023 09:10:54 GMT expires: - '-1' pragma: @@ -508,15 +508,162 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --tags --nodepool-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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c1e48b8-8087-43b4-9395-7ba6f23c73ea?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"b8481e5c-8780-b443-9395-7ba6f23c73ea\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:07:52.9353341Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:11: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 --dns-name-prefix --node-count --ssh-key-value + --tags --nodepool-labels + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c1e48b8-8087-43b4-9395-7ba6f23c73ea?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"b8481e5c-8780-b443-9395-7ba6f23c73ea\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:07:52.9353341Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:11: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 + --tags --nodepool-labels + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c1e48b8-8087-43b4-9395-7ba6f23c73ea?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"b8481e5c-8780-b443-9395-7ba6f23c73ea\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:07:52.9353341Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:12: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 --dns-name-prefix --node-count --ssh-key-value + --tags --nodepool-labels + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c1e48b8-8087-43b4-9395-7ba6f23c73ea?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"b8481e5c-8780-b443-9395-7ba6f23c73ea\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:07:52.9353341Z\",\n \"endTime\": + \"2023-06-29T09:12:50.5117071Z\"\n }" headers: cache-control: - no-cache @@ -525,7 +672,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 20:51:34 GMT + - Thu, 29 Jun 2023 09:12:54 GMT expires: - '-1' pragma: @@ -558,67 +705,65 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --tags --nodepool-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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: 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.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 }" + 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-n3hqst1n.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000002-n3hqst1n.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": + [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": + \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n + \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": + \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": 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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/2bb52149-3221-4baf-ba77-b9ed9a912c63\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4309' + - '3980' content-type: - application/json date: - - Wed, 14 Jun 2023 20:51:36 GMT + - Thu, 29 Jun 2023 09:12:54 GMT expires: - '-1' pragma: @@ -650,72 +795,66 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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-n3hqst1n.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000002-n3hqst1n.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": + [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": + \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": + 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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/2bb52149-3221-4baf-ba77-b9ed9a912c63\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4590' + - '4261' content-type: - application/json date: - - Wed, 14 Jun 2023 20:51:37 GMT + - Thu, 29 Jun 2023 09:12:56 GMT expires: - '-1' pragma: @@ -747,72 +886,66 @@ interactions: ParameterSetName: - -g -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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-n3hqst1n.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000002-n3hqst1n.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": + [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": + \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": + 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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/2bb52149-3221-4baf-ba77-b9ed9a912c63\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4590' + - '4261' content-type: - application/json date: - - Wed, 14 Jun 2023 20:51:38 GMT + - Thu, 29 Jun 2023 09:12:58 GMT expires: - '-1' pragma: @@ -844,67 +977,65 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: 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.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 }" + 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-n3hqst1n.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000002-n3hqst1n.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": + [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": + \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n + \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": + \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": 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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/2bb52149-3221-4baf-ba77-b9ed9a912c63\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4309' + - '3980' content-type: - application/json date: - - Wed, 14 Jun 2023 20:51:40 GMT + - Thu, 29 Jun 2023 09:12:58 GMT expires: - '-1' pragma: @@ -938,15 +1069,15 @@ interactions: ParameterSetName: - -g -n --file User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ - \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSVEhSTFoxWlhhMU4wYVVaUWQzZGhTbHBMTlZWVmFrRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxVVVYbE5SRTAwVGtSa1lVZEJPSGxOUkZWNlRVUlplRTVFU1hkT1JHY3dUakZ2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVOM0NqRlljR2xxVFhjcmNqZE5UMDFGV2pKV1FqZHVXbUZhZVVOQlVTdHZNVXgzWjJoRFRFRXdNVEZzZEVsME1XUjFia280T1cwNGFYa3hTMjVLTHpOWE4wMEtUR2RNVEhoUFp6RXlhR00xYjJ4TlpHWnZZMXBpUnpGclRWZDVUVEJxTkd0emVrRlVWSGx3YzAxV1duZERjVVJVV0d0bU4xSnJTVkJITlZkbVR6aFNNd3B4VlVaQ2NVRlJjbWhDTUdsV2NVbE5OMEkxTW05NFYzWldRM280VVRJclJIaHVkR0U0TVc5bWFUaGtjR1ExZFhKNVIzQkxNV2REUVdGb2VtaFJVVTloQ21NdlUzWmhWV1pKVERSS1kwMVdjR1JoV1ZoallqTldTazh4TW5saWQxSjNhRFkxZUdOTE9YZHNka1JKVDFWQlltb3JRM0JyV0RoUmMxTmFUVTF5TVVJS1dtWkVNMGhJYjFWUGRqQkpNRlpsUjJ4alpVVnFTVFE0V0dnclNITnFlR05zVFc1S2IxbFRlVU41WWt4c2JWVjBOR1E1YzNZeFF5OXBVVXg1VjFGQ1Z3cDRSazlvT0RkRlpXNTVXRTQ1WWtWRU1HZFdVM2x1Tld3eFoxcFZVVkJYUW1Sd056ZE5TV013WmtWM1JTOUtTR0ZHTkdWVE9XRnRhREpoWm5KdlRtcHpDamhNZUZBdmRqZGlPRlpNVW0xdE1WTkxMME53V2xkR2IyVnhLMEpUV0hwNmNIbDJXV2d4Vm10amN6bFliM3BTVlN0U2VqZG1jRkkwUkZwSGFFb3dOMlVLUjBRM1dHSlVNVEZGUVdGVlFsbFFkM0Z1Yml0RGFsZFhaMjU0Vm5sSFRGRkRiME5QVlcxaU9VaHZaRkkyZGpoV1NTOHlVRmc0VmpkeGFFeFJVMUYwYmdwYVNYaFFSVUZrTjJKdlF6SjVWSFJPV1M5SmNVZFpXRnBuYzIweFpsbENkM0pDVXpoTllucERNU3RGU0VSdVdVbG5iRTlPVnpCSmVGWk9TMUV4Um1Gb0NrWTJiR05pWWpodlJrMTRSVk5YTmpGRmEydDVkRGhOY2xreE5tMUVTMXAwWXpOb1NVeHlTbXh4YTJ3MGVFbzBObUUxVVROeE1UQnJhMGd3V2pGVmJtZ0taM3BMYVdOYUx6VXJPRTFSUVVaVE4xWTJUWGxIT1dOTVJETnVhV2gzYTNoaU0zWkNZWGxGY1VwUlNVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWRFZEbDRjbVZMUkhsUFVsTjFSbE16Q21odFRrdzFiakJITW05bmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGSVMwZGxVakZoVmt3NGVtWnJOR3RUZDJ3d1JqVlhTRVJMWkVJS1l6UlRaVmxCVUZwVlIxaFBjMmxrV0VWc09XaFVTRmdyVDFFMmVEbERUVUZEV0cxTVZFdEZXR041YlhoNVEybzBhV3RET0VkR2JtRkxWakJzWmt4aWRRb3hOMFJ3Tm1ONVMxTlpWVGd2VkZWVEwzVkxVa013V0N0b1V6SnFUa2c0Wlc0eFMxSjFaRmxaVjJ4a1RHTm5jR3BxUVc5dWMzTklPR2h1TkdkeWR6aHpDa1ZrUzBWT2JrUTVaSE5JUlc5TloxQm5UakZvWlVsRFRTczRZMjF4ZVVzeVdXUkxXRll2ZEVaM01XUXdXVEZtYTFoWGJVdG5aRlkzVEUxUVdXbExjelFLTHpZMmFreHFZekEyTVZGeU9VSlNVbTgwTVRCWGFtUXhXRFl6ZWxKT2NubE5abk5FZVVSbU9GTTBZVVkzVjBKVVpXUlRWMGRuTmpCRU5HTkVOMGQ0YlFwVE5qZzJVWGQ0YjJSRFRrTnNObVJFYjJvdk1TOXBiWFZUVDJKM1FVMTNNamR3U1drMFpUUlZZbmh2V20xVFoyZFhRekJzYjFOS1QwUmhlSEZpTTJWeENuaFVVSGhhYUZNNFNFSkZNSFJwZUZNeVJEaDZPSFZTTWxWcE0zaHZkVll6Tm1NNE0ydHFTR0owZWxWUlZFUjNMMnhYWWtWalZHeE5aek4zVlRodmQwNEtlbnBvVTFCNFZUaE9hMkpRTjNkeVVXSkNkV0pNVFVGYVExRnNTVTVHVEdacFNrSkxaVFpNVW5SYU5sUjRNRGhtWVdJMVJtdDBVV2xwY2xaRmMyaG1ad3BQTUZZMFducGFaVFV6ZWtsM1IwTjVSVTVDVGxkSFNIWlVUSE5OY0VORmFGbGFWVGR2YzI4MGRqQm9TblZwZW5aVlFYRnhiR1F4WmtOVVdYRm1iblF2Q25WR1NHSlRSRk5OWTB0d1NYQnBiVWxHZHpCd1IxSk1WbkZFVFhGa1oyaGlSelprU2xreFlsbzBWV2c1TUdOalUwNUtia3hpUzBKa1oxQmxhRU4zT1U4S01Vc3dkMEUyZVhkTk5EWnNjR0pTZUdFNWJEZHdhMVZPTms1VmMwOXNhVGxCVkRsVE1uaE5kRXB1TDFGWWVtUm9WV3A2VVVkTlRuWjBjMG94YlhGbFRRcDFPVzF4T0had2VtVjZNU3N4VXpCSUNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc2pzeXc0YzItOGE1Nzd3aDQuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3RnY3RkYzIKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3RnY3RkYzIKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3R3bXhlZmQ3bXF6X2NsaWFrc3Rlc3RnY3RkYzIKICBuYW1lOiBjbGlha3N0ZXN0Z2N0ZGMyCmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdGdjdGRjMgpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3R3bXhlZmQ3bXF6X2NsaWFrc3Rlc3RnY3RkYzIKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJVkVORFFYZFhaMEYzU1VKQlowbFJUbkpqTlRKNFNqTkpiWFl2Y1dwM1dDOUJSemwyUkVGT1FtZHJjV2hyYVVjNWR6QkNRVkZ6UmtGRVFVNEtUVkZ6ZDBOUldVUldVVkZFUlhkS2FsbFVRV1ZHZHpCNVRYcEJNazFVVVhsTlJFMDBUa1JrWVVaM01IbE9WRUV5VFZSUmVVMUVVVFJPUkdSaFRVUkJlQXBHZWtGV1FtZE9Wa0pCYjFSRWJrNDFZek5TYkdKVWNIUlpXRTR3V2xoS2VrMVNWWGRGZDFsRVZsRlJSRVYzZUhSWldFNHdXbGhLYW1KSGJHeGlibEYzQ21kblNXbE5RVEJIUTFOeFIxTkpZak5FVVVWQ1FWRlZRVUUwU1VORWQwRjNaMmRKUzBGdlNVTkJVVVJKYURSblpIQndZVmRLYURSQk1IbHlkbTFPZEhnS2NVY3ZOR3BLTWtOcFVIZFhjMDB4VVZoc01VNUJiRUZGSzIxMVVWRm5LM3BtUkdObGJHeHNRMlp0TjNod1IyWktlVVZSTWtoYWFHRjVTRWRFY0hWaFR3cG9TbmxOWldFclRtdDFiemhWUVhsaVUycGtheTlaY0c0NWIxRmtlSGQ0YmpKV1lWcGtWSE14T0c5WGR6TnJOak5YWjI1TGFDOVNiSFE1ZDNwTGJYRkdDbmhaTlRCVlZXb3JaM0IxV0dWWGFFRjNORXhVWkVOQ2FqRlhNMm93V1hWMVRrZG1TMk5RUzNsUGQzUXZOekptV0ZsclFXMXlWbEpNZFZKMFFrVnhOV3NLZEdKeWNYQlZXbEl4YXl0b2R6Vk5hR3RNU1dkbmFVY3JXRXB0ZVhRMmJEQXZTR1prUkcxeGRVVkdOM2hrY1VaeFdrVjZlbGRHTnpsYU16TmlWelZKWndwQ1JHZHVXVEJLY1RrMGIwaFdPVUpqWW5vclpuTkhhMUZ4UlRWWWQxUkVTbEYyYTBzNWEwdENiR1pYYjIxVlZWSnBSelozZVV4SlZVdDZXbE4yT0dOVENrZFRPUzlGTW5kVlRFcEVLMXBDY0ZaT1EzVmxjR1JhV25aQmRsQmtOVGhPVG5SbE5URk1aVlJoZW1GbFFraEtSa3hoYW1GMkswSnhiRWRIVW5nelNVMEtRV0kzYjNRdmIweFNhalJST1VoYVpUbDNXa3hUY0Rkd1VUSTJaV2t2TW5kbU1sRldSMHc0UzFJclowUlZjMUJQWm10ak1IRTFiR2t4T1N0bFJtRnhRUXAyVVd4VVpVTmhiM0JCTkdGMGR6SnhSVTlTWTBKVVpWQkxOVUZFVTAxbVFqY3JURVpZT1RKb0szZE1MM1V5VDBWM1VEaEhXRE00WVdsdU1WZ3JVQ3RSQ25CU1ZTOUNRVmx6Um14SlEyZFdhemhJZWxkSVdYQmxhV3hSWkVreGNuQnBUMHRrVlM4ck9GTnRhMlpMYTNFd1Z6QldWMlZDV1dWa1pGTmpjbTluVlhvS1FsRm1hSG8wTDFobFFuZGhjSGQxVkd0NGQxRjFWVTlLZEd4YWVrdFdaakJxTVZWS1lYUkhWMW96UlhadGJHTlFRVlF5WW5WTk9VaEdUR3RtYjFoRVlnb3Zka2xNVlRsamFWZDVWbU5UUVZFd1FsRkJZbU4zU1VSQlVVRkNiekZaZDFaRVFVOUNaMDVXU0ZFNFFrRm1PRVZDUVUxRFFtRkJkMFYzV1VSV1VqQnNDa0pCZDNkRFoxbEpTM2RaUWtKUlZVaEJkMGwzUkVGWlJGWlNNRlJCVVVndlFrRkpkMEZFUVdaQ1owNVdTRk5OUlVkRVFWZG5RbEZLVUROSGREUnZVRWtLTlVaTE5GWk1aVWRaTUhadFpsRmlZV2xFUVU1Q1oydHhhR3RwUnpsM01FSkJVWE5HUVVGUFEwRm5SVUZITjNONmJucHRTV3MwVm1vd1NEaFVSVTVsVlFweFdYZGFjR1JVYnpWUGRFVk5ZblF3VldoT1ZqbE9WWGhZWlZwMVVtcDZiV0Z4YjFab1lsQXJWRVpDUzBZdmMwMU9iakpJZVRoc2VFSnFlVmc1TnpCVENrOXlOVk16WlRCR1dHRnZTMDlLVVU5clRsQlFka0ZPZGtSbmVuWk9RVEpXTTI5ck9VRjBUbEZOUVhkTU5FZG1XVGxZWlZsdksxUTBlbnAzV1RocWJFTUthMFlyUjFjeE9ESnpSM0JXZFdkWFYzWnBjMDAyYjFSbFYwcG1Ra2xoVXpKVlRWTkxTVTVhWlcxMFJtcFdTbmxNWVdoSlkyWkVaaXM0VGpKUmIzZGFTQXB3Uml0MFJYbDJWRTl4VjBOMlNFMUdhRmR4VTBWMFZuRk1lVFV5T1hFNFR6UkZZa1pFVDFwM1dYZERkbkZWTVVnMVJEQTRXRzF3WTB4TlV6UndWa0V2Q21wSU9ITlNZbEpKUmxscU5EQXdkRUZZV25SeU0wdDJLM055ZDNVME5qRTFTVGxYTHpKMFZuUldkamRxTTNnMFZEbFZSM2RqTTFkQlYxVnZXSEoxWmxrS1RrVjJhVFpNYUN0YWRrWlVUbXRCY0RjdlltaFVWMUozUkdwUlJFVmFia2t2VWpCbE5VOHlXRFpKVm5Od1lWWkNXRlJoZFhwdlNVRmxZMmt2UkRVMlV3cGxkMGswUzNoTFpqSnhVek0zV25OWVdtMTNOVTF6ZEhKeVFYcEhjRkJFV1RRNWEwNVVWU3ROUTNRck1tSkdhekI1TURCeFNGaDRRbmx2Um1OVEx6bERDbUphWVUxRFVIaHFlREI0ZG1jck5YUm5RV2RqYVVGbVRGZzNOalZPYjJWa1VFWmlaSEpOUVdOdE56UndRVWN2U2preGNpdHJVbWxDU2xCdGRrSklRM1VLWjJaMVFtYzNRa1JvYzJaR1pWWnZablJJTUVOalpIUjZRMEkwVEdaelZqVnZNa0pzT1hscmEzZEdUMnhKWjFsamNucFRUV1F4TkVRemFteFFaMk5HU2dwRFFqWk9jbkJMU21JNFl6QTNaWFJOWW1aWk5GSkpXamxGUXpkWU5raENhV0Z1VW5wdU1uUXpXRlJ1V0hselpuTTVOVUprWVRVeGF6TmpUMUYzYVhsRUNqTm9abWhMZW5VeFdrdDNhamhHVDBwbU9XbEtiM1JOUFFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMEZKUWtGQlMwTkJaMFZCZVVsbFNVaGhZVmRzYVZsbFFVNU5jVGMxYW1KallXaDJLMGw1WkdkdmFqaEdja1JPVlVZMVpGUlJTbEZDVUhCeUNtdEZTVkJ6TTNjelNIQmFXbEZ1TlhVNFlWSnVlV05vUlU1b01sbFhjMmg0WnpaaWJXcHZVMk5xU0cxMmFscE1jVkJHUVUxdE1HOHpXbEF5UzFvdllVVUtTR05qVFZvNWJGZHRXRlUzVG1aTFJuTk9OVTkwTVc5S2VXOW1NRnBpWm1OTmVYQnhhR05YVDJSR1Jra3ZiMHRpYkROc2IxRk5UME13TTFGbldUbFdkQW8wT1VkTWNtcFNibmx1UkhsemFuTk1aaXM1YmpFeVNrRktjVEZWVXpkcllsRlNTM1ZhVEZjMk5uRldSMVZrV2xCdlkwOVVTVnBEZVVsSlNXaDJiSGxhQ25OeVpYQmtVSGd6TTFFMWNYSm9RbVU0V0dGb1lXMVNUVGd4YUdVdlYyUTVNakYxVTBsQlVUUktNazVEWVhabFMwSXhabEZZUnpndmJqZENjRVZMYUU4S1ZqaEZkM2xWVERWRGRscERaMXBZTVhGS2JFWkZXV2gxYzAxcGVVWkRjekpWY2k5SVJXaHJkbVo0VG5OR1EzbFJMMjFSWVZaVVVYSnVjVmhYVjJKM1RBcDZNMlZtUkZSaVdIVmtVek5yTW5NeWJtZFNlVkpUTW04eWNpOW5ZWEJTYUd0alpIbEVRVWNyTmt4bU5rTXdXU3RGVUZJeVdIWmpSMU13Y1dVMlZVNTFDbTV2ZGpselNEbHJSbEpwTDBOclptOUJNVXhFZW00MVNFNUxkVnBaZEdabWJtaFhjV2RNTUVwVk0yZHRjVXRSVDBkeVkwNXhhRVJyV0VGVk0ycDVkVkVLUVRCcVNIZGxMMmw0Vmk5a2IyWnpReTgzZEdwb1RVUXZRbXc1TDBkdmNEbFdMMm92YTB0VlZsQjNVVWRNUWxwVFFXOUdXbEJDT0RGb01rdFliM0JWU0FwVFRtRTJXV3BwYmxaUUwzWkZjSEJJZVhCTGRFWjBSbFp1WjFkSWJsaFZia3MyU1VaTmQxVklOR01yVURFeloyTkhjV05NYXpWTlkwVk1iRVJwWWxwWENtTjViRmc1U1RsV1ExZHlVbXh0WkhoTU5YQllSSGRGT1cwM2FsQlNlRk0xU0RaR2R6SXZOM2xETVZCWVNXeHpiRmhGWjBWT1FWVkJSek5OUTBGM1JVRUtRVkZMUTBGblFUVTNXVEJSYnpkTlZYQlBXVGszYzB0VlprWXZTVTFhVWtoQ1RHWnliMWszVWt4NmJtZFpZVWx4VVU5VVJYa3lTMUJTWTFseVdERkxPQW8zTUc1U2RqVjRiRU5qTVVKeFUzbHlVbFpzYUhkRk1uRmliV2hxS3pCTlQwRlphMHBMVFhWd2NVdFpOM0JtUkdsd05uUXpOVTl4T1dZeVlrTkRWRXhRQ2tkbFMwVTNkelZZZW1GRFNISjFZblJNZFVWWVJWVnVNMHhsVjJaNGVsbHFkU3RsVDFCclUyTlBWMGswWXpCSmVuVXpVWFkwZEZCbU5FRlRkSGxyTTBJS1YxZGxRM1pVVUZKUVYwOVBRVXd2ZG1KR2NsSnNVMDlsV2t4emEwNUxkRTlhV0dkMU5DczBWa2RPTlVRM0wzcEdSREZMV1VoNkx6Tk9URGh5U1VaUGRnbzVRalF4VFd3eE5pc3pOR1J6WlZCWk1rVndOR2RhUlVZNFUyOUNVR0ppVEVObk1rSjNVV2xMYm00NUsyUkdVelF5VFd4Q1IzQXlia1pDVURONkwxVktDbWxoU1d0MFUwWkhSbmxEZDNNcmVtd3ZUbEZWY0ROalJqWkphV3N5Y0ZCaFZXTnlWVkJ2Tm1wVWNGWkNSbVZhTlZsNVQyaEJjRnBoVXk5S2VqbExjVElLWjJ0eE0yb3pSVlpWTjNOWVEwZHVLMVZxTVVobmQyVktlVzV4WTFneFltczFRa3RKYlhBNEwyRlphMmhGZUhFck9WRXljRGxXY3pOTGFsVnFVM1pJU3dwWmRtSldkRVpKU1dWME1UTnpNekJ0UjJSRWVXd3dWVFowZEVsV1QyNUNTelppTms0Mk9VbENjamRUUzFadGJEZEZlbTU2WjNGdllWQnNjVTFXWVhZeENqUnllSEpPUVZrNFEyazFkRUZNY21aNGQwc3pkR3h5Um5SNVUyMUlWVXRSYjJoR1ZISkhVblZMZEU5cGJVUTBaMHd5TTB4WFdWbFdMMHBLYkRWUlNqZ0tTbk5CZDJjd1RtSlpRMkpYZVd4TFlYQTNWVVZDTkV0Wk5FSTVPWEJxVDNoa1lWb3JTV1k1VG1ZM2RFMVdObWxLYW1aWFRrZFJVbk5oVmtsT1NsUlJlZ3BvYmlzeGFUWTVUMDl5ZEdGemNHY3JVMmdyWmtOb1MxZG5ZM3BNT0Vad2RHTkNZeTlZV1U0eU1VUTNZa1ZvYkhrMFVVdERRVkZGUVRod1pFb3dVRzgzQ2xsclpXbEZjRmt6VGtwSmIxUjNhbGxFTlhRNVJHUmFVbTlHWWtOWmRXNTZkVXhXTjFsdmJVcG5kbVpaYjNCbk1rNUxNVk0wZEU5WldrOTFkMlZyZWtVS1kxVTVTeTlOY1c1NGRURXZOVlJZTkZoQ0wxUkxPWGRsUkZsVlluRk9jRWcwWTNaMUsybE1OakpNUmxFcmRtcFlLMkUzY0cxTFFteFlNV3MwVDJsRU5BcDZORTVsTldadVdXVXliVlJSVkcxQ01FWTNkM1ptZFhCcUwxUlFjVFZ6V2xwdWFVeEhhRmxEZFU1eE9HSmFTM0ZoWnpCRFpHTnVMM1ZKWmtGUlRGaGtDbUppY0VjNGRtTldjR1JEVTNwV1JrNHpNRGRzTkZkWVMycHlUSE5VTkM5a1VWUXdXVnAwVEN0clpIbGlRbWhqVURBclMxRkNOMUZTWjJzM1YxTnBlbFlLWWpkWGRVUkVkbkJFVlZWeFdXTTNibFJ4YkhnME1tdGFSMlJrVUVWWVVuaEhWRlJRVEdkdkwyUnJSR3hhTDB0dlptSlFOVFo0TjNodVJrRkJTa2xqVFFwa1YyUXljM2xYTVhsUmEwMDFVVXREUVZGRlFUQTFNRkZYVm5wV1VWaFdVRXRLUWt0dlpuRkNibmxxUVZsMFZrc3JUbHB5U0dOMmVITndWMlZETmtsbENscDNOSFI2VFVSU2N6aE1ZV0UzYkRkTVNuSnNkRzF6TUdGcFZYVmlRbmxRUVUwemNrUnBLMWhvZWxSeU5IWmpRV2h0ZG5OV2NWcG9Vbk5WWWpCWWNVSUtkMVJXZEZCeFZGcHpjRnBSWTNoclMzQnZUM2xZTlRGU2VXcE5SV05yVDNsQlQzQmpRWEJSUmlzclptdHVjRUprU0RkRlVtNUdaVnB4WkdkQ05WQk9hUW94UmxGeUwxSjNRbkZHVW5CMWRGQk9USGd2UVZrd1VucFRZVkl2ZWxSWFNFZGlObVpSVlhWSVRXZDZUVXBYVTNGSGExSXJjblE0YVRnNVF5ODNaa3hqQ21nelMxWm5SRXRVVmtGdVNpOUZUbUo1Tnl0d01rTnZTMUZyVDBsRWNHNVJiMGxwYkhFd1J6Rk5hR1UxVFdjeUx6WlVSU3RxZHpaRVRXeExURTR4YUZFS1pteG5XV2xUYlZnNFRHbFZkVkpNWjNadk1FTjBZVUpzYkdsQlpERnZPRTVQTTBFeldGcHVXbVIzUzBOQlVVSjNLMUJPZGxad2EwSkZPSEoxVkZCWk5BcHFWR2R2Vm1vMFNWSnhhbVZKVFdsNWJYSlROM2syWlhOb1VtVkpjeTlTVDBGWk0zQmhiV3RVTjNkUFEycHVaVko1UWtSUVdUWkRORUVyTUhZdlJrSldDakkxVTB3NFlUVlFaVXRMYlRoclRYTnRTMmhuTkdkYVNIRlBhMHB2TDBOa2NWUllSa3R6TW5CblZVNVllVXB3Y3pWUFprTmhhMmd3YlhkRkszRkVUMmNLYUZoSlIwWm1ibGRTSzBKc1IxTllSak5KVVRWeWJXdE9lREpXUVV0TEwzSXhha2RhT1ZsMFdFSXJaakZaY2xOelFYTjNUbFp4VW1aNlZHWjBVR2hRWlFwMlJuTm9UWEJRU2xGeWVtSlZjMUZhTkVWclkxcERjblJxY2pSdFdrZDNXa1ZXZEVGWmN6QkZTalphWW1OQloxaFlkems0VXpWVE5rTlRiV050VDI1WUNsQkVZVmxvWm5CRFREZGlValpOWlM5MVVEQm9ZVGxEWm5CSVFUTlRTalV4VHpWUFdqZFBPVFpYY1RSM1UwdEVURFJ3VjNWaVVsaHZUblEyV1ZoNE9XZ0tSamd6YUVGdlNVSkJSRVZRV25WNmR6UjBaM05PUlM4MVRTOVNaSFZhVDBkNFUwOXJkelUzZUZKNVFTOVhhV1pJU0VRNGFVNU9ORGR2VlRad1NGaFZTZ3B3WXpNek1FdEVSWGRMUlUxT1ltbDFTMmhqVTJZcmVqRXdTbk5ZVjFwQlZrdDFUVkl4VDA1V1VHaFFVWFY0YWtoT1pUTlpPSGxCZVVoTlR6ZFJSMVo0Q2tJdlNFaFRibkpWWVZwU1ZsTjBUVkZDVDFobk15OUljVmsyTms1V2RETlRTVEpVU0c0eU9YSm5LMDh4VVRSRWJTOVliSGhISzJGVFNsTnBibEkxVFZvS1JIWkpjbXBLVW5sVVp6UXhibTE2YVZsSFlscEdRblJhTkVZMGJ5OXZNRkl2Ym5Cck0ycE1PREJyYjBWdVdIWmtWamhJTkROcWRtZDVkSGhRTTFkNFRRcFpURWhHYUVKRE1uWk5MMHN6TVc5Q1oyaGxkMlpZWm1Ga2JEUXZLelY0UkdRNFNYUkJaVTB3WTFsaFJraE9SMkkxV0RkT1ZVMTNXamRKV2xGVFJrOWpDakUwTkZrelJsbFNTbmxIYjNORFUyZERXWEp0TWpOQ0sxVmlaVE53V0RCRFoyZEZRa0ZPYkVGUmFGUXlVbEpDZEhwNmJXVkxabWxHT0ZBM1VtNVVaSEFLTmxodVdtSmFRMEZKWTI4elNrNURaa0ZpTkVWT2FITlpZelJ2TTB4MllsWlJXSFUxU0RGUGRGVXpXU3RUWm1aSFJXZ3JNelV3VjNwemRHTkZia1YzWWdwMmIzVnpkREpDYW14TmNXVklaRWwzTkdkUU5raEVUVFpxWTFvd05tOXBVVGxaTXpOMGJEVldUM1ZzVlUxeE9HUk5WVVZHWkVZeVJsRktXVTEyWm0xNUNuRlVlbWhtTmsxclIzUlViRXR1VUhCMVdUQlRja1JQVUZkcmRWcGhWV1ZaUkRGYVdWaG9kekp0VVc5a01VbHJUVzlFVlhOdVdVUlRZalExUXpNeGRVY0tUMUl5WTJGa1ozUlFSVXN4TjNSeVptaElWbmxEVkVoQ1RqUmpXVFpzUXk5TFJqUkRVMmRLU1Zsb1RUVndabkYyWjB4NVJIaFpLM1YxV0ROeVozSlZVUW96ZGk4emFrNWpjVkoxVW1wemFUY3pObTFtYVU5Nk5tb3dWalZSUkZCbE9HNHJWbVpOYjNKRGRsQnBlRXB0WWxoSE5qSjNkVTV2YWxOcWN6MEtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogM2pxdzc0OHdpNTU1djRzeW81NG8zeDBwajhuNTN3bXp4aG5pMHF4Zmo0ODkxYmZvYThqaDEwam4zeWQ5bmZwNmNyNmNnbDNnOTJtbXI2bDF5bXBzcjQyb25pbGVsbjh3eXUyZmg5ZGt1ODBiMjl4Yjlvb3Rpb3NqMWg0dmRvNTYK\"\ - \n }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": + \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSWVhnNVJuTTFXRkIyZVdoWWIwSjBjRUZhYW5SNGVrRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxcWEzZFBSRlUwVFhwU1lVZEJPSGxOUkZWNlRVUlplVTlVUVRWTlJHZDZUa1p2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVOeUNuTkpRemc1UjNKc09DdHpiamxoT1cxcmMyMVBWbmR2WldrMUsyOVNTblZTVEc5SlUwTlZUVlJTZW5JMWFIZEVjbmh6TWpGWmFUZFdSRU5UVjNrdlFuVUtSRTFPYTNwcFVDdENUbUl4VGxsUlF6ZG5aV1ZXTVZGck5saHNWVGg2YnpkSVNIcG5ibkEzTkRWMk5uVTJVRTVOWkRoS2EzVTRUWGt5VlhabmRXbHZUUXBtVTJzMmQwNXBSVE5aU1ZscWIzZFBhMVoxVTNGYVkzZGxlSFZOY1VOUFYxZ3hNVkFyT1haVlpYbFhaV2RzTDBwa1JtVjFjalpCTHpsbVZscFNja3hJQ2tSelQySnRTVGhsY1RjNWVqaGhOMGwwYjJSMFlWRkxObVJhYlVWWWJIaHJZemx4YkU5eldFRnRNMjU2V0dRM1VtcFpObEF4VEdaUWRWSXlaeXRRWm1jS01XNXlaeXRrYkdadWFtbEllblJHUjNaNVRrVkZWR05UUVRkcVEya3lhMjE2VUV0cVJHcENTRkpMYjBsUVF5OU9SMUYzTTNGYU4yOTJVMlJFTlN0TmVnbzRWa1l6WVROa1owSTNjM0E1UTFGWk9EZExjVFo0U21oT1FWVjVjVTk1TmtSbVZua3ZNR015ZVRWVWEwazNhMjVNUlUxa1drdFhWakJZU0ZWMlJGRmlDbGx4YUVoNU1HVnVPWEp2WW1zd1pHdDBWWGxWTW1JMVluWkZlSEZwV0hGUmFVTm1SelZsZUhGVlJFUlZVWE5DZVRaS2RIZzNkbFl2TUcxdFRHbExOUzhLV0ZVclJsbEhNR1JNZFRKMmNYWjJRVWt5VVVzNVdFc3phalZ3YjFObWRqVlBhSFJJVG1OYWFtZFVUazh5WjBWNFZYVjJSMVpIV0hkMldWTktNREpSVEFwVlJXWlljM1V6U0dGNGVsUnRiM3A1Y0U5TE0ydzJia1pQUjI1cE1rVjZiVzUwYzFsSWRGazRSMnhQYW5NMlprWjFSM2RFTVd0dGVYa3lXbXBVTUdScENrbEJWMUI0ZVZCWmIyaG1abUZ5YVhGNFYzRkRLMjB2VmxoR1ZYaDZhM0IwTDNJeE4wZEVWVXBYZVVNd1psTndlVmxOU2l0b2RFRTVUR2hwWldsV2NHb0tlRGxWWkVZeVpYQjVjVFk1YkZoalJFb3hTRzl6YVdsMVpYQm1VVk5rUnpkb1JreHFNSEJXY2xsM1NVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWNE1sbE5SVTEyZW01NFJtdFdlVkZtQ25SRVNqSjNWMFJQZFRRNGQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGRWVYUTJjVVJ5Y0ZscFpXcFNXRlpOVHpKNE1URjRRMVJOUjI4S1VFWlNlSFE1VFhNd1NtcDNjRlZyU0RBelpIUndTeXQxVTBjeU5WbFZTa05vY1hkbVVqaEJjRTFEYzJFdlRIaENjbXhvWlN0YWNGZHVkRzE1YkVoeldncEtZVzl5UkVFd1lrNXhibHBNYWpod1kydE9lSGg1TmtkTlEzUXdRbVFyV0RKa2JtUk9TV2RrTVhoV1VGRlpkR0ozVWsxa1VVOXNOMlEyWVVJd1oySnZDbFJVVkRWelIwWnlNbkJDVGxWa2QycE5lRkpHYlVkVGRreHVSSEJsUTBVemFVb3dlazVoVmtwMVRFaFFjM3BqUm0xamEwMVZXbEZvUTJoSGIwVkdhREVLYWprMFF6bHNWakJYVXpCb2QxWnZPV0pVS3paMVVtNU5TaXN5Wms5c09VMUtTMVZ1ZW1JNVl6aENZMEpaVFhSTkwxWkxPRzlRYjFsWFpFdHpPVVJqY3dwU2VVOTJNSEpJVmxoTGRWTnlNWGhqUmpCcGRISnZLMmhSVUhKdWJGTXZSRWhLYmxodWRtVlJRMlF5ZVZwdE1UTXdlVVpXYTJReU5sTjRZVTFRVXlzd0NtWkxNVUk1WldFdlRVZHFUelEwVlRONFkwdzNVRkpMT1hBMlNrRlpWVTlrZFV3M1MxVnFaSGxKWXpWcmQzRm5kRlJZYmpONldHVlVkbVJaWmpCTE1rMEtNemhSYTJWTlVXMTNTWHBWYm5kTVVVWlZVMlV4YkdNdlYyNTRWMjE2VEc0NVpURmxUVEY2ZHpCbVZWUkNNVTFTUmtOek9IWldia0ZVZVVJM1JVUlNlZ3ByUjFWdVpEWlBhRTU1VlU0NUwyMHlTRUUwUlZGSlYyWlpTR1ZDYlRGeE9EQnVNRE52VEROWlp6ZGFTV1ZNTXpWS2J6WnhVemw2UVhSNVJVa3hVVlIxQ25oQmRpOVpOSGhSUm1aSU9UazNVRUp4ZG1aVlRIaDRUelEyZFdjMEswUkpiSHBNZFZKTk5ITTVRbXh1TkZGWmNYcEpOR2t2ZW5wb1ZsaEZNMGRXTlhvS1pUYzRiWEJTYTNKNldVWXhlbkZaVjJrclZXcFBXbXd5TDBaVWFYaDNOMkZtVjJKdlN6SmFVM1pvVldsaldGWjFTSGxtYVhaWE9ISTRXVkIzZFZneGFncEphSG94WW5kcVRXbzNja0poVjNWM0NpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc3pycWR4ZjUtbjNocXN0MW4uaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3RoeHhvYm8KY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3RoeHhvYm8KICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3RpcGF3bTM1ZG5oX2NsaWFrc3Rlc3RoeHhvYm8KICBuYW1lOiBjbGlha3N0ZXN0aHh4b2JvCmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdGh4eG9ibwpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3RpcGF3bTM1ZG5oX2NsaWFrc3Rlc3RoeHhvYm8KICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJYWtORFFYZGhaMEYzU1VKQlowbFNRVXBKYWxWSGIydDBPWFpSTDFKS1pWVlVlVmhQTVdOM1JGRlpTa3R2V2tsb2RtTk9RVkZGVEVKUlFYY0tSRlJGVEUxQmEwZEJNVlZGUVhoTlExa3lSWGRJYUdOT1RXcE5kMDVxU1RWTlJHY3hUMFJOTVZkb1kwNU5hbFYzVG1wSk5VMUVhM2RQUkUweFYycEJkd3BOVW1OM1JsRlpSRlpSVVV0RmR6VjZaVmhPTUZwWE1EWmlWMFo2WkVkV2VXTjZSVlpOUWsxSFFURlZSVUY0VFUxaVYwWjZaRWRXZVZreWVIQmFWelV3Q2sxSlNVTkpha0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRkZSa0ZCVDBOQlp6aEJUVWxKUTBOblMwTkJaMFZCTm1FdlpWZzFMMnhqTjJFelEwUTBkblJ3VlVFS1pEaDNaU3Q1WWpCMmVTdGxka2h5SzFKb1dtMUlNbFJJTmtFM1dXeDFRMEZGVmpkdU1IUnFjR1JNVTA1SVYwaElVSHBrWVV0aWEyOUphWEV3ZG5ZMU53cHhTVEIxTlhoNE5rcEJjQ3RLWVdrd1lrbDRTbFpTWlZadFQzaHBXVmQ2UTI5eFZYZzRXbmt3Y25kR1ltdEpTMG9yZVc0NFdHUkhiRzFMVmtobWEwMU1DblpISzFwRFRISTVXRnBMTTBaVWNXczNiMVJJUW5sMGJsRTFNVkE0U21oa1NVVm1kWFJtV1RreVRtNHZabmRvU0ZReFZXbHVOV0V4VHpVdmRtUk5abmNLVHpsVkt6bDNiemxVYVdvMmEwTmtVbE5vZUV0dldISnlhbGQ1TTB4eE5raFplRGhyYVdaU2EwWmxNbFZzY0hOaGFtWmtTeXRtYjB4REx6WXJkbmhJWmdwU1VYaEhVMlpwZFRWSlFUZHpWMmhpWnpkQ2RXTkhjelUyV0Vnd1ZIVlRPR2RtZUdwdk9HWk1ObW80ZUZaWVFpdEVZVU5oTVVkaFQwMXNSSEZQWTNwcUNqZE5ZWGRITXpKTGVYQlZTemhOYjBGa1RTODVVVnBYUW1GSGJqRktWRTA1YWxJeWRHeDJTQzlqZUhOREsybEpaVUpzWmtsUU5rVnNZVFkzVERScFIyVUtlV1pKUW0xNE0wSXJhVWxZVUZCdmFIRkliMmhpTkdSV1UwdGhhMmR5ZG5ST01sRjZURlpZYjJOQ04zb3dTVVk0VVZCemRub3ZSRzB2YlZaME4yMDBXQW8zWkRWYWJTOWtVRWh5YTBsNVlVWlBhbWhJYjNsM1Izb3ZVbFpoWVZjMldUaFhPQzlwWTJKSU5XVmFNalJNVDA1M1pGbDFSMVZZTmxwamVWZzNSMGRDQ2tKWFFXeG9SV1JXVkc5SE5GSjJjVGRhWVd0TFJIZG5aMEo0V0hZM1IwZGpSMVpCZFVKMFdqbEdZMHgxVVVSMFQyUllTRzV0UzNKbmExSnZTMHRsWVRFS1JqZFlXRE5hUVd4YU5rRkhjQ3RDYTBsdmVYSnZibHB2V1VnclFuZFhaMVZUVDB4VFVHSk1iR3B1V0haV1RVNTBRakpLV0VSallraHdWbEZYTUVGTFZncERUbWRQTUd4MWVHRXZkUzkzY2xock1VMU1SMFpPVlVOQmQwVkJRV0ZPVjAxR1VYZEVaMWxFVmxJd1VFRlJTQzlDUVZGRVFXZFhaMDFDVFVkQk1WVmtDa3BSVVUxTlFXOUhRME56UjBGUlZVWkNkMDFEVFVGM1IwRXhWV1JGZDBWQ0wzZFJRMDFCUVhkSWQxbEVWbEl3YWtKQ1ozZEdiMEZWZURKWlRVVk5kbm9LYm5oR2ExWjVVV1owUkVveWQxZEVUM1UwT0hkRVVWbEtTMjlhU1doMlkwNUJVVVZNUWxGQlJHZG5TVUpCUjBKVmJtMU1NbUZqZEZONE5VcEJTa3R3TWdwb1FsbFBkWGxtUlhFdlpITk5SWE5aTmpaMk5rSXJjR3B6WVc5WlFURkZUR1pwV1ZWcVJXSnFSemhNUm1OV1FuSlVWRFpqYVVKcWRUWlJMM0p6VEd4MUNsWlpOVVpJU1RGRWVFVkZUMm8yVkhScE5FUTVNblpqVVRFNFZWRm1RbWswWnpoTVlVWldiVTFZSzNoUkwzWm5aRGR5ZERKSlJHUlhTM1ZVYUhaSlNWQUtSakV2WlhaSGFtOHJNR1ZwZEVOUU5URmtRbkZxU1ZkU1lqTlJRak5DV21Kc2RXdFdhRXB1VkV0eWVsVllPVUZrVFdSek5Vd3pOVFZxTVd4TmVtNHdSd28yWmpoNEsyNDFhRlZ1T1U1R2JuQTJNRXQ1UWpoMWNXRmpPVUZzYTBsU09VSlpOelpRTlU1RFRFa3JWRWROWVRsdVFXZFhLMHcySzBKamJIQlRWR1ZZQ20xSGVDdEVaMVJ5VmpKSGVHdEJjM0JzT0dWUk5tNHlZMWd3VjBkWmNHSlVPRE52TkVVMWNrWnhZMDVxZERCQ05tTmtiR05oV0RWbmNHZEhVamc1Um1nS2IxYzBkakJVY0VkbGJFaHVUMUpsYkVsTVVWUldXRzVpUXpoVUt6SndPVzAzY0VWdGNqazRWVEZsVEZOSk5IRjFhRVZzY1VGSllXRkpkVzQ0S3podFdnbzFVakJETjJSM1VsaERiWGhSZDNBclNUZHJjVTlHV0ZKbVFXVmllWGxuWnpjMmFFaHNhMlJFZFVGNFFUY3JPVmxOYlVSdFF5dGFkMkYwZDFvcldVTjJDbHBETkZac00zZzBaVmgzVXpSV1IwaDRPRU5NWWxSbVdHVTRUSGhhY0RBNVl6azFUalZHTkZReEwzcFBka0l3Ums0dk1EVlRVWFE0VVdWSVFtSlpZbE1LU21oVFVsVlNURkkwU2tWclpqTjFibXhSVTJKVlYyaEtTM2h1Tkd0cU5WZEViMk5WTUVwbllrRjZWMDhyVXpSck1XTnpXRkpsT1hWeGQxWmxWM3BDV1FwUE1FUktPV2xKT0dwbFNVTk5SV0p6Y0RWWVdHeE1TVWhxVDJWUVRrczRNbmxRY1M5QlMwNW9ORXBLTDBGUmRFSlRibGwzZDAxeE1VOHJUR2RsTWpSdUNtSXJRVXhrUkd4Q09USlFjRnA1VTNSR0wwTlpXVGw2VGdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMEZKUWtGQlMwTkJaMFZCTm1FdlpWZzFMMnhqTjJFelEwUTBkblJ3VlVGa09IZGxLM2xpTUhaNUsyVjJTSElyVW1oYWJVZ3lWRWcyUVRkWkNteDFRMEZGVmpkdU1IUnFjR1JNVTA1SVYwaElVSHBrWVV0aWEyOUphWEV3ZG5ZMU4zRkpNSFUxZUhnMlNrRndLMHBoYVRCaVNYaEtWbEpsVm0xUGVHa0tXVmQ2UTI5eFZYZzRXbmt3Y25kR1ltdEpTMG9yZVc0NFdHUkhiRzFMVmtobWEwMU1ka2NyV2tOTWNqbFlXa3N6UmxSeGF6ZHZWRWhDZVhSdVVUVXhVQW80U21oa1NVVm1kWFJtV1RreVRtNHZabmRvU0ZReFZXbHVOV0V4VHpVdmRtUk5abmRQT1ZVck9YZHZPVlJwYWpaclEyUlNVMmg0UzI5WWNuSnFWM2t6Q2t4eE5raFplRGhyYVdaU2EwWmxNbFZzY0hOaGFtWmtTeXRtYjB4REx6WXJkbmhJWmxKUmVFZFRabWwxTlVsQk4zTlhhR0puTjBKMVkwZHpOVFpZU0RBS1ZIVlRPR2RtZUdwdk9HWk1ObW80ZUZaWVFpdEVZVU5oTVVkaFQwMXNSSEZQWTNwcU4wMWhkMGN6TWt0NWNGVkxPRTF2UVdSTkx6bFJXbGRDWVVkdU1RcEtWRTA1YWxJeWRHeDJTQzlqZUhOREsybEpaVUpzWmtsUU5rVnNZVFkzVERScFIyVjVaa2xDYlhnelFpdHBTVmhRVUc5b2NVaHZhR0kwWkZaVFMyRnJDbWR5ZG5ST01sRjZURlpZYjJOQ04zb3dTVVk0VVZCemRub3ZSRzB2YlZaME4yMDBXRGRrTlZwdEwyUlFTSEpyU1hsaFJrOXFhRWh2ZVhkSGVpOVNWbUVLWVZjMldUaFhPQzlwWTJKSU5XVmFNalJNVDA1M1pGbDFSMVZZTmxwamVWZzNSMGRDUWxkQmJHaEZaRlpVYjBjMFVuWnhOMXBoYTB0RWQyZG5RbmhZZGdvM1IwZGpSMVpCZFVKMFdqbEdZMHgxVVVSMFQyUllTRzV0UzNKbmExSnZTMHRsWVRGR04xaFlNMXBCYkZvMlFVZHdLMEpyU1c5NWNtOXVXbTlaU0N0Q0NuZFhaMVZUVDB4VFVHSk1iR3B1V0haV1RVNTBRakpLV0VSallraHdWbEZYTUVGTFZrTk9aMDh3YkhWNFlTOTFMM2R5V0dzeFRVeEhSazVWUTBGM1JVRUtRVkZMUTBGblFYQmtWekJxVlNzdlYxUnhWVGhVYVZGVE5WYzFNakJ1ZW5kdEswZDVRbHBZU1RWS01ERXZRVlpWVEc5SlZURnZWbmRvZUZoU1puZ3ZjZ294Vmxoa2QyRmhSR1oyVW14aU9FZE5VVE5CZFZZMWRFaG5NR2xZUWpZd05XcFhSRk5CYUdGT1VXUm1OSEJuTjJkcVRsZGhhM1F5UmxsV1JrdHVOMjk2Q201c1UybzROell4TjJGTWFrd3phVFZuUm1NM2RFbzNlR1JLTW1oaFlqaG9kMGRNZHpsbVYweFROazB4VDJST1FtNHhObkp5VkRSblpHcGxXRmxaZFd3S1RuSkhWVkp0UkVGMlkzaEJPRGsyTTNBemIzaDNUbU4yZUdOVlIwdElaMHRTWjFCSlYxSmlVeXRzWVN0eGFsSklXRGxLYjJaa1FXdzVVWEpLSzBJeE5BcGhRMXBXYVZwbWFDOUdVME4xVlhaUkt6VTFORWN4VEd3dlVuRTJWMnR2YVVZeksxaDRTRkpUY21sM1IwOW5ablEwSzJkaVZsZzRPV1V2UmtKemJrSlBDaTh3VW1KSk5tcDRLMjl2ZVdseWNrNVZaME5MVW5KaE0xZElWbUpHY2pkRVN6bEZUQzkxVjFWTlpqSklSamR4VG1SYU1XdDJTRkJWY2tnMFZtZzNRVTBLY1hsVlFWbGxNMFF2UWpkNk5GcGxhWGhzVVN0TGExcE5LMUZCTUZwWFVIRXpiakUxVDBaNE4zRXhVWE5FTDJ0cmFHeERabEZNYTBkSWJVSlVNbXd5TkFvMWJrNUtVWG96Y1M5emNuZGpXazlvVGpOc1ZWZzNWakZMS3prclJURktjREpXUWtWb2FVRmtiMXBNT0VjNWFuTTJjMFJ1Y1ZSWFpuaHlZVzAyZVUxb0NqZE9UamhNTldjM1VXZzJNV0Y0ZERGeVVGSkdNWGg0TjNOQ1lUQTJaR1JMTUdZMGNGUkRNakZIY0cxUldGaEtWVWc1Y0hKNE5XbDFaRFJYTnpKR1ZXNEtOM0Z1YzJFM2JUZDNNbk5ZT1d0U1JrTlFkRlJVU3k4eFdtdENXRlpsZUdwRVkwUm5ObXAzYUdnMWRqaHFPRm81Y2l0WFEwNVJkM0JuZVZwRVdIWkVkd3BDY25odFUyTTFNV3RSUmtkck5VTlNPVXBKUldoTlYxZ3dPQ3Q1V0dsb1drdEJLM0p4V21sR2NYZHFWVFJYYVhsWlVVdERRVkZGUVRoeVZWUk1aVkpCQ25aQ2VXZEtNelpFUTJGVlNVNWFkMloxWVVvMVJXOUllRmxaTVZCQmRVaE5kV0UzZDBONE1HaHVlR1ZHWVhWa1MycHlkR2M0TUhWSk1rMTNZelJ6UkhZS1pYY3dRakp6YzNFNVdWSmlLeXN3Y3k5TGFrbDBhRGw0VkVKSE1rdGtSRzQwTms0MGIyOUZiSEZwUTJoRGVXWXZVakpWVnpGb2REQnZWbWN2VUZwc1NRcE5SVGxOUjFRd1lXRTBSazVsWTFsWVVETTJkSGRKYTNWaVZDODJhMU5EV0UxbFZuTTFUVFpHZWs5cFVEVm9NbkJhSzFGa1ptNXhOVVp0ZGt4cU1FczFDbGhLYUVoeFRrcDNjMUZDZW5oaFZucHZObnB0TW1GUk4xcGtXRWw0TjA5c2JUaE1OMHhwZURseFMwcFRjVmt6VGk5UU9WVkljV1ZWY1VkSldGQXJSa0VLYmtaSWFuWm5OalZYYWxSNU9FVk1NV3RIUzFCQlltbFJORGd3VldKTmNFOUZSMWRTV2tGTWVGRjJkblJNYmpsbE5uUk1abWs1ZG5OaEswWm5RamhKZGdvMVUwSlhhbFpaT0Zsb1JsaFBVVXREUVZGRlFUbHVlRk5vVTFsWVZ6Qk9aVVJhV0RacVpVTkRaVVZCWmtSdlExUnNPRGxpYkVsM2J6Z3ljV2xZT1RoNENtVXlabHBLYlM5NFpFbEpibEJDY2xSVmIzQmlTRVF5VWxsSU5HaGpZMnRtZEhWc1RIVTFXbHB0UldsdVptRXhNVU5GWjNZNFN6aDNSRkoyWjFCNlZEa0tPVkZCUXpkdlIybDRhaXR5TkRkaFlucHdUbGQwTDJGdllVRlhhVkZXSzBOWlpIRllUVXhuUkhFMFQweERRMUExVHl0dFRVUnRVMnROV1VaVWJsSkVjUXBwY0hCWWVtWnpTV280ZGtSNVIyNWhOVlp0VFVKSGFTOWplamRuVGpoMlFWWTJLMW92WkVGaVF5dG5jV3BpVlhWdVNtZHlaR1JzVkd0eVN6aGhTR2hrQ21OWk9FUmFNVk52VUdsRVdHZEhZMUYyV1UxVE1rTTNjMFZwU1RZck1tVkpabTEzYUVreWVXbHhSRzF5T1d4Q1JFWlNhVWd2YW1sQ01qZHhMMVYzUlRVS1NGQXlUVmhJVDNkRFdWVm9VekJETWtwMVZ6TkRUVUo2ZEV4d2NtMU5VSGh5ZDBsaFNETlNkV1pSUzBOQlVVSlFNM1JVTnpocVVqTmplbWRzU25oWU5ncFZOSFkzUlVoRVJWSjZjSFZ2T0V0TGNIUlZUV3B6UVhacWRXeENlbmRzYTJOSWIyZGllRXg2UnpacVVrSTVaREVyVGpJNGNGWTVjRGhEVEdaSVMwdzNDbVowTlVOaWJ5dDVZV1I2TjFOcFpXWnlLMmg0Y0VkVVlsaGpNWGxPVDNaMlN6WlBlbkI1Y2pCR1RXeExSbTFxZDA4M2F6aEVWR2hpV2xrd1YyUlRkeThLYlhGTGFsa3hVRGxQYWxBeGRUSTVRekZ3TkdaeGEyb3pVelZtYkZORE1YZ3ZSWEF5YjA5YVFqUlRhblp0V0ZaV1kyOHpabXBGWVhoMVVUbEVLMFpVVEFwbGRXMWxZbXM0TmpKemFIaGpVVVl6UW5JMU0wMWhRbUpRVUZGeFFYTjNjbVJhWldOWmNWVmhSQzlDWmpCcFozbHlWekJZVVZsd1ozQjJXVFpqYkM4ckNqRndVRzlEZWtWRGJtUjVVRFZYZDFFck1HdDNZaTlpTW05SFdWUk5iME4zTWxoVU5Vc3dUbE5LWVd0YVVHNTBNRWRSZG1kSlkwSm1UalpCYTBSUEx6Z0tSMlJpU2tGdlNVSkJRM0JTY0dkc1pWSk9lRk5qU3prNFpFbDNkbGszWTNCeGVYUmxVQzlxYzJwU2FYZENPR1pxU1hkWE5qSkdRVXgzUjJsMFFqVlBkQXBXVUdOdk1DdGtNRUZpYVZScFdWazNiMXB3WW05aGNGSXlPRXhXVTFsVGRqRk1TSEpQYUVNeE9VTlZjWEoxUmxKVEszTlBUMmgyTm1GSldubHJNMUJsQ2sxeVJHbENWbGwxVkdSRkx6bERTVWc1V21WeWQydE1lWFZOY1ZGcVdFUkNTVkJ1UVRBeVdFbzNNVmcxVTFsbFIxbE5hWGwzZEVsU1RtTnZWSE0yUTJNS2NETjVaRlZCZGxsdFFWZGFlRzFWVUVGdloxSXpNMEYxYjJjelJqQlNOekpQV0dkcVFqSkhlbUp4VEVwTlYxRmhZeXRoY2pRM09DOW5jVWxZUlhSMU13b3pPR2RZTm1aUVpuTlVhVlYwWTNSWVVGUkZNREJYWVVSUmFERkhOVnBhYTJOSVdGWjVaVFo0VXpSblIxRTJWbkZLY21Oc2JYQjVlbTAwYlRCQmVVWm1DbFJvZDFKbVJGTndaRUZrTkc4eVZVRk1UVVZLZHpGRU9ERXlaRmhKYWtWRFoyZEZRa0ZPVFhOWVpXbG5ibWxXWjB4Q2RsSjJlRGQ2TVRSUWMzTkNjVTRLVEd0aE9IUmhTa1pxWXpKTlVXOW5SbmRLWjFab1QwZzRRM0pxTVV0bGVVVnpka0ZpVEZkTlREaEtVbVF3Y1haT2VsaFRja2RQTkRScmEybGxNV3BOVEFwSmNGUXlRM0kzZUV0RVdsWlpaelE1V0VnclRucExPR1kxWTFodlIwdFFkQzk0VDFaQlNtbG1RaXNyVFU1dGFtdHlibWxrTm0xWlRIWTJSME56WlZoU0NrTjNiRXBFWm5CVFlXeFJabEpUVURseVVteEVZblJZYlRRNGRXbHhWWEIxZFVvM1dVeGtjRGwwVGpZeE0wbG5UR1pYVkVkb2VYZFFZa3hwV1RaMlJHUUtTWFZ2TkRCRFJXWjFVbTAxTWpORmJrbG9iSGxMZEd0aFMwUXlRVVl5VEdkR1JEUlpORm94VW1adlpVNWlNMnh2YkdkamQyb3hVVVpuYkZwVFdYWnhad281ZEZoYVMwcHFORTlyU0V0RmQyNVBiRXhIYlhvMFdWSnhTM2xKTldOcldUQTBSa2czWlRkRFlpOVhOa3hVY25CYWREUmtNM2xZUm1aNlFUMEtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogYnV6YzVoZ2tzc2dmN2tqa2I5Mm45bjFjeGpoaTF3bmljczJ6NXR4azVweWI3MmlqMngxMXZuOHlzcTE2dnY4czluemFpMGE1ZTc0aWduZmJ4bWg5MHNqamQ1NXJndGEyZnNnY2N5bjkyemk5MG81eWVmdGpoYng2OXdpdHg1cmYK\"\n + \ }\n ]\n }" headers: cache-control: - no-cache @@ -955,7 +1086,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 20:51:41 GMT + - Thu, 29 Jun 2023 09:12:59 GMT expires: - '-1' pragma: @@ -991,15 +1122,15 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ - \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSVEhSTFoxWlhhMU4wYVVaUWQzZGhTbHBMTlZWVmFrRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxVVVYbE5SRTAwVGtSa1lVZEJPSGxOUkZWNlRVUlplRTVFU1hkT1JHY3dUakZ2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVOM0NqRlljR2xxVFhjcmNqZE5UMDFGV2pKV1FqZHVXbUZhZVVOQlVTdHZNVXgzWjJoRFRFRXdNVEZzZEVsME1XUjFia280T1cwNGFYa3hTMjVLTHpOWE4wMEtUR2RNVEhoUFp6RXlhR00xYjJ4TlpHWnZZMXBpUnpGclRWZDVUVEJxTkd0emVrRlVWSGx3YzAxV1duZERjVVJVV0d0bU4xSnJTVkJITlZkbVR6aFNNd3B4VlVaQ2NVRlJjbWhDTUdsV2NVbE5OMEkxTW05NFYzWldRM280VVRJclJIaHVkR0U0TVc5bWFUaGtjR1ExZFhKNVIzQkxNV2REUVdGb2VtaFJVVTloQ21NdlUzWmhWV1pKVERSS1kwMVdjR1JoV1ZoallqTldTazh4TW5saWQxSjNhRFkxZUdOTE9YZHNka1JKVDFWQlltb3JRM0JyV0RoUmMxTmFUVTF5TVVJS1dtWkVNMGhJYjFWUGRqQkpNRlpsUjJ4alpVVnFTVFE0V0dnclNITnFlR05zVFc1S2IxbFRlVU41WWt4c2JWVjBOR1E1YzNZeFF5OXBVVXg1VjFGQ1Z3cDRSazlvT0RkRlpXNTVXRTQ1WWtWRU1HZFdVM2x1Tld3eFoxcFZVVkJYUW1Sd056ZE5TV013WmtWM1JTOUtTR0ZHTkdWVE9XRnRhREpoWm5KdlRtcHpDamhNZUZBdmRqZGlPRlpNVW0xdE1WTkxMME53V2xkR2IyVnhLMEpUV0hwNmNIbDJXV2d4Vm10amN6bFliM3BTVlN0U2VqZG1jRkkwUkZwSGFFb3dOMlVLUjBRM1dHSlVNVEZGUVdGVlFsbFFkM0Z1Yml0RGFsZFhaMjU0Vm5sSFRGRkRiME5QVlcxaU9VaHZaRkkyZGpoV1NTOHlVRmc0VmpkeGFFeFJVMUYwYmdwYVNYaFFSVUZrTjJKdlF6SjVWSFJPV1M5SmNVZFpXRnBuYzIweFpsbENkM0pDVXpoTllucERNU3RGU0VSdVdVbG5iRTlPVnpCSmVGWk9TMUV4Um1Gb0NrWTJiR05pWWpodlJrMTRSVk5YTmpGRmEydDVkRGhOY2xreE5tMUVTMXAwWXpOb1NVeHlTbXh4YTJ3MGVFbzBObUUxVVROeE1UQnJhMGd3V2pGVmJtZ0taM3BMYVdOYUx6VXJPRTFSUVVaVE4xWTJUWGxIT1dOTVJETnVhV2gzYTNoaU0zWkNZWGxGY1VwUlNVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWRFZEbDRjbVZMUkhsUFVsTjFSbE16Q21odFRrdzFiakJITW05bmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGSVMwZGxVakZoVmt3NGVtWnJOR3RUZDJ3d1JqVlhTRVJMWkVJS1l6UlRaVmxCVUZwVlIxaFBjMmxrV0VWc09XaFVTRmdyVDFFMmVEbERUVUZEV0cxTVZFdEZXR041YlhoNVEybzBhV3RET0VkR2JtRkxWakJzWmt4aWRRb3hOMFJ3Tm1ONVMxTlpWVGd2VkZWVEwzVkxVa013V0N0b1V6SnFUa2c0Wlc0eFMxSjFaRmxaVjJ4a1RHTm5jR3BxUVc5dWMzTklPR2h1TkdkeWR6aHpDa1ZrUzBWT2JrUTVaSE5JUlc5TloxQm5UakZvWlVsRFRTczRZMjF4ZVVzeVdXUkxXRll2ZEVaM01XUXdXVEZtYTFoWGJVdG5aRlkzVEUxUVdXbExjelFLTHpZMmFreHFZekEyTVZGeU9VSlNVbTgwTVRCWGFtUXhXRFl6ZWxKT2NubE5abk5FZVVSbU9GTTBZVVkzVjBKVVpXUlRWMGRuTmpCRU5HTkVOMGQ0YlFwVE5qZzJVWGQ0YjJSRFRrTnNObVJFYjJvdk1TOXBiWFZUVDJKM1FVMTNNamR3U1drMFpUUlZZbmh2V20xVFoyZFhRekJzYjFOS1QwUmhlSEZpTTJWeENuaFVVSGhhYUZNNFNFSkZNSFJwZUZNeVJEaDZPSFZTTWxWcE0zaHZkVll6Tm1NNE0ydHFTR0owZWxWUlZFUjNMMnhYWWtWalZHeE5aek4zVlRodmQwNEtlbnBvVTFCNFZUaE9hMkpRTjNkeVVXSkNkV0pNVFVGYVExRnNTVTVHVEdacFNrSkxaVFpNVW5SYU5sUjRNRGhtWVdJMVJtdDBVV2xwY2xaRmMyaG1ad3BQTUZZMFducGFaVFV6ZWtsM1IwTjVSVTVDVGxkSFNIWlVUSE5OY0VORmFGbGFWVGR2YzI4MGRqQm9TblZwZW5aVlFYRnhiR1F4WmtOVVdYRm1iblF2Q25WR1NHSlRSRk5OWTB0d1NYQnBiVWxHZHpCd1IxSk1WbkZFVFhGa1oyaGlSelprU2xreFlsbzBWV2c1TUdOalUwNUtia3hpUzBKa1oxQmxhRU4zT1U4S01Vc3dkMEUyZVhkTk5EWnNjR0pTZUdFNWJEZHdhMVZPTms1VmMwOXNhVGxCVkRsVE1uaE5kRXB1TDFGWWVtUm9WV3A2VVVkTlRuWjBjMG94YlhGbFRRcDFPVzF4T0had2VtVjZNU3N4VXpCSUNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc2pzeXc0YzItOGE1Nzd3aDQuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3RnY3RkYzIKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3RnY3RkYzIKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3R3bXhlZmQ3bXF6X2NsaWFrc3Rlc3RnY3RkYzIKICBuYW1lOiBjbGlha3N0ZXN0Z2N0ZGMyCmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdGdjdGRjMgpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3R3bXhlZmQ3bXF6X2NsaWFrc3Rlc3RnY3RkYzIKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJVkVORFFYZFhaMEYzU1VKQlowbFJUbkpqTlRKNFNqTkpiWFl2Y1dwM1dDOUJSemwyUkVGT1FtZHJjV2hyYVVjNWR6QkNRVkZ6UmtGRVFVNEtUVkZ6ZDBOUldVUldVVkZFUlhkS2FsbFVRV1ZHZHpCNVRYcEJNazFVVVhsTlJFMDBUa1JrWVVaM01IbE9WRUV5VFZSUmVVMUVVVFJPUkdSaFRVUkJlQXBHZWtGV1FtZE9Wa0pCYjFSRWJrNDFZek5TYkdKVWNIUlpXRTR3V2xoS2VrMVNWWGRGZDFsRVZsRlJSRVYzZUhSWldFNHdXbGhLYW1KSGJHeGlibEYzQ21kblNXbE5RVEJIUTFOeFIxTkpZak5FVVVWQ1FWRlZRVUUwU1VORWQwRjNaMmRKUzBGdlNVTkJVVVJKYURSblpIQndZVmRLYURSQk1IbHlkbTFPZEhnS2NVY3ZOR3BLTWtOcFVIZFhjMDB4VVZoc01VNUJiRUZGSzIxMVVWRm5LM3BtUkdObGJHeHNRMlp0TjNod1IyWktlVVZSTWtoYWFHRjVTRWRFY0hWaFR3cG9TbmxOWldFclRtdDFiemhWUVhsaVUycGtheTlaY0c0NWIxRmtlSGQ0YmpKV1lWcGtWSE14T0c5WGR6TnJOak5YWjI1TGFDOVNiSFE1ZDNwTGJYRkdDbmhaTlRCVlZXb3JaM0IxV0dWWGFFRjNORXhVWkVOQ2FqRlhNMm93V1hWMVRrZG1TMk5RUzNsUGQzUXZOekptV0ZsclFXMXlWbEpNZFZKMFFrVnhOV3NLZEdKeWNYQlZXbEl4YXl0b2R6Vk5hR3RNU1dkbmFVY3JXRXB0ZVhRMmJEQXZTR1prUkcxeGRVVkdOM2hrY1VaeFdrVjZlbGRHTnpsYU16TmlWelZKWndwQ1JHZHVXVEJLY1RrMGIwaFdPVUpqWW5vclpuTkhhMUZ4UlRWWWQxUkVTbEYyYTBzNWEwdENiR1pYYjIxVlZWSnBSelozZVV4SlZVdDZXbE4yT0dOVENrZFRPUzlGTW5kVlRFcEVLMXBDY0ZaT1EzVmxjR1JhV25aQmRsQmtOVGhPVG5SbE5URk1aVlJoZW1GbFFraEtSa3hoYW1GMkswSnhiRWRIVW5nelNVMEtRV0kzYjNRdmIweFNhalJST1VoYVpUbDNXa3hUY0Rkd1VUSTJaV2t2TW5kbU1sRldSMHc0UzFJclowUlZjMUJQWm10ak1IRTFiR2t4T1N0bFJtRnhRUXAyVVd4VVpVTmhiM0JCTkdGMGR6SnhSVTlTWTBKVVpWQkxOVUZFVTAxbVFqY3JURVpZT1RKb0szZE1MM1V5VDBWM1VEaEhXRE00WVdsdU1WZ3JVQ3RSQ25CU1ZTOUNRVmx6Um14SlEyZFdhemhJZWxkSVdYQmxhV3hSWkVreGNuQnBUMHRrVlM4ck9GTnRhMlpMYTNFd1Z6QldWMlZDV1dWa1pGTmpjbTluVlhvS1FsRm1hSG8wTDFobFFuZGhjSGQxVkd0NGQxRjFWVTlLZEd4YWVrdFdaakJxTVZWS1lYUkhWMW96UlhadGJHTlFRVlF5WW5WTk9VaEdUR3RtYjFoRVlnb3Zka2xNVlRsamFWZDVWbU5UUVZFd1FsRkJZbU4zU1VSQlVVRkNiekZaZDFaRVFVOUNaMDVXU0ZFNFFrRm1PRVZDUVUxRFFtRkJkMFYzV1VSV1VqQnNDa0pCZDNkRFoxbEpTM2RaUWtKUlZVaEJkMGwzUkVGWlJGWlNNRlJCVVVndlFrRkpkMEZFUVdaQ1owNVdTRk5OUlVkRVFWZG5RbEZLVUROSGREUnZVRWtLTlVaTE5GWk1aVWRaTUhadFpsRmlZV2xFUVU1Q1oydHhhR3RwUnpsM01FSkJVWE5HUVVGUFEwRm5SVUZITjNONmJucHRTV3MwVm1vd1NEaFVSVTVsVlFweFdYZGFjR1JVYnpWUGRFVk5ZblF3VldoT1ZqbE9WWGhZWlZwMVVtcDZiV0Z4YjFab1lsQXJWRVpDUzBZdmMwMU9iakpJZVRoc2VFSnFlVmc1TnpCVENrOXlOVk16WlRCR1dHRnZTMDlLVVU5clRsQlFka0ZPZGtSbmVuWk9RVEpXTTI5ck9VRjBUbEZOUVhkTU5FZG1XVGxZWlZsdksxUTBlbnAzV1RocWJFTUthMFlyUjFjeE9ESnpSM0JXZFdkWFYzWnBjMDAyYjFSbFYwcG1Ra2xoVXpKVlRWTkxTVTVhWlcxMFJtcFdTbmxNWVdoSlkyWkVaaXM0VGpKUmIzZGFTQXB3Uml0MFJYbDJWRTl4VjBOMlNFMUdhRmR4VTBWMFZuRk1lVFV5T1hFNFR6UkZZa1pFVDFwM1dYZERkbkZWTVVnMVJEQTRXRzF3WTB4TlV6UndWa0V2Q21wSU9ITlNZbEpKUmxscU5EQXdkRUZZV25SeU0wdDJLM055ZDNVME5qRTFTVGxYTHpKMFZuUldkamRxTTNnMFZEbFZSM2RqTTFkQlYxVnZXSEoxWmxrS1RrVjJhVFpNYUN0YWRrWlVUbXRCY0RjdlltaFVWMUozUkdwUlJFVmFia2t2VWpCbE5VOHlXRFpKVm5Od1lWWkNXRlJoZFhwdlNVRmxZMmt2UkRVMlV3cGxkMGswUzNoTFpqSnhVek0zV25OWVdtMTNOVTF6ZEhKeVFYcEhjRkJFV1RRNWEwNVVWU3ROUTNRck1tSkdhekI1TURCeFNGaDRRbmx2Um1OVEx6bERDbUphWVUxRFVIaHFlREI0ZG1jck5YUm5RV2RqYVVGbVRGZzNOalZPYjJWa1VFWmlaSEpOUVdOdE56UndRVWN2U2preGNpdHJVbWxDU2xCdGRrSklRM1VLWjJaMVFtYzNRa1JvYzJaR1pWWnZablJJTUVOalpIUjZRMEkwVEdaelZqVnZNa0pzT1hscmEzZEdUMnhKWjFsamNucFRUV1F4TkVRemFteFFaMk5HU2dwRFFqWk9jbkJMU21JNFl6QTNaWFJOWW1aWk5GSkpXamxGUXpkWU5raENhV0Z1VW5wdU1uUXpXRlJ1V0hselpuTTVOVUprWVRVeGF6TmpUMUYzYVhsRUNqTm9abWhMZW5VeFdrdDNhamhHVDBwbU9XbEtiM1JOUFFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMEZKUWtGQlMwTkJaMFZCZVVsbFNVaGhZVmRzYVZsbFFVNU5jVGMxYW1KallXaDJLMGw1WkdkdmFqaEdja1JPVlVZMVpGUlJTbEZDVUhCeUNtdEZTVkJ6TTNjelNIQmFXbEZ1TlhVNFlWSnVlV05vUlU1b01sbFhjMmg0WnpaaWJXcHZVMk5xU0cxMmFscE1jVkJHUVUxdE1HOHpXbEF5UzFvdllVVUtTR05qVFZvNWJGZHRXRlUzVG1aTFJuTk9OVTkwTVc5S2VXOW1NRnBpWm1OTmVYQnhhR05YVDJSR1Jra3ZiMHRpYkROc2IxRk5UME13TTFGbldUbFdkQW8wT1VkTWNtcFNibmx1UkhsemFuTk1aaXM1YmpFeVNrRktjVEZWVXpkcllsRlNTM1ZhVEZjMk5uRldSMVZrV2xCdlkwOVVTVnBEZVVsSlNXaDJiSGxhQ25OeVpYQmtVSGd6TTFFMWNYSm9RbVU0V0dGb1lXMVNUVGd4YUdVdlYyUTVNakYxVTBsQlVUUktNazVEWVhabFMwSXhabEZZUnpndmJqZENjRVZMYUU4S1ZqaEZkM2xWVERWRGRscERaMXBZTVhGS2JFWkZXV2gxYzAxcGVVWkRjekpWY2k5SVJXaHJkbVo0VG5OR1EzbFJMMjFSWVZaVVVYSnVjVmhYVjJKM1RBcDZNMlZtUkZSaVdIVmtVek5yTW5NeWJtZFNlVkpUTW04eWNpOW5ZWEJTYUd0alpIbEVRVWNyTmt4bU5rTXdXU3RGVUZJeVdIWmpSMU13Y1dVMlZVNTFDbTV2ZGpselNEbHJSbEpwTDBOclptOUJNVXhFZW00MVNFNUxkVnBaZEdabWJtaFhjV2RNTUVwVk0yZHRjVXRSVDBkeVkwNXhhRVJyV0VGVk0ycDVkVkVLUVRCcVNIZGxMMmw0Vmk5a2IyWnpReTgzZEdwb1RVUXZRbXc1TDBkdmNEbFdMMm92YTB0VlZsQjNVVWRNUWxwVFFXOUdXbEJDT0RGb01rdFliM0JWU0FwVFRtRTJXV3BwYmxaUUwzWkZjSEJJZVhCTGRFWjBSbFp1WjFkSWJsaFZia3MyU1VaTmQxVklOR01yVURFeloyTkhjV05NYXpWTlkwVk1iRVJwWWxwWENtTjViRmc1U1RsV1ExZHlVbXh0WkhoTU5YQllSSGRGT1cwM2FsQlNlRk0xU0RaR2R6SXZOM2xETVZCWVNXeHpiRmhGWjBWT1FWVkJSek5OUTBGM1JVRUtRVkZMUTBGblFUVTNXVEJSYnpkTlZYQlBXVGszYzB0VlprWXZTVTFhVWtoQ1RHWnliMWszVWt4NmJtZFpZVWx4VVU5VVJYa3lTMUJTWTFseVdERkxPQW8zTUc1U2RqVjRiRU5qTVVKeFUzbHlVbFpzYUhkRk1uRmliV2hxS3pCTlQwRlphMHBMVFhWd2NVdFpOM0JtUkdsd05uUXpOVTl4T1dZeVlrTkRWRXhRQ2tkbFMwVTNkelZZZW1GRFNISjFZblJNZFVWWVJWVnVNMHhsVjJaNGVsbHFkU3RsVDFCclUyTlBWMGswWXpCSmVuVXpVWFkwZEZCbU5FRlRkSGxyTTBJS1YxZGxRM1pVVUZKUVYwOVBRVXd2ZG1KR2NsSnNVMDlsV2t4emEwNUxkRTlhV0dkMU5DczBWa2RPTlVRM0wzcEdSREZMV1VoNkx6Tk9URGh5U1VaUGRnbzVRalF4VFd3eE5pc3pOR1J6WlZCWk1rVndOR2RhUlVZNFUyOUNVR0ppVEVObk1rSjNVV2xMYm00NUsyUkdVelF5VFd4Q1IzQXlia1pDVURONkwxVktDbWxoU1d0MFUwWkhSbmxEZDNNcmVtd3ZUbEZWY0ROalJqWkphV3N5Y0ZCaFZXTnlWVkJ2Tm1wVWNGWkNSbVZhTlZsNVQyaEJjRnBoVXk5S2VqbExjVElLWjJ0eE0yb3pSVlpWTjNOWVEwZHVLMVZxTVVobmQyVktlVzV4WTFneFltczFRa3RKYlhBNEwyRlphMmhGZUhFck9WRXljRGxXY3pOTGFsVnFVM1pJU3dwWmRtSldkRVpKU1dWME1UTnpNekJ0UjJSRWVXd3dWVFowZEVsV1QyNUNTelppTms0Mk9VbENjamRUUzFadGJEZEZlbTU2WjNGdllWQnNjVTFXWVhZeENqUnllSEpPUVZrNFEyazFkRUZNY21aNGQwc3pkR3h5Um5SNVUyMUlWVXRSYjJoR1ZISkhVblZMZEU5cGJVUTBaMHd5TTB4WFdWbFdMMHBLYkRWUlNqZ0tTbk5CZDJjd1RtSlpRMkpYZVd4TFlYQTNWVVZDTkV0Wk5FSTVPWEJxVDNoa1lWb3JTV1k1VG1ZM2RFMVdObWxLYW1aWFRrZFJVbk5oVmtsT1NsUlJlZ3BvYmlzeGFUWTVUMDl5ZEdGemNHY3JVMmdyWmtOb1MxZG5ZM3BNT0Vad2RHTkNZeTlZV1U0eU1VUTNZa1ZvYkhrMFVVdERRVkZGUVRod1pFb3dVRzgzQ2xsclpXbEZjRmt6VGtwSmIxUjNhbGxFTlhRNVJHUmFVbTlHWWtOWmRXNTZkVXhXTjFsdmJVcG5kbVpaYjNCbk1rNUxNVk0wZEU5WldrOTFkMlZyZWtVS1kxVTVTeTlOY1c1NGRURXZOVlJZTkZoQ0wxUkxPWGRsUkZsVlluRk9jRWcwWTNaMUsybE1OakpNUmxFcmRtcFlLMkUzY0cxTFFteFlNV3MwVDJsRU5BcDZORTVsTldadVdXVXliVlJSVkcxQ01FWTNkM1ptZFhCcUwxUlFjVFZ6V2xwdWFVeEhhRmxEZFU1eE9HSmFTM0ZoWnpCRFpHTnVMM1ZKWmtGUlRGaGtDbUppY0VjNGRtTldjR1JEVTNwV1JrNHpNRGRzTkZkWVMycHlUSE5VTkM5a1VWUXdXVnAwVEN0clpIbGlRbWhqVURBclMxRkNOMUZTWjJzM1YxTnBlbFlLWWpkWGRVUkVkbkJFVlZWeFdXTTNibFJ4YkhnME1tdGFSMlJrVUVWWVVuaEhWRlJRVEdkdkwyUnJSR3hhTDB0dlptSlFOVFo0TjNodVJrRkJTa2xqVFFwa1YyUXljM2xYTVhsUmEwMDFVVXREUVZGRlFUQTFNRkZYVm5wV1VWaFdVRXRLUWt0dlpuRkNibmxxUVZsMFZrc3JUbHB5U0dOMmVITndWMlZETmtsbENscDNOSFI2VFVSU2N6aE1ZV0UzYkRkTVNuSnNkRzF6TUdGcFZYVmlRbmxRUVUwemNrUnBLMWhvZWxSeU5IWmpRV2h0ZG5OV2NWcG9Vbk5WWWpCWWNVSUtkMVJXZEZCeFZGcHpjRnBSWTNoclMzQnZUM2xZTlRGU2VXcE5SV05yVDNsQlQzQmpRWEJSUmlzclptdHVjRUprU0RkRlVtNUdaVnB4WkdkQ05WQk9hUW94UmxGeUwxSjNRbkZHVW5CMWRGQk9USGd2UVZrd1VucFRZVkl2ZWxSWFNFZGlObVpSVlhWSVRXZDZUVXBYVTNGSGExSXJjblE0YVRnNVF5ODNaa3hqQ21nelMxWm5SRXRVVmtGdVNpOUZUbUo1Tnl0d01rTnZTMUZyVDBsRWNHNVJiMGxwYkhFd1J6Rk5hR1UxVFdjeUx6WlVSU3RxZHpaRVRXeExURTR4YUZFS1pteG5XV2xUYlZnNFRHbFZkVkpNWjNadk1FTjBZVUpzYkdsQlpERnZPRTVQTTBFeldGcHVXbVIzUzBOQlVVSjNLMUJPZGxad2EwSkZPSEoxVkZCWk5BcHFWR2R2Vm1vMFNWSnhhbVZKVFdsNWJYSlROM2syWlhOb1VtVkpjeTlTVDBGWk0zQmhiV3RVTjNkUFEycHVaVko1UWtSUVdUWkRORUVyTUhZdlJrSldDakkxVTB3NFlUVlFaVXRMYlRoclRYTnRTMmhuTkdkYVNIRlBhMHB2TDBOa2NWUllSa3R6TW5CblZVNVllVXB3Y3pWUFprTmhhMmd3YlhkRkszRkVUMmNLYUZoSlIwWm1ibGRTSzBKc1IxTllSak5KVVRWeWJXdE9lREpXUVV0TEwzSXhha2RhT1ZsMFdFSXJaakZaY2xOelFYTjNUbFp4VW1aNlZHWjBVR2hRWlFwMlJuTm9UWEJRU2xGeWVtSlZjMUZhTkVWclkxcERjblJxY2pSdFdrZDNXa1ZXZEVGWmN6QkZTalphWW1OQloxaFlkems0VXpWVE5rTlRiV050VDI1WUNsQkVZVmxvWm5CRFREZGlValpOWlM5MVVEQm9ZVGxEWm5CSVFUTlRTalV4VHpWUFdqZFBPVFpYY1RSM1UwdEVURFJ3VjNWaVVsaHZUblEyV1ZoNE9XZ0tSamd6YUVGdlNVSkJSRVZRV25WNmR6UjBaM05PUlM4MVRTOVNaSFZhVDBkNFUwOXJkelUzZUZKNVFTOVhhV1pJU0VRNGFVNU9ORGR2VlRad1NGaFZTZ3B3WXpNek1FdEVSWGRMUlUxT1ltbDFTMmhqVTJZcmVqRXdTbk5ZVjFwQlZrdDFUVkl4VDA1V1VHaFFVWFY0YWtoT1pUTlpPSGxCZVVoTlR6ZFJSMVo0Q2tJdlNFaFRibkpWWVZwU1ZsTjBUVkZDVDFobk15OUljVmsyTms1V2RETlRTVEpVU0c0eU9YSm5LMDh4VVRSRWJTOVliSGhISzJGVFNsTnBibEkxVFZvS1JIWkpjbXBLVW5sVVp6UXhibTE2YVZsSFlscEdRblJhTkVZMGJ5OXZNRkl2Ym5Cck0ycE1PREJyYjBWdVdIWmtWamhJTkROcWRtZDVkSGhRTTFkNFRRcFpURWhHYUVKRE1uWk5MMHN6TVc5Q1oyaGxkMlpZWm1Ga2JEUXZLelY0UkdRNFNYUkJaVTB3WTFsaFJraE9SMkkxV0RkT1ZVMTNXamRKV2xGVFJrOWpDakUwTkZrelJsbFNTbmxIYjNORFUyZERXWEp0TWpOQ0sxVmlaVE53V0RCRFoyZEZRa0ZPYkVGUmFGUXlVbEpDZEhwNmJXVkxabWxHT0ZBM1VtNVVaSEFLTmxodVdtSmFRMEZKWTI4elNrNURaa0ZpTkVWT2FITlpZelJ2TTB4MllsWlJXSFUxU0RGUGRGVXpXU3RUWm1aSFJXZ3JNelV3VjNwemRHTkZia1YzWWdwMmIzVnpkREpDYW14TmNXVklaRWwzTkdkUU5raEVUVFpxWTFvd05tOXBVVGxaTXpOMGJEVldUM1ZzVlUxeE9HUk5WVVZHWkVZeVJsRktXVTEyWm0xNUNuRlVlbWhtTmsxclIzUlViRXR1VUhCMVdUQlRja1JQVUZkcmRWcGhWV1ZaUkRGYVdWaG9kekp0VVc5a01VbHJUVzlFVlhOdVdVUlRZalExUXpNeGRVY0tUMUl5WTJGa1ozUlFSVXN4TjNSeVptaElWbmxEVkVoQ1RqUmpXVFpzUXk5TFJqUkRVMmRLU1Zsb1RUVndabkYyWjB4NVJIaFpLM1YxV0ROeVozSlZVUW96ZGk4emFrNWpjVkoxVW1wemFUY3pObTFtYVU5Nk5tb3dWalZSUkZCbE9HNHJWbVpOYjNKRGRsQnBlRXB0WWxoSE5qSjNkVTV2YWxOcWN6MEtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogM2pxdzc0OHdpNTU1djRzeW81NG8zeDBwajhuNTN3bXp4aG5pMHF4Zmo0ODkxYmZvYThqaDEwam4zeWQ5bmZwNmNyNmNnbDNnOTJtbXI2bDF5bXBzcjQyb25pbGVsbjh3eXUyZmg5ZGt1ODBiMjl4Yjlvb3Rpb3NqMWg0dmRvNTYK\"\ - \n }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": + \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSWVhnNVJuTTFXRkIyZVdoWWIwSjBjRUZhYW5SNGVrRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxcWEzZFBSRlUwVFhwU1lVZEJPSGxOUkZWNlRVUlplVTlVUVRWTlJHZDZUa1p2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVOeUNuTkpRemc1UjNKc09DdHpiamxoT1cxcmMyMVBWbmR2WldrMUsyOVNTblZTVEc5SlUwTlZUVlJTZW5JMWFIZEVjbmh6TWpGWmFUZFdSRU5UVjNrdlFuVUtSRTFPYTNwcFVDdENUbUl4VGxsUlF6ZG5aV1ZXTVZGck5saHNWVGg2YnpkSVNIcG5ibkEzTkRWMk5uVTJVRTVOWkRoS2EzVTRUWGt5VlhabmRXbHZUUXBtVTJzMmQwNXBSVE5aU1ZscWIzZFBhMVoxVTNGYVkzZGxlSFZOY1VOUFYxZ3hNVkFyT1haVlpYbFhaV2RzTDBwa1JtVjFjalpCTHpsbVZscFNja3hJQ2tSelQySnRTVGhsY1RjNWVqaGhOMGwwYjJSMFlWRkxObVJhYlVWWWJIaHJZemx4YkU5eldFRnRNMjU2V0dRM1VtcFpObEF4VEdaUWRWSXlaeXRRWm1jS01XNXlaeXRrYkdadWFtbEllblJHUjNaNVRrVkZWR05UUVRkcVEya3lhMjE2VUV0cVJHcENTRkpMYjBsUVF5OU9SMUYzTTNGYU4yOTJVMlJFTlN0TmVnbzRWa1l6WVROa1owSTNjM0E1UTFGWk9EZExjVFo0U21oT1FWVjVjVTk1TmtSbVZua3ZNR015ZVRWVWEwazNhMjVNUlUxa1drdFhWakJZU0ZWMlJGRmlDbGx4YUVoNU1HVnVPWEp2WW1zd1pHdDBWWGxWTW1JMVluWkZlSEZwV0hGUmFVTm1SelZsZUhGVlJFUlZVWE5DZVRaS2RIZzNkbFl2TUcxdFRHbExOUzhLV0ZVclJsbEhNR1JNZFRKMmNYWjJRVWt5VVVzNVdFc3phalZ3YjFObWRqVlBhSFJJVG1OYWFtZFVUazh5WjBWNFZYVjJSMVpIV0hkMldWTktNREpSVEFwVlJXWlljM1V6U0dGNGVsUnRiM3A1Y0U5TE0ydzJia1pQUjI1cE1rVjZiVzUwYzFsSWRGazRSMnhQYW5NMlprWjFSM2RFTVd0dGVYa3lXbXBVTUdScENrbEJWMUI0ZVZCWmIyaG1abUZ5YVhGNFYzRkRLMjB2VmxoR1ZYaDZhM0IwTDNJeE4wZEVWVXBYZVVNd1psTndlVmxOU2l0b2RFRTVUR2hwWldsV2NHb0tlRGxWWkVZeVpYQjVjVFk1YkZoalJFb3hTRzl6YVdsMVpYQm1VVk5rUnpkb1JreHFNSEJXY2xsM1NVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWNE1sbE5SVTEyZW01NFJtdFdlVkZtQ25SRVNqSjNWMFJQZFRRNGQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGRWVYUTJjVVJ5Y0ZscFpXcFNXRlpOVHpKNE1URjRRMVJOUjI4S1VFWlNlSFE1VFhNd1NtcDNjRlZyU0RBelpIUndTeXQxVTBjeU5WbFZTa05vY1hkbVVqaEJjRTFEYzJFdlRIaENjbXhvWlN0YWNGZHVkRzE1YkVoeldncEtZVzl5UkVFd1lrNXhibHBNYWpod1kydE9lSGg1TmtkTlEzUXdRbVFyV0RKa2JtUk9TV2RrTVhoV1VGRlpkR0ozVWsxa1VVOXNOMlEyWVVJd1oySnZDbFJVVkRWelIwWnlNbkJDVGxWa2QycE5lRkpHYlVkVGRreHVSSEJsUTBVemFVb3dlazVoVmtwMVRFaFFjM3BqUm0xamEwMVZXbEZvUTJoSGIwVkdhREVLYWprMFF6bHNWakJYVXpCb2QxWnZPV0pVS3paMVVtNU5TaXN5Wms5c09VMUtTMVZ1ZW1JNVl6aENZMEpaVFhSTkwxWkxPRzlRYjFsWFpFdHpPVVJqY3dwU2VVOTJNSEpJVmxoTGRWTnlNWGhqUmpCcGRISnZLMmhSVUhKdWJGTXZSRWhLYmxodWRtVlJRMlF5ZVZwdE1UTXdlVVpXYTJReU5sTjRZVTFRVXlzd0NtWkxNVUk1WldFdlRVZHFUelEwVlRONFkwdzNVRkpMT1hBMlNrRlpWVTlrZFV3M1MxVnFaSGxKWXpWcmQzRm5kRlJZYmpONldHVlVkbVJaWmpCTE1rMEtNemhSYTJWTlVXMTNTWHBWYm5kTVVVWlZVMlV4YkdNdlYyNTRWMjE2VEc0NVpURmxUVEY2ZHpCbVZWUkNNVTFTUmtOek9IWldia0ZVZVVJM1JVUlNlZ3ByUjFWdVpEWlBhRTU1VlU0NUwyMHlTRUUwUlZGSlYyWlpTR1ZDYlRGeE9EQnVNRE52VEROWlp6ZGFTV1ZNTXpWS2J6WnhVemw2UVhSNVJVa3hVVlIxQ25oQmRpOVpOSGhSUm1aSU9UazNVRUp4ZG1aVlRIaDRUelEyZFdjMEswUkpiSHBNZFZKTk5ITTVRbXh1TkZGWmNYcEpOR2t2ZW5wb1ZsaEZNMGRXTlhvS1pUYzRiWEJTYTNKNldVWXhlbkZaVjJrclZXcFBXbXd5TDBaVWFYaDNOMkZtVjJKdlN6SmFVM1pvVldsaldGWjFTSGxtYVhaWE9ISTRXVkIzZFZneGFncEphSG94WW5kcVRXbzNja0poVjNWM0NpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc3pycWR4ZjUtbjNocXN0MW4uaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3RoeHhvYm8KY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3RoeHhvYm8KICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3RpcGF3bTM1ZG5oX2NsaWFrc3Rlc3RoeHhvYm8KICBuYW1lOiBjbGlha3N0ZXN0aHh4b2JvCmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdGh4eG9ibwpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3RpcGF3bTM1ZG5oX2NsaWFrc3Rlc3RoeHhvYm8KICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJYWtORFFYZGhaMEYzU1VKQlowbFNRVXBKYWxWSGIydDBPWFpSTDFKS1pWVlVlVmhQTVdOM1JGRlpTa3R2V2tsb2RtTk9RVkZGVEVKUlFYY0tSRlJGVEUxQmEwZEJNVlZGUVhoTlExa3lSWGRJYUdOT1RXcE5kMDVxU1RWTlJHY3hUMFJOTVZkb1kwNU5hbFYzVG1wSk5VMUVhM2RQUkUweFYycEJkd3BOVW1OM1JsRlpSRlpSVVV0RmR6VjZaVmhPTUZwWE1EWmlWMFo2WkVkV2VXTjZSVlpOUWsxSFFURlZSVUY0VFUxaVYwWjZaRWRXZVZreWVIQmFWelV3Q2sxSlNVTkpha0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRkZSa0ZCVDBOQlp6aEJUVWxKUTBOblMwTkJaMFZCTm1FdlpWZzFMMnhqTjJFelEwUTBkblJ3VlVFS1pEaDNaU3Q1WWpCMmVTdGxka2h5SzFKb1dtMUlNbFJJTmtFM1dXeDFRMEZGVmpkdU1IUnFjR1JNVTA1SVYwaElVSHBrWVV0aWEyOUphWEV3ZG5ZMU53cHhTVEIxTlhoNE5rcEJjQ3RLWVdrd1lrbDRTbFpTWlZadFQzaHBXVmQ2UTI5eFZYZzRXbmt3Y25kR1ltdEpTMG9yZVc0NFdHUkhiRzFMVmtobWEwMU1DblpISzFwRFRISTVXRnBMTTBaVWNXczNiMVJJUW5sMGJsRTFNVkE0U21oa1NVVm1kWFJtV1RreVRtNHZabmRvU0ZReFZXbHVOV0V4VHpVdmRtUk5abmNLVHpsVkt6bDNiemxVYVdvMmEwTmtVbE5vZUV0dldISnlhbGQ1TTB4eE5raFplRGhyYVdaU2EwWmxNbFZzY0hOaGFtWmtTeXRtYjB4REx6WXJkbmhJWmdwU1VYaEhVMlpwZFRWSlFUZHpWMmhpWnpkQ2RXTkhjelUyV0Vnd1ZIVlRPR2RtZUdwdk9HWk1ObW80ZUZaWVFpdEVZVU5oTVVkaFQwMXNSSEZQWTNwcUNqZE5ZWGRITXpKTGVYQlZTemhOYjBGa1RTODVVVnBYUW1GSGJqRktWRTA1YWxJeWRHeDJTQzlqZUhOREsybEpaVUpzWmtsUU5rVnNZVFkzVERScFIyVUtlV1pKUW0xNE0wSXJhVWxZVUZCdmFIRkliMmhpTkdSV1UwdGhhMmR5ZG5ST01sRjZURlpZYjJOQ04zb3dTVVk0VVZCemRub3ZSRzB2YlZaME4yMDBXQW8zWkRWYWJTOWtVRWh5YTBsNVlVWlBhbWhJYjNsM1Izb3ZVbFpoWVZjMldUaFhPQzlwWTJKSU5XVmFNalJNVDA1M1pGbDFSMVZZTmxwamVWZzNSMGRDQ2tKWFFXeG9SV1JXVkc5SE5GSjJjVGRhWVd0TFJIZG5aMEo0V0hZM1IwZGpSMVpCZFVKMFdqbEdZMHgxVVVSMFQyUllTRzV0UzNKbmExSnZTMHRsWVRFS1JqZFlXRE5hUVd4YU5rRkhjQ3RDYTBsdmVYSnZibHB2V1VnclFuZFhaMVZUVDB4VFVHSk1iR3B1V0haV1RVNTBRakpLV0VSallraHdWbEZYTUVGTFZncERUbWRQTUd4MWVHRXZkUzkzY2xock1VMU1SMFpPVlVOQmQwVkJRV0ZPVjAxR1VYZEVaMWxFVmxJd1VFRlJTQzlDUVZGRVFXZFhaMDFDVFVkQk1WVmtDa3BSVVUxTlFXOUhRME56UjBGUlZVWkNkMDFEVFVGM1IwRXhWV1JGZDBWQ0wzZFJRMDFCUVhkSWQxbEVWbEl3YWtKQ1ozZEdiMEZWZURKWlRVVk5kbm9LYm5oR2ExWjVVV1owUkVveWQxZEVUM1UwT0hkRVVWbEtTMjlhU1doMlkwNUJVVVZNUWxGQlJHZG5TVUpCUjBKVmJtMU1NbUZqZEZONE5VcEJTa3R3TWdwb1FsbFBkWGxtUlhFdlpITk5SWE5aTmpaMk5rSXJjR3B6WVc5WlFURkZUR1pwV1ZWcVJXSnFSemhNUm1OV1FuSlVWRFpqYVVKcWRUWlJMM0p6VEd4MUNsWlpOVVpJU1RGRWVFVkZUMm8yVkhScE5FUTVNblpqVVRFNFZWRm1RbWswWnpoTVlVWldiVTFZSzNoUkwzWm5aRGR5ZERKSlJHUlhTM1ZVYUhaSlNWQUtSakV2WlhaSGFtOHJNR1ZwZEVOUU5URmtRbkZxU1ZkU1lqTlJRak5DV21Kc2RXdFdhRXB1VkV0eWVsVllPVUZrVFdSek5Vd3pOVFZxTVd4TmVtNHdSd28yWmpoNEsyNDFhRlZ1T1U1R2JuQTJNRXQ1UWpoMWNXRmpPVUZzYTBsU09VSlpOelpRTlU1RFRFa3JWRWROWVRsdVFXZFhLMHcySzBKamJIQlRWR1ZZQ20xSGVDdEVaMVJ5VmpKSGVHdEJjM0JzT0dWUk5tNHlZMWd3VjBkWmNHSlVPRE52TkVVMWNrWnhZMDVxZERCQ05tTmtiR05oV0RWbmNHZEhVamc1Um1nS2IxYzBkakJVY0VkbGJFaHVUMUpsYkVsTVVWUldXRzVpUXpoVUt6SndPVzAzY0VWdGNqazRWVEZsVEZOSk5IRjFhRVZzY1VGSllXRkpkVzQ0S3podFdnbzFVakJETjJSM1VsaERiWGhSZDNBclNUZHJjVTlHV0ZKbVFXVmllWGxuWnpjMmFFaHNhMlJFZFVGNFFUY3JPVmxOYlVSdFF5dGFkMkYwZDFvcldVTjJDbHBETkZac00zZzBaVmgzVXpSV1IwaDRPRU5NWWxSbVdHVTRUSGhhY0RBNVl6azFUalZHTkZReEwzcFBka0l3Ums0dk1EVlRVWFE0VVdWSVFtSlpZbE1LU21oVFVsVlNURkkwU2tWclpqTjFibXhSVTJKVlYyaEtTM2h1Tkd0cU5WZEViMk5WTUVwbllrRjZWMDhyVXpSck1XTnpXRkpsT1hWeGQxWmxWM3BDV1FwUE1FUktPV2xKT0dwbFNVTk5SV0p6Y0RWWVdHeE1TVWhxVDJWUVRrczRNbmxRY1M5QlMwNW9ORXBLTDBGUmRFSlRibGwzZDAxeE1VOHJUR2RsTWpSdUNtSXJRVXhrUkd4Q09USlFjRnA1VTNSR0wwTlpXVGw2VGdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMEZKUWtGQlMwTkJaMFZCTm1FdlpWZzFMMnhqTjJFelEwUTBkblJ3VlVGa09IZGxLM2xpTUhaNUsyVjJTSElyVW1oYWJVZ3lWRWcyUVRkWkNteDFRMEZGVmpkdU1IUnFjR1JNVTA1SVYwaElVSHBrWVV0aWEyOUphWEV3ZG5ZMU4zRkpNSFUxZUhnMlNrRndLMHBoYVRCaVNYaEtWbEpsVm0xUGVHa0tXVmQ2UTI5eFZYZzRXbmt3Y25kR1ltdEpTMG9yZVc0NFdHUkhiRzFMVmtobWEwMU1ka2NyV2tOTWNqbFlXa3N6UmxSeGF6ZHZWRWhDZVhSdVVUVXhVQW80U21oa1NVVm1kWFJtV1RreVRtNHZabmRvU0ZReFZXbHVOV0V4VHpVdmRtUk5abmRQT1ZVck9YZHZPVlJwYWpaclEyUlNVMmg0UzI5WWNuSnFWM2t6Q2t4eE5raFplRGhyYVdaU2EwWmxNbFZzY0hOaGFtWmtTeXRtYjB4REx6WXJkbmhJWmxKUmVFZFRabWwxTlVsQk4zTlhhR0puTjBKMVkwZHpOVFpZU0RBS1ZIVlRPR2RtZUdwdk9HWk1ObW80ZUZaWVFpdEVZVU5oTVVkaFQwMXNSSEZQWTNwcU4wMWhkMGN6TWt0NWNGVkxPRTF2UVdSTkx6bFJXbGRDWVVkdU1RcEtWRTA1YWxJeWRHeDJTQzlqZUhOREsybEpaVUpzWmtsUU5rVnNZVFkzVERScFIyVjVaa2xDYlhnelFpdHBTVmhRVUc5b2NVaHZhR0kwWkZaVFMyRnJDbWR5ZG5ST01sRjZURlpZYjJOQ04zb3dTVVk0VVZCemRub3ZSRzB2YlZaME4yMDBXRGRrTlZwdEwyUlFTSEpyU1hsaFJrOXFhRWh2ZVhkSGVpOVNWbUVLWVZjMldUaFhPQzlwWTJKSU5XVmFNalJNVDA1M1pGbDFSMVZZTmxwamVWZzNSMGRDUWxkQmJHaEZaRlpVYjBjMFVuWnhOMXBoYTB0RWQyZG5RbmhZZGdvM1IwZGpSMVpCZFVKMFdqbEdZMHgxVVVSMFQyUllTRzV0UzNKbmExSnZTMHRsWVRGR04xaFlNMXBCYkZvMlFVZHdLMEpyU1c5NWNtOXVXbTlaU0N0Q0NuZFhaMVZUVDB4VFVHSk1iR3B1V0haV1RVNTBRakpLV0VSallraHdWbEZYTUVGTFZrTk9aMDh3YkhWNFlTOTFMM2R5V0dzeFRVeEhSazVWUTBGM1JVRUtRVkZMUTBGblFYQmtWekJxVlNzdlYxUnhWVGhVYVZGVE5WYzFNakJ1ZW5kdEswZDVRbHBZU1RWS01ERXZRVlpWVEc5SlZURnZWbmRvZUZoU1puZ3ZjZ294Vmxoa2QyRmhSR1oyVW14aU9FZE5VVE5CZFZZMWRFaG5NR2xZUWpZd05XcFhSRk5CYUdGT1VXUm1OSEJuTjJkcVRsZGhhM1F5UmxsV1JrdHVOMjk2Q201c1UybzROell4TjJGTWFrd3phVFZuUm1NM2RFbzNlR1JLTW1oaFlqaG9kMGRNZHpsbVYweFROazB4VDJST1FtNHhObkp5VkRSblpHcGxXRmxaZFd3S1RuSkhWVkp0UkVGMlkzaEJPRGsyTTNBemIzaDNUbU4yZUdOVlIwdElaMHRTWjFCSlYxSmlVeXRzWVN0eGFsSklXRGxLYjJaa1FXdzVVWEpLSzBJeE5BcGhRMXBXYVZwbWFDOUdVME4xVlhaUkt6VTFORWN4VEd3dlVuRTJWMnR2YVVZeksxaDRTRkpUY21sM1IwOW5ablEwSzJkaVZsZzRPV1V2UmtKemJrSlBDaTh3VW1KSk5tcDRLMjl2ZVdseWNrNVZaME5MVW5KaE0xZElWbUpHY2pkRVN6bEZUQzkxVjFWTlpqSklSamR4VG1SYU1XdDJTRkJWY2tnMFZtZzNRVTBLY1hsVlFWbGxNMFF2UWpkNk5GcGxhWGhzVVN0TGExcE5LMUZCTUZwWFVIRXpiakUxVDBaNE4zRXhVWE5FTDJ0cmFHeERabEZNYTBkSWJVSlVNbXd5TkFvMWJrNUtVWG96Y1M5emNuZGpXazlvVGpOc1ZWZzNWakZMS3prclJURktjREpXUWtWb2FVRmtiMXBNT0VjNWFuTTJjMFJ1Y1ZSWFpuaHlZVzAyZVUxb0NqZE9UamhNTldjM1VXZzJNV0Y0ZERGeVVGSkdNWGg0TjNOQ1lUQTJaR1JMTUdZMGNGUkRNakZIY0cxUldGaEtWVWc1Y0hKNE5XbDFaRFJYTnpKR1ZXNEtOM0Z1YzJFM2JUZDNNbk5ZT1d0U1JrTlFkRlJVU3k4eFdtdENXRlpsZUdwRVkwUm5ObXAzYUdnMWRqaHFPRm81Y2l0WFEwNVJkM0JuZVZwRVdIWkVkd3BDY25odFUyTTFNV3RSUmtkck5VTlNPVXBKUldoTlYxZ3dPQ3Q1V0dsb1drdEJLM0p4V21sR2NYZHFWVFJYYVhsWlVVdERRVkZGUVRoeVZWUk1aVkpCQ25aQ2VXZEtNelpFUTJGVlNVNWFkMloxWVVvMVJXOUllRmxaTVZCQmRVaE5kV0UzZDBONE1HaHVlR1ZHWVhWa1MycHlkR2M0TUhWSk1rMTNZelJ6UkhZS1pYY3dRakp6YzNFNVdWSmlLeXN3Y3k5TGFrbDBhRGw0VkVKSE1rdGtSRzQwTms0MGIyOUZiSEZwUTJoRGVXWXZVakpWVnpGb2REQnZWbWN2VUZwc1NRcE5SVGxOUjFRd1lXRTBSazVsWTFsWVVETTJkSGRKYTNWaVZDODJhMU5EV0UxbFZuTTFUVFpHZWs5cFVEVm9NbkJhSzFGa1ptNXhOVVp0ZGt4cU1FczFDbGhLYUVoeFRrcDNjMUZDZW5oaFZucHZObnB0TW1GUk4xcGtXRWw0TjA5c2JUaE1OMHhwZURseFMwcFRjVmt6VGk5UU9WVkljV1ZWY1VkSldGQXJSa0VLYmtaSWFuWm5OalZYYWxSNU9FVk1NV3RIUzFCQlltbFJORGd3VldKTmNFOUZSMWRTV2tGTWVGRjJkblJNYmpsbE5uUk1abWs1ZG5OaEswWm5RamhKZGdvMVUwSlhhbFpaT0Zsb1JsaFBVVXREUVZGRlFUbHVlRk5vVTFsWVZ6Qk9aVVJhV0RacVpVTkRaVVZCWmtSdlExUnNPRGxpYkVsM2J6Z3ljV2xZT1RoNENtVXlabHBLYlM5NFpFbEpibEJDY2xSVmIzQmlTRVF5VWxsSU5HaGpZMnRtZEhWc1RIVTFXbHB0UldsdVptRXhNVU5GWjNZNFN6aDNSRkoyWjFCNlZEa0tPVkZCUXpkdlIybDRhaXR5TkRkaFlucHdUbGQwTDJGdllVRlhhVkZXSzBOWlpIRllUVXhuUkhFMFQweERRMUExVHl0dFRVUnRVMnROV1VaVWJsSkVjUXBwY0hCWWVtWnpTV280ZGtSNVIyNWhOVlp0VFVKSGFTOWplamRuVGpoMlFWWTJLMW92WkVGaVF5dG5jV3BpVlhWdVNtZHlaR1JzVkd0eVN6aGhTR2hrQ21OWk9FUmFNVk52VUdsRVdHZEhZMUYyV1UxVE1rTTNjMFZwU1RZck1tVkpabTEzYUVreWVXbHhSRzF5T1d4Q1JFWlNhVWd2YW1sQ01qZHhMMVYzUlRVS1NGQXlUVmhJVDNkRFdWVm9VekJETWtwMVZ6TkRUVUo2ZEV4d2NtMU5VSGh5ZDBsaFNETlNkV1pSUzBOQlVVSlFNM1JVTnpocVVqTmplbWRzU25oWU5ncFZOSFkzUlVoRVJWSjZjSFZ2T0V0TGNIUlZUV3B6UVhacWRXeENlbmRzYTJOSWIyZGllRXg2UnpacVVrSTVaREVyVGpJNGNGWTVjRGhEVEdaSVMwdzNDbVowTlVOaWJ5dDVZV1I2TjFOcFpXWnlLMmg0Y0VkVVlsaGpNWGxPVDNaMlN6WlBlbkI1Y2pCR1RXeExSbTFxZDA4M2F6aEVWR2hpV2xrd1YyUlRkeThLYlhGTGFsa3hVRGxQYWxBeGRUSTVRekZ3TkdaeGEyb3pVelZtYkZORE1YZ3ZSWEF5YjA5YVFqUlRhblp0V0ZaV1kyOHpabXBGWVhoMVVUbEVLMFpVVEFwbGRXMWxZbXM0TmpKemFIaGpVVVl6UW5JMU0wMWhRbUpRVUZGeFFYTjNjbVJhWldOWmNWVmhSQzlDWmpCcFozbHlWekJZVVZsd1ozQjJXVFpqYkM4ckNqRndVRzlEZWtWRGJtUjVVRFZYZDFFck1HdDNZaTlpTW05SFdWUk5iME4zTWxoVU5Vc3dUbE5LWVd0YVVHNTBNRWRSZG1kSlkwSm1UalpCYTBSUEx6Z0tSMlJpU2tGdlNVSkJRM0JTY0dkc1pWSk9lRk5qU3prNFpFbDNkbGszWTNCeGVYUmxVQzlxYzJwU2FYZENPR1pxU1hkWE5qSkdRVXgzUjJsMFFqVlBkQXBXVUdOdk1DdGtNRUZpYVZScFdWazNiMXB3WW05aGNGSXlPRXhXVTFsVGRqRk1TSEpQYUVNeE9VTlZjWEoxUmxKVEszTlBUMmgyTm1GSldubHJNMUJsQ2sxeVJHbENWbGwxVkdSRkx6bERTVWc1V21WeWQydE1lWFZOY1ZGcVdFUkNTVkJ1UVRBeVdFbzNNVmcxVTFsbFIxbE5hWGwzZEVsU1RtTnZWSE0yUTJNS2NETjVaRlZCZGxsdFFWZGFlRzFWVUVGdloxSXpNMEYxYjJjelJqQlNOekpQV0dkcVFqSkhlbUp4VEVwTlYxRmhZeXRoY2pRM09DOW5jVWxZUlhSMU13b3pPR2RZTm1aUVpuTlVhVlYwWTNSWVVGUkZNREJYWVVSUmFERkhOVnBhYTJOSVdGWjVaVFo0VXpSblIxRTJWbkZLY21Oc2JYQjVlbTAwYlRCQmVVWm1DbFJvZDFKbVJGTndaRUZrTkc4eVZVRk1UVVZLZHpGRU9ERXlaRmhKYWtWRFoyZEZRa0ZPVFhOWVpXbG5ibWxXWjB4Q2RsSjJlRGQ2TVRSUWMzTkNjVTRLVEd0aE9IUmhTa1pxWXpKTlVXOW5SbmRLWjFab1QwZzRRM0pxTVV0bGVVVnpka0ZpVEZkTlREaEtVbVF3Y1haT2VsaFRja2RQTkRScmEybGxNV3BOVEFwSmNGUXlRM0kzZUV0RVdsWlpaelE1V0VnclRucExPR1kxWTFodlIwdFFkQzk0VDFaQlNtbG1RaXNyVFU1dGFtdHlibWxrTm0xWlRIWTJSME56WlZoU0NrTjNiRXBFWm5CVFlXeFJabEpUVURseVVteEVZblJZYlRRNGRXbHhWWEIxZFVvM1dVeGtjRGwwVGpZeE0wbG5UR1pYVkVkb2VYZFFZa3hwV1RaMlJHUUtTWFZ2TkRCRFJXWjFVbTAxTWpORmJrbG9iSGxMZEd0aFMwUXlRVVl5VEdkR1JEUlpORm94VW1adlpVNWlNMnh2YkdkamQyb3hVVVpuYkZwVFdYWnhad281ZEZoYVMwcHFORTlyU0V0RmQyNVBiRXhIYlhvMFdWSnhTM2xKTldOcldUQTBSa2czWlRkRFlpOVhOa3hVY25CYWREUmtNM2xZUm1aNlFUMEtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogYnV6YzVoZ2tzc2dmN2tqa2I5Mm45bjFjeGpoaTF3bmljczJ6NXR4azVweWI3MmlqMngxMXZuOHlzcTE2dnY4czluemFpMGE1ZTc0aWduZmJ4bWg5MHNqamQ1NXJndGEyZnNnY2N5bjkyemk5MG81eWVmdGpoYng2OXdpdHg1cmYK\"\n + \ }\n ]\n }" headers: cache-control: - no-cache @@ -1008,7 +1139,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 20:51:41 GMT + - Thu, 29 Jun 2023 09:13:00 GMT expires: - '-1' pragma: @@ -1042,67 +1173,65 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: 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.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 }" + 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-n3hqst1n.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000002-n3hqst1n.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": + [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": + \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n + \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": + \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": 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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/2bb52149-3221-4baf-ba77-b9ed9a912c63\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4309' + - '3980' content-type: - application/json date: - - Wed, 14 Jun 2023 20:51:42 GMT + - Thu, 29 Jun 2023 09:13:00 GMT expires: - '-1' pragma: @@ -1131,13 +1260,14 @@ interactions: false, "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_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"}]}, + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_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/2bb52149-3221-4baf-ba77-b9ed9a912c63"}]}, "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"}}, @@ -1154,75 +1284,73 @@ interactions: Connection: - keep-alive Content-Length: - - '2908' + - '2579' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: 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.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 }" + 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-n3hqst1n.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000002-n3hqst1n.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": + [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/2bb52149-3221-4baf-ba77-b9ed9a912c63\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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/af84a5e8-fd70-4b96-bd6c-a599a11027f8?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f02e1b5-5122-4ff5-aefe-88e77c8a567e?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4307' + - '3978' content-type: - application/json date: - - Wed, 14 Jun 2023 20:51:49 GMT + - Thu, 29 Jun 2023 09:13:12 GMT expires: - '-1' pragma: @@ -1256,14 +1384,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f02e1b5-5122-4ff5-aefe-88e77c8a567e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e8a584af-70fd-964b-bd6c-a599a11027f8\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T20:51:49.2920493Z\"\n }" + string: "{\n \"name\": \"b5e1024f-2251-f54f-aefe-88e77c8a567e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:13:06.1233209Z\"\n }" headers: cache-control: - no-cache @@ -1272,7 +1400,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 20:51:49 GMT + - Thu, 29 Jun 2023 09:13:12 GMT expires: - '-1' pragma: @@ -1304,14 +1432,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f02e1b5-5122-4ff5-aefe-88e77c8a567e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e8a584af-70fd-964b-bd6c-a599a11027f8\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T20:51:49.2920493Z\"\n }" + string: "{\n \"name\": \"b5e1024f-2251-f54f-aefe-88e77c8a567e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:13:06.1233209Z\"\n }" headers: cache-control: - no-cache @@ -1320,7 +1448,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 20:52:20 GMT + - Thu, 29 Jun 2023 09:13:43 GMT expires: - '-1' pragma: @@ -1352,14 +1480,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f02e1b5-5122-4ff5-aefe-88e77c8a567e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e8a584af-70fd-964b-bd6c-a599a11027f8\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T20:51:49.2920493Z\"\n }" + string: "{\n \"name\": \"b5e1024f-2251-f54f-aefe-88e77c8a567e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:13:06.1233209Z\"\n }" headers: cache-control: - no-cache @@ -1368,7 +1496,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 20:52:50 GMT + - Thu, 29 Jun 2023 09:14:13 GMT expires: - '-1' pragma: @@ -1400,14 +1528,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f02e1b5-5122-4ff5-aefe-88e77c8a567e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e8a584af-70fd-964b-bd6c-a599a11027f8\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T20:51:49.2920493Z\"\n }" + string: "{\n \"name\": \"b5e1024f-2251-f54f-aefe-88e77c8a567e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:13:06.1233209Z\"\n }" headers: cache-control: - no-cache @@ -1416,7 +1544,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 20:53:20 GMT + - Thu, 29 Jun 2023 09:14:43 GMT expires: - '-1' pragma: @@ -1448,14 +1576,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f02e1b5-5122-4ff5-aefe-88e77c8a567e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e8a584af-70fd-964b-bd6c-a599a11027f8\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T20:51:49.2920493Z\"\n }" + string: "{\n \"name\": \"b5e1024f-2251-f54f-aefe-88e77c8a567e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:13:06.1233209Z\"\n }" headers: cache-control: - no-cache @@ -1464,7 +1592,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 20:53:51 GMT + - Thu, 29 Jun 2023 09:15:13 GMT expires: - '-1' pragma: @@ -1496,14 +1624,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f02e1b5-5122-4ff5-aefe-88e77c8a567e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e8a584af-70fd-964b-bd6c-a599a11027f8\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T20:51:49.2920493Z\"\n }" + string: "{\n \"name\": \"b5e1024f-2251-f54f-aefe-88e77c8a567e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:13:06.1233209Z\"\n }" headers: cache-control: - no-cache @@ -1512,7 +1640,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 20:54:21 GMT + - Thu, 29 Jun 2023 09:15:43 GMT expires: - '-1' pragma: @@ -1544,24 +1672,216 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f02e1b5-5122-4ff5-aefe-88e77c8a567e?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 }" + string: "{\n \"name\": \"b5e1024f-2251-f54f-aefe-88e77c8a567e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:13:06.1233209Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09: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 scale + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f02e1b5-5122-4ff5-aefe-88e77c8a567e?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"b5e1024f-2251-f54f-aefe-88e77c8a567e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:13:06.1233209Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:16: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 scale + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f02e1b5-5122-4ff5-aefe-88e77c8a567e?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"b5e1024f-2251-f54f-aefe-88e77c8a567e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:13:06.1233209Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:17: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 scale + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f02e1b5-5122-4ff5-aefe-88e77c8a567e?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"b5e1024f-2251-f54f-aefe-88e77c8a567e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:13:06.1233209Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:17: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 scale + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f02e1b5-5122-4ff5-aefe-88e77c8a567e?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"b5e1024f-2251-f54f-aefe-88e77c8a567e\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:13:06.1233209Z\",\n \"endTime\": + \"2023-06-29T09:17:45.639095Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '169' content-type: - application/json date: - - Wed, 14 Jun 2023 20:54:50 GMT + - Thu, 29 Jun 2023 09:18:14 GMT expires: - '-1' pragma: @@ -1593,67 +1913,65 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: 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.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 }" + 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-n3hqst1n.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000002-n3hqst1n.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": + [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": + \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n + \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": + \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": 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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/2bb52149-3221-4baf-ba77-b9ed9a912c63\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4309' + - '3980' content-type: - application/json date: - - Wed, 14 Jun 2023 20:54:51 GMT + - Thu, 29 Jun 2023 09:18:15 GMT expires: - '-1' pragma: @@ -1685,67 +2003,65 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: 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.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 }" + 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-n3hqst1n.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000002-n3hqst1n.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": + [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": + \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n + \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": + \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": 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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/2bb52149-3221-4baf-ba77-b9ed9a912c63\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4309' + - '3980' content-type: - application/json date: - - Wed, 14 Jun 2023 20:54:53 GMT + - Thu, 29 Jun 2023 09:18:16 GMT expires: - '-1' pragma: @@ -1779,8 +2095,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/cliakstest000001?api-version=2023-05-01 response: @@ -1788,17 +2104,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a46c16d6-f355-4171-9235-c7e65255024d?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 14 Jun 2023 20:54:56 GMT + - Thu, 29 Jun 2023 09:18:18 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/a46c16d6-f355-4171-9235-c7e65255024d?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 index 7108f79bf7c..b550818a169 100644 --- 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,12 +13,12 @@ interactions: ParameterSetName: - -n -g --address-prefix --subnet-name --subnet-prefix User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1039-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_default_service_with_skip_role_assignment","date":"2023-06-14T20:54:58Z","module":"acs"},"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-29T09:36:52Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 20:55:03 GMT + - Thu, 29 Jun 2023 09:36:54 GMT expires: - '-1' pragma: @@ -61,32 +61,30 @@ interactions: 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) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-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/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/\\\"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}" + 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/\\\"4bae8652-a65d-4b4a-b41e-433be40f3298\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": + \"f41b2ec9-5c63-43e4-a5ac-e63b6fa943a2\",\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/\\\"4bae8652-a65d-4b4a-b41e-433be40f3298\\\"\",\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/32778602-a8e6-481b-8cc1-3152829f127d?api-version=2022-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/98025da2-f258-4ec1-b32b-4e4aa89b0570?api-version=2022-01-01 cache-control: - no-cache content-length: @@ -94,7 +92,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 20:55:06 GMT + - Thu, 29 Jun 2023 09:36:55 GMT expires: - '-1' pragma: @@ -107,9 +105,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 66fb4275-c75f-4283-84b2-a239bbc63e20 + - 6ccfc45d-f97a-4a06-8e25-6c0c96937806 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 201 message: Created @@ -127,9 +125,9 @@ interactions: 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) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/98025da2-f258-4ec1-b32b-4e4aa89b0570?api-version=2022-01-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -141,7 +139,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 20:55:06 GMT + - Thu, 29 Jun 2023 09:36:55 GMT expires: - '-1' pragma: @@ -158,7 +156,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e513dba0-6e19-42ce-b0e4-d1a6ca75186c + - 9cb7a44b-8a23-46a5-a717-7cd59537dcda status: code: 200 message: OK @@ -176,9 +174,9 @@ interactions: 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) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/98025da2-f258-4ec1-b32b-4e4aa89b0570?api-version=2022-01-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -190,7 +188,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 20:55:16 GMT + - Thu, 29 Jun 2023 09:37:05 GMT expires: - '-1' pragma: @@ -207,7 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - dde85edf-10b2-4404-af34-d27bb773fcf4 + - 4761665d-a16e-444f-8c07-d2f93f6cab48 status: code: 200 message: OK @@ -225,27 +223,25 @@ interactions: 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) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-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/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/\\\"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}" + 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/\\\"fc754144-df84-4fbf-ac60-59618a98aff9\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": + \"f41b2ec9-5c63-43e4-a5ac-e63b6fa943a2\",\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/\\\"fc754144-df84-4fbf-ac60-59618a98aff9\\\"\",\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 @@ -254,9 +250,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 20:55:16 GMT + - Thu, 29 Jun 2023 09:37:05 GMT etag: - - W/"4c27fd07-65e3-44d1-8cab-9011bf32bf1b" + - W/"fc754144-df84-4fbf-ac60-59618a98aff9" expires: - '-1' pragma: @@ -273,7 +269,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 32ddec42-6ba8-4525-b815-d5a65ab0fb38 + - 05922452-1d98-452c-8374-8cd53066cc79 status: code: 200 message: OK @@ -292,8 +288,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -309,7 +305,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 20:55:17 GMT + - Thu, 29 Jun 2023 09:37:09 GMT expires: - '-1' pragma: @@ -325,7 +321,7 @@ interactions: message: Not Found - request: body: '{"location": "westus2", "properties": {"kubernetesVersion": "", "dnsPrefix": - "cliakstest-clitesttyqxyjnxs-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": + "cliakstest-clitestc6b2y74ih-79a739", "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": @@ -353,51 +349,48 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-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.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 }" + 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-clitestc6b2y74ih-79a739\",\n \"fqdn\": \"cliakstest-clitestc6b2y74ih-79a739-oicxfjx2.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestc6b2y74ih-79a739-oicxfjx2.portal.hcp.westus2.azmk8s.io\",\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.19.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/328783dd-be50-4ad3-9b90-b30317052dca?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/36d18920-1136-4285-8bb2-68e85ceea2d4?api-version=2016-03-30 cache-control: - no-cache content-length: @@ -405,7 +398,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 20:55:26 GMT + - Thu, 29 Jun 2023 09:37:20 GMT expires: - '-1' pragma: @@ -436,23 +429,121 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/36d18920-1136-4285-8bb2-68e85ceea2d4?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"2089d136-3611-8542-8bb2-68e85ceea2d4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:37:19.111065Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:37: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 --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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/36d18920-1136-4285-8bb2-68e85ceea2d4?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"2089d136-3611-8542-8bb2-68e85ceea2d4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:37:19.111065Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:37: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 --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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/36d18920-1136-4285-8bb2-68e85ceea2d4?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 }" + string: "{\n \"name\": \"2089d136-3611-8542-8bb2-68e85ceea2d4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:37:19.111065Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 14 Jun 2023 20:55:27 GMT + - Thu, 29 Jun 2023 09:38:20 GMT expires: - '-1' pragma: @@ -485,23 +576,23 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/36d18920-1136-4285-8bb2-68e85ceea2d4?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 }" + string: "{\n \"name\": \"2089d136-3611-8542-8bb2-68e85ceea2d4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:37:19.111065Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 14 Jun 2023 20:55:56 GMT + - Thu, 29 Jun 2023 09:38:50 GMT expires: - '-1' pragma: @@ -534,23 +625,23 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/36d18920-1136-4285-8bb2-68e85ceea2d4?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 }" + string: "{\n \"name\": \"2089d136-3611-8542-8bb2-68e85ceea2d4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:37:19.111065Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 14 Jun 2023 20:56:27 GMT + - Thu, 29 Jun 2023 09:39:20 GMT expires: - '-1' pragma: @@ -583,23 +674,23 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/36d18920-1136-4285-8bb2-68e85ceea2d4?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 }" + string: "{\n \"name\": \"2089d136-3611-8542-8bb2-68e85ceea2d4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:37:19.111065Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 14 Jun 2023 20:56:57 GMT + - Thu, 29 Jun 2023 09:39:50 GMT expires: - '-1' pragma: @@ -632,23 +723,23 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/36d18920-1136-4285-8bb2-68e85ceea2d4?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 }" + string: "{\n \"name\": \"2089d136-3611-8542-8bb2-68e85ceea2d4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:37:19.111065Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 14 Jun 2023 20:57:27 GMT + - Thu, 29 Jun 2023 09:40:20 GMT expires: - '-1' pragma: @@ -681,23 +772,23 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/36d18920-1136-4285-8bb2-68e85ceea2d4?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 }" + string: "{\n \"name\": \"2089d136-3611-8542-8bb2-68e85ceea2d4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:37:19.111065Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 14 Jun 2023 20:57:57 GMT + - Thu, 29 Jun 2023 09:40:50 GMT expires: - '-1' pragma: @@ -730,23 +821,23 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/36d18920-1136-4285-8bb2-68e85ceea2d4?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 }" + string: "{\n \"name\": \"2089d136-3611-8542-8bb2-68e85ceea2d4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:37:19.111065Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 14 Jun 2023 20:58:28 GMT + - Thu, 29 Jun 2023 09:41:21 GMT expires: - '-1' pragma: @@ -779,24 +870,24 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/36d18920-1136-4285-8bb2-68e85ceea2d4?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"2089d136-3611-8542-8bb2-68e85ceea2d4\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:37:19.111065Z\",\n \"endTime\": + \"2023-06-29T09:41:45.5257803Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '169' content-type: - application/json date: - - Wed, 14 Jun 2023 20:58:58 GMT + - Thu, 29 Jun 2023 09:41:51 GMT expires: - '-1' pragma: @@ -829,50 +920,46 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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-clitestc6b2y74ih-79a739\",\n \"fqdn\": \"cliakstest-clitestc6b2y74ih-79a739-oicxfjx2.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestc6b2y74ih-79a739-oicxfjx2.portal.hcp.westus2.azmk8s.io\",\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.19.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/d72a0c80-8fa3-4548-9774-c90c278f93bf\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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 @@ -881,7 +968,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 20:58:59 GMT + - Thu, 29 Jun 2023 09:41:52 GMT expires: - '-1' pragma: @@ -913,38 +1000,22 @@ interactions: ParameterSetName: - --scope User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/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/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"}]}' + 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"},{"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: - - '787085' + - '67809' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 20:59:00 GMT + - Thu, 29 Jun 2023 09:41:52 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 index a388259647b..15e6519c761 100644 --- 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,12 +13,12 @@ interactions: ParameterSetName: - -n -g --address-prefix --subnet-name --subnet-prefix User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1039-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_default_service_with_skip_role_assignment_msi","date":"2023-06-14T20:59:04Z","module":"acs"},"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-29T09:07:43Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,15 +27,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 20:59:05 GMT + - Thu, 29 Jun 2023 09:07:47 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -61,32 +59,30 @@ interactions: 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) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-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/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/\\\"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}" + 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/\\\"18f0f5c6-4363-4632-adfb-f58fd2b41b99\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": + \"d5601d01-1027-43ef-9f22-ced645298cb4\",\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/\\\"18f0f5c6-4363-4632-adfb-f58fd2b41b99\\\"\",\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/196aeb56-faec-48a9-b1a0-0f526f3a8a63?api-version=2022-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/9840790a-b08b-4519-801a-cbfb4931a93a?api-version=2022-01-01 cache-control: - no-cache content-length: @@ -94,7 +90,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 20:59:08 GMT + - Thu, 29 Jun 2023 09:07:50 GMT expires: - '-1' pragma: @@ -107,7 +103,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f0ffde7b-0009-4cc2-8f26-3ac5377139e6 + - e964c776-249f-4ba9-a0b7-2cb273d3b8cc x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -127,9 +123,9 @@ interactions: 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) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/9840790a-b08b-4519-801a-cbfb4931a93a?api-version=2022-01-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -141,7 +137,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 20:59:09 GMT + - Thu, 29 Jun 2023 09:07:50 GMT expires: - '-1' pragma: @@ -158,7 +154,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6ab5839d-f68d-4116-8ad1-ffdbee2ef4dd + - 5b1fa898-d824-42c0-9bcf-186b81b9436f status: code: 200 message: OK @@ -176,9 +172,9 @@ interactions: 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) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/9840790a-b08b-4519-801a-cbfb4931a93a?api-version=2022-01-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -190,7 +186,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 20:59:19 GMT + - Thu, 29 Jun 2023 09:08:00 GMT expires: - '-1' pragma: @@ -207,7 +203,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5f8c1333-bc12-4b72-ad99-17c4eed83478 + - 4b68cf2d-90d7-493e-a356-7722862dbd9a status: code: 200 message: OK @@ -225,27 +221,25 @@ interactions: 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) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-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/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/\\\"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}" + 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/\\\"d8a9f0a9-40f9-47af-96ed-f73c05292b31\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": + \"d5601d01-1027-43ef-9f22-ced645298cb4\",\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/\\\"d8a9f0a9-40f9-47af-96ed-f73c05292b31\\\"\",\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 @@ -254,9 +248,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 20:59:19 GMT + - Thu, 29 Jun 2023 09:08:00 GMT etag: - - W/"f55a4744-cb43-4d67-8329-6623175902b0" + - W/"d8a9f0a9-40f9-47af-96ed-f73c05292b31" expires: - '-1' pragma: @@ -273,7 +267,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - eee1ac3b-70b7-4ea8-8049-dbcccace3cdf + - dec7db64-7efe-427f-8b39-c2655e64d04d status: code: 200 message: OK @@ -292,8 +286,8 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -309,7 +303,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 20:59:21 GMT + - Thu, 29 Jun 2023 09:08:01 GMT expires: - '-1' pragma: @@ -325,7 +319,7 @@ interactions: message: Not Found - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestkr2xe46lv-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestlheotsc5h-79a739", "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", @@ -354,53 +348,50 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestlheotsc5h-79a739\",\n \"fqdn\": \"cliakstest-clitestlheotsc5h-79a739-ijqz6mll.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestlheotsc5h-79a739-ijqz6mll.portal.hcp.westus2.azmk8s.io\",\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.19.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/7b527e92-fa09-4752-8043-0ffc40c105a1?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/874ed806-f535-4f30-bf95-8c7836f17d48?api-version=2016-03-30 cache-control: - no-cache content-length: @@ -408,7 +399,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 20:59:31 GMT + - Thu, 29 Jun 2023 09:08:09 GMT expires: - '-1' pragma: @@ -439,14 +430,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/874ed806-f535-4f30-bf95-8c7836f17d48?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 }" + string: "{\n \"name\": \"06d84e87-35f5-304f-bf95-8c7836f17d48\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:08:09.2633349Z\"\n }" headers: cache-control: - no-cache @@ -455,7 +446,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 20:59:31 GMT + - Thu, 29 Jun 2023 09:08:09 GMT expires: - '-1' pragma: @@ -464,10 +455,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -488,14 +475,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/874ed806-f535-4f30-bf95-8c7836f17d48?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 }" + string: "{\n \"name\": \"06d84e87-35f5-304f-bf95-8c7836f17d48\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:08:09.2633349Z\"\n }" headers: cache-control: - no-cache @@ -504,7 +491,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 21:00:01 GMT + - Thu, 29 Jun 2023 09:08:39 GMT expires: - '-1' pragma: @@ -513,10 +500,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -537,14 +520,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/874ed806-f535-4f30-bf95-8c7836f17d48?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 }" + string: "{\n \"name\": \"06d84e87-35f5-304f-bf95-8c7836f17d48\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:08:09.2633349Z\"\n }" headers: cache-control: - no-cache @@ -553,7 +536,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 21:00:31 GMT + - Thu, 29 Jun 2023 09:09:09 GMT expires: - '-1' pragma: @@ -562,10 +545,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -586,14 +565,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/874ed806-f535-4f30-bf95-8c7836f17d48?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 }" + string: "{\n \"name\": \"06d84e87-35f5-304f-bf95-8c7836f17d48\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:08:09.2633349Z\"\n }" headers: cache-control: - no-cache @@ -602,7 +581,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 21:01:02 GMT + - Thu, 29 Jun 2023 09:09:39 GMT expires: - '-1' pragma: @@ -611,10 +590,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -635,14 +610,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/874ed806-f535-4f30-bf95-8c7836f17d48?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 }" + string: "{\n \"name\": \"06d84e87-35f5-304f-bf95-8c7836f17d48\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:08:09.2633349Z\"\n }" headers: cache-control: - no-cache @@ -651,7 +626,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 21:01:32 GMT + - Thu, 29 Jun 2023 09:10:09 GMT expires: - '-1' pragma: @@ -660,10 +635,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -684,14 +655,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/874ed806-f535-4f30-bf95-8c7836f17d48?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 }" + string: "{\n \"name\": \"06d84e87-35f5-304f-bf95-8c7836f17d48\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:08:09.2633349Z\"\n }" headers: cache-control: - no-cache @@ -700,7 +671,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 21:02:02 GMT + - Thu, 29 Jun 2023 09:10:39 GMT expires: - '-1' pragma: @@ -709,10 +680,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -733,14 +700,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/874ed806-f535-4f30-bf95-8c7836f17d48?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 }" + string: "{\n \"name\": \"06d84e87-35f5-304f-bf95-8c7836f17d48\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:08:09.2633349Z\"\n }" headers: cache-control: - no-cache @@ -749,7 +716,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 21:02:32 GMT + - Thu, 29 Jun 2023 09:11:09 GMT expires: - '-1' pragma: @@ -758,10 +725,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -782,24 +745,23 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/874ed806-f535-4f30-bf95-8c7836f17d48?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"06d84e87-35f5-304f-bf95-8c7836f17d48\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:08:09.2633349Z\"\n }" headers: cache-control: - no-cache content-length: - - '168' + - '126' content-type: - application/json date: - - Wed, 14 Jun 2023 21:03:02 GMT + - Thu, 29 Jun 2023 09:11:39 GMT expires: - '-1' pragma: @@ -808,10 +770,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -832,55 +790,277 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/874ed806-f535-4f30-bf95-8c7836f17d48?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"06d84e87-35f5-304f-bf95-8c7836f17d48\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:08:09.2633349Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:12:11 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 --location --node-count --vnet-subnet-id --skip-subnet-role-assignment + --no-ssh-key + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/874ed806-f535-4f30-bf95-8c7836f17d48?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"06d84e87-35f5-304f-bf95-8c7836f17d48\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:08:09.2633349Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:12:41 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 --location --node-count --vnet-subnet-id --skip-subnet-role-assignment + --no-ssh-key + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/874ed806-f535-4f30-bf95-8c7836f17d48?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"06d84e87-35f5-304f-bf95-8c7836f17d48\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:08:09.2633349Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:13:11 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 --location --node-count --vnet-subnet-id --skip-subnet-role-assignment + --no-ssh-key + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/874ed806-f535-4f30-bf95-8c7836f17d48?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"06d84e87-35f5-304f-bf95-8c7836f17d48\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:08:09.2633349Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:13:41 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 --location --node-count --vnet-subnet-id --skip-subnet-role-assignment + --no-ssh-key + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/874ed806-f535-4f30-bf95-8c7836f17d48?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"06d84e87-35f5-304f-bf95-8c7836f17d48\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:08:09.2633349Z\",\n \"endTime\": + \"2023-06-29T09:13:57.7456298Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:14:11 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 --location --node-count --vnet-subnet-id --skip-subnet-role-assignment + --no-ssh-key + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestlheotsc5h-79a739\",\n \"fqdn\": \"cliakstest-clitestlheotsc5h-79a739-ijqz6mll.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestlheotsc5h-79a739-ijqz6mll.portal.hcp.westus2.azmk8s.io\",\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.19.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/acce2ba8-5710-41bc-9582-9b5d805256db\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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 @@ -889,7 +1069,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 21:03:03 GMT + - Thu, 29 Jun 2023 09:14:12 GMT expires: - '-1' pragma: @@ -898,10 +1078,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -921,38 +1097,22 @@ interactions: ParameterSetName: - --scope User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/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/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"}]}' + 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"},{"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: - - '787085' + - '67809' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 21:03:05 GMT + - Thu, 29 Jun 2023 09:14:12 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 index 45e5186e5e1..9742bbd1920 100644 --- 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,18 +13,17 @@ interactions: ParameterSetName: - --resource-group --vnet-name --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-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/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/\\\"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}" + 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/\\\"92af61a9-e37b-444a-a949-4b34b3db5359\\\"\",\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 @@ -33,9 +32,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 18 Jun 2023 00:55:38 GMT + - Thu, 29 Jun 2023 09:14:30 GMT etag: - - W/"c11c1668-899e-4b91-81b8-2772fc1257a1" + - W/"92af61a9-e37b-444a-a949-4b34b3db5359" expires: - '-1' pragma: @@ -52,7 +51,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ef3b12b2-985e-4920-8db3-6b7adf3016cf + - 7dcf45aa-8412-4f91-9927-c8ae02033c9e status: code: 200 message: OK @@ -72,8 +71,8 @@ interactions: --service-principal --client-secret --enable-addons --aci-subnet-name --vnet-subnet-id --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -89,7 +88,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 18 Jun 2023 00:55:40 GMT + - Thu, 29 Jun 2023 09:14:30 GMT expires: - '-1' pragma: @@ -119,38 +118,22 @@ interactions: --service-principal --client-secret --enable-addons --aci-subnet-name --vnet-subnet-id --network-plugin User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/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/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"}]}' + 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"},{"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: - - '788801' + - '67809' content-type: - application/json; charset=utf-8 date: - - Sun, 18 Jun 2023 00:55:41 GMT + - Thu, 29 Jun 2023 09:14:30 GMT expires: - '-1' pragma: @@ -184,8 +167,8 @@ interactions: --service-principal --client-secret --enable-addons --aci-subnet-name --vnet-subnet-id --network-plugin User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/clitest.vn000002/subnets/default/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Network%20Contributor%27&api-version=2022-04-01 response: @@ -200,7 +183,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 18 Jun 2023 00:55:43 GMT + - Thu, 29 Jun 2023 09:14:31 GMT expires: - '-1' pragma: @@ -234,25 +217,25 @@ interactions: --service-principal --client-secret --enable-addons --aci-subnet-name --vnet-subnet-id --network-plugin User-Agent: - - python/3.8.16 (macOS-13.4-arm64-arm-64bit) AZURECLI/2.49.0 + - python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) AZURECLI/2.49.0 method: GET - uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27589aab3b-9823-44db-a486-a28799d1a111%27%29 + uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%273fac8b4e-cd90-4baa-a5d2-66d52bc8349d%27%29 response: body: - 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}}]}' + 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}}]}' headers: cache-control: - no-cache content-length: - - '1312' + - '1354' content-type: - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Sun, 18 Jun 2023 00:55:43 GMT + - Thu, 29 Jun 2023 09:14:31 GMT odata-version: - '4.0' request-id: - - b4712028-0bec-4396-9ce4-5e26f7aed3c0 + - 84cf4c69-07e2-4bcc-b93e-52ec77b32422 strict-transport-security: - max-age=31536000 transfer-encoding: @@ -260,7 +243,7 @@ interactions: vary: - Accept-Encoding x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"North Central US","Slice":"E","Ring":"3","ScaleUnit":"001","RoleInstance":"CH01EPF00016916"}}' + - '{"ServerInfo":{"DataCenter":"East US","Slice":"E","Ring":"5","ScaleUnit":"003","RoleInstance":"BL6PEPF000134F0"}}' x-ms-resource-unit: - '1' status: @@ -289,27 +272,22 @@ interactions: --service-principal --client-secret --enable-addons --aci-subnet-name --vnet-subnet-id --network-plugin User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/subnets/default/providers/Microsoft.Authorization/roleAssignments/eb761932-4b06-4f2b-84d9-02931e6640dc?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/28ac415f-cec2-4dda-89b8-2c65befcb23f?api-version=2022-04-01 response: body: - 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"}}' + 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-29T09:14:31.5261998Z","updatedOn":"2023-06-29T09:14:31.9052089Z","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/28ac415f-cec2-4dda-89b8-2c65befcb23f","type":"Microsoft.Authorization/roleAssignments","name":"28ac415f-cec2-4dda-89b8-2c65befcb23f"}' headers: cache-control: - no-cache content-length: - - '489' + - '1035' content-type: - application/json; charset=utf-8 date: - - Sun, 18 Jun 2023 00:55:45 GMT + - Thu, 29 Jun 2023 09:14:32 GMT expires: - '-1' pragma: @@ -321,10 +299,23 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' status: - code: 400 - message: Bad Request + 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 AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 @@ -334,34 +325,125 @@ interactions: - 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.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": + \"cliaksdns000005\",\n \"fqdn\": \"cliaksdns000005-mrrjrk6v.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000005-mrrjrk6v.portal.hcp.westus2.azmk8s.io\",\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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"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/bbbfa5fc-d765-4457-87b9-be0638948ad0?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '3410' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:14: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: + - '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 + --service-principal --client-secret --enable-addons --aci-subnet-name --vnet-subnet-id + --network-plugin + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/clitest.vn000002/subnets/default/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/bbbfa5fc-d765-4457-87b9-be0638948ad0?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\": \"fca5bfbb-65d7-5744-87b9-be0638948ad0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:14:38.0766189Z\"\n }" headers: cache-control: - no-cache content-length: - - '873' + - '126' content-type: - - application/json; charset=utf-8 + - application/json date: - - Sun, 18 Jun 2023 00:55:48 GMT + - Thu, 29 Jun 2023 09:14:38 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: @@ -389,100 +471,95 @@ interactions: --service-principal --client-secret --enable-addons --aci-subnet-name --vnet-subnet-id --network-plugin User-Agent: - - python/3.8.16 (macOS-13.4-arm64-arm-64bit) AZURECLI/2.49.0 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27589aab3b-9823-44db-a486-a28799d1a111%27%29 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bbbfa5fc-d765-4457-87b9-be0638948ad0?api-version=2016-03-30 response: body: - 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}}]}' + string: "{\n \"name\": \"fca5bfbb-65d7-5744-87b9-be0638948ad0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:14:38.0766189Z\"\n }" headers: cache-control: - no-cache content-length: - - '1312' + - '126' content-type: - - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 + - application/json date: - - Sun, 18 Jun 2023 00:55:49 GMT - odata-version: - - '4.0' - request-id: - - 12fca1e7-a4cb-443a-b74a-640ddc2c57d5 + - Thu, 29 Jun 2023 09:15:08 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":"North Central US","Slice":"E","Ring":"3","ScaleUnit":"002","RoleInstance":"CH01EPF0000C250"}}' - 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/4d97b98b-1d4f-4787-a291-c67834d212e7", - "principalId":"00000000-0000-0000-0000-000000000001"}}' + body: null 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.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 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bbbfa5fc-d765-4457-87b9-be0638948ad0?api-version=2016-03-30 response: body: - 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"}}' + string: "{\n \"name\": \"fca5bfbb-65d7-5744-87b9-be0638948ad0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:14:38.0766189Z\"\n }" headers: cache-control: - no-cache content-length: - - '489' + - '126' content-type: - - application/json; charset=utf-8 + - application/json date: - - Sun, 18 Jun 2023 00:55:50 GMT + - Thu, 29 Jun 2023 09: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 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: - code: 400 - message: Bad Request + code: 200 + message: OK - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -494,29 +571,29 @@ interactions: --service-principal --client-secret --enable-addons --aci-subnet-name --vnet-subnet-id --network-plugin User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/clitest.vn000002/subnets/default/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/bbbfa5fc-d765-4457-87b9-be0638948ad0?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\": \"fca5bfbb-65d7-5744-87b9-be0638948ad0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:14:38.0766189Z\"\n }" headers: cache-control: - no-cache content-length: - - '873' + - '126' content-type: - - application/json; charset=utf-8 + - application/json date: - - Sun, 18 Jun 2023 00:55:54 GMT + - Thu, 29 Jun 2023 09:16:08 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: @@ -544,100 +621,245 @@ interactions: --service-principal --client-secret --enable-addons --aci-subnet-name --vnet-subnet-id --network-plugin User-Agent: - - python/3.8.16 (macOS-13.4-arm64-arm-64bit) AZURECLI/2.49.0 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27589aab3b-9823-44db-a486-a28799d1a111%27%29 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bbbfa5fc-d765-4457-87b9-be0638948ad0?api-version=2016-03-30 response: body: - 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}}]}' + string: "{\n \"name\": \"fca5bfbb-65d7-5744-87b9-be0638948ad0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:14:38.0766189Z\"\n }" headers: cache-control: - no-cache content-length: - - '1312' + - '126' content-type: - - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 + - application/json date: - - Sun, 18 Jun 2023 00:55:55 GMT - odata-version: - - '4.0' - request-id: - - 5cb85b9f-ea6e-4386-a151-11fafb8f22c7 + - Thu, 29 Jun 2023 09:16:38 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":"North Central US","Slice":"E","Ring":"3","ScaleUnit":"000","RoleInstance":"CH01EPF0000C118"}}' - 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/4d97b98b-1d4f-4787-a291-c67834d212e7", - "principalId":"00000000-0000-0000-0000-000000000001"}}' + 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.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bbbfa5fc-d765-4457-87b9-be0638948ad0?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"fca5bfbb-65d7-5744-87b9-be0638948ad0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:14:38.0766189Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: - application/json + date: + - Thu, 29 Jun 2023 09:17: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 - Content-Length: - - '232' - Content-Type: + 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.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bbbfa5fc-d765-4457-87b9-be0638948ad0?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"fca5bfbb-65d7-5744-87b9-be0638948ad0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:14:38.0766189Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: - application/json - Cookie: - - x-ms-gateway-slice=Production + date: + - Thu, 29 Jun 2023 09:17: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 --service-principal --client-secret --enable-addons --aci-subnet-name --vnet-subnet-id --network-plugin User-Agent: - - 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 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bbbfa5fc-d765-4457-87b9-be0638948ad0?api-version=2016-03-30 response: body: - 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"}}' + string: "{\n \"name\": \"fca5bfbb-65d7-5744-87b9-be0638948ad0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:14:38.0766189Z\"\n }" headers: cache-control: - no-cache content-length: - - '489' + - '126' content-type: - - application/json; charset=utf-8 + - application/json date: - - Sun, 18 Jun 2023 00:55:56 GMT + - Thu, 29 Jun 2023 09:18: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 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: - code: 400 - message: Bad Request + 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.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bbbfa5fc-d765-4457-87b9-be0638948ad0?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"fca5bfbb-65d7-5744-87b9-be0638948ad0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:14:38.0766189Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: - application/json + date: + - Thu, 29 Jun 2023 09:18: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: @@ -649,29 +871,29 @@ interactions: --service-principal --client-secret --enable-addons --aci-subnet-name --vnet-subnet-id --network-plugin User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/clitest.vn000002/subnets/default/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/bbbfa5fc-d765-4457-87b9-be0638948ad0?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\": \"fca5bfbb-65d7-5744-87b9-be0638948ad0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:14:38.0766189Z\"\n }" headers: cache-control: - no-cache content-length: - - '873' + - '126' content-type: - - application/json; charset=utf-8 + - application/json date: - - Sun, 18 Jun 2023 00:56:03 GMT + - Thu, 29 Jun 2023 09:19:09 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: @@ -699,181 +921,123 @@ interactions: --service-principal --client-secret --enable-addons --aci-subnet-name --vnet-subnet-id --network-plugin User-Agent: - - python/3.8.16 (macOS-13.4-arm64-arm-64bit) AZURECLI/2.49.0 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27589aab3b-9823-44db-a486-a28799d1a111%27%29 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bbbfa5fc-d765-4457-87b9-be0638948ad0?api-version=2016-03-30 response: body: - 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}}]}' + string: "{\n \"name\": \"fca5bfbb-65d7-5744-87b9-be0638948ad0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:14:38.0766189Z\"\n }" headers: cache-control: - no-cache content-length: - - '1312' + - '126' content-type: - - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 + - application/json date: - - Sun, 18 Jun 2023 00:56:04 GMT - odata-version: - - '4.0' - request-id: - - 10a76e33-df09-47ab-8b51-fb5ee4d9c2ad + - Thu, 29 Jun 2023 09:19:39 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":"North Central US","Slice":"E","Ring":"3","ScaleUnit":"005","RoleInstance":"CH01EPF000051E9"}}' - 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/4d97b98b-1d4f-4787-a291-c67834d212e7", - "principalId":"00000000-0000-0000-0000-000000000001"}}' + body: null 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.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/60eb4774-bfc1-42f0-9aff-f8535ceaf032?api-version=2022-04-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bbbfa5fc-d765-4457-87b9-be0638948ad0?api-version=2016-03-30 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-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"}' + string: "{\n \"name\": \"fca5bfbb-65d7-5744-87b9-be0638948ad0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:14:38.0766189Z\"\n }" headers: cache-control: - no-cache content-length: - - '1035' + - '126' content-type: - - application/json; charset=utf-8 + - application/json date: - - Sun, 18 Jun 2023 00:56:08 GMT + - Thu, 29 Jun 2023 09:20: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 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: - code: 201 - message: Created + code: 200 + message: OK - 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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": {}}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - aks create Connection: - keep-alive - Content-Length: - - '1959' - 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.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-05-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bbbfa5fc-d765-4457-87b9-be0638948ad0?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\": \"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 }" + string: "{\n \"name\": \"fca5bfbb-65d7-5744-87b9-be0638948ad0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:14:38.0766189Z\"\n }" headers: - azure-asyncoperation: - - 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: - - '3739' + - '126' content-type: - application/json date: - - Sun, 18 Jun 2023 00:56:16 GMT + - Thu, 29 Jun 2023 09:20:39 GMT expires: - '-1' pragma: @@ -882,13 +1046,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: - - '1199' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -905,14 +1071,14 @@ interactions: --service-principal --client-secret --enable-addons --aci-subnet-name --vnet-subnet-id --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bbbfa5fc-d765-4457-87b9-be0638948ad0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8a28cae3-e5db-e549-a1a5-d42a0d5adfa4\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-18T00:56:15.9872181Z\"\n }" + string: "{\n \"name\": \"fca5bfbb-65d7-5744-87b9-be0638948ad0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:14:38.0766189Z\"\n }" headers: cache-control: - no-cache @@ -921,7 +1087,7 @@ interactions: content-type: - application/json date: - - Sun, 18 Jun 2023 00:56:16 GMT + - Thu, 29 Jun 2023 09:21:10 GMT expires: - '-1' pragma: @@ -955,14 +1121,14 @@ interactions: --service-principal --client-secret --enable-addons --aci-subnet-name --vnet-subnet-id --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bbbfa5fc-d765-4457-87b9-be0638948ad0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8a28cae3-e5db-e549-a1a5-d42a0d5adfa4\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-18T00:56:15.9872181Z\"\n }" + string: "{\n \"name\": \"fca5bfbb-65d7-5744-87b9-be0638948ad0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:14:38.0766189Z\"\n }" headers: cache-control: - no-cache @@ -971,7 +1137,7 @@ interactions: content-type: - application/json date: - - Sun, 18 Jun 2023 00:56:46 GMT + - Thu, 29 Jun 2023 09:21:40 GMT expires: - '-1' pragma: @@ -1005,14 +1171,14 @@ interactions: --service-principal --client-secret --enable-addons --aci-subnet-name --vnet-subnet-id --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bbbfa5fc-d765-4457-87b9-be0638948ad0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8a28cae3-e5db-e549-a1a5-d42a0d5adfa4\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-18T00:56:15.9872181Z\"\n }" + string: "{\n \"name\": \"fca5bfbb-65d7-5744-87b9-be0638948ad0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:14:38.0766189Z\"\n }" headers: cache-control: - no-cache @@ -1021,7 +1187,7 @@ interactions: content-type: - application/json date: - - Sun, 18 Jun 2023 00:57:16 GMT + - Thu, 29 Jun 2023 09:22:10 GMT expires: - '-1' pragma: @@ -1055,14 +1221,14 @@ interactions: --service-principal --client-secret --enable-addons --aci-subnet-name --vnet-subnet-id --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bbbfa5fc-d765-4457-87b9-be0638948ad0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8a28cae3-e5db-e549-a1a5-d42a0d5adfa4\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-18T00:56:15.9872181Z\"\n }" + string: "{\n \"name\": \"fca5bfbb-65d7-5744-87b9-be0638948ad0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:14:38.0766189Z\"\n }" headers: cache-control: - no-cache @@ -1071,7 +1237,7 @@ interactions: content-type: - application/json date: - - Sun, 18 Jun 2023 00:57:46 GMT + - Thu, 29 Jun 2023 09:22:40 GMT expires: - '-1' pragma: @@ -1105,14 +1271,14 @@ interactions: --service-principal --client-secret --enable-addons --aci-subnet-name --vnet-subnet-id --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bbbfa5fc-d765-4457-87b9-be0638948ad0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8a28cae3-e5db-e549-a1a5-d42a0d5adfa4\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-18T00:56:15.9872181Z\"\n }" + string: "{\n \"name\": \"fca5bfbb-65d7-5744-87b9-be0638948ad0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:14:38.0766189Z\"\n }" headers: cache-control: - no-cache @@ -1121,7 +1287,7 @@ interactions: content-type: - application/json date: - - Sun, 18 Jun 2023 00:58:16 GMT + - Thu, 29 Jun 2023 09:23:10 GMT expires: - '-1' pragma: @@ -1155,14 +1321,14 @@ interactions: --service-principal --client-secret --enable-addons --aci-subnet-name --vnet-subnet-id --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bbbfa5fc-d765-4457-87b9-be0638948ad0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8a28cae3-e5db-e549-a1a5-d42a0d5adfa4\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-18T00:56:15.9872181Z\"\n }" + string: "{\n \"name\": \"fca5bfbb-65d7-5744-87b9-be0638948ad0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:14:38.0766189Z\"\n }" headers: cache-control: - no-cache @@ -1171,7 +1337,7 @@ interactions: content-type: - application/json date: - - Sun, 18 Jun 2023 00:58:47 GMT + - Thu, 29 Jun 2023 09:23:40 GMT expires: - '-1' pragma: @@ -1205,14 +1371,14 @@ interactions: --service-principal --client-secret --enable-addons --aci-subnet-name --vnet-subnet-id --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bbbfa5fc-d765-4457-87b9-be0638948ad0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8a28cae3-e5db-e549-a1a5-d42a0d5adfa4\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-18T00:56:15.9872181Z\"\n }" + string: "{\n \"name\": \"fca5bfbb-65d7-5744-87b9-be0638948ad0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:14:38.0766189Z\"\n }" headers: cache-control: - no-cache @@ -1221,7 +1387,7 @@ interactions: content-type: - application/json date: - - Sun, 18 Jun 2023 00:59:17 GMT + - Thu, 29 Jun 2023 09:24:10 GMT expires: - '-1' pragma: @@ -1255,14 +1421,14 @@ interactions: --service-principal --client-secret --enable-addons --aci-subnet-name --vnet-subnet-id --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bbbfa5fc-d765-4457-87b9-be0638948ad0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8a28cae3-e5db-e549-a1a5-d42a0d5adfa4\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-18T00:56:15.9872181Z\"\n }" + string: "{\n \"name\": \"fca5bfbb-65d7-5744-87b9-be0638948ad0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:14:38.0766189Z\"\n }" headers: cache-control: - no-cache @@ -1271,7 +1437,7 @@ interactions: content-type: - application/json date: - - Sun, 18 Jun 2023 00:59:47 GMT + - Thu, 29 Jun 2023 09:24:41 GMT expires: - '-1' pragma: @@ -1305,15 +1471,15 @@ interactions: --service-principal --client-secret --enable-addons --aci-subnet-name --vnet-subnet-id --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bbbfa5fc-d765-4457-87b9-be0638948ad0?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"fca5bfbb-65d7-5744-87b9-be0638948ad0\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:14:38.0766189Z\",\n \"endTime\": + \"2023-06-29T09:24:55.7534542Z\"\n }" headers: cache-control: - no-cache @@ -1322,7 +1488,7 @@ interactions: content-type: - application/json date: - - Sun, 18 Jun 2023 01:00:17 GMT + - Thu, 29 Jun 2023 09:25:11 GMT expires: - '-1' pragma: @@ -1356,63 +1522,61 @@ interactions: --service-principal --client-secret --enable-addons --aci-subnet-name --vnet-subnet-id --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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\"\ - : 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: - - Sun, 18 Jun 2023 01:00:17 GMT + 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-mrrjrk6v.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000005-mrrjrk6v.portal.hcp.westus2.azmk8s.io\",\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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"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/5cdb8843-9b57-42a3-a99b-f809e6f07831\"\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: + - '3674' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:25:12 GMT expires: - '-1' pragma: @@ -1446,8 +1610,8 @@ interactions: --service-principal --client-secret --enable-addons --aci-subnet-name --vnet-subnet-id --network-plugin User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/clitest.vn000002/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Contributor%27&api-version=2022-04-01 response: @@ -1463,7 +1627,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 18 Jun 2023 01:00:19 GMT + - Thu, 29 Jun 2023 09:25:12 GMT expires: - '-1' pragma: @@ -1497,25 +1661,25 @@ interactions: --service-principal --client-secret --enable-addons --aci-subnet-name --vnet-subnet-id --network-plugin User-Agent: - - python/3.8.16 (macOS-13.4-arm64-arm-64bit) AZURECLI/2.49.0 + - python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) AZURECLI/2.49.0 method: GET - uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27589aab3b-9823-44db-a486-a28799d1a111%27%29 + uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%273fac8b4e-cd90-4baa-a5d2-66d52bc8349d%27%29 response: body: - 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}}]}' + 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}}]}' headers: cache-control: - no-cache content-length: - - '1312' + - '1354' content-type: - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Sun, 18 Jun 2023 01:00:20 GMT + - Thu, 29 Jun 2023 09:25:12 GMT odata-version: - '4.0' request-id: - - f6e4e79e-8303-4897-b14d-2bfc2a049abc + - 919ccb53-0607-4602-808f-c0d3a400863d strict-transport-security: - max-age=31536000 transfer-encoding: @@ -1523,7 +1687,7 @@ interactions: vary: - Accept-Encoding x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"North Central US","Slice":"E","Ring":"3","ScaleUnit":"005","RoleInstance":"CH01EPF000051DB"}}' + - '{"ServerInfo":{"DataCenter":"East US","Slice":"E","Ring":"5","ScaleUnit":"000","RoleInstance":"BL4PEPF0000005E"}}' x-ms-resource-unit: - '1' status: @@ -1552,13 +1716,13 @@ interactions: --service-principal --client-secret --enable-addons --aci-subnet-name --vnet-subnet-id --network-plugin User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/e3479a83-0abb-48dd-a463-0567dc023b28?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/a8c0c85c-ce11-4d90-ba9d-526303629e7c?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-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"}' + 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-29T09:25:13.4381802Z","updatedOn":"2023-06-29T09:25:13.8061817Z","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/a8c0c85c-ce11-4d90-ba9d-526303629e7c","type":"Microsoft.Authorization/roleAssignments","name":"a8c0c85c-ce11-4d90-ba9d-526303629e7c"}' headers: cache-control: - no-cache @@ -1567,7 +1731,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 18 Jun 2023 01:00:23 GMT + - Thu, 29 Jun 2023 09:25:15 GMT expires: - '-1' pragma: @@ -1577,7 +1741,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -1595,63 +1759,61 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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\"\ - : 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: - - Sun, 18 Jun 2023 01:00:25 GMT + 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-mrrjrk6v.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000005-mrrjrk6v.portal.hcp.westus2.azmk8s.io\",\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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"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/5cdb8843-9b57-42a3-a99b-f809e6f07831\"\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: + - '3674' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:25:15 GMT expires: - '-1' pragma: @@ -1683,63 +1845,61 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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\"\ - : 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: - - Sun, 18 Jun 2023 01:00:26 GMT + 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-mrrjrk6v.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000005-mrrjrk6v.portal.hcp.westus2.azmk8s.io\",\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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"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/5cdb8843-9b57-42a3-a99b-f809e6f07831\"\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: + - '3674' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:25:16 GMT expires: - '-1' pragma: @@ -1767,15 +1927,15 @@ 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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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"}]}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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, "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/5cdb8843-9b57-42a3-a99b-f809e6f07831"}]}, "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {"diskCSIDriver": {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": {"enabled": @@ -1790,71 +1950,68 @@ interactions: Connection: - keep-alive Content-Length: - - '2706' + - '2377' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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-mrrjrk6v.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000005-mrrjrk6v.portal.hcp.westus2.azmk8s.io\",\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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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\": {}\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/5cdb8843-9b57-42a3-a99b-f809e6f07831\"\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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1e6abe2b-cf6e-4ac1-887d-1c02ef6e88c2?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3966' + - '3637' content-type: - application/json date: - - Sun, 18 Jun 2023 01:00:31 GMT + - Thu, 29 Jun 2023 09:25:21 GMT expires: - '-1' pragma: @@ -1888,14 +2045,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1e6abe2b-cf6e-4ac1-887d-1c02ef6e88c2?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 }" + string: "{\n \"name\": \"2bbe6a1e-6ecf-c14a-887d-1c02ef6e88c2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:25:21.3752368Z\"\n }" headers: cache-control: - no-cache @@ -1904,7 +2061,7 @@ interactions: content-type: - application/json date: - - Sun, 18 Jun 2023 01:00:32 GMT + - Thu, 29 Jun 2023 09:25:21 GMT expires: - '-1' pragma: @@ -1936,14 +2093,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1e6abe2b-cf6e-4ac1-887d-1c02ef6e88c2?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 }" + string: "{\n \"name\": \"2bbe6a1e-6ecf-c14a-887d-1c02ef6e88c2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:25:21.3752368Z\"\n }" headers: cache-control: - no-cache @@ -1952,7 +2109,7 @@ interactions: content-type: - application/json date: - - Sun, 18 Jun 2023 01:01:03 GMT + - Thu, 29 Jun 2023 09:25:51 GMT expires: - '-1' pragma: @@ -1984,14 +2141,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1e6abe2b-cf6e-4ac1-887d-1c02ef6e88c2?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 }" + string: "{\n \"name\": \"2bbe6a1e-6ecf-c14a-887d-1c02ef6e88c2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:25:21.3752368Z\"\n }" headers: cache-control: - no-cache @@ -2000,7 +2157,7 @@ interactions: content-type: - application/json date: - - Sun, 18 Jun 2023 01:01:32 GMT + - Thu, 29 Jun 2023 09:26:21 GMT expires: - '-1' pragma: @@ -2032,14 +2189,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1e6abe2b-cf6e-4ac1-887d-1c02ef6e88c2?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 }" + string: "{\n \"name\": \"2bbe6a1e-6ecf-c14a-887d-1c02ef6e88c2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:25:21.3752368Z\"\n }" headers: cache-control: - no-cache @@ -2048,7 +2205,7 @@ interactions: content-type: - application/json date: - - Sun, 18 Jun 2023 01:02:02 GMT + - Thu, 29 Jun 2023 09:26:52 GMT expires: - '-1' pragma: @@ -2080,14 +2237,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1e6abe2b-cf6e-4ac1-887d-1c02ef6e88c2?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 }" + string: "{\n \"name\": \"2bbe6a1e-6ecf-c14a-887d-1c02ef6e88c2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:25:21.3752368Z\"\n }" headers: cache-control: - no-cache @@ -2096,7 +2253,7 @@ interactions: content-type: - application/json date: - - Sun, 18 Jun 2023 01:02:32 GMT + - Thu, 29 Jun 2023 09:27:22 GMT expires: - '-1' pragma: @@ -2128,23 +2285,24 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1e6abe2b-cf6e-4ac1-887d-1c02ef6e88c2?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 }" + string: "{\n \"name\": \"2bbe6a1e-6ecf-c14a-887d-1c02ef6e88c2\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:25:21.3752368Z\",\n \"endTime\": + \"2023-06-29T09:27:41.9065684Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '170' content-type: - application/json date: - - Sun, 18 Jun 2023 01:03:03 GMT + - Thu, 29 Jun 2023 09:27:52 GMT expires: - '-1' pragma: @@ -2176,23 +2334,60 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000004?api-version=2023-05-01 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' + 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-mrrjrk6v.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000005-mrrjrk6v.portal.hcp.westus2.azmk8s.io\",\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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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\": {}\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/5cdb8843-9b57-42a3-a99b-f809e6f07831\"\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: + - '3639' content-type: - application/json date: - - Sun, 18 Jun 2023 01:03:33 GMT + - Thu, 29 Jun 2023 09:27:53 GMT expires: - '-1' pragma: @@ -2214,33 +2409,70 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks disable-addons + - aks show Connection: - keep-alive ParameterSetName: - - -a -g -n + - -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000004?api-version=2023-05-01 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' + 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-mrrjrk6v.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000005-mrrjrk6v.portal.hcp.westus2.azmk8s.io\",\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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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\": {}\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/5cdb8843-9b57-42a3-a99b-f809e6f07831\"\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: + - '3639' content-type: - application/json date: - - Sun, 18 Jun 2023 01:04:03 GMT + - Thu, 29 Jun 2023 09:27:55 GMT expires: - '-1' pragma: @@ -2262,33 +2494,70 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks disable-addons + - aks enable-addons Connection: - keep-alive ParameterSetName: - - -a -g -n + - -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000004?api-version=2023-05-01 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' + 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-mrrjrk6v.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000005-mrrjrk6v.portal.hcp.westus2.azmk8s.io\",\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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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\": {}\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/5cdb8843-9b57-42a3-a99b-f809e6f07831\"\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: + - '3639' content-type: - application/json date: - - Sun, 18 Jun 2023 01:04:34 GMT + - Thu, 29 Jun 2023 09:27:55 GMT expires: - '-1' pragma: @@ -2307,36 +2576,102 @@ interactions: code: 200 message: OK - request: - body: null + 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 AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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, "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/5cdb8843-9b57-42a3-a99b-f809e6f07831"}]}, + "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 + - aks enable-addons Connection: - keep-alive + Content-Length: + - '2413' + Content-Type: + - application/json ParameterSetName: - - -a -g -n + - -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/providers/Microsoft.ContainerService/locations/westus2/operations/215dc6c5-c84c-413d-acc7-bbc00cc7dc4f?api-version=2016-03-30 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"name\": \"c5c65d21-4cc8-3d41-acc7-bbc00cc7dc4f\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-18T01:00:32.4565067Z\"\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\": + \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": + \"cliaksdns000005\",\n \"fqdn\": \"cliaksdns000005-mrrjrk6v.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000005-mrrjrk6v.portal.hcp.westus2.azmk8s.io\",\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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"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/5cdb8843-9b57-42a3-a99b-f809e6f07831\"\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/83dca7b3-b2db-459d-ba72-701812db5c7d?api-version=2016-03-30 cache-control: - no-cache content-length: - - '126' + - '3672' content-type: - application/json date: - - Sun, 18 Jun 2023 01:05:04 GMT + - Thu, 29 Jun 2023 09:28:00 GMT expires: - '-1' pragma: @@ -2351,6 +2686,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK @@ -2362,30 +2699,29 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks disable-addons + - aks enable-addons Connection: - keep-alive ParameterSetName: - - -a -g -n + - -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/83dca7b3-b2db-459d-ba72-701812db5c7d?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 }" + string: "{\n \"name\": \"b3a7dc83-dbb2-9d45-ba72-701812db5c7d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:28:00.7193095Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '126' content-type: - application/json date: - - Sun, 18 Jun 2023 01:05:37 GMT + - Thu, 29 Jun 2023 09:28:01 GMT expires: - '-1' pragma: @@ -2411,69 +2747,29 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks disable-addons + - aks enable-addons Connection: - keep-alive ParameterSetName: - - -a -g -n + - -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/83dca7b3-b2db-459d-ba72-701812db5c7d?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.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 + string: "{\n \"name\": \"b3a7dc83-dbb2-9d45-ba72-701812db5c7d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:28:00.7193095Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:28:32 GMT expires: - '-1' pragma: @@ -2495,73 +2791,33 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - aks show + - aks enable-addons Connection: - keep-alive ParameterSetName: - - -g -n + - -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/83dca7b3-b2db-459d-ba72-701812db5c7d?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.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 + string: "{\n \"name\": \"b3a7dc83-dbb2-9d45-ba72-701812db5c7d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:28:00.7193095Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:29:02 GMT expires: - '-1' pragma: @@ -2583,7 +2839,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -2593,63 +2849,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/83dca7b3-b2db-459d-ba72-701812db5c7d?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.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 + string: "{\n \"name\": \"b3a7dc83-dbb2-9d45-ba72-701812db5c7d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:28:00.7193095Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:29:31 GMT expires: - '-1' pragma: @@ -2668,103 +2884,36 @@ interactions: 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": {}}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - aks enable-addons Connection: - keep-alive - Content-Length: - - '2742' - Content-Type: - - application/json 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: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000004?api-version=2023-05-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/83dca7b3-b2db-459d-ba72-701812db5c7d?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.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 }" + string: "{\n \"name\": \"b3a7dc83-dbb2-9d45-ba72-701812db5c7d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:28:00.7193095Z\"\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: - - '4001' + - '126' content-type: - application/json date: - - Sun, 18 Jun 2023 01:05:46 GMT + - Thu, 29 Jun 2023 09:30:01 GMT expires: - '-1' pragma: @@ -2779,8 +2928,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: code: 200 message: OK @@ -2798,14 +2945,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/83dca7b3-b2db-459d-ba72-701812db5c7d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f9070b8e-217e-2348-b5ac-69b6ebb032e7\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-18T01:05:46.0354612Z\"\n }" + string: "{\n \"name\": \"b3a7dc83-dbb2-9d45-ba72-701812db5c7d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:28:00.7193095Z\"\n }" headers: cache-control: - no-cache @@ -2814,7 +2961,7 @@ interactions: content-type: - application/json date: - - Sun, 18 Jun 2023 01:05:46 GMT + - Thu, 29 Jun 2023 09:30:32 GMT expires: - '-1' pragma: @@ -2846,14 +2993,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/83dca7b3-b2db-459d-ba72-701812db5c7d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f9070b8e-217e-2348-b5ac-69b6ebb032e7\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-18T01:05:46.0354612Z\"\n }" + string: "{\n \"name\": \"b3a7dc83-dbb2-9d45-ba72-701812db5c7d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:28:00.7193095Z\"\n }" headers: cache-control: - no-cache @@ -2862,7 +3009,7 @@ interactions: content-type: - application/json date: - - Sun, 18 Jun 2023 01:08:37 GMT + - Thu, 29 Jun 2023 09:31:02 GMT expires: - '-1' pragma: @@ -2894,14 +3041,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/83dca7b3-b2db-459d-ba72-701812db5c7d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f9070b8e-217e-2348-b5ac-69b6ebb032e7\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-18T01:05:46.0354612Z\"\n }" + string: "{\n \"name\": \"b3a7dc83-dbb2-9d45-ba72-701812db5c7d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:28:00.7193095Z\"\n }" headers: cache-control: - no-cache @@ -2910,7 +3057,7 @@ interactions: content-type: - application/json date: - - Sun, 18 Jun 2023 01:09:07 GMT + - Thu, 29 Jun 2023 09:31:32 GMT expires: - '-1' pragma: @@ -2942,14 +3089,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/83dca7b3-b2db-459d-ba72-701812db5c7d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f9070b8e-217e-2348-b5ac-69b6ebb032e7\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-18T01:05:46.0354612Z\"\n }" + string: "{\n \"name\": \"b3a7dc83-dbb2-9d45-ba72-701812db5c7d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:28:00.7193095Z\"\n }" headers: cache-control: - no-cache @@ -2958,7 +3105,7 @@ interactions: content-type: - application/json date: - - Sun, 18 Jun 2023 01:09:37 GMT + - Thu, 29 Jun 2023 09:32:02 GMT expires: - '-1' pragma: @@ -2990,14 +3137,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/83dca7b3-b2db-459d-ba72-701812db5c7d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f9070b8e-217e-2348-b5ac-69b6ebb032e7\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-18T01:05:46.0354612Z\"\n }" + string: "{\n \"name\": \"b3a7dc83-dbb2-9d45-ba72-701812db5c7d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:28:00.7193095Z\"\n }" headers: cache-control: - no-cache @@ -3006,7 +3153,7 @@ interactions: content-type: - application/json date: - - Sun, 18 Jun 2023 01:10:07 GMT + - Thu, 29 Jun 2023 09:32:32 GMT expires: - '-1' pragma: @@ -3038,14 +3185,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/83dca7b3-b2db-459d-ba72-701812db5c7d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f9070b8e-217e-2348-b5ac-69b6ebb032e7\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-18T01:05:46.0354612Z\"\n }" + string: "{\n \"name\": \"b3a7dc83-dbb2-9d45-ba72-701812db5c7d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:28:00.7193095Z\"\n }" headers: cache-control: - no-cache @@ -3054,7 +3201,7 @@ interactions: content-type: - application/json date: - - Sun, 18 Jun 2023 01:10:37 GMT + - Thu, 29 Jun 2023 09:33:02 GMT expires: - '-1' pragma: @@ -3086,14 +3233,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/83dca7b3-b2db-459d-ba72-701812db5c7d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f9070b8e-217e-2348-b5ac-69b6ebb032e7\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-18T01:05:46.0354612Z\"\n }" + string: "{\n \"name\": \"b3a7dc83-dbb2-9d45-ba72-701812db5c7d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:28:00.7193095Z\"\n }" headers: cache-control: - no-cache @@ -3102,7 +3249,7 @@ interactions: content-type: - application/json date: - - Sun, 18 Jun 2023 01:11:17 GMT + - Thu, 29 Jun 2023 09:33:33 GMT expires: - '-1' pragma: @@ -3134,14 +3281,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/83dca7b3-b2db-459d-ba72-701812db5c7d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f9070b8e-217e-2348-b5ac-69b6ebb032e7\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-18T01:05:46.0354612Z\"\n }" + string: "{\n \"name\": \"b3a7dc83-dbb2-9d45-ba72-701812db5c7d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:28:00.7193095Z\"\n }" headers: cache-control: - no-cache @@ -3150,7 +3297,7 @@ interactions: content-type: - application/json date: - - Sun, 18 Jun 2023 01:11:47 GMT + - Thu, 29 Jun 2023 09:34:04 GMT expires: - '-1' pragma: @@ -3182,14 +3329,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/83dca7b3-b2db-459d-ba72-701812db5c7d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f9070b8e-217e-2348-b5ac-69b6ebb032e7\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-18T01:05:46.0354612Z\"\n }" + string: "{\n \"name\": \"b3a7dc83-dbb2-9d45-ba72-701812db5c7d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:28:00.7193095Z\"\n }" headers: cache-control: - no-cache @@ -3198,7 +3345,7 @@ interactions: content-type: - application/json date: - - Sun, 18 Jun 2023 01:12:18 GMT + - Thu, 29 Jun 2023 09:34:33 GMT expires: - '-1' pragma: @@ -3230,14 +3377,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/83dca7b3-b2db-459d-ba72-701812db5c7d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f9070b8e-217e-2348-b5ac-69b6ebb032e7\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-18T01:05:46.0354612Z\"\n }" + string: "{\n \"name\": \"b3a7dc83-dbb2-9d45-ba72-701812db5c7d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:28:00.7193095Z\"\n }" headers: cache-control: - no-cache @@ -3246,7 +3393,7 @@ interactions: content-type: - application/json date: - - Sun, 18 Jun 2023 01:12:48 GMT + - Thu, 29 Jun 2023 09:35:03 GMT expires: - '-1' pragma: @@ -3278,15 +3425,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/83dca7b3-b2db-459d-ba72-701812db5c7d?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"b3a7dc83-dbb2-9d45-ba72-701812db5c7d\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:28:00.7193095Z\",\n \"endTime\": + \"2023-06-29T09:35:22.5675316Z\"\n }" headers: cache-control: - no-cache @@ -3295,7 +3442,7 @@ interactions: content-type: - application/json date: - - Sun, 18 Jun 2023 02:09:05 GMT + - Thu, 29 Jun 2023 09:35:34 GMT expires: - '-1' pragma: @@ -3327,66 +3474,61 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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\"\ - : 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: - - Sun, 18 Jun 2023 02:09:06 GMT + 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-mrrjrk6v.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000005-mrrjrk6v.portal.hcp.westus2.azmk8s.io\",\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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"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/5cdb8843-9b57-42a3-a99b-f809e6f07831\"\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: + - '3674' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:35:34 GMT expires: - '-1' pragma: @@ -3418,8 +3560,8 @@ interactions: ParameterSetName: - -a -g -n --subnet-name User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/clitest.vn000002/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Contributor%27&api-version=2022-04-01 response: @@ -3435,7 +3577,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 18 Jun 2023 02:09:07 GMT + - Thu, 29 Jun 2023 09:35:34 GMT expires: - '-1' pragma: @@ -3467,25 +3609,25 @@ interactions: ParameterSetName: - -a -g -n --subnet-name User-Agent: - - python/3.8.16 (macOS-13.4-arm64-arm-64bit) AZURECLI/2.49.0 + - python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) AZURECLI/2.49.0 method: GET - uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27589aab3b-9823-44db-a486-a28799d1a111%27%29 + uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%273fac8b4e-cd90-4baa-a5d2-66d52bc8349d%27%29 response: body: - 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}}]}' + 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}}]}' headers: cache-control: - no-cache content-length: - - '1312' + - '1354' content-type: - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Sun, 18 Jun 2023 02:09:08 GMT + - Thu, 29 Jun 2023 09:35:35 GMT odata-version: - '4.0' request-id: - - 6857cbb8-ce64-4f97-b8f7-180fe8211d8c + - 01e91dbd-d169-4591-8306-7b62e098ec1f strict-transport-security: - max-age=31536000 transfer-encoding: @@ -3493,7 +3635,7 @@ interactions: vary: - Accept-Encoding x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"North Central US","Slice":"E","Ring":"3","ScaleUnit":"000","RoleInstance":"CH01EPF0000731A"}}' + - '{"ServerInfo":{"DataCenter":"East US","Slice":"E","Ring":"5","ScaleUnit":"001","RoleInstance":"MN1PEPF00002D04"}}' x-ms-resource-unit: - '1' status: @@ -3520,10 +3662,10 @@ interactions: ParameterSetName: - -a -g -n --subnet-name User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/c3bb67b3-1dc8-4b08-abdf-2d74909733c6?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/f323fcb5-bf7d-408f-935e-1fa519de0559?api-version=2022-04-01 response: body: string: '{"error":{"code":"RoleAssignmentExists","message":"The role assignment @@ -3536,7 +3678,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 18 Jun 2023 02:09:09 GMT + - Thu, 29 Jun 2023 09:35:35 GMT expires: - '-1' pragma: @@ -3564,66 +3706,61 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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\"\ - : 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: - - Sun, 18 Jun 2023 02:09:11 GMT + 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-mrrjrk6v.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000005-mrrjrk6v.portal.hcp.westus2.azmk8s.io\",\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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"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/5cdb8843-9b57-42a3-a99b-f809e6f07831\"\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: + - '3674' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:35:37 GMT expires: - '-1' pragma: @@ -3657,8 +3794,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/cliakstest000004?api-version=2023-05-01 response: @@ -3666,17 +3803,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d995c1ff-5aea-45b0-9944-3cad1d66547b?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Sun, 18 Jun 2023 02:09:13 GMT + - Thu, 29 Jun 2023 09:35:37 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/d995c1ff-5aea-45b0-9944-3cad1d66547b?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_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 index 6741094c497..ee20787ba15 100644 --- 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,12 +13,12 @@ interactions: ParameterSetName: - -n -g --address-prefix --subnet-name --subnet-prefix User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1039-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_default_service_without_skip_role_assignment","date":"2023-06-14T21:15:48Z","module":"acs"},"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-29T09:40:36Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 21:15:54 GMT + - Thu, 29 Jun 2023 09:40:37 GMT expires: - '-1' pragma: @@ -61,32 +61,30 @@ interactions: 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) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-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/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/\\\"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}" + 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/\\\"ccc19ebc-4abe-4604-bdaf-3d72e052bf87\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": + \"d9fe7c09-0f34-4e1f-8444-65c91cfacc96\",\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/\\\"ccc19ebc-4abe-4604-bdaf-3d72e052bf87\\\"\",\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/e0257230-761d-4644-9add-20c69a2701d0?api-version=2022-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/1ac454e6-0e0a-4acb-9d9f-73d507c98389?api-version=2022-01-01 cache-control: - no-cache content-length: @@ -94,7 +92,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 21:15:56 GMT + - Thu, 29 Jun 2023 09:40:39 GMT expires: - '-1' pragma: @@ -107,7 +105,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 716b44d2-33d5-440c-bd47-bac460d85f32 + - c64e4c58-9a5a-42cd-8d85-6a3c1937c66a x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -127,9 +125,9 @@ interactions: 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) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/1ac454e6-0e0a-4acb-9d9f-73d507c98389?api-version=2022-01-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -141,7 +139,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 21:15:56 GMT + - Thu, 29 Jun 2023 09:40:39 GMT expires: - '-1' pragma: @@ -151,14 +149,10 @@ interactions: - 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 + - c931f563-56a6-4b7a-9fc4-ff4add65328d status: code: 200 message: OK @@ -176,9 +170,9 @@ interactions: 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) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/1ac454e6-0e0a-4acb-9d9f-73d507c98389?api-version=2022-01-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -190,7 +184,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 21:16:06 GMT + - Thu, 29 Jun 2023 09:40:49 GMT expires: - '-1' pragma: @@ -200,14 +194,10 @@ interactions: - 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: - - 90bd7755-6c22-4194-aa35-81c20618fed0 + - b82975ba-3f23-43bf-a2f8-b722e9a83eaf status: code: 200 message: OK @@ -225,27 +215,25 @@ interactions: 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) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-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/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/\\\"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}" + 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/\\\"f3f78636-3f46-4355-b8c5-c0bb26af31ae\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": + \"d9fe7c09-0f34-4e1f-8444-65c91cfacc96\",\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/\\\"f3f78636-3f46-4355-b8c5-c0bb26af31ae\\\"\",\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 @@ -254,9 +242,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 21:16:06 GMT + - Thu, 29 Jun 2023 09:40:50 GMT etag: - - W/"42300ccc-9f55-495a-958a-a2b227182e60" + - W/"f3f78636-3f46-4355-b8c5-c0bb26af31ae" expires: - '-1' pragma: @@ -266,14 +254,10 @@ interactions: - 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: - - b13ad944-96a6-442a-8279-e0e9020bdaaa + - 8db55306-53bd-4c74-8fb9-e5f705cc4b48 status: code: 200 message: OK @@ -292,8 +276,8 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -309,7 +293,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 21:16:08 GMT + - Thu, 29 Jun 2023 09:40:50 GMT expires: - '-1' pragma: @@ -338,38 +322,22 @@ interactions: - --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-authorization/3.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/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/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"}]}' + 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"},{"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: - - '787085' + - '67809' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 21:16:08 GMT + - Thu, 29 Jun 2023 09:40:50 GMT expires: - '-1' pragma: @@ -402,8 +370,8 @@ interactions: - --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-authorization/3.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/clivnet000004/subnets/clisubnet000005/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Network%20Contributor%27&api-version=2022-04-01 response: @@ -418,7 +386,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 21:16:10 GMT + - Thu, 29 Jun 2023 09:40:50 GMT expires: - '-1' pragma: @@ -451,25 +419,25 @@ interactions: - --resource-group --name --location --node-count --service-principal --client-secret --vnet-subnet-id --no-ssh-key User-Agent: - - python/3.8.16 (macOS-13.4-arm64-arm-64bit) AZURECLI/2.49.0 + - python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) AZURECLI/2.49.0 method: GET - uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27eb533a58-db68-4a4e-b8b4-1abd93a5c11e%27%29 + uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%273fac8b4e-cd90-4baa-a5d2-66d52bc8349d%27%29 response: body: - 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}}]}' + 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}}]}' headers: cache-control: - no-cache content-length: - - '1312' + - '1354' content-type: - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Wed, 14 Jun 2023 21:16:11 GMT + - Thu, 29 Jun 2023 09:40:50 GMT odata-version: - '4.0' request-id: - - 904c3852-7410-4c60-892e-47b7bd3b191e + - c0b86949-b62f-4d3e-b4ff-10ab07468935 strict-transport-security: - max-age=31536000 transfer-encoding: @@ -477,7 +445,7 @@ interactions: vary: - Accept-Encoding x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"North Central US","Slice":"E","Ring":"3","ScaleUnit":"004","RoleInstance":"CH01EPF00016349"}}' + - '{"ServerInfo":{"DataCenter":"East US","Slice":"E","Ring":"5","ScaleUnit":"001","RoleInstance":"MN1PEPF00002F29"}}' x-ms-resource-unit: - '1' status: @@ -505,13 +473,13 @@ interactions: - --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-authorization/3.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/clivnet000004/subnets/clisubnet000005/providers/Microsoft.Authorization/roleAssignments/0a597482-2658-451c-bc34-11ed8a1180db?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/e791355d-1134-4dd9-acce-6c39ab67bd7a?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-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"}' + 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-29T09:40:51.6317964Z","updatedOn":"2023-06-29T09:40:52.0688037Z","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/e791355d-1134-4dd9-acce-6c39ab67bd7a","type":"Microsoft.Authorization/roleAssignments","name":"e791355d-1134-4dd9-acce-6c39ab67bd7a"}' headers: cache-control: - no-cache @@ -520,7 +488,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 21:16:14 GMT + - Thu, 29 Jun 2023 09:40:52 GMT expires: - '-1' pragma: @@ -536,7 +504,7 @@ interactions: message: Created - request: body: '{"location": "westus2", "properties": {"kubernetesVersion": "", "dnsPrefix": - "cliakstest-clitestubb6jek5g-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": + "cliakstest-clitestbntfuoker-79a739", "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": @@ -564,51 +532,48 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-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.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 }" + 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-clitestbntfuoker-79a739\",\n \"fqdn\": \"cliakstest-clitestbntfuoker-79a739-88kmsy4s.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestbntfuoker-79a739-88kmsy4s.portal.hcp.westus2.azmk8s.io\",\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.19.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/dfd61693-b6b7-480f-a9a2-ae394aecdd24?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2e988ea6-e6c4-4454-96c6-07852eea7eee?api-version=2016-03-30 cache-control: - no-cache content-length: @@ -616,7 +581,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 21:16:23 GMT + - Thu, 29 Jun 2023 09:41:01 GMT expires: - '-1' pragma: @@ -647,14 +612,112 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2e988ea6-e6c4-4454-96c6-07852eea7eee?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"a68e982e-c4e6-5444-96c6-07852eea7eee\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:41:01.0807356Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:41: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 --service-principal --client-secret + --vnet-subnet-id --no-ssh-key + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2e988ea6-e6c4-4454-96c6-07852eea7eee?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"a68e982e-c4e6-5444-96c6-07852eea7eee\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:41:01.0807356Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:41: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 --service-principal --client-secret + --vnet-subnet-id --no-ssh-key + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2e988ea6-e6c4-4454-96c6-07852eea7eee?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9316d6df-b7b6-0f48-a9a2-ae394aecdd24\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T21:16:23.0298198Z\"\n }" + string: "{\n \"name\": \"a68e982e-c4e6-5444-96c6-07852eea7eee\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:41:01.0807356Z\"\n }" headers: cache-control: - no-cache @@ -663,7 +726,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 21:16:23 GMT + - Thu, 29 Jun 2023 09:42:01 GMT expires: - '-1' pragma: @@ -696,14 +759,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2e988ea6-e6c4-4454-96c6-07852eea7eee?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9316d6df-b7b6-0f48-a9a2-ae394aecdd24\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T21:16:23.0298198Z\"\n }" + string: "{\n \"name\": \"a68e982e-c4e6-5444-96c6-07852eea7eee\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:41:01.0807356Z\"\n }" headers: cache-control: - no-cache @@ -712,7 +775,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 21:16:54 GMT + - Thu, 29 Jun 2023 09:42:31 GMT expires: - '-1' pragma: @@ -745,14 +808,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2e988ea6-e6c4-4454-96c6-07852eea7eee?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9316d6df-b7b6-0f48-a9a2-ae394aecdd24\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T21:16:23.0298198Z\"\n }" + string: "{\n \"name\": \"a68e982e-c4e6-5444-96c6-07852eea7eee\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:41:01.0807356Z\"\n }" headers: cache-control: - no-cache @@ -761,7 +824,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 21:17:24 GMT + - Thu, 29 Jun 2023 09:43:02 GMT expires: - '-1' pragma: @@ -794,14 +857,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2e988ea6-e6c4-4454-96c6-07852eea7eee?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9316d6df-b7b6-0f48-a9a2-ae394aecdd24\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T21:16:23.0298198Z\"\n }" + string: "{\n \"name\": \"a68e982e-c4e6-5444-96c6-07852eea7eee\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:41:01.0807356Z\"\n }" headers: cache-control: - no-cache @@ -810,7 +873,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 21:17:54 GMT + - Thu, 29 Jun 2023 09:43:32 GMT expires: - '-1' pragma: @@ -843,14 +906,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2e988ea6-e6c4-4454-96c6-07852eea7eee?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9316d6df-b7b6-0f48-a9a2-ae394aecdd24\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T21:16:23.0298198Z\"\n }" + string: "{\n \"name\": \"a68e982e-c4e6-5444-96c6-07852eea7eee\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:41:01.0807356Z\"\n }" headers: cache-control: - no-cache @@ -859,7 +922,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 21:18:24 GMT + - Thu, 29 Jun 2023 09:44:02 GMT expires: - '-1' pragma: @@ -892,14 +955,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2e988ea6-e6c4-4454-96c6-07852eea7eee?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9316d6df-b7b6-0f48-a9a2-ae394aecdd24\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T21:16:23.0298198Z\"\n }" + string: "{\n \"name\": \"a68e982e-c4e6-5444-96c6-07852eea7eee\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:41:01.0807356Z\"\n }" headers: cache-control: - no-cache @@ -908,7 +971,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 21:18:54 GMT + - Thu, 29 Jun 2023 09:44:32 GMT expires: - '-1' pragma: @@ -941,14 +1004,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2e988ea6-e6c4-4454-96c6-07852eea7eee?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9316d6df-b7b6-0f48-a9a2-ae394aecdd24\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T21:16:23.0298198Z\"\n }" + string: "{\n \"name\": \"a68e982e-c4e6-5444-96c6-07852eea7eee\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:41:01.0807356Z\"\n }" headers: cache-control: - no-cache @@ -957,7 +1020,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 21:19:24 GMT + - Thu, 29 Jun 2023 09:45:02 GMT expires: - '-1' pragma: @@ -990,15 +1053,64 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2e988ea6-e6c4-4454-96c6-07852eea7eee?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 }" + string: "{\n \"name\": \"a68e982e-c4e6-5444-96c6-07852eea7eee\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:41:01.0807356Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:45: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 --node-count --service-principal --client-secret + --vnet-subnet-id --no-ssh-key + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2e988ea6-e6c4-4454-96c6-07852eea7eee?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"a68e982e-c4e6-5444-96c6-07852eea7eee\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:41:01.0807356Z\",\n \"endTime\": + \"2023-06-29T09:45:56.285388Z\"\n }" headers: cache-control: - no-cache @@ -1007,7 +1119,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 21:19:54 GMT + - Thu, 29 Jun 2023 09:46:02 GMT expires: - '-1' pragma: @@ -1040,50 +1152,46 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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-clitestbntfuoker-79a739\",\n \"fqdn\": \"cliakstest-clitestbntfuoker-79a739-88kmsy4s.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestbntfuoker-79a739-88kmsy4s.portal.hcp.westus2.azmk8s.io\",\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.19.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/4fb120b4-b69f-4e82-b6fd-5f563ad169a6\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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 @@ -1092,7 +1200,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 21:19:54 GMT + - Thu, 29 Jun 2023 09:46:03 GMT expires: - '-1' pragma: @@ -1124,38 +1232,22 @@ interactions: ParameterSetName: - --scope User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/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/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"}]}' + 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-06-29T09:40:52.0688037Z","updatedOn":"2023-06-29T09:40:52.0688037Z","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/e791355d-1134-4dd9-acce-6c39ab67bd7a","type":"Microsoft.Authorization/roleAssignments","name":"e791355d-1134-4dd9-acce-6c39ab67bd7a"},{"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"},{"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: - - '788165' + - '68889' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 21:19:56 GMT + - Thu, 29 Jun 2023 09:46:03 GMT expires: - '-1' pragma: @@ -1189,5675 +1281,1026 @@ interactions: ParameterSetName: - --scope User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/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\":\"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\"\ - }]}" + 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/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\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.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\",\"Microsoft.DesktopVirtualization/appAttachPackages/useApplications/action\"],\"notDataActions\":[]}],\"createdOn\":\"2019-08-07T00:29:03.8727621Z\",\"updatedOn\":\"2023-06-15T23:55:51.3849931Z\",\"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.IoTFirmwareDefense/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-05-03T07:51:23.0917487Z\",\"updatedOn\":\"2023-06-27T15:20:21.4401023Z\",\"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/devboxes/userActionRead/action\",\"Microsoft.DevCenter/projects/users/devboxes/userActionManage/action\",\"Microsoft.DevCenter/projects/users/environments/adminRead/action\",\"Microsoft.DevCenter/projects/users/environments/userWrite/action\",\"Microsoft.DevCenter/projects/users/environments/adminWrite/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-22T18:14:58.4251434Z\",\"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.Network/virtualNetworks/usages/read\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.Network/networkSecurityGroups/read\",\"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\":\"2023-06-16T20:18:16.8946615Z\",\"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.Workloads/connectors/*/read\",\"Microsoft.Workloads/connectors/*/write\",\"Microsoft.Workloads/connectors/*/delete\",\"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-21T15:30:31.2294248Z\",\"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\":\"AppGw + for Containers Configuration Manager\",\"type\":\"BuiltInRole\",\"description\":\"Allows + access and configuration updates to Application Gateway for Containers resource.\",\"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\":\"2023-06-28T21:27:14.7926625Z\",\"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\":\"Windows365 + Network User\",\"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-06-23T04:26:24.5737000Z\",\"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\":\"Windows365 + Network Interface Contributor\",\"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-23T04:26:24.5747004Z\",\"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\"},{\"properties\":{\"roleName\":\"Key + Vault Data Access Administrator (preview)\",\"type\":\"BuiltInRole\",\"description\":\"Add + or remove key vault data plane role assignments and read resources of all + types, except secrets. Includes an ABAC condition to constrain role assignments.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/roleAssignments/write\",\"Microsoft.Authorization/roleAssignments/delete\",\"*/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-06-20T22:26:01.6619210Z\",\"updatedOn\":\"2023-06-20T22:26:01.6619210Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8b54135c-b56d-4d72-a534-26097cfdc8d8\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8b54135c-b56d-4d72-a534-26097cfdc8d8\"},{\"properties\":{\"roleName\":\"Storage + Data Scanner\",\"type\":\"BuiltInRole\",\"description\":\"Grants all permissions + needed for a storage data scanner.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-06-21T15:30:31.2244258Z\",\"updatedOn\":\"2023-06-21T15:30:31.2244258Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/1e7ca9b1-60d1-4db8-a914-f2ca1ff27c40\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"1e7ca9b1-60d1-4db8-a914-f2ca1ff27c40\"}]}" headers: cache-control: - no-cache content-length: - - '516008' + - '508928' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 21:19:56 GMT + - Thu, 29 Jun 2023 09:46:03 GMT expires: - '-1' pragma: @@ -6874,7 +2317,7 @@ interactions: code: 200 message: OK - request: - body: '{"ids": ["f874a9b2-feb3-475f-a306-27720ae6be3d"], "types": ["user", "group", + body: '{"ids": ["119e1aeb-4592-42d6-9507-c66df857924f"], "types": ["user", "group", "servicePrincipal", "directoryObjectPartnerReference"]}' headers: Accept: @@ -6892,27 +2335,27 @@ interactions: ParameterSetName: - --scope User-Agent: - - python/3.8.16 (macOS-13.4-arm64-arm-64bit) AZURECLI/2.49.0 + - python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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":"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}}]}' + 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}}]}' headers: cache-control: - no-cache content-length: - - '1361' + - '1403' content-type: - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Wed, 14 Jun 2023 21:19:57 GMT + - Thu, 29 Jun 2023 09:46:04 GMT location: - https://graph.microsoft.com odata-version: - '4.0' request-id: - - 265e2210-cd46-4bcc-959b-8915136db1e3 + - ea980eba-627b-4711-adef-a37596a48295 strict-transport-security: - max-age=31536000 transfer-encoding: @@ -6920,7 +2363,7 @@ interactions: vary: - Accept-Encoding x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"North Central US","Slice":"E","Ring":"3","ScaleUnit":"000","RoleInstance":"CH01EPF0001E8E1"}}' + - '{"ServerInfo":{"DataCenter":"East US","Slice":"E","Ring":"5","ScaleUnit":"004","RoleInstance":"BL02EPF00011F26"}}' x-ms-resource-unit: - '3' status: @@ -6941,8 +2384,8 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/cliakstest000006?api-version=2023-05-01 response: @@ -6958,7 +2401,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 21:19:57 GMT + - Thu, 29 Jun 2023 09:46:04 GMT expires: - '-1' pragma: @@ -6987,38 +2430,22 @@ interactions: - --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-authorization/3.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/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/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"}]}' + 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-06-29T09:40:52.0688037Z","updatedOn":"2023-06-29T09:40:52.0688037Z","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/e791355d-1134-4dd9-acce-6c39ab67bd7a","type":"Microsoft.Authorization/roleAssignments","name":"e791355d-1134-4dd9-acce-6c39ab67bd7a"},{"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"},{"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: - - '788165' + - '68889' content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 21:19:58 GMT + - Thu, 29 Jun 2023 09:46:05 GMT expires: - '-1' pragma: @@ -7038,7 +2465,7 @@ interactions: message: OK - request: body: '{"location": "westus2", "properties": {"kubernetesVersion": "", "dnsPrefix": - "cliakstest-clitestubb6jek5g-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": + "cliakstest-clitestbntfuoker-79a739", "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": @@ -7066,51 +2493,48 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/cliakstest000006?api-version=2023-05-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.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 }" + 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-clitestbntfuoker-79a739\",\n \"fqdn\": \"cliakstest-clitestbntfuoker-79a739-znh8urgh.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestbntfuoker-79a739-znh8urgh.portal.hcp.westus2.azmk8s.io\",\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.19.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/ae012c21-f92d-4e8c-beed-c17540716d5b?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ff99e51-c809-4cf8-bc43-caa34b2fe2ea?api-version=2016-03-30 cache-control: - no-cache content-length: @@ -7118,7 +2542,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 21:20:08 GMT + - Thu, 29 Jun 2023 09:46:13 GMT expires: - '-1' pragma: @@ -7130,7 +2554,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -7149,14 +2573,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ff99e51-c809-4cf8-bc43-caa34b2fe2ea?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 }" + string: "{\n \"name\": \"519ef99f-09c8-f84c-bc43-caa34b2fe2ea\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:46:13.4096492Z\"\n }" headers: cache-control: - no-cache @@ -7165,7 +2589,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 21:20:08 GMT + - Thu, 29 Jun 2023 09:46:13 GMT expires: - '-1' pragma: @@ -7198,14 +2622,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ff99e51-c809-4cf8-bc43-caa34b2fe2ea?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 }" + string: "{\n \"name\": \"519ef99f-09c8-f84c-bc43-caa34b2fe2ea\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:46:13.4096492Z\"\n }" headers: cache-control: - no-cache @@ -7214,7 +2638,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 21:20:38 GMT + - Thu, 29 Jun 2023 09:46:43 GMT expires: - '-1' pragma: @@ -7247,14 +2671,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ff99e51-c809-4cf8-bc43-caa34b2fe2ea?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 }" + string: "{\n \"name\": \"519ef99f-09c8-f84c-bc43-caa34b2fe2ea\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:46:13.4096492Z\"\n }" headers: cache-control: - no-cache @@ -7263,7 +2687,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 21:21:08 GMT + - Thu, 29 Jun 2023 09:47:13 GMT expires: - '-1' pragma: @@ -7296,14 +2720,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ff99e51-c809-4cf8-bc43-caa34b2fe2ea?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 }" + string: "{\n \"name\": \"519ef99f-09c8-f84c-bc43-caa34b2fe2ea\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:46:13.4096492Z\"\n }" headers: cache-control: - no-cache @@ -7312,7 +2736,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 21:21:38 GMT + - Thu, 29 Jun 2023 09:47:44 GMT expires: - '-1' pragma: @@ -7345,14 +2769,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ff99e51-c809-4cf8-bc43-caa34b2fe2ea?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 }" + string: "{\n \"name\": \"519ef99f-09c8-f84c-bc43-caa34b2fe2ea\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:46:13.4096492Z\"\n }" headers: cache-control: - no-cache @@ -7361,7 +2785,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 21:22:09 GMT + - Thu, 29 Jun 2023 09:48:14 GMT expires: - '-1' pragma: @@ -7394,14 +2818,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ff99e51-c809-4cf8-bc43-caa34b2fe2ea?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 }" + string: "{\n \"name\": \"519ef99f-09c8-f84c-bc43-caa34b2fe2ea\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:46:13.4096492Z\"\n }" headers: cache-control: - no-cache @@ -7410,7 +2834,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 21:22:39 GMT + - Thu, 29 Jun 2023 09:48:43 GMT expires: - '-1' pragma: @@ -7443,14 +2867,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ff99e51-c809-4cf8-bc43-caa34b2fe2ea?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 }" + string: "{\n \"name\": \"519ef99f-09c8-f84c-bc43-caa34b2fe2ea\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:46:13.4096492Z\"\n }" headers: cache-control: - no-cache @@ -7459,7 +2883,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 21:23:09 GMT + - Thu, 29 Jun 2023 09:49:14 GMT expires: - '-1' pragma: @@ -7492,14 +2916,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ff99e51-c809-4cf8-bc43-caa34b2fe2ea?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 }" + string: "{\n \"name\": \"519ef99f-09c8-f84c-bc43-caa34b2fe2ea\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:46:13.4096492Z\"\n }" headers: cache-control: - no-cache @@ -7508,7 +2932,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 21:23:39 GMT + - Thu, 29 Jun 2023 09:49:44 GMT expires: - '-1' pragma: @@ -7541,14 +2965,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ff99e51-c809-4cf8-bc43-caa34b2fe2ea?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 }" + string: "{\n \"name\": \"519ef99f-09c8-f84c-bc43-caa34b2fe2ea\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:46:13.4096492Z\"\n }" headers: cache-control: - no-cache @@ -7557,7 +2981,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 21:24:09 GMT + - Thu, 29 Jun 2023 09:50:14 GMT expires: - '-1' pragma: @@ -7590,15 +3014,15 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ff99e51-c809-4cf8-bc43-caa34b2fe2ea?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"519ef99f-09c8-f84c-bc43-caa34b2fe2ea\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:46:13.4096492Z\",\n \"endTime\": + \"2023-06-29T09:50:43.2237071Z\"\n }" headers: cache-control: - no-cache @@ -7607,7 +3031,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 21:24:39 GMT + - Thu, 29 Jun 2023 09:50:44 GMT expires: - '-1' pragma: @@ -7640,50 +3064,46 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/cliakstest000006?api-version=2023-05-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.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 }" + 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-clitestbntfuoker-79a739\",\n \"fqdn\": \"cliakstest-clitestbntfuoker-79a739-znh8urgh.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestbntfuoker-79a739-znh8urgh.portal.hcp.westus2.azmk8s.io\",\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.19.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/c4b20d7b-6cdf-4571-834b-9e5774f08980\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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 @@ -7692,7 +3112,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 21:24:40 GMT + - Thu, 29 Jun 2023 09:50:45 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 index 1f7aa974ece..a1c0aa7bf55 100644 --- 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 21:24:52 GMT + - Thu, 29 Jun 2023 09:36:16 GMT expires: - '-1' pragma: @@ -53,8 +53,8 @@ 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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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", + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": @@ -69,33 +69,66 @@ interactions: Connection: - keep-alive Content-Length: - - '1796' + - '1467' 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - 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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-12rnwob6.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-12rnwob6.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/ae38cd21-0a0f-4422-bd35-d87eb86e2cad?api-version=2016-03-30 cache-control: - no-cache content-length: - - '313' + - '3049' content-type: - application/json date: - - Wed, 14 Jun 2023 21:24:57 GMT + - Thu, 29 Jun 2023 09:36:22 GMT expires: - '-1' pragma: @@ -107,95 +140,241 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: - code: 404 - message: Not Found + code: 201 + message: Created - 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": {}}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks wait Connection: - keep-alive - Content-Length: - - '1796' - Content-Type: + ParameterSetName: + - -g -n --created + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-12rnwob6.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-12rnwob6.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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: + - '3049' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:36: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: + - 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-12rnwob6.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-12rnwob6.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/25cefeab-7fe7-493e-aa28-205b383258c3\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: + - '3311' + content-type: - application/json + date: + - Thu, 29 Jun 2023 09:36: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: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks wait + Connection: + - keep-alive ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --service-principal --client-secret --no-wait + - -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: PUT + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-12rnwob6.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-12rnwob6.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/25cefeab-7fe7-493e-aa28-205b383258c3\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3378' + - '3311' content-type: - application/json date: - - Wed, 14 Jun 2023 21:25:05 GMT + - Thu, 29 Jun 2023 09:37:24 GMT expires: - '-1' pragma: @@ -204,13 +383,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: @@ -225,58 +406,58 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-12rnwob6.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-12rnwob6.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/25cefeab-7fe7-493e-aa28-205b383258c3\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3378' + - '3311' content-type: - application/json date: - - Wed, 14 Jun 2023 21:25:08 GMT + - Thu, 29 Jun 2023 09:37:55 GMT expires: - '-1' pragma: @@ -308,60 +489,58 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-12rnwob6.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-12rnwob6.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/25cefeab-7fe7-493e-aa28-205b383258c3\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3640' + - '3311' content-type: - application/json date: - - Wed, 14 Jun 2023 21:25:38 GMT + - Thu, 29 Jun 2023 09:38:26 GMT expires: - '-1' pragma: @@ -393,60 +572,58 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-12rnwob6.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-12rnwob6.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/25cefeab-7fe7-493e-aa28-205b383258c3\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3640' + - '3311' content-type: - application/json date: - - Wed, 14 Jun 2023 21:26:09 GMT + - Thu, 29 Jun 2023 09:38:56 GMT expires: - '-1' pragma: @@ -478,60 +655,58 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-12rnwob6.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-12rnwob6.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/25cefeab-7fe7-493e-aa28-205b383258c3\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3640' + - '3311' content-type: - application/json date: - - Wed, 14 Jun 2023 21:26:40 GMT + - Thu, 29 Jun 2023 09:39:26 GMT expires: - '-1' pragma: @@ -563,60 +738,58 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-12rnwob6.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-12rnwob6.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/25cefeab-7fe7-493e-aa28-205b383258c3\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3640' + - '3311' content-type: - application/json date: - - Wed, 14 Jun 2023 21:27:11 GMT + - Thu, 29 Jun 2023 09:39:57 GMT expires: - '-1' pragma: @@ -648,60 +821,58 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-12rnwob6.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-12rnwob6.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/25cefeab-7fe7-493e-aa28-205b383258c3\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3640' + - '3311' content-type: - application/json date: - - Wed, 14 Jun 2023 21:27:41 GMT + - Thu, 29 Jun 2023 09:40:27 GMT expires: - '-1' pragma: @@ -733,60 +904,58 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-12rnwob6.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-12rnwob6.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/25cefeab-7fe7-493e-aa28-205b383258c3\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3642' + - '3313' content-type: - application/json date: - - Wed, 14 Jun 2023 21:28:11 GMT + - Thu, 29 Jun 2023 09:40:58 GMT expires: - '-1' pragma: @@ -818,65 +987,60 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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-12rnwob6.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-12rnwob6.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": + 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n + \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/25cefeab-7fe7-493e-aa28-205b383258c3\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": + [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": + false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": + {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\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: - - '3885' + - '3556' content-type: - application/json date: - - Wed, 14 Jun 2023 21:28:14 GMT + - Thu, 29 Jun 2023 09:40:59 GMT expires: - '-1' pragma: @@ -908,65 +1072,60 @@ interactions: ParameterSetName: - -g -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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-12rnwob6.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-12rnwob6.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": + 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n + \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/25cefeab-7fe7-493e-aa28-205b383258c3\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": + [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": + false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": + {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\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: - - '3885' + - '3556' content-type: - application/json date: - - Wed, 14 Jun 2023 21:28:15 GMT + - Thu, 29 Jun 2023 09:41:00 GMT expires: - '-1' pragma: @@ -998,60 +1157,58 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-12rnwob6.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-12rnwob6.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/25cefeab-7fe7-493e-aa28-205b383258c3\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3642' + - '3313' content-type: - application/json date: - - Wed, 14 Jun 2023 21:28:17 GMT + - Thu, 29 Jun 2023 09:41:00 GMT expires: - '-1' pragma: @@ -1085,24 +1242,24 @@ interactions: ParameterSetName: - -g -n --file User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ - \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSUzFSV1FVeE1Xbll3Umt4aVpEbDZXREZRZVc4clZFRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxVVVYbE5WRVV4VFdwc1lVZEJPSGxOUkZWNlRVUlplRTVFU1hoTmFsVjVUMVp2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVSRkNqRm5VVmgwT1V4cU9HVkRVeTlNU1VGRFNFWTJjVEpEUTNScE1YQmliV2hMTlhOUlNrMHlZaTlhYzBOVlkwZ3dOR3g2TmpZMlQyZzJSWE16ZERWYVdsb0tUV0ZrUlZWV1kxRk9VVkV6YmpsSlNIcDVXbU5vVW5aclVEQkRSRWxpYTJKb2IxcFZjMGxWT1dKWlVqUldXVkprYW1JeVRYQlRSVmhKV0ZBdkwwNXhaQW80Y0VaMVVISnFORlZyTlVkSlFrUjZlR2RqTlV4aU5WVTJRVEJKZDBzMlRrNDRiSEZTTUhGVFNISlFaRlpUTVcxRVVYVnZkbEk0WkZwc1kzRXlZbUpUQ25CVGRFOUhUVWRrUzBwalVUTllXSEZ2Y1ZWMGJqQk1iMk5RSzJaSVdrc3ZRV0ZrU1RabWRVZDFWbXBIYm5wM2FXZHpRWFpLTm5KdFFYSnZTelo2VVdJS1RsbHdNVVpuV1dWM1UzbFNTVVpXZERrMGJHOHJWMGR4TkhjMFJYVkJNVTFMVEc1UU5tdHNhSE51Y1d0NFlWSkhUbGh3YTNWbWFtUlVLMDUxZGxCUU5Bb3dNbTF1ZFhkWk9GSk9haTlIUVVkb1ExY3lkVU5zVGpOWE4xZEROV3hOVW1OSVdVd3hSVkZIUlVOd015dDFObGN3V0dKdVZ6bFRkVXRUVlZsUE5FaGtDbFZTU0VkRU5rZENhaTlYVTNwbk4zTk5OVVl5Y0dSYWNFTXhLME55UzFsVmFrTmtSVzlJVW5aeE4yNWlSbElyY1VzMlQwUkhlUzlCZWtwdGFrbDZkV1lLWlM5eFowVlhkVVprVVRCSmJsRjJibmhpVTFwSFVGRlNXR3RDYkVoTmRUZHhha3BMWmpGeVRsQnBWV3B0YW0weVF6RXZNa2xIZFZsSWJqZGtZVEZLVGdwNlZsbDFXRFpqUW5BMk1IZGpSMDVvY3pkdWJqUkRjRzhyVm1FelUwcFlNV3B4VkhKcFozUjVabGhXVVRKTmRIbGhkWE5rVmxCdlYwWk5ObGxCT1VsbkNrMW1aamt3VDJSV2FsZEtNRmN6UjJKNVUxWjRWMGxxV21sbk5EWTFOVVZQYjNSUlFVOVpkWGhoSzFWUE1HdGhkaXMyTVZRekwwNUxlRWhNWW5kRVNtOEtlamRtTWxOYVlqbHpjRFJVUTBaUlRuVnpaVzl5VG1Sb09WRlVlbk5pY1RrM1JVVllWREk0TjBSM1NVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWdGNITkdjMk1yZUVWM1ZGTnhjWEpoQ25jNFNHTnlSM2x2ZVZWbmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGR2FVcFFjVlZLU25SQ1VGaGtNWGs1UTJ4VlRtVlhSRlprY1VFS2RXUlJTbE0xZUVoYWEyTlNlVlI2VUhjMVkzbGFVV1Y2SzNKeGRsTm5WVVZVTkRKUGVtOW9heTlJWTB4RVlWbHlXVTVqYjJaTGFYWkxXRU0yYkN0amRnbzRVSGR2ZERRdk9FRnZaVEoxU1ZwTWNuRldNbFpCTkZwMGVVUkJhR056V205TlJtRnhhaXREY3pKVWNraHFhRTFuU0RsM1ZUSTNkVmQ0VXpWVlRFZzBDa05aTldSdGEwbEhRM2xGS3pSYVYwZFNXRk15YVRWVWNsVkxSMUpRYW5SU2R6ZzViVkZ0YjB4NGJIRlVjM2RYSzBwWmMwRjJWM2czVjNCRGFqWkpZVzBLVFVSSWFtd3phbVJYU1VFMlVVczBMM2RwVWxKT1VuaEZNV0V4VkdWVlVqZ3dTalJTUzNaalduZ3lhRVFyUlV3NFMwUjJNMmhRZEhSdmVYbDNkamxKZWdwQkt6Qk1NVXhOVm0xbVJIRlhRMmcyUXpKUWFsazFhV3hWYXpCTWJYbFVkbUZHVG1KNk5GWjFTbUpyWXpKdFdGTmpZVmt4VFVGYVVYWXdZVEJZUmtVd0NuZFVTMDlpZFdGWGF6VldhbHBPYTNWSWQwZHhZM2RDY1VVMVQxZFFZbHBqTW14S05IQkpRMGxUVDBSeFRreHRjbGhUTWxOeVRYUXpkVTlFWVhacFpuWUtUV016ZUZSVGFtOW5TR1V6VG1zd1kzSlFTRmhuZGpKT1pYWmpTbTlKWjJSTE1FVXdiM2h2UlhrMVkwOXNkV2R3WjJsMmFTOVZNRzVEVmpacFMyRTFVZ3BuUVhVdmNURnFUelpQYUhabFZrRmFZbTlIT0hKdE5VSmlVbXBCYTFsMFltVm1hMlZaZWxneFoxUmtWR2gzYjFCdk1IazVRVFEwTDI1UldHcEZkV3B3Q2pCcFdHMUJlbWx3VVZGdGFFaFROalpIZFdobWRVbEtTbmRRTXpaRGEyOHZXRkp0VDBJMk5IZG9PRUo2WlVWbU5VNXhNRWs0YUhkaWJrTmpjbmQ1VjBVS2FUbHZkbXgzZGs5M01tbFVSMjlwY2pkdGRVY3lOakowY2tGQ1l6bDFRaTkxWlN0Mk5rZENVRWhKVW5oc1kxTlFZMnBvTjNodFpqWlNZVUZaWWxneE5RcGpjWGxaV2tJNFJ6TlZRVTlEZVhSTENpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc3BoeHVqd2gtNms2azQ1Y2guaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3QyaGdic28KY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3QyaGdic28KICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3RvZTYzYjc0Ynh6X2NsaWFrc3Rlc3QyaGdic28KICBuYW1lOiBjbGlha3N0ZXN0MmhnYnNvCmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdDJoZ2JzbwpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3RvZTYzYjc0Ynh6X2NsaWFrc3Rlc3QyaGdic28KICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJVkVORFFYZFhaMEYzU1VKQlowbFJXbVJUUmpnMk9HUk1jemtyZG5kM0wxcFlaMWx1ZWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZ6UmtGRVFVNEtUVkZ6ZDBOUldVUldVVkZFUlhkS2FsbFVRV1ZHZHpCNVRYcEJNazFVVVhsTlZFVXhUV3BzWVVaM01IbE9WRUV5VFZSUmVVMVVTVEZOYW14aFRVUkJlQXBHZWtGV1FtZE9Wa0pCYjFSRWJrNDFZek5TYkdKVWNIUlpXRTR3V2xoS2VrMVNWWGRGZDFsRVZsRlJSRVYzZUhSWldFNHdXbGhLYW1KSGJHeGlibEYzQ21kblNXbE5RVEJIUTFOeFIxTkpZak5FVVVWQ1FWRlZRVUUwU1VORWQwRjNaMmRKUzBGdlNVTkJVVU01VURaUWJtSk1SME5TU2tsV00zUmhWVVpWYVhNS2FIRjZOMHRHWld4MWJGa3ZVVWRzWkd4dE9XOXJiRGRSVVc4d1NtbFhTVWRJVEZJNFVWSndVazkxWmtKQ09YcDZTRkJuUkVGS1VWUkpja3RDWm1aaWJBcEthazVTT1ZGNGRVbEhXVFY0TXpWalNEZzFWWFZNUkdoTmFpOHdia3BSWVVWRWJXbDNla3BVU0V4Qk9GVTFSbXR3TVVNMldYRk9lVzVYVTAxdlptZDVDbkozUjFaTFJYYzVRbGxNV1RSek0wWnBNMEZoT0hWSGMwUXljVFo2T1hVMlJFaDFURm96UVVnclN6Y3lhVXRIU25CNVRFWnJSVUZ2TW0xRlJEbDNjbVVLWkcxb1JqSjFjVEJTVUZKRGFHbEpPSFpzVG1KT1dVazBOQ3N3Y0ZoM2JVNUZVeXM0UjNwQ1kydzVkbTF3T0dsVFN6QXdVV2xoVm1jMlVEVkxaWFYyWndvNFN6ZG5kVlZMTTFadGMxWnpkVkUxU2tSbU9HZGplRXAzUmpSdWFFRldXV1ZYVWpkVGQyRlpjRlZ0YUM5eWJIbFhTMUV2ZERkc00zTlBSVkI1T1hSd0NsUTVUV0pGY0hselRFNDVTRXRPY1VjdmJERlVWMjl0YXk5R0sxTjNaMVpaUVZOTVNXRlJhWGhuVEdObFZubDJOaXRpYlZKVEt6WkxSblppTWs5d2JWZ0tSWE16WnpFNGFFVjFVRXBhY0VkVFVHZDZXbVl4YWxaTGNqQXZXRUZuTlZRd1VubzBOa05pUWpKR2VrSnVObWhzUTJOc1VsZGFNRXMyVmtwbk55ODJVZ3BwTVZwa1JIUkVlbEJJYmpkRFpraHFUakZ4YVdKUE1HUnNaRlJRU0ZkTFFsZDJOREpHZEV4UFUydFZTa3hLVURsSVJYWk5kV2wyVmxKYVRYSjRTRVJZQ2t4WGFFTXdTME40WkU1dWNTdFFVWEpFTUZCamQySnRPV2hqWVhkMFNHNTZTRFkxWTBkb05rZG1SMll3UmpkMFFVdFllbVYzUkU1MGFETjJja3B6Y20wS1RGcEpaRGxHT0RGcFQzQTNhR2haU201VVpsQjFSbGhXZG1sRk0ySjJjMUZGVkdkRmVGZG9NbVJQTjFCMVlsZEdZVFZwVjBzNVowTXZLMkUxUVZWa1pBcG1iRkpuTjFwdU9GRlRVM0I2VFhJeFNYSTBhMHBSU1VSQlVVRkNiekZaZDFaRVFVOUNaMDVXU0ZFNFFrRm1PRVZDUVUxRFFtRkJkMFYzV1VSV1VqQnNDa0pCZDNkRFoxbEpTM2RaUWtKUlZVaEJkMGwzUkVGWlJGWlNNRlJCVVVndlFrRkpkMEZFUVdaQ1owNVdTRk5OUlVkRVFWZG5RbE5oYlhkWGVIbzNSVlFLUWs1TGNYRjBja1IzWkhsellrdHFTbE5FUVU1Q1oydHhhR3RwUnpsM01FSkJVWE5HUVVGUFEwRm5SVUZDV210UFlUZ3JRMWg2VjNWc1ZXeDRWMHd4ZFFwbFRFSkRSRVFyT0hsMGMybGFhbHBNZEdaR1RHc3dOVzh6YW5wemVIQXphRkV4V2xsMlZHeG5RV3hoUzFGWVFVTktjM2gxWkRock1ERnFXblJUYUhaUENuYzRUR2RQWm1SU2FVZGhVbmx0U0drMU5VOW9XbUpTWWpkQ2VuQlBRMUZhU21aUlRFMTBOUzlRYm1rek9FSnBZMUJvVnpWYVVsSkpkMnRtZFRSUmFVb0tWV3BXTWpSaVp6TkJWWFEwUVVKUlRXcHJaREZTZDBrcmFDdGhTRUpaVlcxamNsTk9WV3BtYmtsbFlrRXpTR2xTWTBWSWMyRmlNMGRLUVZVNWJtdFNXUXBSYUdSMk9XZFZPSHBVZVRJMFJVVTFUbXgyZVZsWmQxUlNabVZuYUNzNFpUZEVSbGhQWkN0RGFrNXRaRkIzZEZWQmFsWllhMWhrYURsSGRVeFJOMloxQ21kaGJWaHpTRWhuYzFSSEsxQnVXVmRDYjNSVFNEaGhhVnBqTVVoblVtaHJValZRWlV0U1RqaFlhelpOTHpac2NFODNVbGsxT0Vob1N6WmxZbFZCYWtVS2NEZzFhRlJFTW1WWGFXMXVjbFkxUW1STWFtcE9iRUl4YkRKUU16Tk1SU3RFZG5sSlZ6azFPRTg1YkRKWGJGSmFSMFp2S3pCbGEzVXdXVWRIUVROWWNncHNaVzVrUWpoamNraDNRVnBzVUhoV1dGb3pSVXhVVmxaUU9VZFliWFkyZVRJNVdXRXlVa1YwUXpsaFdYVTBVMnhJUW1Nek9GZFRPR2RUV1RaM2VUSXZDazFRZERoSGFuRjNSaXRRT0VVMU9IRXhhRlZNWkdoSkx5dG5ObWRYVjA1WU5WWnVZMWhMUzNCWmVVdHRMMGh6TjJJelMwTTJZMEVyZGtOR01qQk5UVmdLZEVNMGQyMVlLMlpTYlhFclZtWlJabEJuTUVkVk1uQTJlRlJFVFVWVmRFSnZibmgyUTBOV1VXVjBNVXhNYkcxcUt6Tkhaa2hGZDI4ME5tWktjVkJQUWdwcVZUVlRNek5YUWxSaGRYTlpVa2cyUjNSNFpsSkxXSGxNTjJOVFMyd3JMMnhhWlVWNGRWVkVhRU5SWXpnemVuaGtTM3BFY25FeU9WZGxVVWw1T0N0bUNuVXdTRUZCUjIxbUwwTlhiV2xrVkhGU1VTOVZPVVpKUFFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMEZKUWtGQlMwTkJaMFZCZGxRcmFqVXllWGhuYTFOVFJtUTNWMnhDVmtseVNXRnpLM2xvV0hCaWNGZFFNRUp3V0ZwYWRtRktTbVV3UlV0T0NrTlpiR2xDYUhrd1prVkZZVlZVY201M1VXWmpPSGg2TkVGM1ExVkZlVXQ1WjFnek1qVlRXWHBWWmxWTlltbENiVTlqWkN0WVFpOVBWa3hwZHpSVVNTOEtPVXA1VlVkb1FUVnZjMDE1VlhoNWQxQkdUMUphUzJSUmRXMUxhbU53TVd0cVMwZzBUWEU0UW14VGFFMVFVVmRETWs5TVRuaFpkSGRIZGt4b2NrRTVjUXAxY3k5aWRXZDROMmt5WkhkQ0wybDFPVzlwYUdsaFkybDRXa0pCUzA1d2FFRXZZMHN6YmxwdlVtUnljWFJGVkRCUmIxbHBVRXcxVkZkNlYwTlBUMUIwQ2t0V09FcHFVa1YyZGtKemQxaEtabUkxY1daSmEybDBUa1ZKYld4WlQyb3JVMjV5Y2pSUVEzVTBUR3hEZERGYWNrWmlUR3RQVTFFekwwbElUVk5qUW1VS1NqUlJSbGRJYkd0bE1ITkhiVXRXU205bU5qVmpiR2xyVURkbE5XUTNSR2hFT0haaVlWVXZWRWQ0UzJOeVEzcG1VbmxxWVdoMk5XUlZNWEZLY0ZCNFpncHJjMGxHVjBGRmFYbEhhMGx6V1VNelNHeGpjaXQyYlRWclZYWjFhV2hpTWpscWNWcHNlRXhPTkU1bVNWSk1hbmxYWVZKcmFqUk5NbGc1V1RGVGNUbFFDakYzU1U5Vk9VVmpLMDluYlhka2FHTjNXaXR2V2xGdVNsVldiV1JEZFd4VFdVOHZLMnRaZEZkWVVUZFJPSHA0TlN0M2JuZzBlbVJoYjIxNmRFaGFXRlVLZW5neGFXZFdjaXRPYUdKVGVtdHdSa05UZVZRdlVuaE1la3h2Y2pGVlYxUkxPRkozTVhreGIxRjBRMmR6V0ZSYU5uWnFNRXQzT1VRelRVYzFkbGxZUndwelRGSTFPSGdyZFZoQ2IyVm9ibmh1T1VKbE4xRkRiRGd6YzBGNllsbGtOelo1WWtzMWFUSlRTR1pTWms1WmFuRmxORmxYUTFvd00zbzNhRll4WWpSb0NrNHlOemRGUWtVMFFrMVdiMlJ1VkhWNk4yMHhhRmQxV1d4cGRsbEJkaTl0ZFZGR1NGaFlOVlZaVHpKYUwwVkZhM0ZqZWtzNVUwc3JTa05WUTBGM1JVRUtRVkZMUTBGblFWQk1XRTUyY3k4dmIyVnhaR054WVhBM05XUnJWMUJTWWxOaVkwaGFkMHd2TmtGeGFIZHZVV1lyVlhZM1dIQlFOalp5VWtnelpUUllaUXBGVkhGVVIxTTFUa0pPZUhKbmRqbEJMMjFNYUhobU5tRTVRV1JDUTFoa1JVMHljbnA1YUZadmRrNDRaR1JGSzFBMkswRkVjalIzUW1scE1ESnBaV0ZXQ21KNVNYbEhSRXh4U1RadFpHTlBNMEZvVUdsdE1FbHBiak55VjFKSGQyWTVaRzFZYlROMlNraG5jV3RQUm5OcEt6Ukpka2w1VGs4clpEY3dabWh5UkVJS01WZElaWGRqYzBkaGNEZEtPREpYVDJkeGMybHROa1E0VDBkMlpYVTFRbEpUWlZaWk16ZzNXRXAyY2tnNVJuVnlSRkJsVFhGSWNqQjJia281Y0dOek1ncFJkR1l5UmxKbVJuWTVPRTlIWm5KelVVb3pTM29yVkZaQ1JtRXlhVFZpTmpOMVJFTTBNazVxVFdneWNtdzBVVVk1UlV3eVFub3JSakk0YVhnNU9IQm1DazlRTUcxalRuTmxOblJpYTI1TlpGQmtUMU5wTDAxVFVVSTRSbTgxVjFacmQybG9abE5CZWtwcmQwSmlNMFJXTVdKQ2NXOUZSMFZCVDNSTmJXazBUbk1LZDJGUWRITkdVVlV5TWpWSGRVTnFXbVIxV0ZoSVlqSlhibmR3WVZsM2VHaGtUbEJ0WkRGcWQzWkxaMWRtV0U5eWFVRkJWMFF6T1M5S2JXcDBSMk0zZUFwTlVrMWtkMVJ6U1ZGaWVYRXJURkJCYlRORE5rSk1URTVDUTNrdmEwOUpPREZFYkdoaE1FWTBNelY0UzFCV1dGZG5jbXh3TWpGbFZGY3dMMmhaUVZreENsVmlZa3RwUmpoWlJrVkpTblZwVkRkR1FUWm1RMWd3Vmt0YVEyMHpkR0V2UzJNeFJYZDVMMGxxWTNWaWJFc3pjWGRWTlROMFFWUTVOV2hNTDI5b1pIRUtRekp0WTJwMGFtbDFielUxVDNsQ1F6bFVUekZ1UTFoQ01GUmpkMUV3TUZRNVlXb3hWVVI0WTBndllqVXlSR2d3Yld4bFVrSkJMMnhITUdoclFXNXZUd281YkU0d1RFeHBjR3h0ZVZSVFRtWk5TMFIxZDNablRqTlhORXhaUWxKelVFRTNRMHc1Y0VNd1pXNHhhbEJKTVhaWlVVdERRVkZGUVhwdUt6WkZObTA0Q25ObGRrSmFiMnBCUmxnNWFraG9PR1JaTlRkbE1HZEpORWt2VERSRldreFROMmxoUzNOalpYZFliVlFyVDJsdmFqQnhUMUkyTHpaeVMxRm9hbFJrS3pVS1RsUkxlallyVW5aeFQwZFRSbWxQTlZWTlduQXJURU54UTBaTVNXZFhiV015UmtkV2RuWnRPSFp6S3pCVlVHcG1PV3NyYmpFeU4yNTNOMDlNZVRkdlJ3cEpORlpQV1ZvemRrdGhlRFprT1dWbGJpczJlRk5CTDFSTFZYTnZTakp5UWpsU1EyZG9UbkV3WTB0dFNuZHNWbXBRYVhoNVZEQjZkM2g2TjAwMlNEVm9Dak52UldaVWRURm5RbU13V0ZCbFExSXpTemhWYzAxMFdGQkRNMmd2VTNNeldrNVhZbUpQY1ZwalVXVlhTbXczVVZaMGEzRTBTbTFJYUhJeFVsaFplRWNLWm5SU2JrWm1OWEJXVEZscmNFUjNUMnN5TVVKNllYSkZkVEpZUVdKeFptOXRkbU4xUjJWalJERXhSbGd3YW5aQlExcDJha2s0TDFwaVVFdGpkemhNVGdwWVlqSnZLMlY2WjBvMFVHNVZkMHREUVZGRlFUWndNVTkwUldGcU0yZ3dhWHBHYzNaSVVWRk1Zak5VV1RSeWRpOVdLMHBVZDB0V05XdzNaMnRuU1RNNENtWkdUblZvT1RWMVpFZEljVXgzTkRKSGJHYzBlbEE1VlV4VmVuRkRjR2wwYjFocFVsaEdOUzlSU0c5WGNHeHVNRmRPYmt0WlltMTBaVzFoZWtGeWRXTUtVVkpPV1RkeVEzWlpkbTFtSzBSemFtaFVRVVZUZWk4eFREQXpOMU5sYTNOaFVGRkRXa016UjBsTWNEaEJSbTFGU3paeWJrWnVSelF2YzNKUUsyeGFTZ3BWWlZoT1Ztd3dTMEl4WkVVd2RucFBURTFYVmxsSE4zRlpjV2h5Ym5KTFpsaExlRlI1YTFOSmVFaG9PQ3RsYTJ4NlVscGxSVE50YlhsUU9XcDFTamhuQ25nMVkzZE5SMWhMWld4V2VtZFRSVmw0YkdFd1VVNDVZa1ZXVERjeGRsaHhhVTlFT0hFeE1sWTFja3N2VFc1UFkxQjBjVzVwZFdodlMzWTFhU3Q2TTFvS2VEQkJlbGx4VTBWSFNYWmFVMHhHZHk5ME5sbzFRV2hXT1VKallWSTNVbXhOY1VadlVsbzBkbkIzUzBOQlVVSm1NSGN5TmxOcE0zbE5iMFJSTXl0NWFncEVWRmxzY1VSTGRra3JOSEZpYWxVelIxZDZZMWQwU0daRFlYVmhla0oxWmpocFZ6TlJRVGRZYkVkblIzQXljM1EwTWt0U2NFcDNRbVk0U0ZkWFZ6aHVDbGt5VjNwUFIybHhabmxvTVRaNVZUaE1ORFI2TXpWeFZrWXlZbmc1Um05UFFXSjVabEp3TlVoWmNtUXdWbFppWm1wa1dERmxRMGRhU1dsak5WUldla3NLWW1WME1qWlhkMGR6TTBVMVF6TTNiSHB4WVZob1FXSXhabVl5TDB0UE5VdDVZVWhRZFVkblVsWm1Za1p5WlV0a01IaHhjbGRPY0RWemJHMW5LM0UxZHdwbmNtVnBWWGt2WTNoTVNrcFRSa3d5TjJsUVRXODVNVlYzV0hOaGF6bE5XV3BJYVRBeldrczBaWEJhV0VjeVpUQnpkVEp5UWpSckwwZGliWE5xZURZMUNqTk1kM05MYlVwd1RESTBNWHB0VkRCM1ZXTklSVzkyZVZCWWJqZE5lVk53UzIxdmFXVlBLMjlvWkhCc2NDOUplR2xJVVU5ek4zTjRTVTh6YXpkSVRXOEtXWGxHV2tGdlNVSkJSV3BwTldacFRHMVplaTlqUkdkalpUazFMM2w1TW5SR01WRmFTVFZMYURsWVREYzVXRW93SzNGSlZtVnJUVVpwUjJ0a1lWTk5kUW8yUW05SFUwUnBWeTg0TlhZMVF6ZFBibXRpT0dRM1UyRlRSVFY0TjFGaFV6VXdXakl5TjNCbGNuTnFPV0pwSzBGcFJYaHdSRWh2VEVWTE0xZHdhVmxTQ21SMWEyWk9hMGhEVlZKTmRtOHpVVEoyWTB0UlpHZFBSa04wYTJ0bU1VUmlibTV3WkZaUWNHSTVZalkzVW1OWGFVeEZjVkpWSzFoc2FHOHdNa05ySzA0S2FGRjNia1JqV2tzck9GVm9jMEk1UjFFeWFtbENWRUU1VDFOeE1XSXJabHB3Y201akwwdHNhVTFaWmt4WE1ERkhVMmw1Y0VGMk15dHpha2hYTjJKb2FncHZObUZUUzJGbk1HUXpkRkEyU0V4U1dGQjJSRWRyUnpjME9FMDFTamhEY2prd2IzUk5TRlV5WVV0YU1qTlRWeXROWmtoeWJsTlRVbWhYVlRONGRrZzFDbEZHSzJSQlNWZDBhMmhIVG5CWFdsaGFkM0YyZFVkRGNWWkZTMDFwYWtWRFoyZEZRa0ZMY0dsRFJETjRTVk5PT0RWNU0yNHdZVzk0TmxRMWQxbE1TRTRLYlhCRWRWRldjRVZLUmpKM1QwSnJZa04zWVVsaVR6VlhiWEJZVFRsbWVuQlhSVmRGVFdwYU5GZFpUemhMZFdKeFZXSnpNRU5tUW5KdlpGRllVbTl6Y3dwMmEyaEtSRWRFVEV4b01YWmFTa2h3Y2lzMGNHTkVXVTF2TjFGcGVWQlRhbHBWWlZoRlpuUktXR1YyYWpoS1dsTjFXWEY1VDBobWRsTnhMeXRQZVc5VkNrMUhjVkpTYTJoUlJ6TkVObWN3YlhadU5qZENjVFozY3pWTmNYUk1WRmxLVTBGeFVucHllblEwVjFkbFkwdGpNeXRGZGtocFJHUkdVRTVNY1hKelNVWUtXR1JvZHpGek9VSjBhVFo2UzBsMk0yMVBWa0poTWxkdFdqSTRSMkZDU0d0ME0wRnFNV05ZZVRKWGVWbHhhakJtYlc0Mk1qbGFVVmsxYVdOelF6UktRUXBJVDBZMWRGaFZjMU5TT1VobGVpdHRNMjFvTDFWRU5Xc3dXWHB3VVhrNWIxTTRjVTlqWVhFNVRHOXBkMFI0VG04MlZFVjBjRWRuYkZCclp6MEtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogc3NyN2ZxbWN3ajJubXlzZnc0cmJqM3kxY2JsZng0eXAzbG5yc2oyeW1lYm1wMnFxcWxiZWNoYWE0dTRjaXc4N3FlZ2FyMHJjbWxuN201MTZ2dDVvbDZzYmptdWluOHhpZ3l1N2k2Mm5jMnN1ZndzOXBsNTRnaGl2cjl2c3cwY3IK\"\ - \n }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": + \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVV3eFNHdHZiMkpNWm1zeWNrWm5SREZ4UkV0Sk1uZDNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDA1cVNUVk5SR3Q1VG1wUmVGZG9aMUJOYWtFeFRYcEJNazFxYTNkUFZFMHlUa1JHWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNqQjNXRXhSZUhsaWVGUm9jM2xPUnpGTWJXeFpVSFUyUTIwNGQxTnVObXBrUlhwT01ETm5kV3B6VW1keVZqUjJUbkpXTHpGVGF5dFRkV2RpWWxsRVZqSUtSMWhHUVVnNU0wTXlXVVpKTWtsdWJqUlNhVXBMUkRObU5HOUVWM1pNVlV0SWQxcDNTemxUY0RKWFdsaG1MMEpQVjJKSE5WcERkemhMY3pWcVEyOXZOUXBGYnpkR1VsSkVaR2ROYm1sdlJDOWlhVXhoWW5kNWNVOXhaMjFTVDNad1EwTm5aVFZ0WkU1bmVVVnljSEJRY0c1VFkxbFVkbFpXWWpVdkswczJNRlJCQ2s5eldYcHdVSGhFZEdFemNrVTBNR054U1VaaGVWWm5VbEF3Tkc5RUsxbFNNR0Z3V1ROVVdWcFFiVzFFVVVwRlQxcHRkM1Z4TjFwUWRqUmFTbGw1WmpVS05tOHlielUyU2sweE0xUTVSR28xWTB4S09YRnhhRFYzZEhZM09VbGhaa0UyVUhaSU9VbDBUalpNUVVoRllUVlFWSFUwUVRWT2VsaDFRbE50TnpKblRBb3pjbEJCYmtONFUwVkVia3RzVEVOQlRqWktSMG94VlZwNmFXaHNkVlY2V21ocGVISndaRkZKZEcxcmN6WTRhMU56TlVoNGMzWTVWSGRVU0dOd2VGUnZDamxKTVVabVNuaGxWQzl0V21ZMVNXc3dSVlZQUWpKcFkwWmFja1l6WWpSQ1NTdENLM1l6VlVaQlRHSmxOMEUxY0ROUVFpOXFjRTVsTlM4MFExbE1WaThLV1VKTFYzVjBTbEJpVlZweldIWjFUMGhuVG5aSk9WQldSRVZOYURod1NITlFaVU4xVG0xaU1GcDFWalpJT0daUk5qTlRZVk15U1dka2FESktla2MzU2dwUWVXY3pOR0pyTDNSUFVXUndXVnB5V2xWUFNVRXhSeTg0Ymt0WldrbGxabWR1VTNSTmFqRkNkbTF2ZGxKdlNFMVdlRkpSYjFacFRHbFBiVVk1Y25wVUNpdHZiR05CVW10eUswVTFSa1EzV0VRd1kyMUxaVE5aT1RoNmNHazRTakZxYjNoTlpXSjFjMk5RUW1kamVERlFiVTV2ZDJGcmRETlFPWEYyYzNWcFRDOEtVV0pJTUZKVU15dEtjV05SYlhsWGRqaG1iM1ExYldwMGJrbDROR3RFUzJoeFVtdG1kbFpCUlhZM2MwTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1NEZ3lkVkpaUjNsaVVrVkVWVGc0Q21WUFFVeHhUbFJ5ZDBkTVRVMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlFVUkdTMXBRVlZSS2FWZHpPV3BEZVZGM1RVazJhMWwxYzJnS05VZHlUR1JaVVVaTFVsbGhia2hpTUdoM1ZHdDZlbEJpZUROaE5FVjJRbkZqVGpGbGRpdEVlbGsyUlhaSldHZHlhRE5MV0ZKd1lURjJiV3RQU0dkbllncHVMMXBpWTNobU5tRjViMDFOTld0MVdYUlBPWGd5VFhsVlExQlpVRWQzV0ZwM05WSlpUamRGTW5kemJFbHRWRTlvZG5wblFVUnNkbTgwVFhWYVZubzVDamMyUm5sNmRYcFNiRkZ2T1VOaE0zcDFNMVZWY2psTmNEa3JNMVp4WWtJelptNXBSMUZaZURacGRqUkhOMGhYTlVORVdUY3lSemRXT1VGSFJrRlRaRE1LYUdwMFJtVnFkR05OU0ROb1MyZHZUSEZKTVhSRVNGSjJRVUpUVGpBMUwyZ3dhVWRIVVdGcmVsWXdRbG92Vm1sM2NUaFNiRFJzY3k5RmFUUnNhMUZtV0FwdE5HcFVkVmx0WjBsUmJGY3pVelEwUVhOQlVHUjBZekZrWW5CU05XdHRjaXRvVDAxclFubG9lbGhyV0VaSGNEZGxiM05UUjJSWGVWRkhlV3gyY1ZJeENrOUpWa1pTYWl0NlpFa3lZV1ZEVlhOeWIyOTBhR2xCUTBSclYyMUtXRnBNZFM4eGJEVk1iMDFUTW5GblNIVnNkSE1yVERKVFZHOWtZakpoYWtGU2VGTUthMDVsYzNkVGNuWnhSbmRMWmtsdk5FVnhWSGRIUzJGcVRsSTJZbmM0YTFFM1kzZDRaWFo1VGxKSU5sTnVaMlZFYUdSV1oyczVOelJXVDJscldHTTVWd28yUm10RVJqTnJRbUZpZFdNcmFreGpSVGd6T1RsSGJuQlpVV2hqUlV0T2QzUnFabFpUVDNWd2RURTBlV29yYW5VMmRYUlBjV0ZUTVhweFlUVndPRzgwQ2t4aFVscEhkazFaZUhnMVIxRmtaRVJDVWk5RFEyeFZkelZvWVhBMVVUWldjMGx2TXpKak5VbzFkWFl5VmxsbVVFbExUQ3RTVFRaYWFHaHhaV0Z1SzBNS1UyNHhaREpFY1Rsa1dGbFZjRk4zTUhRMlMxQnJhVVJuVGtaQlkxUjBTR0psV0dKeFNVVnlhQ3RwTW1Wa01qVlFSSE5qTW0xblpsVjNlVVZPYUROR1l3cDRhbE5IVUVnM09WSldOVXB0TDJ4Q01IYzlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5zY2lrcHp5eC0xMnJud29iNi5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdHNyNXZtdwpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdHNyNXZtdwogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdHRkZmxrbG42NDZfY2xpYWtzdGVzdHNyNXZtdwogIG5hbWU6IGNsaWFrc3Rlc3RzcjV2bXcKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0c3I1dm13CmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdHRkZmxrbG42NDZfY2xpYWtzdGVzdHNyNXZtdwogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklha05EUVhkaFowRjNTVUpCWjBsU1FVcGFSVWhLVjFZMU9GSTNhRkF3UWtobGRqaElka1YzUkZGWlNrdHZXa2xvZG1OT1FWRkZURUpSUVhjS1JGUkZURTFCYTBkQk1WVkZRWGhOUTFreVJYZElhR05PVFdwTmQwNXFTVFZOUkd0NVRtcFJlRmRvWTA1TmFsVjNUbXBKTlUxRWEzcE9hbEY0VjJwQmR3cE5VbU4zUmxGWlJGWlJVVXRGZHpWNlpWaE9NRnBYTURaaVYwWjZaRWRXZVdONlJWWk5RazFIUVRGVlJVRjRUVTFpVjBaNlpFZFdlVmt5ZUhCYVZ6VXdDazFKU1VOSmFrRk9RbWRyY1docmFVYzVkekJDUVZGRlJrRkJUME5CWnpoQlRVbEpRME5uUzBOQlowVkJjVUpLSzJ0SVpXeHViRk5HWWxSVFRuaE9TSEVLTlZFclprdEVkWFZoYVVzMlFuaHZlRWw0UW1GcmMzcEpTRmM0ZVRWalYyNUpja1ozVWpaNVoyaG1SM0p4YlU1YVlqSnRNVWczWkVSSE5IWnJlRUZEUVFvMmJFdG1MMEpWVDJ4cVlTdG5RMVJ4Y0ZKUGVVMU9MMGRsVVZZMmRqY3ZSbUZTVFcxMU5VRjBkMjgyWVhSRFpWbDZRbVJqTTFKaFNrTmtkMnBQTDA1SkNsVXJlWGhXTkhGUE4xTjBTRTVYU1dsNWVFSm9ZbTEzWWsxVFEyNU1Sbm93THpkR01GZFBVMjVIY25KaGNtaEdaWEJSY1hSQlpITmtTMk0wTlM5bk4yWUtSRGhGV0hsWFRqUmpjM2xtV205TlpHUm1RMUJaYUdOUldVVlZkbWMzZW1SRVNHVXdTbXhzYlZkUFFVVXhVR2xMTTFsUGJ5OVBia041YlZWcVkxcGljZ28zVTBvMFVqVlJjbUZuU0ROdVdGSmtlbEJxVjFoMFExSkdMME4xTW1sMGVtUjVXamx6V25OUFdqaHBjMHRXYzBkSFoyMVlkSHA2Y0cxNmJqVm9XWFkyQ2xWWlNtSlVhbVJoZGtOaWJHMTRSVzFNTUV4WWEwWm9ZeTlKZWtNMGNqTXZNbXg2T0ZwM05sWklaR2t4ZDFNMVdUVTBOMlExV1hRMU9YazJiVVZ0VEc4S1ZXcG5OR2x3T0VWUGVrbGxaQzlCTUVwWlNWWnphVkZNVWxFMk9HOVBiM00xV0dGMWVtOWtjMDVOT0dWMFRsVndLM0JOTnpoeFRHTmFSa3RJU1VwTlRBcFFOVTVSV1hkeWJVZDFVU3RrUVZaUlZsbDVMelpzVVdZM2JrdFZXRTl2VEVKVFkzZHpUams0YzBsd1RVeFRkR2hQV0dObFRYbzVLMlJTUm5sRlZubzBDbmRaWkc5bWVVVmtiRkUxYWpadlIxRkRZbTEwU1d3eVdWQklVVTlGT0dOR2MzWndVMU5KUzNaVmRHa3ZkRlJGUTFNdk9XdGhMMjk0VHpSTWFWY3ZPRzhLUjNGSU9FMDRja0YyZDJsSlJHRmliM3BGYjFOUE1WTlFkV3BhVjBrMGVFSkpkQzh5U1VoTGREQXlRWEpJVVd3NU5USjVSV3h6TUVORFpYTndaMEpZVkFwcFYwTTNZbEprYWtKSFdtaGhXV1ZMVUdOU01sZDVUVU5CZDBWQlFXRk9WMDFHVVhkRVoxbEVWbEl3VUVGUlNDOUNRVkZFUVdkWFowMUNUVWRCTVZWa0NrcFJVVTFOUVc5SFEwTnpSMEZSVlVaQ2QwMURUVUYzUjBFeFZXUkZkMFZDTDNkUlEwMUJRWGRJZDFsRVZsSXdha0pDWjNkR2IwRlZabnBoTlVabllrb0tkRVZSVGxSNmVEUTBRWFZ2TVU5MlFWbHpkM2RFVVZsS1MyOWFTV2gyWTA1QlVVVk1RbEZCUkdkblNVSkJTRTl4UXk5UFFVaEdTRWd2UzJoTFNFWjRMd3BMUVhoaksxVXlZV3RzUVd0NmNVVktWVmRzVEhwalZsbzBaMDl1ZVd0emQwWk9RblZTVDB4RlpHaE9aMHR4WVhWaWFVd3hjRFZoUmpJMGF6TkJVVUZFQ2pGUWNFZFRTMU1yU1VSalRuQlljRkFyYUVGclVtaDBOWFJPTWtSVlpHZDBPRWRLWmsxWmEwUTRjSGhRWTNVelJHTjNWMHRpVjFKalVuZFFZbGhtU21VS2JFTkZXR2xRUmxOSlVtWkNXR1pSUzFseGVFaEpWVzl6TUZGcFFrbFBiaTl4TUN0SmRTdG1VMjE1ZEhGb2FFaHdURFF4V1dGMVIwWTJOMDVOZVRSRVlncE9lWGRVZVdWSGMyNXVWM0ZJUzNsMmNIQk5OSGhJVDAxb1JGTmFjMWRxVG5WelRVMDRaSEp4U1V3d2JYWkxTM2xaTURBMmNWbGpNVlYwU0RsdWFrWkVDbkJ2YkVjclkydEpNbGREWTAxNWRXbHRXbFJzT1dkME5YSk5WMFJzUWxZd1dXNDRURlpYWjBaV2VucENSbVkzUXpkQ2FqbFpTWGd6U2xrNWNGTjFSSGdLVFd0cWJrWjFaa3BOTWl0b2R6UTVVMjEwTlRsbFkybG5UVk0yYVVaRFZtbE5jMUJUUVZsS2NVWm1UV3AzTkd4alVWTjJlVlV3ZG13MFZXYzBNRkJYU0FwbVZWSlhSVXN4YkhweVZtaERTVzVaWVdVNGMwcHVjbW95U2tSSVZ6bGlkMlZEVFVST2QzWkRhV2RvVFRaMWMxRlNUMjFXTUV0SWRFRnhTVWcwU0ZSVUNtWjJUblE1YVd4aFRWb3pSemhCZDBWNkx6ZFVSbkJOZEd4WE16aElTRWhST1RGVVRFcHNhV1Y0Ykd0TlowWm5iMkUzWmxKa1YxSXpVMjVQT1ZSeVIwa0tiSFZOYTFCNldTOHlVR2gyUms5WVdEWnlUREk0VFcxeWIyUkhXbTFsUkZoS1lrOUpZMDFUU1ZJemJrTXdRMEZsWXpWTFRHbFZiVUpsYUc5V1p6QXZNUXBKWTB4eGNFaEdkVGc1YWsxaGREbG5jMWdyV1dST1ZGUlJTVVpwV1doM1drY3lXVnA0TjFkWlN6WlROM1o0Vld0SWRrdzFRMDV4YVdZNFIySkplVlpOQ2xsamNIbERaVmQwWldaMWEzVkVOR1Z2WmxwR2RqZFViZ290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MwRkpRa0ZCUzBOQlowVkJjVUpLSzJ0SVpXeHViRk5HWWxSVFRuaE9TSEUxVVN0bVMwUjFkV0ZwU3paQ2VHOTRTWGhDWVd0emVrbElWemg1Q2pWalYyNUpja1ozVWpaNVoyaG1SM0p4YlU1YVlqSnRNVWczWkVSSE5IWnJlRUZEUVRac1MyWXZRbFZQYkdwaEsyZERWSEZ3VWs5NVRVNHZSMlZSVmpZS2RqY3ZSbUZTVFcxMU5VRjBkMjgyWVhSRFpWbDZRbVJqTTFKaFNrTmtkMnBQTDA1SlZTdDVlRlkwY1U4M1UzUklUbGRKYVhsNFFtaGliWGRpVFZORGJncE1Sbm93THpkR01GZFBVMjVIY25KaGNtaEdaWEJSY1hSQlpITmtTMk0wTlM5bk4yWkVPRVZZZVZkT05HTnplV1phYjAxa1pHWkRVRmxvWTFGWlJWVjJDbWMzZW1SRVNHVXdTbXhzYlZkUFFVVXhVR2xMTTFsUGJ5OVBia041YlZWcVkxcGljamRUU2pSU05WRnlZV2RJTTI1WVVtUjZVR3BYV0hSRFVrWXZRM1VLTW1sMGVtUjVXamx6V25OUFdqaHBjMHRXYzBkSFoyMVlkSHA2Y0cxNmJqVm9XWFkyVlZsS1lsUnFaR0YyUTJKc2JYaEZiVXd3VEZoclJtaGpMMGw2UXdvMGNqTXZNbXg2T0ZwM05sWklaR2t4ZDFNMVdUVTBOMlExV1hRMU9YazJiVVZ0VEc5VmFtYzBhWEE0UlU5NlNXVmtMMEV3U2xsSlZuTnBVVXhTVVRZNENtOVBiM00xV0dGMWVtOWtjMDVOT0dWMFRsVndLM0JOTnpoeFRHTmFSa3RJU1VwTlRGQTFUbEZaZDNKdFIzVlJLMlJCVmxGV1dYa3ZObXhSWmpkdVMxVUtXRTl2VEVKVFkzZHpUams0YzBsd1RVeFRkR2hQV0dObFRYbzVLMlJTUm5sRlZubzBkMWxrYjJaNVJXUnNVVFZxTm05SFVVTmliWFJKYkRKWlVFaFJUd3BGT0dOR2MzWndVMU5KUzNaVmRHa3ZkRlJGUTFNdk9XdGhMMjk0VHpSTWFWY3ZPRzlIY1VnNFRUaHlRWFozYVVsRVlXSnZla1Z2VTA4eFUxQjFhbHBYQ2trMGVFSkpkQzh5U1VoTGREQXlRWEpJVVd3NU5USjVSV3h6TUVORFpYTndaMEpZVkdsWFF6ZGlVbVJxUWtkYWFHRlpaVXRRWTFJeVYzbE5RMEYzUlVFS1FWRkxRMEZuUVhjMVpXbFRjVmQ1ZVRaek5VTXpiVnBqYlN0SmJVMUhlRk55VlVweFQwbzBPREJNTnpRdk5XOUxWMkV2YVN0SFdYSmxWbnBPSzBObE9RcG5jR3BXVURKR09WZG9aemhHVG05UlZubFpZMFJ3UWtwQloyZ3ZieTlvVG5jcllWSm9Nak5ZU2tkYWMwUndXSEZMUlVNM1JuZEJSMW8wYmsxeWVta3lDbTE0Vkd4S1RUUlliV1Z0V0daNmFWTlVhWE5wYUdwNGRVSmlURWRVTDJWemFUTkNXSGxvTmxkb2JUSjFMMG8wVFVoVlIzZEJiSE5CZVdrMmVHTllVbm9LU2taelJuRk9WbFZxVmsxdE1ucDBTV0ptU2toS2JYVjVOR0Z4SzBRMlUxY3ZLM2xqU1dKS1EyaGxWRGxYYW1GMFEwSTNTV3N6YUcxalNEQjZWVzFTUlFwUlFVSktNMU56Y1hSM1JGaDJObFppY0RkeU0xaFpUalZYWW5CalRFbHZiamhTUkUxaU4xRldlVVJSSzBoVGRIQlFSemR4VFhscU56WnRXbGRvVVd4UENuTmthalJGZFdOaWVGSkxObGx2TkZWVWNFWTRhWFJ3ZDI5NUx6VkxPVGxVTkM4MFoydENaV1JoUWs0MFQwdDZWMjVWTUdWdFZrTkRkR3RLVjNoVU1sY0tXSGhNY1UxdFdGUkNaRm93YVd0Vk0xbG1PR2RMWkhjNGJFYzBXbWRVYUhoUE5HVXJWRkUwZW10YVNsRlBObkUwY1hWeFZrVmllR1ppWjA5eVoybDNlQW8wZUZFME4yOVNTVWMzZW5odlZFSXZWV3huT1VGWFVGbHBLM1k1VDNONVl6TkNhek5rY1hoaWRVVjJPQ3R5UzBRemVXSXpLMnhsUW1KNWFWWm5lQzlKQ2pGa0wwaEVRVXh4T0ZoNldWaHZheTlaYmxKS1JWazRlak55VG00dllVSkxXbVZtYjJkQ1VFNXhUVzlQY1V0eGNFRTVkMWsyYXpWa1Rub3hSa2hyWmxRS1NTOTRjWEF4VDFoUlFUVmhaemRyUjA5S1YxRXdkSFpaU205dk1rMVdUMnB6U20xUVdXVnJTaXRXVDJGWU0yVnVhMFU0V2s1d2FGcHpaWGh1UVhnNGFBcFJkMDVuWld0clFURnVkVU5yWjFOeFRFNWhOREJHU0dkelYwRnZUa3hYTTBoMGMyRmlja2RrZHpKSlkySjFWMHcyVVV0RFFWRkZRWGRWT0VFNFNrZG1DbHBsZWtNeVZpdGxNMHN2YWprdmMycFdZakpVUXpORFNIWlNOV1ExYTBwcGVEaFVSblZTYTJaSGNUaEdZV1pLT1hKME1HNXJTMVJhTDB4NVlpdHJRMllLZVdobVUybHRkVTF0UlVwU1dqUnpWeXR0TTJVclQwcHpWek5OWW5OWFZHWjZUblE0T0hWdlV6TlFhSGROU1hGdVFWbFVOSFl5WWxSVlYxTk9SM1ZyV1Fwek5IRkVjRE5hYzJrM2JVUm5lV2hLWkZaWlNtOVZZMUJvTjFsb2JtTjRUbWh4WWpKUU4xUXdZekZEUkU1bmJFdE9SVTFITUVobWNWQmplR2RuUTJ4MUNtTTVVemRJV2taWE9VY3ZVWGRQVG1ST1JHOWpNVU5wVUc1M1ZGUkJabGxYU2xORVVGaG5jMWRLU1U5UFZuZGxSazRyYlVoeWJ6VlZaVVl3YTA5ME56WUthVUUxUVc5VmFtWjBXSFYzYzNsMVNWQldUaXQ1WVVsMlozWnhTemRMTlhWT1pHRnJlR0pMY1ZKcWIwcHNWRVpCZVZneWIySnpZbFJDVnpabVFtd3pOQW8zY0RkM1ZFUjJaVGMxZVUxc2QwdERRVkZGUVROd1VrMDJUMGR6TUUxS1VWSkdVek14TDNWUldHZFlWRmxqT0dJelNYTllNSEZEYTJOQmNqSnROV2hKQ2xBeU5GTmlSbWh5TVRkU1VrRlhhMjV0TVhGdlduUnZWbmhNUlROSFpFMUJRVWRqYWxoaVYwUlpXa3c1YTA1R1RYUnJVbnBsUTNsbGRVUTVabTE0UTJJS1NsQndWRXhNU1dJemVHVk1hVlo0WVhoUVdFa3dhemx2T1dKSFNVWkZVM1V5WTJVNWJXUk1VM2sxZWtZNVkzZzRhRmRMV1cxSlZWcHFWelpxYlZGaU9BcFhXR0ZFVEN0aFZYaGhWa3hQVkhOdk1FTmxibUZMV0ZSdFdWcGljMUpKTm5wMlpHcGlTM3BWVEZOSVZXSTBjV05ETVZab1RGaFFVQ3RPWkhkRmQwd3dDak5qWkRReVpsWktkVmxJV25VMVNGcGFabFZHTlRGTlJ6a3dia2xITTA1TFdqbG5WSFp1TTBVdmMyRjJSRzUzYVdRMlYyTmhSRGRpZFd4TmRYSTFSVVlLVjNjMlkycE5MMFEwYVVaTVluWTViMWx3VUUwME1HZ3hRU3N3VUhaWVpucG9UVEkwZDNNMVlsWlJTME5CVVVKaFluQTBkVGROUlZsRGNHNW5NMU5ZVWdwalozVkJORU5FV1hCS1dXTjJUMnRVV2xKb2FXUjBORVpRU2pKUVExSjVUeTlDTDFwUU5VeHBZMmd4YmxGdFpXdElOSGROYkRWNmNFTjRialJ1V0Zkd0NtRlRWSGd2Y0ZOcFZsUkpRbFowVDBGUFMzQlZORFkzTjBKQ1pFSkJTbGxSWmpkNmExTkphakpaWjBkSlkxRTRZM1poUW5oWVYybHlNMWh1V0hCelVVTUtNMkZsVkdaUk5WbGpVV0ZUVWpBNFVtMTJaa0V2VjIxeVR6UktjSEpVY2t0ck0ya3JiRGQyTmtaUU1HdEhNbFZsZDJaVVNFbENja2N6TVdOc04zVTRlQW8zVUd4SmN6RlVVRGhRZFRWdFRIZFFiRlU0ZEZaTVZuQmhlRGN6YWs1SmQwSk5aR0pIVnpaUFEwcGljalY2VUVoR2VrOTVkM04xVEZOTVpXUm1RakJFQ25CeWFUQkxVVXBWVW1wS1JFYzNaVVZYTjJOUlNVVXpOSEU1UW5KdFJHbHRTRGxMU2pBdkwwOUJlRmd2ZEUwelZtUmliVFZZWXpkMGRYSmpTbmQwZURVS1ZtUkNSRUZ2U1VKQlVVUlRSR1JFTjFseFkzVkxTVTlLZVZFemNrcG1NR0o2Y0VkeU1UaEpjV2MxV1VzNFFraG1jakpyUjJSR1QxTnJVRmRSUkVjMVV3cEdiR3AzV2s5WE9VSnVVM2hDUWxoU1JqVkhlSEpIUW5aQlQySjFZeTlQTW1KUWMyZzFXRkp2SzNaaGFVeHFTRzlJWkRkRVVEUjFOaTlSWW5KM2JtSjBDazV3U1RSSmRFZERNbHBaV21KR2JsbHlVaXRKVTFReFpWSTVUMWRVVGtWck1sTkpNV3Q2VEdONWNYcExSelp3SzNkRVFtbHdZVmxZV1M5SWQycGpTbEFLVDBkNGFXRlpUbVF4YkRVeVRYcEZZbnBUU0ZKWVUzWnJNRXhIYWtOUlVVRlNPVWgwU21wdFdIUkpOMDlVTWt0NFN6bG5XVU5STVVGR1FsUnZWbFZYY2dwaVdFVnVVa1ZEVUhGUmNGZFJhRkJ5Tkd4VFdVY3hhbGcwWVV4WlptMWpaMHhwT1dSRmVXVlJSazV2YW5jeFlXOWFRVXBIVEVNeVMzWnhTbVJtVjBsWENtdFhaRmxNUnlzNWQwWkNNMGR3Vm1ORVEyaDZibUpXVXpKeVkwbEhZV3N4UVc5SlFrRkJWSFYzT0ZRMWRVUXdiRXBHUW5CR2RXbzFWSGhIUml0cVRURUtSelkzTVhwRWNVRmliMkowTVVKS01tTk1SRk4zZDNGcVZGWmhTa2hzWlRNM2RTczRMMUpPZERCb1VXbGpZbTlUVEVsd1NWbzRVa3R5U1VSTFFsSk5XQW8yZFN0eWFGUmpOR0V4VDJVMlVXWnpOa2h1UjIxVmVETmlSbTlZWVdGbGEzVnVXSGRoVVUxaWQyb3lhR3RaYWpOMlNqSTVNVmMxUTBsWGFUQkVNMEprQ25sM1ZXaHhTMkl4TjA5UlRGbHlVeTkxUkd0S1VFTmFNbkJLU1dSWmMzbENVRnBSTWpSM1pIaFdURGRoZWtKUlpWQjNObWN2V1hKTVpIbDBSbXA1T0U4S0szZEdUR3d4WVhOT2F6aGFVMFpPVTFoRlltWXpTVnBTYVhvMFdYbGFTa05YWW5CelduUnFlU3REUzFsUU1XWnVOamQ0VUZkdlpVeFZWVlpKWm05Qk9RcElZMmxxYmpkc1ZFdExiVWxMVkcxb1ZHTXlhWGRhUzBsaWQycElkWGRGT0ZjM1ZFVndlVUZyTDNCcFRrZzVSREYxWmxaeWJGTlNNbnB1ZHowS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiBzZ3E4dXQ3dnAwZnhiZ2cwanlvYzFkd2dkbjVnMnptOWoxb3RhenJyOWh6azgybzY3bXRvNmYzcXBxdnB0anQ4N2M0azlqZGx5NWc2ZWoybzc5OG0xaWRlY3NlemZvNm1ubHQ1ODJxM3puajQzZXdseXd4azlxejYweWJlYmZ2dwo=\"\n + \ }\n ]\n }" headers: cache-control: - no-cache content-length: - - '13072' + - '13084' content-type: - application/json date: - - Wed, 14 Jun 2023 21:28:17 GMT + - Thu, 29 Jun 2023 09:41:01 GMT expires: - '-1' pragma: @@ -1111,10 +1268,6 @@ 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: @@ -1138,24 +1291,24 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ - \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSUzFSV1FVeE1Xbll3Umt4aVpEbDZXREZRZVc4clZFRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxVVVYbE5WRVV4VFdwc1lVZEJPSGxOUkZWNlRVUlplRTVFU1hoTmFsVjVUMVp2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVSRkNqRm5VVmgwT1V4cU9HVkRVeTlNU1VGRFNFWTJjVEpEUTNScE1YQmliV2hMTlhOUlNrMHlZaTlhYzBOVlkwZ3dOR3g2TmpZMlQyZzJSWE16ZERWYVdsb0tUV0ZrUlZWV1kxRk9VVkV6YmpsSlNIcDVXbU5vVW5aclVEQkRSRWxpYTJKb2IxcFZjMGxWT1dKWlVqUldXVkprYW1JeVRYQlRSVmhKV0ZBdkwwNXhaQW80Y0VaMVVISnFORlZyTlVkSlFrUjZlR2RqTlV4aU5WVTJRVEJKZDBzMlRrNDRiSEZTTUhGVFNISlFaRlpUTVcxRVVYVnZkbEk0WkZwc1kzRXlZbUpUQ25CVGRFOUhUVWRrUzBwalVUTllXSEZ2Y1ZWMGJqQk1iMk5RSzJaSVdrc3ZRV0ZrU1RabWRVZDFWbXBIYm5wM2FXZHpRWFpLTm5KdFFYSnZTelo2VVdJS1RsbHdNVVpuV1dWM1UzbFNTVVpXZERrMGJHOHJWMGR4TkhjMFJYVkJNVTFMVEc1UU5tdHNhSE51Y1d0NFlWSkhUbGh3YTNWbWFtUlVLMDUxZGxCUU5Bb3dNbTF1ZFhkWk9GSk9haTlIUVVkb1ExY3lkVU5zVGpOWE4xZEROV3hOVW1OSVdVd3hSVkZIUlVOd015dDFObGN3V0dKdVZ6bFRkVXRUVlZsUE5FaGtDbFZTU0VkRU5rZENhaTlYVTNwbk4zTk5OVVl5Y0dSYWNFTXhLME55UzFsVmFrTmtSVzlJVW5aeE4yNWlSbElyY1VzMlQwUkhlUzlCZWtwdGFrbDZkV1lLWlM5eFowVlhkVVprVVRCSmJsRjJibmhpVTFwSFVGRlNXR3RDYkVoTmRUZHhha3BMWmpGeVRsQnBWV3B0YW0weVF6RXZNa2xIZFZsSWJqZGtZVEZLVGdwNlZsbDFXRFpqUW5BMk1IZGpSMDVvY3pkdWJqUkRjRzhyVm1FelUwcFlNV3B4VkhKcFozUjVabGhXVVRKTmRIbGhkWE5rVmxCdlYwWk5ObGxCT1VsbkNrMW1aamt3VDJSV2FsZEtNRmN6UjJKNVUxWjRWMGxxV21sbk5EWTFOVVZQYjNSUlFVOVpkWGhoSzFWUE1HdGhkaXMyTVZRekwwNUxlRWhNWW5kRVNtOEtlamRtTWxOYVlqbHpjRFJVUTBaUlRuVnpaVzl5VG1Sb09WRlVlbk5pY1RrM1JVVllWREk0TjBSM1NVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWdGNITkdjMk1yZUVWM1ZGTnhjWEpoQ25jNFNHTnlSM2x2ZVZWbmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGR2FVcFFjVlZLU25SQ1VGaGtNWGs1UTJ4VlRtVlhSRlprY1VFS2RXUlJTbE0xZUVoYWEyTlNlVlI2VUhjMVkzbGFVV1Y2SzNKeGRsTm5WVVZVTkRKUGVtOW9heTlJWTB4RVlWbHlXVTVqYjJaTGFYWkxXRU0yYkN0amRnbzRVSGR2ZERRdk9FRnZaVEoxU1ZwTWNuRldNbFpCTkZwMGVVUkJhR056V205TlJtRnhhaXREY3pKVWNraHFhRTFuU0RsM1ZUSTNkVmQ0VXpWVlRFZzBDa05aTldSdGEwbEhRM2xGS3pSYVYwZFNXRk15YVRWVWNsVkxSMUpRYW5SU2R6ZzViVkZ0YjB4NGJIRlVjM2RYSzBwWmMwRjJWM2czVjNCRGFqWkpZVzBLVFVSSWFtd3phbVJYU1VFMlVVczBMM2RwVWxKT1VuaEZNV0V4VkdWVlVqZ3dTalJTUzNaalduZ3lhRVFyUlV3NFMwUjJNMmhRZEhSdmVYbDNkamxKZWdwQkt6Qk1NVXhOVm0xbVJIRlhRMmcyUXpKUWFsazFhV3hWYXpCTWJYbFVkbUZHVG1KNk5GWjFTbUpyWXpKdFdGTmpZVmt4VFVGYVVYWXdZVEJZUmtVd0NuZFVTMDlpZFdGWGF6VldhbHBPYTNWSWQwZHhZM2RDY1VVMVQxZFFZbHBqTW14S05IQkpRMGxUVDBSeFRreHRjbGhUTWxOeVRYUXpkVTlFWVhacFpuWUtUV016ZUZSVGFtOW5TR1V6VG1zd1kzSlFTRmhuZGpKT1pYWmpTbTlKWjJSTE1FVXdiM2h2UlhrMVkwOXNkV2R3WjJsMmFTOVZNRzVEVmpacFMyRTFVZ3BuUVhVdmNURnFUelpQYUhabFZrRmFZbTlIT0hKdE5VSmlVbXBCYTFsMFltVm1hMlZaZWxneFoxUmtWR2gzYjFCdk1IazVRVFEwTDI1UldHcEZkV3B3Q2pCcFdHMUJlbWx3VVZGdGFFaFROalpIZFdobWRVbEtTbmRRTXpaRGEyOHZXRkp0VDBJMk5IZG9PRUo2WlVWbU5VNXhNRWs0YUhkaWJrTmpjbmQ1VjBVS2FUbHZkbXgzZGs5M01tbFVSMjlwY2pkdGRVY3lOakowY2tGQ1l6bDFRaTkxWlN0Mk5rZENVRWhKVW5oc1kxTlFZMnBvTjNodFpqWlNZVUZaWWxneE5RcGpjWGxaV2tJNFJ6TlZRVTlEZVhSTENpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc3BoeHVqd2gtNms2azQ1Y2guaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3QyaGdic28KY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3QyaGdic28KICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3RvZTYzYjc0Ynh6X2NsaWFrc3Rlc3QyaGdic28KICBuYW1lOiBjbGlha3N0ZXN0MmhnYnNvCmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdDJoZ2JzbwpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3RvZTYzYjc0Ynh6X2NsaWFrc3Rlc3QyaGdic28KICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJVkVORFFYZFhaMEYzU1VKQlowbFJXbVJUUmpnMk9HUk1jemtyZG5kM0wxcFlaMWx1ZWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZ6UmtGRVFVNEtUVkZ6ZDBOUldVUldVVkZFUlhkS2FsbFVRV1ZHZHpCNVRYcEJNazFVVVhsTlZFVXhUV3BzWVVaM01IbE9WRUV5VFZSUmVVMVVTVEZOYW14aFRVUkJlQXBHZWtGV1FtZE9Wa0pCYjFSRWJrNDFZek5TYkdKVWNIUlpXRTR3V2xoS2VrMVNWWGRGZDFsRVZsRlJSRVYzZUhSWldFNHdXbGhLYW1KSGJHeGlibEYzQ21kblNXbE5RVEJIUTFOeFIxTkpZak5FVVVWQ1FWRlZRVUUwU1VORWQwRjNaMmRKUzBGdlNVTkJVVU01VURaUWJtSk1SME5TU2tsV00zUmhWVVpWYVhNS2FIRjZOMHRHWld4MWJGa3ZVVWRzWkd4dE9XOXJiRGRSVVc4d1NtbFhTVWRJVEZJNFVWSndVazkxWmtKQ09YcDZTRkJuUkVGS1VWUkpja3RDWm1aaWJBcEthazVTT1ZGNGRVbEhXVFY0TXpWalNEZzFWWFZNUkdoTmFpOHdia3BSWVVWRWJXbDNla3BVU0V4Qk9GVTFSbXR3TVVNMldYRk9lVzVYVTAxdlptZDVDbkozUjFaTFJYYzVRbGxNV1RSek0wWnBNMEZoT0hWSGMwUXljVFo2T1hVMlJFaDFURm96UVVnclN6Y3lhVXRIU25CNVRFWnJSVUZ2TW0xRlJEbDNjbVVLWkcxb1JqSjFjVEJTVUZKRGFHbEpPSFpzVG1KT1dVazBOQ3N3Y0ZoM2JVNUZVeXM0UjNwQ1kydzVkbTF3T0dsVFN6QXdVV2xoVm1jMlVEVkxaWFYyWndvNFN6ZG5kVlZMTTFadGMxWnpkVkUxU2tSbU9HZGplRXAzUmpSdWFFRldXV1ZYVWpkVGQyRlpjRlZ0YUM5eWJIbFhTMUV2ZERkc00zTlBSVkI1T1hSd0NsUTVUV0pGY0hselRFNDVTRXRPY1VjdmJERlVWMjl0YXk5R0sxTjNaMVpaUVZOTVNXRlJhWGhuVEdObFZubDJOaXRpYlZKVEt6WkxSblppTWs5d2JWZ0tSWE16WnpFNGFFVjFVRXBhY0VkVFVHZDZXbVl4YWxaTGNqQXZXRUZuTlZRd1VubzBOa05pUWpKR2VrSnVObWhzUTJOc1VsZGFNRXMyVmtwbk55ODJVZ3BwTVZwa1JIUkVlbEJJYmpkRFpraHFUakZ4YVdKUE1HUnNaRlJRU0ZkTFFsZDJOREpHZEV4UFUydFZTa3hLVURsSVJYWk5kV2wyVmxKYVRYSjRTRVJZQ2t4WGFFTXdTME40WkU1dWNTdFFVWEpFTUZCamQySnRPV2hqWVhkMFNHNTZTRFkxWTBkb05rZG1SMll3UmpkMFFVdFllbVYzUkU1MGFETjJja3B6Y20wS1RGcEpaRGxHT0RGcFQzQTNhR2haU201VVpsQjFSbGhXZG1sRk0ySjJjMUZGVkdkRmVGZG9NbVJQTjFCMVlsZEdZVFZwVjBzNVowTXZLMkUxUVZWa1pBcG1iRkpuTjFwdU9GRlRVM0I2VFhJeFNYSTBhMHBSU1VSQlVVRkNiekZaZDFaRVFVOUNaMDVXU0ZFNFFrRm1PRVZDUVUxRFFtRkJkMFYzV1VSV1VqQnNDa0pCZDNkRFoxbEpTM2RaUWtKUlZVaEJkMGwzUkVGWlJGWlNNRlJCVVVndlFrRkpkMEZFUVdaQ1owNVdTRk5OUlVkRVFWZG5RbE5oYlhkWGVIbzNSVlFLUWs1TGNYRjBja1IzWkhsellrdHFTbE5FUVU1Q1oydHhhR3RwUnpsM01FSkJVWE5HUVVGUFEwRm5SVUZDV210UFlUZ3JRMWg2VjNWc1ZXeDRWMHd4ZFFwbFRFSkRSRVFyT0hsMGMybGFhbHBNZEdaR1RHc3dOVzh6YW5wemVIQXphRkV4V2xsMlZHeG5RV3hoUzFGWVFVTktjM2gxWkRock1ERnFXblJUYUhaUENuYzRUR2RQWm1SU2FVZGhVbmx0U0drMU5VOW9XbUpTWWpkQ2VuQlBRMUZhU21aUlRFMTBOUzlRYm1rek9FSnBZMUJvVnpWYVVsSkpkMnRtZFRSUmFVb0tWV3BXTWpSaVp6TkJWWFEwUVVKUlRXcHJaREZTZDBrcmFDdGhTRUpaVlcxamNsTk9WV3BtYmtsbFlrRXpTR2xTWTBWSWMyRmlNMGRLUVZVNWJtdFNXUXBSYUdSMk9XZFZPSHBVZVRJMFJVVTFUbXgyZVZsWmQxUlNabVZuYUNzNFpUZEVSbGhQWkN0RGFrNXRaRkIzZEZWQmFsWllhMWhrYURsSGRVeFJOMloxQ21kaGJWaHpTRWhuYzFSSEsxQnVXVmRDYjNSVFNEaGhhVnBqTVVoblVtaHJValZRWlV0U1RqaFlhelpOTHpac2NFODNVbGsxT0Vob1N6WmxZbFZCYWtVS2NEZzFhRlJFTW1WWGFXMXVjbFkxUW1STWFtcE9iRUl4YkRKUU16Tk1SU3RFZG5sSlZ6azFPRTg1YkRKWGJGSmFSMFp2S3pCbGEzVXdXVWRIUVROWWNncHNaVzVrUWpoamNraDNRVnBzVUhoV1dGb3pSVXhVVmxaUU9VZFliWFkyZVRJNVdXRXlVa1YwUXpsaFdYVTBVMnhJUW1Nek9GZFRPR2RUV1RaM2VUSXZDazFRZERoSGFuRjNSaXRRT0VVMU9IRXhhRlZNWkdoSkx5dG5ObWRYVjA1WU5WWnVZMWhMUzNCWmVVdHRMMGh6TjJJelMwTTJZMEVyZGtOR01qQk5UVmdLZEVNMGQyMVlLMlpTYlhFclZtWlJabEJuTUVkVk1uQTJlRlJFVFVWVmRFSnZibmgyUTBOV1VXVjBNVXhNYkcxcUt6Tkhaa2hGZDI4ME5tWktjVkJQUWdwcVZUVlRNek5YUWxSaGRYTlpVa2cyUjNSNFpsSkxXSGxNTjJOVFMyd3JMMnhhWlVWNGRWVkVhRU5SWXpnemVuaGtTM3BFY25FeU9WZGxVVWw1T0N0bUNuVXdTRUZCUjIxbUwwTlhiV2xrVkhGU1VTOVZPVVpKUFFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMEZKUWtGQlMwTkJaMFZCZGxRcmFqVXllWGhuYTFOVFJtUTNWMnhDVmtseVNXRnpLM2xvV0hCaWNGZFFNRUp3V0ZwYWRtRktTbVV3UlV0T0NrTlpiR2xDYUhrd1prVkZZVlZVY201M1VXWmpPSGg2TkVGM1ExVkZlVXQ1WjFnek1qVlRXWHBWWmxWTlltbENiVTlqWkN0WVFpOVBWa3hwZHpSVVNTOEtPVXA1VlVkb1FUVnZjMDE1VlhoNWQxQkdUMUphUzJSUmRXMUxhbU53TVd0cVMwZzBUWEU0UW14VGFFMVFVVmRETWs5TVRuaFpkSGRIZGt4b2NrRTVjUXAxY3k5aWRXZDROMmt5WkhkQ0wybDFPVzlwYUdsaFkybDRXa0pCUzA1d2FFRXZZMHN6YmxwdlVtUnljWFJGVkRCUmIxbHBVRXcxVkZkNlYwTlBUMUIwQ2t0V09FcHFVa1YyZGtKemQxaEtabUkxY1daSmEybDBUa1ZKYld4WlQyb3JVMjV5Y2pSUVEzVTBUR3hEZERGYWNrWmlUR3RQVTFFekwwbElUVk5qUW1VS1NqUlJSbGRJYkd0bE1ITkhiVXRXU205bU5qVmpiR2xyVURkbE5XUTNSR2hFT0haaVlWVXZWRWQ0UzJOeVEzcG1VbmxxWVdoMk5XUlZNWEZLY0ZCNFpncHJjMGxHVjBGRmFYbEhhMGx6V1VNelNHeGpjaXQyYlRWclZYWjFhV2hpTWpscWNWcHNlRXhPTkU1bVNWSk1hbmxYWVZKcmFqUk5NbGc1V1RGVGNUbFFDakYzU1U5Vk9VVmpLMDluYlhka2FHTjNXaXR2V2xGdVNsVldiV1JEZFd4VFdVOHZLMnRaZEZkWVVUZFJPSHA0TlN0M2JuZzBlbVJoYjIxNmRFaGFXRlVLZW5neGFXZFdjaXRPYUdKVGVtdHdSa05UZVZRdlVuaE1la3h2Y2pGVlYxUkxPRkozTVhreGIxRjBRMmR6V0ZSYU5uWnFNRXQzT1VRelRVYzFkbGxZUndwelRGSTFPSGdyZFZoQ2IyVm9ibmh1T1VKbE4xRkRiRGd6YzBGNllsbGtOelo1WWtzMWFUSlRTR1pTWms1WmFuRmxORmxYUTFvd00zbzNhRll4WWpSb0NrNHlOemRGUWtVMFFrMVdiMlJ1VkhWNk4yMHhhRmQxV1d4cGRsbEJkaTl0ZFZGR1NGaFlOVlZaVHpKYUwwVkZhM0ZqZWtzNVUwc3JTa05WUTBGM1JVRUtRVkZMUTBGblFWQk1XRTUyY3k4dmIyVnhaR054WVhBM05XUnJWMUJTWWxOaVkwaGFkMHd2TmtGeGFIZHZVV1lyVlhZM1dIQlFOalp5VWtnelpUUllaUXBGVkhGVVIxTTFUa0pPZUhKbmRqbEJMMjFNYUhobU5tRTVRV1JDUTFoa1JVMHljbnA1YUZadmRrNDRaR1JGSzFBMkswRkVjalIzUW1scE1ESnBaV0ZXQ21KNVNYbEhSRXh4U1RadFpHTlBNMEZvVUdsdE1FbHBiak55VjFKSGQyWTVaRzFZYlROMlNraG5jV3RQUm5OcEt6Ukpka2w1VGs4clpEY3dabWh5UkVJS01WZElaWGRqYzBkaGNEZEtPREpYVDJkeGMybHROa1E0VDBkMlpYVTFRbEpUWlZaWk16ZzNXRXAyY2tnNVJuVnlSRkJsVFhGSWNqQjJia281Y0dOek1ncFJkR1l5UmxKbVJuWTVPRTlIWm5KelVVb3pTM29yVkZaQ1JtRXlhVFZpTmpOMVJFTTBNazVxVFdneWNtdzBVVVk1UlV3eVFub3JSakk0YVhnNU9IQm1DazlRTUcxalRuTmxOblJpYTI1TlpGQmtUMU5wTDAxVFVVSTRSbTgxVjFacmQybG9abE5CZWtwcmQwSmlNMFJXTVdKQ2NXOUZSMFZCVDNSTmJXazBUbk1LZDJGUWRITkdVVlV5TWpWSGRVTnFXbVIxV0ZoSVlqSlhibmR3WVZsM2VHaGtUbEJ0WkRGcWQzWkxaMWRtV0U5eWFVRkJWMFF6T1M5S2JXcDBSMk0zZUFwTlVrMWtkMVJ6U1ZGaWVYRXJURkJCYlRORE5rSk1URTVDUTNrdmEwOUpPREZFYkdoaE1FWTBNelY0UzFCV1dGZG5jbXh3TWpGbFZGY3dMMmhaUVZreENsVmlZa3RwUmpoWlJrVkpTblZwVkRkR1FUWm1RMWd3Vmt0YVEyMHpkR0V2UzJNeFJYZDVMMGxxWTNWaWJFc3pjWGRWTlROMFFWUTVOV2hNTDI5b1pIRUtRekp0WTJwMGFtbDFielUxVDNsQ1F6bFVUekZ1UTFoQ01GUmpkMUV3TUZRNVlXb3hWVVI0WTBndllqVXlSR2d3Yld4bFVrSkJMMnhITUdoclFXNXZUd281YkU0d1RFeHBjR3h0ZVZSVFRtWk5TMFIxZDNablRqTlhORXhaUWxKelVFRTNRMHc1Y0VNd1pXNHhhbEJKTVhaWlVVdERRVkZGUVhwdUt6WkZObTA0Q25ObGRrSmFiMnBCUmxnNWFraG9PR1JaTlRkbE1HZEpORWt2VERSRldreFROMmxoUzNOalpYZFliVlFyVDJsdmFqQnhUMUkyTHpaeVMxRm9hbFJrS3pVS1RsUkxlallyVW5aeFQwZFRSbWxQTlZWTlduQXJURU54UTBaTVNXZFhiV015UmtkV2RuWnRPSFp6S3pCVlVHcG1PV3NyYmpFeU4yNTNOMDlNZVRkdlJ3cEpORlpQV1ZvemRrdGhlRFprT1dWbGJpczJlRk5CTDFSTFZYTnZTakp5UWpsU1EyZG9UbkV3WTB0dFNuZHNWbXBRYVhoNVZEQjZkM2g2TjAwMlNEVm9Dak52UldaVWRURm5RbU13V0ZCbFExSXpTemhWYzAxMFdGQkRNMmd2VTNNeldrNVhZbUpQY1ZwalVXVlhTbXczVVZaMGEzRTBTbTFJYUhJeFVsaFplRWNLWm5SU2JrWm1OWEJXVEZscmNFUjNUMnN5TVVKNllYSkZkVEpZUVdKeFptOXRkbU4xUjJWalJERXhSbGd3YW5aQlExcDJha2s0TDFwaVVFdGpkemhNVGdwWVlqSnZLMlY2WjBvMFVHNVZkMHREUVZGRlFUWndNVTkwUldGcU0yZ3dhWHBHYzNaSVVWRk1Zak5VV1RSeWRpOVdLMHBVZDB0V05XdzNaMnRuU1RNNENtWkdUblZvT1RWMVpFZEljVXgzTkRKSGJHYzBlbEE1VlV4VmVuRkRjR2wwYjFocFVsaEdOUzlSU0c5WGNHeHVNRmRPYmt0WlltMTBaVzFoZWtGeWRXTUtVVkpPV1RkeVEzWlpkbTFtSzBSemFtaFVRVVZUZWk4eFREQXpOMU5sYTNOaFVGRkRXa016UjBsTWNEaEJSbTFGU3paeWJrWnVSelF2YzNKUUsyeGFTZ3BWWlZoT1Ztd3dTMEl4WkVVd2RucFBURTFYVmxsSE4zRlpjV2h5Ym5KTFpsaExlRlI1YTFOSmVFaG9PQ3RsYTJ4NlVscGxSVE50YlhsUU9XcDFTamhuQ25nMVkzZE5SMWhMWld4V2VtZFRSVmw0YkdFd1VVNDVZa1ZXVERjeGRsaHhhVTlFT0hFeE1sWTFja3N2VFc1UFkxQjBjVzVwZFdodlMzWTFhU3Q2TTFvS2VEQkJlbGx4VTBWSFNYWmFVMHhHZHk5ME5sbzFRV2hXT1VKallWSTNVbXhOY1VadlVsbzBkbkIzUzBOQlVVSm1NSGN5TmxOcE0zbE5iMFJSTXl0NWFncEVWRmxzY1VSTGRra3JOSEZpYWxVelIxZDZZMWQwU0daRFlYVmhla0oxWmpocFZ6TlJRVGRZYkVkblIzQXljM1EwTWt0U2NFcDNRbVk0U0ZkWFZ6aHVDbGt5VjNwUFIybHhabmxvTVRaNVZUaE1ORFI2TXpWeFZrWXlZbmc1Um05UFFXSjVabEp3TlVoWmNtUXdWbFppWm1wa1dERmxRMGRhU1dsak5WUldla3NLWW1WME1qWlhkMGR6TTBVMVF6TTNiSHB4WVZob1FXSXhabVl5TDB0UE5VdDVZVWhRZFVkblVsWm1Za1p5WlV0a01IaHhjbGRPY0RWemJHMW5LM0UxZHdwbmNtVnBWWGt2WTNoTVNrcFRSa3d5TjJsUVRXODVNVlYzV0hOaGF6bE5XV3BJYVRBeldrczBaWEJhV0VjeVpUQnpkVEp5UWpSckwwZGliWE5xZURZMUNqTk1kM05MYlVwd1RESTBNWHB0VkRCM1ZXTklSVzkyZVZCWWJqZE5lVk53UzIxdmFXVlBLMjlvWkhCc2NDOUplR2xJVVU5ek4zTjRTVTh6YXpkSVRXOEtXWGxHV2tGdlNVSkJSV3BwTldacFRHMVplaTlqUkdkalpUazFMM2w1TW5SR01WRmFTVFZMYURsWVREYzVXRW93SzNGSlZtVnJUVVpwUjJ0a1lWTk5kUW8yUW05SFUwUnBWeTg0TlhZMVF6ZFBibXRpT0dRM1UyRlRSVFY0TjFGaFV6VXdXakl5TjNCbGNuTnFPV0pwSzBGcFJYaHdSRWh2VEVWTE0xZHdhVmxTQ21SMWEyWk9hMGhEVlZKTmRtOHpVVEoyWTB0UlpHZFBSa04wYTJ0bU1VUmlibTV3WkZaUWNHSTVZalkzVW1OWGFVeEZjVkpWSzFoc2FHOHdNa05ySzA0S2FGRjNia1JqV2tzck9GVm9jMEk1UjFFeWFtbENWRUU1VDFOeE1XSXJabHB3Y201akwwdHNhVTFaWmt4WE1ERkhVMmw1Y0VGMk15dHpha2hYTjJKb2FncHZObUZUUzJGbk1HUXpkRkEyU0V4U1dGQjJSRWRyUnpjME9FMDFTamhEY2prd2IzUk5TRlV5WVV0YU1qTlRWeXROWmtoeWJsTlRVbWhYVlRONGRrZzFDbEZHSzJSQlNWZDBhMmhIVG5CWFdsaGFkM0YyZFVkRGNWWkZTMDFwYWtWRFoyZEZRa0ZMY0dsRFJETjRTVk5PT0RWNU0yNHdZVzk0TmxRMWQxbE1TRTRLYlhCRWRWRldjRVZLUmpKM1QwSnJZa04zWVVsaVR6VlhiWEJZVFRsbWVuQlhSVmRGVFdwYU5GZFpUemhMZFdKeFZXSnpNRU5tUW5KdlpGRllVbTl6Y3dwMmEyaEtSRWRFVEV4b01YWmFTa2h3Y2lzMGNHTkVXVTF2TjFGcGVWQlRhbHBWWlZoRlpuUktXR1YyYWpoS1dsTjFXWEY1VDBobWRsTnhMeXRQZVc5VkNrMUhjVkpTYTJoUlJ6TkVObWN3YlhadU5qZENjVFozY3pWTmNYUk1WRmxLVTBGeFVucHllblEwVjFkbFkwdGpNeXRGZGtocFJHUkdVRTVNY1hKelNVWUtXR1JvZHpGek9VSjBhVFo2UzBsMk0yMVBWa0poTWxkdFdqSTRSMkZDU0d0ME0wRnFNV05ZZVRKWGVWbHhhakJtYlc0Mk1qbGFVVmsxYVdOelF6UktRUXBJVDBZMWRGaFZjMU5TT1VobGVpdHRNMjFvTDFWRU5Xc3dXWHB3VVhrNWIxTTRjVTlqWVhFNVRHOXBkMFI0VG04MlZFVjBjRWRuYkZCclp6MEtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogc3NyN2ZxbWN3ajJubXlzZnc0cmJqM3kxY2JsZng0eXAzbG5yc2oyeW1lYm1wMnFxcWxiZWNoYWE0dTRjaXc4N3FlZ2FyMHJjbWxuN201MTZ2dDVvbDZzYmptdWluOHhpZ3l1N2k2Mm5jMnN1ZndzOXBsNTRnaGl2cjl2c3cwY3IK\"\ - \n }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": + \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVV3eFNHdHZiMkpNWm1zeWNrWm5SREZ4UkV0Sk1uZDNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDA1cVNUVk5SR3Q1VG1wUmVGZG9aMUJOYWtFeFRYcEJNazFxYTNkUFZFMHlUa1JHWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNqQjNXRXhSZUhsaWVGUm9jM2xPUnpGTWJXeFpVSFUyUTIwNGQxTnVObXBrUlhwT01ETm5kV3B6VW1keVZqUjJUbkpXTHpGVGF5dFRkV2RpWWxsRVZqSUtSMWhHUVVnNU0wTXlXVVpKTWtsdWJqUlNhVXBMUkRObU5HOUVWM1pNVlV0SWQxcDNTemxUY0RKWFdsaG1MMEpQVjJKSE5WcERkemhMY3pWcVEyOXZOUXBGYnpkR1VsSkVaR2ROYm1sdlJDOWlhVXhoWW5kNWNVOXhaMjFTVDNad1EwTm5aVFZ0WkU1bmVVVnljSEJRY0c1VFkxbFVkbFpXWWpVdkswczJNRlJCQ2s5eldYcHdVSGhFZEdFemNrVTBNR054U1VaaGVWWm5VbEF3Tkc5RUsxbFNNR0Z3V1ROVVdWcFFiVzFFVVVwRlQxcHRkM1Z4TjFwUWRqUmFTbGw1WmpVS05tOHlielUyU2sweE0xUTVSR28xWTB4S09YRnhhRFYzZEhZM09VbGhaa0UyVUhaSU9VbDBUalpNUVVoRllUVlFWSFUwUVRWT2VsaDFRbE50TnpKblRBb3pjbEJCYmtONFUwVkVia3RzVEVOQlRqWktSMG94VlZwNmFXaHNkVlY2V21ocGVISndaRkZKZEcxcmN6WTRhMU56TlVoNGMzWTVWSGRVU0dOd2VGUnZDamxKTVVabVNuaGxWQzl0V21ZMVNXc3dSVlZQUWpKcFkwWmFja1l6WWpSQ1NTdENLM1l6VlVaQlRHSmxOMEUxY0ROUVFpOXFjRTVsTlM4MFExbE1WaThLV1VKTFYzVjBTbEJpVlZweldIWjFUMGhuVG5aSk9WQldSRVZOYURod1NITlFaVU4xVG0xaU1GcDFWalpJT0daUk5qTlRZVk15U1dka2FESktla2MzU2dwUWVXY3pOR0pyTDNSUFVXUndXVnB5V2xWUFNVRXhSeTg0Ymt0WldrbGxabWR1VTNSTmFqRkNkbTF2ZGxKdlNFMVdlRkpSYjFacFRHbFBiVVk1Y25wVUNpdHZiR05CVW10eUswVTFSa1EzV0VRd1kyMUxaVE5aT1RoNmNHazRTakZxYjNoTlpXSjFjMk5RUW1kamVERlFiVTV2ZDJGcmRETlFPWEYyYzNWcFRDOEtVV0pJTUZKVU15dEtjV05SYlhsWGRqaG1iM1ExYldwMGJrbDROR3RFUzJoeFVtdG1kbFpCUlhZM2MwTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1NEZ3lkVkpaUjNsaVVrVkVWVGc0Q21WUFFVeHhUbFJ5ZDBkTVRVMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlFVUkdTMXBRVlZSS2FWZHpPV3BEZVZGM1RVazJhMWwxYzJnS05VZHlUR1JaVVVaTFVsbGhia2hpTUdoM1ZHdDZlbEJpZUROaE5FVjJRbkZqVGpGbGRpdEVlbGsyUlhaSldHZHlhRE5MV0ZKd1lURjJiV3RQU0dkbllncHVMMXBpWTNobU5tRjViMDFOTld0MVdYUlBPWGd5VFhsVlExQlpVRWQzV0ZwM05WSlpUamRGTW5kemJFbHRWRTlvZG5wblFVUnNkbTgwVFhWYVZubzVDamMyUm5sNmRYcFNiRkZ2T1VOaE0zcDFNMVZWY2psTmNEa3JNMVp4WWtJelptNXBSMUZaZURacGRqUkhOMGhYTlVORVdUY3lSemRXT1VGSFJrRlRaRE1LYUdwMFJtVnFkR05OU0ROb1MyZHZUSEZKTVhSRVNGSjJRVUpUVGpBMUwyZ3dhVWRIVVdGcmVsWXdRbG92Vm1sM2NUaFNiRFJzY3k5RmFUUnNhMUZtV0FwdE5HcFVkVmx0WjBsUmJGY3pVelEwUVhOQlVHUjBZekZrWW5CU05XdHRjaXRvVDAxclFubG9lbGhyV0VaSGNEZGxiM05UUjJSWGVWRkhlV3gyY1ZJeENrOUpWa1pTYWl0NlpFa3lZV1ZEVlhOeWIyOTBhR2xCUTBSclYyMUtXRnBNZFM4eGJEVk1iMDFUTW5GblNIVnNkSE1yVERKVFZHOWtZakpoYWtGU2VGTUthMDVsYzNkVGNuWnhSbmRMWmtsdk5FVnhWSGRIUzJGcVRsSTJZbmM0YTFFM1kzZDRaWFo1VGxKSU5sTnVaMlZFYUdSV1oyczVOelJXVDJscldHTTVWd28yUm10RVJqTnJRbUZpZFdNcmFreGpSVGd6T1RsSGJuQlpVV2hqUlV0T2QzUnFabFpUVDNWd2RURTBlV29yYW5VMmRYUlBjV0ZUTVhweFlUVndPRzgwQ2t4aFVscEhkazFaZUhnMVIxRmtaRVJDVWk5RFEyeFZkelZvWVhBMVVUWldjMGx2TXpKak5VbzFkWFl5VmxsbVVFbExUQ3RTVFRaYWFHaHhaV0Z1SzBNS1UyNHhaREpFY1Rsa1dGbFZjRk4zTUhRMlMxQnJhVVJuVGtaQlkxUjBTR0psV0dKeFNVVnlhQ3RwTW1Wa01qVlFSSE5qTW0xblpsVjNlVVZPYUROR1l3cDRhbE5IVUVnM09WSldOVXB0TDJ4Q01IYzlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5zY2lrcHp5eC0xMnJud29iNi5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdHNyNXZtdwpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdHNyNXZtdwogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdHRkZmxrbG42NDZfY2xpYWtzdGVzdHNyNXZtdwogIG5hbWU6IGNsaWFrc3Rlc3RzcjV2bXcKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0c3I1dm13CmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdHRkZmxrbG42NDZfY2xpYWtzdGVzdHNyNXZtdwogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklha05EUVhkaFowRjNTVUpCWjBsU1FVcGFSVWhLVjFZMU9GSTNhRkF3UWtobGRqaElka1YzUkZGWlNrdHZXa2xvZG1OT1FWRkZURUpSUVhjS1JGUkZURTFCYTBkQk1WVkZRWGhOUTFreVJYZElhR05PVFdwTmQwNXFTVFZOUkd0NVRtcFJlRmRvWTA1TmFsVjNUbXBKTlUxRWEzcE9hbEY0VjJwQmR3cE5VbU4zUmxGWlJGWlJVVXRGZHpWNlpWaE9NRnBYTURaaVYwWjZaRWRXZVdONlJWWk5RazFIUVRGVlJVRjRUVTFpVjBaNlpFZFdlVmt5ZUhCYVZ6VXdDazFKU1VOSmFrRk9RbWRyY1docmFVYzVkekJDUVZGRlJrRkJUME5CWnpoQlRVbEpRME5uUzBOQlowVkJjVUpLSzJ0SVpXeHViRk5HWWxSVFRuaE9TSEVLTlZFclprdEVkWFZoYVVzMlFuaHZlRWw0UW1GcmMzcEpTRmM0ZVRWalYyNUpja1ozVWpaNVoyaG1SM0p4YlU1YVlqSnRNVWczWkVSSE5IWnJlRUZEUVFvMmJFdG1MMEpWVDJ4cVlTdG5RMVJ4Y0ZKUGVVMU9MMGRsVVZZMmRqY3ZSbUZTVFcxMU5VRjBkMjgyWVhSRFpWbDZRbVJqTTFKaFNrTmtkMnBQTDA1SkNsVXJlWGhXTkhGUE4xTjBTRTVYU1dsNWVFSm9ZbTEzWWsxVFEyNU1Sbm93THpkR01GZFBVMjVIY25KaGNtaEdaWEJSY1hSQlpITmtTMk0wTlM5bk4yWUtSRGhGV0hsWFRqUmpjM2xtV205TlpHUm1RMUJaYUdOUldVVlZkbWMzZW1SRVNHVXdTbXhzYlZkUFFVVXhVR2xMTTFsUGJ5OVBia041YlZWcVkxcGljZ28zVTBvMFVqVlJjbUZuU0ROdVdGSmtlbEJxVjFoMFExSkdMME4xTW1sMGVtUjVXamx6V25OUFdqaHBjMHRXYzBkSFoyMVlkSHA2Y0cxNmJqVm9XWFkyQ2xWWlNtSlVhbVJoZGtOaWJHMTRSVzFNTUV4WWEwWm9ZeTlKZWtNMGNqTXZNbXg2T0ZwM05sWklaR2t4ZDFNMVdUVTBOMlExV1hRMU9YazJiVVZ0VEc4S1ZXcG5OR2x3T0VWUGVrbGxaQzlCTUVwWlNWWnphVkZNVWxFMk9HOVBiM00xV0dGMWVtOWtjMDVOT0dWMFRsVndLM0JOTnpoeFRHTmFSa3RJU1VwTlRBcFFOVTVSV1hkeWJVZDFVU3RrUVZaUlZsbDVMelpzVVdZM2JrdFZXRTl2VEVKVFkzZHpUams0YzBsd1RVeFRkR2hQV0dObFRYbzVLMlJTUm5sRlZubzBDbmRaWkc5bWVVVmtiRkUxYWpadlIxRkRZbTEwU1d3eVdWQklVVTlGT0dOR2MzWndVMU5KUzNaVmRHa3ZkRlJGUTFNdk9XdGhMMjk0VHpSTWFWY3ZPRzhLUjNGSU9FMDRja0YyZDJsSlJHRmliM3BGYjFOUE1WTlFkV3BhVjBrMGVFSkpkQzh5U1VoTGREQXlRWEpJVVd3NU5USjVSV3h6TUVORFpYTndaMEpZVkFwcFYwTTNZbEprYWtKSFdtaGhXV1ZMVUdOU01sZDVUVU5CZDBWQlFXRk9WMDFHVVhkRVoxbEVWbEl3VUVGUlNDOUNRVkZFUVdkWFowMUNUVWRCTVZWa0NrcFJVVTFOUVc5SFEwTnpSMEZSVlVaQ2QwMURUVUYzUjBFeFZXUkZkMFZDTDNkUlEwMUJRWGRJZDFsRVZsSXdha0pDWjNkR2IwRlZabnBoTlVabllrb0tkRVZSVGxSNmVEUTBRWFZ2TVU5MlFWbHpkM2RFVVZsS1MyOWFTV2gyWTA1QlVVVk1RbEZCUkdkblNVSkJTRTl4UXk5UFFVaEdTRWd2UzJoTFNFWjRMd3BMUVhoaksxVXlZV3RzUVd0NmNVVktWVmRzVEhwalZsbzBaMDl1ZVd0emQwWk9RblZTVDB4RlpHaE9aMHR4WVhWaWFVd3hjRFZoUmpJMGF6TkJVVUZFQ2pGUWNFZFRTMU1yU1VSalRuQlljRkFyYUVGclVtaDBOWFJPTWtSVlpHZDBPRWRLWmsxWmEwUTRjSGhRWTNVelJHTjNWMHRpVjFKalVuZFFZbGhtU21VS2JFTkZXR2xRUmxOSlVtWkNXR1pSUzFseGVFaEpWVzl6TUZGcFFrbFBiaTl4TUN0SmRTdG1VMjE1ZEhGb2FFaHdURFF4V1dGMVIwWTJOMDVOZVRSRVlncE9lWGRVZVdWSGMyNXVWM0ZJUzNsMmNIQk5OSGhJVDAxb1JGTmFjMWRxVG5WelRVMDRaSEp4U1V3d2JYWkxTM2xaTURBMmNWbGpNVlYwU0RsdWFrWkVDbkJ2YkVjclkydEpNbGREWTAxNWRXbHRXbFJzT1dkME5YSk5WMFJzUWxZd1dXNDRURlpYWjBaV2VucENSbVkzUXpkQ2FqbFpTWGd6U2xrNWNGTjFSSGdLVFd0cWJrWjFaa3BOTWl0b2R6UTVVMjEwTlRsbFkybG5UVk0yYVVaRFZtbE5jMUJUUVZsS2NVWm1UV3AzTkd4alVWTjJlVlV3ZG13MFZXYzBNRkJYU0FwbVZWSlhSVXN4YkhweVZtaERTVzVaWVdVNGMwcHVjbW95U2tSSVZ6bGlkMlZEVFVST2QzWkRhV2RvVFRaMWMxRlNUMjFXTUV0SWRFRnhTVWcwU0ZSVUNtWjJUblE1YVd4aFRWb3pSemhCZDBWNkx6ZFVSbkJOZEd4WE16aElTRWhST1RGVVRFcHNhV1Y0Ykd0TlowWm5iMkUzWmxKa1YxSXpVMjVQT1ZSeVIwa0tiSFZOYTFCNldTOHlVR2gyUms5WVdEWnlUREk0VFcxeWIyUkhXbTFsUkZoS1lrOUpZMDFUU1ZJemJrTXdRMEZsWXpWTFRHbFZiVUpsYUc5V1p6QXZNUXBKWTB4eGNFaEdkVGc1YWsxaGREbG5jMWdyV1dST1ZGUlJTVVpwV1doM1drY3lXVnA0TjFkWlN6WlROM1o0Vld0SWRrdzFRMDV4YVdZNFIySkplVlpOQ2xsamNIbERaVmQwWldaMWEzVkVOR1Z2WmxwR2RqZFViZ290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MwRkpRa0ZCUzBOQlowVkJjVUpLSzJ0SVpXeHViRk5HWWxSVFRuaE9TSEUxVVN0bVMwUjFkV0ZwU3paQ2VHOTRTWGhDWVd0emVrbElWemg1Q2pWalYyNUpja1ozVWpaNVoyaG1SM0p4YlU1YVlqSnRNVWczWkVSSE5IWnJlRUZEUVRac1MyWXZRbFZQYkdwaEsyZERWSEZ3VWs5NVRVNHZSMlZSVmpZS2RqY3ZSbUZTVFcxMU5VRjBkMjgyWVhSRFpWbDZRbVJqTTFKaFNrTmtkMnBQTDA1SlZTdDVlRlkwY1U4M1UzUklUbGRKYVhsNFFtaGliWGRpVFZORGJncE1Sbm93THpkR01GZFBVMjVIY25KaGNtaEdaWEJSY1hSQlpITmtTMk0wTlM5bk4yWkVPRVZZZVZkT05HTnplV1phYjAxa1pHWkRVRmxvWTFGWlJWVjJDbWMzZW1SRVNHVXdTbXhzYlZkUFFVVXhVR2xMTTFsUGJ5OVBia041YlZWcVkxcGljamRUU2pSU05WRnlZV2RJTTI1WVVtUjZVR3BYV0hSRFVrWXZRM1VLTW1sMGVtUjVXamx6V25OUFdqaHBjMHRXYzBkSFoyMVlkSHA2Y0cxNmJqVm9XWFkyVlZsS1lsUnFaR0YyUTJKc2JYaEZiVXd3VEZoclJtaGpMMGw2UXdvMGNqTXZNbXg2T0ZwM05sWklaR2t4ZDFNMVdUVTBOMlExV1hRMU9YazJiVVZ0VEc5VmFtYzBhWEE0UlU5NlNXVmtMMEV3U2xsSlZuTnBVVXhTVVRZNENtOVBiM00xV0dGMWVtOWtjMDVOT0dWMFRsVndLM0JOTnpoeFRHTmFSa3RJU1VwTlRGQTFUbEZaZDNKdFIzVlJLMlJCVmxGV1dYa3ZObXhSWmpkdVMxVUtXRTl2VEVKVFkzZHpUams0YzBsd1RVeFRkR2hQV0dObFRYbzVLMlJTUm5sRlZubzBkMWxrYjJaNVJXUnNVVFZxTm05SFVVTmliWFJKYkRKWlVFaFJUd3BGT0dOR2MzWndVMU5KUzNaVmRHa3ZkRlJGUTFNdk9XdGhMMjk0VHpSTWFWY3ZPRzlIY1VnNFRUaHlRWFozYVVsRVlXSnZla1Z2VTA4eFUxQjFhbHBYQ2trMGVFSkpkQzh5U1VoTGREQXlRWEpJVVd3NU5USjVSV3h6TUVORFpYTndaMEpZVkdsWFF6ZGlVbVJxUWtkYWFHRlpaVXRRWTFJeVYzbE5RMEYzUlVFS1FWRkxRMEZuUVhjMVpXbFRjVmQ1ZVRaek5VTXpiVnBqYlN0SmJVMUhlRk55VlVweFQwbzBPREJNTnpRdk5XOUxWMkV2YVN0SFdYSmxWbnBPSzBObE9RcG5jR3BXVURKR09WZG9aemhHVG05UlZubFpZMFJ3UWtwQloyZ3ZieTlvVG5jcllWSm9Nak5ZU2tkYWMwUndXSEZMUlVNM1JuZEJSMW8wYmsxeWVta3lDbTE0Vkd4S1RUUlliV1Z0V0daNmFWTlVhWE5wYUdwNGRVSmlURWRVTDJWemFUTkNXSGxvTmxkb2JUSjFMMG8wVFVoVlIzZEJiSE5CZVdrMmVHTllVbm9LU2taelJuRk9WbFZxVmsxdE1ucDBTV0ptU2toS2JYVjVOR0Z4SzBRMlUxY3ZLM2xqU1dKS1EyaGxWRGxYYW1GMFEwSTNTV3N6YUcxalNEQjZWVzFTUlFwUlFVSktNMU56Y1hSM1JGaDJObFppY0RkeU0xaFpUalZYWW5CalRFbHZiamhTUkUxaU4xRldlVVJSSzBoVGRIQlFSemR4VFhscU56WnRXbGRvVVd4UENuTmthalJGZFdOaWVGSkxObGx2TkZWVWNFWTRhWFJ3ZDI5NUx6VkxPVGxVTkM4MFoydENaV1JoUWs0MFQwdDZWMjVWTUdWdFZrTkRkR3RLVjNoVU1sY0tXSGhNY1UxdFdGUkNaRm93YVd0Vk0xbG1PR2RMWkhjNGJFYzBXbWRVYUhoUE5HVXJWRkUwZW10YVNsRlBObkUwY1hWeFZrVmllR1ppWjA5eVoybDNlQW8wZUZFME4yOVNTVWMzZW5odlZFSXZWV3huT1VGWFVGbHBLM1k1VDNONVl6TkNhek5rY1hoaWRVVjJPQ3R5UzBRemVXSXpLMnhsUW1KNWFWWm5lQzlKQ2pGa0wwaEVRVXh4T0ZoNldWaHZheTlaYmxKS1JWazRlak55VG00dllVSkxXbVZtYjJkQ1VFNXhUVzlQY1V0eGNFRTVkMWsyYXpWa1Rub3hSa2hyWmxRS1NTOTRjWEF4VDFoUlFUVmhaemRyUjA5S1YxRXdkSFpaU205dk1rMVdUMnB6U20xUVdXVnJTaXRXVDJGWU0yVnVhMFU0V2s1d2FGcHpaWGh1UVhnNGFBcFJkMDVuWld0clFURnVkVU5yWjFOeFRFNWhOREJHU0dkelYwRnZUa3hYTTBoMGMyRmlja2RrZHpKSlkySjFWMHcyVVV0RFFWRkZRWGRWT0VFNFNrZG1DbHBsZWtNeVZpdGxNMHN2YWprdmMycFdZakpVUXpORFNIWlNOV1ExYTBwcGVEaFVSblZTYTJaSGNUaEdZV1pLT1hKME1HNXJTMVJhTDB4NVlpdHJRMllLZVdobVUybHRkVTF0UlVwU1dqUnpWeXR0TTJVclQwcHpWek5OWW5OWFZHWjZUblE0T0hWdlV6TlFhSGROU1hGdVFWbFVOSFl5WWxSVlYxTk9SM1ZyV1Fwek5IRkVjRE5hYzJrM2JVUm5lV2hLWkZaWlNtOVZZMUJvTjFsb2JtTjRUbWh4WWpKUU4xUXdZekZEUkU1bmJFdE9SVTFITUVobWNWQmplR2RuUTJ4MUNtTTVVemRJV2taWE9VY3ZVWGRQVG1ST1JHOWpNVU5wVUc1M1ZGUkJabGxYU2xORVVGaG5jMWRLU1U5UFZuZGxSazRyYlVoeWJ6VlZaVVl3YTA5ME56WUthVUUxUVc5VmFtWjBXSFYzYzNsMVNWQldUaXQ1WVVsMlozWnhTemRMTlhWT1pHRnJlR0pMY1ZKcWIwcHNWRVpCZVZneWIySnpZbFJDVnpabVFtd3pOQW8zY0RkM1ZFUjJaVGMxZVUxc2QwdERRVkZGUVROd1VrMDJUMGR6TUUxS1VWSkdVek14TDNWUldHZFlWRmxqT0dJelNYTllNSEZEYTJOQmNqSnROV2hKQ2xBeU5GTmlSbWh5TVRkU1VrRlhhMjV0TVhGdlduUnZWbmhNUlROSFpFMUJRVWRqYWxoaVYwUlpXa3c1YTA1R1RYUnJVbnBsUTNsbGRVUTVabTE0UTJJS1NsQndWRXhNU1dJemVHVk1hVlo0WVhoUVdFa3dhemx2T1dKSFNVWkZVM1V5WTJVNWJXUk1VM2sxZWtZNVkzZzRhRmRMV1cxSlZWcHFWelpxYlZGaU9BcFhXR0ZFVEN0aFZYaGhWa3hQVkhOdk1FTmxibUZMV0ZSdFdWcGljMUpKTm5wMlpHcGlTM3BWVEZOSVZXSTBjV05ETVZab1RGaFFVQ3RPWkhkRmQwd3dDak5qWkRReVpsWktkVmxJV25VMVNGcGFabFZHTlRGTlJ6a3dia2xITTA1TFdqbG5WSFp1TTBVdmMyRjJSRzUzYVdRMlYyTmhSRGRpZFd4TmRYSTFSVVlLVjNjMlkycE5MMFEwYVVaTVluWTViMWx3VUUwME1HZ3hRU3N3VUhaWVpucG9UVEkwZDNNMVlsWlJTME5CVVVKaFluQTBkVGROUlZsRGNHNW5NMU5ZVWdwalozVkJORU5FV1hCS1dXTjJUMnRVV2xKb2FXUjBORVpRU2pKUVExSjVUeTlDTDFwUU5VeHBZMmd4YmxGdFpXdElOSGROYkRWNmNFTjRialJ1V0Zkd0NtRlRWSGd2Y0ZOcFZsUkpRbFowVDBGUFMzQlZORFkzTjBKQ1pFSkJTbGxSWmpkNmExTkphakpaWjBkSlkxRTRZM1poUW5oWVYybHlNMWh1V0hCelVVTUtNMkZsVkdaUk5WbGpVV0ZUVWpBNFVtMTJaa0V2VjIxeVR6UktjSEpVY2t0ck0ya3JiRGQyTmtaUU1HdEhNbFZsZDJaVVNFbENja2N6TVdOc04zVTRlQW8zVUd4SmN6RlVVRGhRZFRWdFRIZFFiRlU0ZEZaTVZuQmhlRGN6YWs1SmQwSk5aR0pIVnpaUFEwcGljalY2VUVoR2VrOTVkM04xVEZOTVpXUm1RakJFQ25CeWFUQkxVVXBWVW1wS1JFYzNaVVZYTjJOUlNVVXpOSEU1UW5KdFJHbHRTRGxMU2pBdkwwOUJlRmd2ZEUwelZtUmliVFZZWXpkMGRYSmpTbmQwZURVS1ZtUkNSRUZ2U1VKQlVVUlRSR1JFTjFseFkzVkxTVTlLZVZFemNrcG1NR0o2Y0VkeU1UaEpjV2MxV1VzNFFraG1jakpyUjJSR1QxTnJVRmRSUkVjMVV3cEdiR3AzV2s5WE9VSnVVM2hDUWxoU1JqVkhlSEpIUW5aQlQySjFZeTlQTW1KUWMyZzFXRkp2SzNaaGFVeHFTRzlJWkRkRVVEUjFOaTlSWW5KM2JtSjBDazV3U1RSSmRFZERNbHBaV21KR2JsbHlVaXRKVTFReFpWSTVUMWRVVGtWck1sTkpNV3Q2VEdONWNYcExSelp3SzNkRVFtbHdZVmxZV1M5SWQycGpTbEFLVDBkNGFXRlpUbVF4YkRVeVRYcEZZbnBUU0ZKWVUzWnJNRXhIYWtOUlVVRlNPVWgwU21wdFdIUkpOMDlVTWt0NFN6bG5XVU5STVVGR1FsUnZWbFZYY2dwaVdFVnVVa1ZEVUhGUmNGZFJhRkJ5Tkd4VFdVY3hhbGcwWVV4WlptMWpaMHhwT1dSRmVXVlJSazV2YW5jeFlXOWFRVXBIVEVNeVMzWnhTbVJtVjBsWENtdFhaRmxNUnlzNWQwWkNNMGR3Vm1ORVEyaDZibUpXVXpKeVkwbEhZV3N4UVc5SlFrRkJWSFYzT0ZRMWRVUXdiRXBHUW5CR2RXbzFWSGhIUml0cVRURUtSelkzTVhwRWNVRmliMkowTVVKS01tTk1SRk4zZDNGcVZGWmhTa2hzWlRNM2RTczRMMUpPZERCb1VXbGpZbTlUVEVsd1NWbzRVa3R5U1VSTFFsSk5XQW8yZFN0eWFGUmpOR0V4VDJVMlVXWnpOa2h1UjIxVmVETmlSbTlZWVdGbGEzVnVXSGRoVVUxaWQyb3lhR3RaYWpOMlNqSTVNVmMxUTBsWGFUQkVNMEprQ25sM1ZXaHhTMkl4TjA5UlRGbHlVeTkxUkd0S1VFTmFNbkJLU1dSWmMzbENVRnBSTWpSM1pIaFdURGRoZWtKUlpWQjNObWN2V1hKTVpIbDBSbXA1T0U4S0szZEdUR3d4WVhOT2F6aGFVMFpPVTFoRlltWXpTVnBTYVhvMFdYbGFTa05YWW5CelduUnFlU3REUzFsUU1XWnVOamQ0VUZkdlpVeFZWVlpKWm05Qk9RcElZMmxxYmpkc1ZFdExiVWxMVkcxb1ZHTXlhWGRhUzBsaWQycElkWGRGT0ZjM1ZFVndlVUZyTDNCcFRrZzVSREYxWmxaeWJGTlNNbnB1ZHowS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiBzZ3E4dXQ3dnAwZnhiZ2cwanlvYzFkd2dkbjVnMnptOWoxb3RhenJyOWh6azgybzY3bXRvNmYzcXBxdnB0anQ4N2M0azlqZGx5NWc2ZWoybzc5OG0xaWRlY3NlemZvNm1ubHQ1ODJxM3puajQzZXdseXd4azlxejYweWJlYmZ2dwo=\"\n + \ }\n ]\n }" headers: cache-control: - no-cache content-length: - - '13072' + - '13084' content-type: - application/json date: - - Wed, 14 Jun 2023 21:28:19 GMT + - Thu, 29 Jun 2023 09:41:01 GMT expires: - '-1' pragma: @@ -1191,24 +1344,24 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ - \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSUzFSV1FVeE1Xbll3Umt4aVpEbDZXREZRZVc4clZFRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxVVVYbE5WRVV4VFdwc1lVZEJPSGxOUkZWNlRVUlplRTVFU1hoTmFsVjVUMVp2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVSRkNqRm5VVmgwT1V4cU9HVkRVeTlNU1VGRFNFWTJjVEpEUTNScE1YQmliV2hMTlhOUlNrMHlZaTlhYzBOVlkwZ3dOR3g2TmpZMlQyZzJSWE16ZERWYVdsb0tUV0ZrUlZWV1kxRk9VVkV6YmpsSlNIcDVXbU5vVW5aclVEQkRSRWxpYTJKb2IxcFZjMGxWT1dKWlVqUldXVkprYW1JeVRYQlRSVmhKV0ZBdkwwNXhaQW80Y0VaMVVISnFORlZyTlVkSlFrUjZlR2RqTlV4aU5WVTJRVEJKZDBzMlRrNDRiSEZTTUhGVFNISlFaRlpUTVcxRVVYVnZkbEk0WkZwc1kzRXlZbUpUQ25CVGRFOUhUVWRrUzBwalVUTllXSEZ2Y1ZWMGJqQk1iMk5RSzJaSVdrc3ZRV0ZrU1RabWRVZDFWbXBIYm5wM2FXZHpRWFpLTm5KdFFYSnZTelo2VVdJS1RsbHdNVVpuV1dWM1UzbFNTVVpXZERrMGJHOHJWMGR4TkhjMFJYVkJNVTFMVEc1UU5tdHNhSE51Y1d0NFlWSkhUbGh3YTNWbWFtUlVLMDUxZGxCUU5Bb3dNbTF1ZFhkWk9GSk9haTlIUVVkb1ExY3lkVU5zVGpOWE4xZEROV3hOVW1OSVdVd3hSVkZIUlVOd015dDFObGN3V0dKdVZ6bFRkVXRUVlZsUE5FaGtDbFZTU0VkRU5rZENhaTlYVTNwbk4zTk5OVVl5Y0dSYWNFTXhLME55UzFsVmFrTmtSVzlJVW5aeE4yNWlSbElyY1VzMlQwUkhlUzlCZWtwdGFrbDZkV1lLWlM5eFowVlhkVVprVVRCSmJsRjJibmhpVTFwSFVGRlNXR3RDYkVoTmRUZHhha3BMWmpGeVRsQnBWV3B0YW0weVF6RXZNa2xIZFZsSWJqZGtZVEZLVGdwNlZsbDFXRFpqUW5BMk1IZGpSMDVvY3pkdWJqUkRjRzhyVm1FelUwcFlNV3B4VkhKcFozUjVabGhXVVRKTmRIbGhkWE5rVmxCdlYwWk5ObGxCT1VsbkNrMW1aamt3VDJSV2FsZEtNRmN6UjJKNVUxWjRWMGxxV21sbk5EWTFOVVZQYjNSUlFVOVpkWGhoSzFWUE1HdGhkaXMyTVZRekwwNUxlRWhNWW5kRVNtOEtlamRtTWxOYVlqbHpjRFJVUTBaUlRuVnpaVzl5VG1Sb09WRlVlbk5pY1RrM1JVVllWREk0TjBSM1NVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWdGNITkdjMk1yZUVWM1ZGTnhjWEpoQ25jNFNHTnlSM2x2ZVZWbmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGR2FVcFFjVlZLU25SQ1VGaGtNWGs1UTJ4VlRtVlhSRlprY1VFS2RXUlJTbE0xZUVoYWEyTlNlVlI2VUhjMVkzbGFVV1Y2SzNKeGRsTm5WVVZVTkRKUGVtOW9heTlJWTB4RVlWbHlXVTVqYjJaTGFYWkxXRU0yYkN0amRnbzRVSGR2ZERRdk9FRnZaVEoxU1ZwTWNuRldNbFpCTkZwMGVVUkJhR056V205TlJtRnhhaXREY3pKVWNraHFhRTFuU0RsM1ZUSTNkVmQ0VXpWVlRFZzBDa05aTldSdGEwbEhRM2xGS3pSYVYwZFNXRk15YVRWVWNsVkxSMUpRYW5SU2R6ZzViVkZ0YjB4NGJIRlVjM2RYSzBwWmMwRjJWM2czVjNCRGFqWkpZVzBLVFVSSWFtd3phbVJYU1VFMlVVczBMM2RwVWxKT1VuaEZNV0V4VkdWVlVqZ3dTalJTUzNaalduZ3lhRVFyUlV3NFMwUjJNMmhRZEhSdmVYbDNkamxKZWdwQkt6Qk1NVXhOVm0xbVJIRlhRMmcyUXpKUWFsazFhV3hWYXpCTWJYbFVkbUZHVG1KNk5GWjFTbUpyWXpKdFdGTmpZVmt4VFVGYVVYWXdZVEJZUmtVd0NuZFVTMDlpZFdGWGF6VldhbHBPYTNWSWQwZHhZM2RDY1VVMVQxZFFZbHBqTW14S05IQkpRMGxUVDBSeFRreHRjbGhUTWxOeVRYUXpkVTlFWVhacFpuWUtUV016ZUZSVGFtOW5TR1V6VG1zd1kzSlFTRmhuZGpKT1pYWmpTbTlKWjJSTE1FVXdiM2h2UlhrMVkwOXNkV2R3WjJsMmFTOVZNRzVEVmpacFMyRTFVZ3BuUVhVdmNURnFUelpQYUhabFZrRmFZbTlIT0hKdE5VSmlVbXBCYTFsMFltVm1hMlZaZWxneFoxUmtWR2gzYjFCdk1IazVRVFEwTDI1UldHcEZkV3B3Q2pCcFdHMUJlbWx3VVZGdGFFaFROalpIZFdobWRVbEtTbmRRTXpaRGEyOHZXRkp0VDBJMk5IZG9PRUo2WlVWbU5VNXhNRWs0YUhkaWJrTmpjbmQ1VjBVS2FUbHZkbXgzZGs5M01tbFVSMjlwY2pkdGRVY3lOakowY2tGQ1l6bDFRaTkxWlN0Mk5rZENVRWhKVW5oc1kxTlFZMnBvTjNodFpqWlNZVUZaWWxneE5RcGpjWGxaV2tJNFJ6TlZRVTlEZVhSTENpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc3BoeHVqd2gtNms2azQ1Y2guaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3QyaGdic28KY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3QyaGdic28KICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3RvZTYzYjc0Ynh6X2NsaWFrc3Rlc3QyaGdic28KICBuYW1lOiBjbGlha3N0ZXN0MmhnYnNvCmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdDJoZ2JzbwpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3RvZTYzYjc0Ynh6X2NsaWFrc3Rlc3QyaGdic28KICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJVkVORFFYZFhaMEYzU1VKQlowbFJXbVJUUmpnMk9HUk1jemtyZG5kM0wxcFlaMWx1ZWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZ6UmtGRVFVNEtUVkZ6ZDBOUldVUldVVkZFUlhkS2FsbFVRV1ZHZHpCNVRYcEJNazFVVVhsTlZFVXhUV3BzWVVaM01IbE9WRUV5VFZSUmVVMVVTVEZOYW14aFRVUkJlQXBHZWtGV1FtZE9Wa0pCYjFSRWJrNDFZek5TYkdKVWNIUlpXRTR3V2xoS2VrMVNWWGRGZDFsRVZsRlJSRVYzZUhSWldFNHdXbGhLYW1KSGJHeGlibEYzQ21kblNXbE5RVEJIUTFOeFIxTkpZak5FVVVWQ1FWRlZRVUUwU1VORWQwRjNaMmRKUzBGdlNVTkJVVU01VURaUWJtSk1SME5TU2tsV00zUmhWVVpWYVhNS2FIRjZOMHRHWld4MWJGa3ZVVWRzWkd4dE9XOXJiRGRSVVc4d1NtbFhTVWRJVEZJNFVWSndVazkxWmtKQ09YcDZTRkJuUkVGS1VWUkpja3RDWm1aaWJBcEthazVTT1ZGNGRVbEhXVFY0TXpWalNEZzFWWFZNUkdoTmFpOHdia3BSWVVWRWJXbDNla3BVU0V4Qk9GVTFSbXR3TVVNMldYRk9lVzVYVTAxdlptZDVDbkozUjFaTFJYYzVRbGxNV1RSek0wWnBNMEZoT0hWSGMwUXljVFo2T1hVMlJFaDFURm96UVVnclN6Y3lhVXRIU25CNVRFWnJSVUZ2TW0xRlJEbDNjbVVLWkcxb1JqSjFjVEJTVUZKRGFHbEpPSFpzVG1KT1dVazBOQ3N3Y0ZoM2JVNUZVeXM0UjNwQ1kydzVkbTF3T0dsVFN6QXdVV2xoVm1jMlVEVkxaWFYyWndvNFN6ZG5kVlZMTTFadGMxWnpkVkUxU2tSbU9HZGplRXAzUmpSdWFFRldXV1ZYVWpkVGQyRlpjRlZ0YUM5eWJIbFhTMUV2ZERkc00zTlBSVkI1T1hSd0NsUTVUV0pGY0hselRFNDVTRXRPY1VjdmJERlVWMjl0YXk5R0sxTjNaMVpaUVZOTVNXRlJhWGhuVEdObFZubDJOaXRpYlZKVEt6WkxSblppTWs5d2JWZ0tSWE16WnpFNGFFVjFVRXBhY0VkVFVHZDZXbVl4YWxaTGNqQXZXRUZuTlZRd1VubzBOa05pUWpKR2VrSnVObWhzUTJOc1VsZGFNRXMyVmtwbk55ODJVZ3BwTVZwa1JIUkVlbEJJYmpkRFpraHFUakZ4YVdKUE1HUnNaRlJRU0ZkTFFsZDJOREpHZEV4UFUydFZTa3hLVURsSVJYWk5kV2wyVmxKYVRYSjRTRVJZQ2t4WGFFTXdTME40WkU1dWNTdFFVWEpFTUZCamQySnRPV2hqWVhkMFNHNTZTRFkxWTBkb05rZG1SMll3UmpkMFFVdFllbVYzUkU1MGFETjJja3B6Y20wS1RGcEpaRGxHT0RGcFQzQTNhR2haU201VVpsQjFSbGhXZG1sRk0ySjJjMUZGVkdkRmVGZG9NbVJQTjFCMVlsZEdZVFZwVjBzNVowTXZLMkUxUVZWa1pBcG1iRkpuTjFwdU9GRlRVM0I2VFhJeFNYSTBhMHBSU1VSQlVVRkNiekZaZDFaRVFVOUNaMDVXU0ZFNFFrRm1PRVZDUVUxRFFtRkJkMFYzV1VSV1VqQnNDa0pCZDNkRFoxbEpTM2RaUWtKUlZVaEJkMGwzUkVGWlJGWlNNRlJCVVVndlFrRkpkMEZFUVdaQ1owNVdTRk5OUlVkRVFWZG5RbE5oYlhkWGVIbzNSVlFLUWs1TGNYRjBja1IzWkhsellrdHFTbE5FUVU1Q1oydHhhR3RwUnpsM01FSkJVWE5HUVVGUFEwRm5SVUZDV210UFlUZ3JRMWg2VjNWc1ZXeDRWMHd4ZFFwbFRFSkRSRVFyT0hsMGMybGFhbHBNZEdaR1RHc3dOVzh6YW5wemVIQXphRkV4V2xsMlZHeG5RV3hoUzFGWVFVTktjM2gxWkRock1ERnFXblJUYUhaUENuYzRUR2RQWm1SU2FVZGhVbmx0U0drMU5VOW9XbUpTWWpkQ2VuQlBRMUZhU21aUlRFMTBOUzlRYm1rek9FSnBZMUJvVnpWYVVsSkpkMnRtZFRSUmFVb0tWV3BXTWpSaVp6TkJWWFEwUVVKUlRXcHJaREZTZDBrcmFDdGhTRUpaVlcxamNsTk9WV3BtYmtsbFlrRXpTR2xTWTBWSWMyRmlNMGRLUVZVNWJtdFNXUXBSYUdSMk9XZFZPSHBVZVRJMFJVVTFUbXgyZVZsWmQxUlNabVZuYUNzNFpUZEVSbGhQWkN0RGFrNXRaRkIzZEZWQmFsWllhMWhrYURsSGRVeFJOMloxQ21kaGJWaHpTRWhuYzFSSEsxQnVXVmRDYjNSVFNEaGhhVnBqTVVoblVtaHJValZRWlV0U1RqaFlhelpOTHpac2NFODNVbGsxT0Vob1N6WmxZbFZCYWtVS2NEZzFhRlJFTW1WWGFXMXVjbFkxUW1STWFtcE9iRUl4YkRKUU16Tk1SU3RFZG5sSlZ6azFPRTg1YkRKWGJGSmFSMFp2S3pCbGEzVXdXVWRIUVROWWNncHNaVzVrUWpoamNraDNRVnBzVUhoV1dGb3pSVXhVVmxaUU9VZFliWFkyZVRJNVdXRXlVa1YwUXpsaFdYVTBVMnhJUW1Nek9GZFRPR2RUV1RaM2VUSXZDazFRZERoSGFuRjNSaXRRT0VVMU9IRXhhRlZNWkdoSkx5dG5ObWRYVjA1WU5WWnVZMWhMUzNCWmVVdHRMMGh6TjJJelMwTTJZMEVyZGtOR01qQk5UVmdLZEVNMGQyMVlLMlpTYlhFclZtWlJabEJuTUVkVk1uQTJlRlJFVFVWVmRFSnZibmgyUTBOV1VXVjBNVXhNYkcxcUt6Tkhaa2hGZDI4ME5tWktjVkJQUWdwcVZUVlRNek5YUWxSaGRYTlpVa2cyUjNSNFpsSkxXSGxNTjJOVFMyd3JMMnhhWlVWNGRWVkVhRU5SWXpnemVuaGtTM3BFY25FeU9WZGxVVWw1T0N0bUNuVXdTRUZCUjIxbUwwTlhiV2xrVkhGU1VTOVZPVVpKUFFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMEZKUWtGQlMwTkJaMFZCZGxRcmFqVXllWGhuYTFOVFJtUTNWMnhDVmtseVNXRnpLM2xvV0hCaWNGZFFNRUp3V0ZwYWRtRktTbVV3UlV0T0NrTlpiR2xDYUhrd1prVkZZVlZVY201M1VXWmpPSGg2TkVGM1ExVkZlVXQ1WjFnek1qVlRXWHBWWmxWTlltbENiVTlqWkN0WVFpOVBWa3hwZHpSVVNTOEtPVXA1VlVkb1FUVnZjMDE1VlhoNWQxQkdUMUphUzJSUmRXMUxhbU53TVd0cVMwZzBUWEU0UW14VGFFMVFVVmRETWs5TVRuaFpkSGRIZGt4b2NrRTVjUXAxY3k5aWRXZDROMmt5WkhkQ0wybDFPVzlwYUdsaFkybDRXa0pCUzA1d2FFRXZZMHN6YmxwdlVtUnljWFJGVkRCUmIxbHBVRXcxVkZkNlYwTlBUMUIwQ2t0V09FcHFVa1YyZGtKemQxaEtabUkxY1daSmEybDBUa1ZKYld4WlQyb3JVMjV5Y2pSUVEzVTBUR3hEZERGYWNrWmlUR3RQVTFFekwwbElUVk5qUW1VS1NqUlJSbGRJYkd0bE1ITkhiVXRXU205bU5qVmpiR2xyVURkbE5XUTNSR2hFT0haaVlWVXZWRWQ0UzJOeVEzcG1VbmxxWVdoMk5XUlZNWEZLY0ZCNFpncHJjMGxHVjBGRmFYbEhhMGx6V1VNelNHeGpjaXQyYlRWclZYWjFhV2hpTWpscWNWcHNlRXhPTkU1bVNWSk1hbmxYWVZKcmFqUk5NbGc1V1RGVGNUbFFDakYzU1U5Vk9VVmpLMDluYlhka2FHTjNXaXR2V2xGdVNsVldiV1JEZFd4VFdVOHZLMnRaZEZkWVVUZFJPSHA0TlN0M2JuZzBlbVJoYjIxNmRFaGFXRlVLZW5neGFXZFdjaXRPYUdKVGVtdHdSa05UZVZRdlVuaE1la3h2Y2pGVlYxUkxPRkozTVhreGIxRjBRMmR6V0ZSYU5uWnFNRXQzT1VRelRVYzFkbGxZUndwelRGSTFPSGdyZFZoQ2IyVm9ibmh1T1VKbE4xRkRiRGd6YzBGNllsbGtOelo1WWtzMWFUSlRTR1pTWms1WmFuRmxORmxYUTFvd00zbzNhRll4WWpSb0NrNHlOemRGUWtVMFFrMVdiMlJ1VkhWNk4yMHhhRmQxV1d4cGRsbEJkaTl0ZFZGR1NGaFlOVlZaVHpKYUwwVkZhM0ZqZWtzNVUwc3JTa05WUTBGM1JVRUtRVkZMUTBGblFWQk1XRTUyY3k4dmIyVnhaR054WVhBM05XUnJWMUJTWWxOaVkwaGFkMHd2TmtGeGFIZHZVV1lyVlhZM1dIQlFOalp5VWtnelpUUllaUXBGVkhGVVIxTTFUa0pPZUhKbmRqbEJMMjFNYUhobU5tRTVRV1JDUTFoa1JVMHljbnA1YUZadmRrNDRaR1JGSzFBMkswRkVjalIzUW1scE1ESnBaV0ZXQ21KNVNYbEhSRXh4U1RadFpHTlBNMEZvVUdsdE1FbHBiak55VjFKSGQyWTVaRzFZYlROMlNraG5jV3RQUm5OcEt6Ukpka2w1VGs4clpEY3dabWh5UkVJS01WZElaWGRqYzBkaGNEZEtPREpYVDJkeGMybHROa1E0VDBkMlpYVTFRbEpUWlZaWk16ZzNXRXAyY2tnNVJuVnlSRkJsVFhGSWNqQjJia281Y0dOek1ncFJkR1l5UmxKbVJuWTVPRTlIWm5KelVVb3pTM29yVkZaQ1JtRXlhVFZpTmpOMVJFTTBNazVxVFdneWNtdzBVVVk1UlV3eVFub3JSakk0YVhnNU9IQm1DazlRTUcxalRuTmxOblJpYTI1TlpGQmtUMU5wTDAxVFVVSTRSbTgxVjFacmQybG9abE5CZWtwcmQwSmlNMFJXTVdKQ2NXOUZSMFZCVDNSTmJXazBUbk1LZDJGUWRITkdVVlV5TWpWSGRVTnFXbVIxV0ZoSVlqSlhibmR3WVZsM2VHaGtUbEJ0WkRGcWQzWkxaMWRtV0U5eWFVRkJWMFF6T1M5S2JXcDBSMk0zZUFwTlVrMWtkMVJ6U1ZGaWVYRXJURkJCYlRORE5rSk1URTVDUTNrdmEwOUpPREZFYkdoaE1FWTBNelY0UzFCV1dGZG5jbXh3TWpGbFZGY3dMMmhaUVZreENsVmlZa3RwUmpoWlJrVkpTblZwVkRkR1FUWm1RMWd3Vmt0YVEyMHpkR0V2UzJNeFJYZDVMMGxxWTNWaWJFc3pjWGRWTlROMFFWUTVOV2hNTDI5b1pIRUtRekp0WTJwMGFtbDFielUxVDNsQ1F6bFVUekZ1UTFoQ01GUmpkMUV3TUZRNVlXb3hWVVI0WTBndllqVXlSR2d3Yld4bFVrSkJMMnhITUdoclFXNXZUd281YkU0d1RFeHBjR3h0ZVZSVFRtWk5TMFIxZDNablRqTlhORXhaUWxKelVFRTNRMHc1Y0VNd1pXNHhhbEJKTVhaWlVVdERRVkZGUVhwdUt6WkZObTA0Q25ObGRrSmFiMnBCUmxnNWFraG9PR1JaTlRkbE1HZEpORWt2VERSRldreFROMmxoUzNOalpYZFliVlFyVDJsdmFqQnhUMUkyTHpaeVMxRm9hbFJrS3pVS1RsUkxlallyVW5aeFQwZFRSbWxQTlZWTlduQXJURU54UTBaTVNXZFhiV015UmtkV2RuWnRPSFp6S3pCVlVHcG1PV3NyYmpFeU4yNTNOMDlNZVRkdlJ3cEpORlpQV1ZvemRrdGhlRFprT1dWbGJpczJlRk5CTDFSTFZYTnZTakp5UWpsU1EyZG9UbkV3WTB0dFNuZHNWbXBRYVhoNVZEQjZkM2g2TjAwMlNEVm9Dak52UldaVWRURm5RbU13V0ZCbFExSXpTemhWYzAxMFdGQkRNMmd2VTNNeldrNVhZbUpQY1ZwalVXVlhTbXczVVZaMGEzRTBTbTFJYUhJeFVsaFplRWNLWm5SU2JrWm1OWEJXVEZscmNFUjNUMnN5TVVKNllYSkZkVEpZUVdKeFptOXRkbU4xUjJWalJERXhSbGd3YW5aQlExcDJha2s0TDFwaVVFdGpkemhNVGdwWVlqSnZLMlY2WjBvMFVHNVZkMHREUVZGRlFUWndNVTkwUldGcU0yZ3dhWHBHYzNaSVVWRk1Zak5VV1RSeWRpOVdLMHBVZDB0V05XdzNaMnRuU1RNNENtWkdUblZvT1RWMVpFZEljVXgzTkRKSGJHYzBlbEE1VlV4VmVuRkRjR2wwYjFocFVsaEdOUzlSU0c5WGNHeHVNRmRPYmt0WlltMTBaVzFoZWtGeWRXTUtVVkpPV1RkeVEzWlpkbTFtSzBSemFtaFVRVVZUZWk4eFREQXpOMU5sYTNOaFVGRkRXa016UjBsTWNEaEJSbTFGU3paeWJrWnVSelF2YzNKUUsyeGFTZ3BWWlZoT1Ztd3dTMEl4WkVVd2RucFBURTFYVmxsSE4zRlpjV2h5Ym5KTFpsaExlRlI1YTFOSmVFaG9PQ3RsYTJ4NlVscGxSVE50YlhsUU9XcDFTamhuQ25nMVkzZE5SMWhMWld4V2VtZFRSVmw0YkdFd1VVNDVZa1ZXVERjeGRsaHhhVTlFT0hFeE1sWTFja3N2VFc1UFkxQjBjVzVwZFdodlMzWTFhU3Q2TTFvS2VEQkJlbGx4VTBWSFNYWmFVMHhHZHk5ME5sbzFRV2hXT1VKallWSTNVbXhOY1VadlVsbzBkbkIzUzBOQlVVSm1NSGN5TmxOcE0zbE5iMFJSTXl0NWFncEVWRmxzY1VSTGRra3JOSEZpYWxVelIxZDZZMWQwU0daRFlYVmhla0oxWmpocFZ6TlJRVGRZYkVkblIzQXljM1EwTWt0U2NFcDNRbVk0U0ZkWFZ6aHVDbGt5VjNwUFIybHhabmxvTVRaNVZUaE1ORFI2TXpWeFZrWXlZbmc1Um05UFFXSjVabEp3TlVoWmNtUXdWbFppWm1wa1dERmxRMGRhU1dsak5WUldla3NLWW1WME1qWlhkMGR6TTBVMVF6TTNiSHB4WVZob1FXSXhabVl5TDB0UE5VdDVZVWhRZFVkblVsWm1Za1p5WlV0a01IaHhjbGRPY0RWemJHMW5LM0UxZHdwbmNtVnBWWGt2WTNoTVNrcFRSa3d5TjJsUVRXODVNVlYzV0hOaGF6bE5XV3BJYVRBeldrczBaWEJhV0VjeVpUQnpkVEp5UWpSckwwZGliWE5xZURZMUNqTk1kM05MYlVwd1RESTBNWHB0VkRCM1ZXTklSVzkyZVZCWWJqZE5lVk53UzIxdmFXVlBLMjlvWkhCc2NDOUplR2xJVVU5ek4zTjRTVTh6YXpkSVRXOEtXWGxHV2tGdlNVSkJSV3BwTldacFRHMVplaTlqUkdkalpUazFMM2w1TW5SR01WRmFTVFZMYURsWVREYzVXRW93SzNGSlZtVnJUVVpwUjJ0a1lWTk5kUW8yUW05SFUwUnBWeTg0TlhZMVF6ZFBibXRpT0dRM1UyRlRSVFY0TjFGaFV6VXdXakl5TjNCbGNuTnFPV0pwSzBGcFJYaHdSRWh2VEVWTE0xZHdhVmxTQ21SMWEyWk9hMGhEVlZKTmRtOHpVVEoyWTB0UlpHZFBSa04wYTJ0bU1VUmlibTV3WkZaUWNHSTVZalkzVW1OWGFVeEZjVkpWSzFoc2FHOHdNa05ySzA0S2FGRjNia1JqV2tzck9GVm9jMEk1UjFFeWFtbENWRUU1VDFOeE1XSXJabHB3Y201akwwdHNhVTFaWmt4WE1ERkhVMmw1Y0VGMk15dHpha2hYTjJKb2FncHZObUZUUzJGbk1HUXpkRkEyU0V4U1dGQjJSRWRyUnpjME9FMDFTamhEY2prd2IzUk5TRlV5WVV0YU1qTlRWeXROWmtoeWJsTlRVbWhYVlRONGRrZzFDbEZHSzJSQlNWZDBhMmhIVG5CWFdsaGFkM0YyZFVkRGNWWkZTMDFwYWtWRFoyZEZRa0ZMY0dsRFJETjRTVk5PT0RWNU0yNHdZVzk0TmxRMWQxbE1TRTRLYlhCRWRWRldjRVZLUmpKM1QwSnJZa04zWVVsaVR6VlhiWEJZVFRsbWVuQlhSVmRGVFdwYU5GZFpUemhMZFdKeFZXSnpNRU5tUW5KdlpGRllVbTl6Y3dwMmEyaEtSRWRFVEV4b01YWmFTa2h3Y2lzMGNHTkVXVTF2TjFGcGVWQlRhbHBWWlZoRlpuUktXR1YyYWpoS1dsTjFXWEY1VDBobWRsTnhMeXRQZVc5VkNrMUhjVkpTYTJoUlJ6TkVObWN3YlhadU5qZENjVFozY3pWTmNYUk1WRmxLVTBGeFVucHllblEwVjFkbFkwdGpNeXRGZGtocFJHUkdVRTVNY1hKelNVWUtXR1JvZHpGek9VSjBhVFo2UzBsMk0yMVBWa0poTWxkdFdqSTRSMkZDU0d0ME0wRnFNV05ZZVRKWGVWbHhhakJtYlc0Mk1qbGFVVmsxYVdOelF6UktRUXBJVDBZMWRGaFZjMU5TT1VobGVpdHRNMjFvTDFWRU5Xc3dXWHB3VVhrNWIxTTRjVTlqWVhFNVRHOXBkMFI0VG04MlZFVjBjRWRuYkZCclp6MEtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogc3NyN2ZxbWN3ajJubXlzZnc0cmJqM3kxY2JsZng0eXAzbG5yc2oyeW1lYm1wMnFxcWxiZWNoYWE0dTRjaXc4N3FlZ2FyMHJjbWxuN201MTZ2dDVvbDZzYmptdWluOHhpZ3l1N2k2Mm5jMnN1ZndzOXBsNTRnaGl2cjl2c3cwY3IK\"\ - \n }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": + \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVV3eFNHdHZiMkpNWm1zeWNrWm5SREZ4UkV0Sk1uZDNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDA1cVNUVk5SR3Q1VG1wUmVGZG9aMUJOYWtFeFRYcEJNazFxYTNkUFZFMHlUa1JHWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNqQjNXRXhSZUhsaWVGUm9jM2xPUnpGTWJXeFpVSFUyUTIwNGQxTnVObXBrUlhwT01ETm5kV3B6VW1keVZqUjJUbkpXTHpGVGF5dFRkV2RpWWxsRVZqSUtSMWhHUVVnNU0wTXlXVVpKTWtsdWJqUlNhVXBMUkRObU5HOUVWM1pNVlV0SWQxcDNTemxUY0RKWFdsaG1MMEpQVjJKSE5WcERkemhMY3pWcVEyOXZOUXBGYnpkR1VsSkVaR2ROYm1sdlJDOWlhVXhoWW5kNWNVOXhaMjFTVDNad1EwTm5aVFZ0WkU1bmVVVnljSEJRY0c1VFkxbFVkbFpXWWpVdkswczJNRlJCQ2s5eldYcHdVSGhFZEdFemNrVTBNR054U1VaaGVWWm5VbEF3Tkc5RUsxbFNNR0Z3V1ROVVdWcFFiVzFFVVVwRlQxcHRkM1Z4TjFwUWRqUmFTbGw1WmpVS05tOHlielUyU2sweE0xUTVSR28xWTB4S09YRnhhRFYzZEhZM09VbGhaa0UyVUhaSU9VbDBUalpNUVVoRllUVlFWSFUwUVRWT2VsaDFRbE50TnpKblRBb3pjbEJCYmtONFUwVkVia3RzVEVOQlRqWktSMG94VlZwNmFXaHNkVlY2V21ocGVISndaRkZKZEcxcmN6WTRhMU56TlVoNGMzWTVWSGRVU0dOd2VGUnZDamxKTVVabVNuaGxWQzl0V21ZMVNXc3dSVlZQUWpKcFkwWmFja1l6WWpSQ1NTdENLM1l6VlVaQlRHSmxOMEUxY0ROUVFpOXFjRTVsTlM4MFExbE1WaThLV1VKTFYzVjBTbEJpVlZweldIWjFUMGhuVG5aSk9WQldSRVZOYURod1NITlFaVU4xVG0xaU1GcDFWalpJT0daUk5qTlRZVk15U1dka2FESktla2MzU2dwUWVXY3pOR0pyTDNSUFVXUndXVnB5V2xWUFNVRXhSeTg0Ymt0WldrbGxabWR1VTNSTmFqRkNkbTF2ZGxKdlNFMVdlRkpSYjFacFRHbFBiVVk1Y25wVUNpdHZiR05CVW10eUswVTFSa1EzV0VRd1kyMUxaVE5aT1RoNmNHazRTakZxYjNoTlpXSjFjMk5RUW1kamVERlFiVTV2ZDJGcmRETlFPWEYyYzNWcFRDOEtVV0pJTUZKVU15dEtjV05SYlhsWGRqaG1iM1ExYldwMGJrbDROR3RFUzJoeFVtdG1kbFpCUlhZM2MwTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1NEZ3lkVkpaUjNsaVVrVkVWVGc0Q21WUFFVeHhUbFJ5ZDBkTVRVMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlFVUkdTMXBRVlZSS2FWZHpPV3BEZVZGM1RVazJhMWwxYzJnS05VZHlUR1JaVVVaTFVsbGhia2hpTUdoM1ZHdDZlbEJpZUROaE5FVjJRbkZqVGpGbGRpdEVlbGsyUlhaSldHZHlhRE5MV0ZKd1lURjJiV3RQU0dkbllncHVMMXBpWTNobU5tRjViMDFOTld0MVdYUlBPWGd5VFhsVlExQlpVRWQzV0ZwM05WSlpUamRGTW5kemJFbHRWRTlvZG5wblFVUnNkbTgwVFhWYVZubzVDamMyUm5sNmRYcFNiRkZ2T1VOaE0zcDFNMVZWY2psTmNEa3JNMVp4WWtJelptNXBSMUZaZURacGRqUkhOMGhYTlVORVdUY3lSemRXT1VGSFJrRlRaRE1LYUdwMFJtVnFkR05OU0ROb1MyZHZUSEZKTVhSRVNGSjJRVUpUVGpBMUwyZ3dhVWRIVVdGcmVsWXdRbG92Vm1sM2NUaFNiRFJzY3k5RmFUUnNhMUZtV0FwdE5HcFVkVmx0WjBsUmJGY3pVelEwUVhOQlVHUjBZekZrWW5CU05XdHRjaXRvVDAxclFubG9lbGhyV0VaSGNEZGxiM05UUjJSWGVWRkhlV3gyY1ZJeENrOUpWa1pTYWl0NlpFa3lZV1ZEVlhOeWIyOTBhR2xCUTBSclYyMUtXRnBNZFM4eGJEVk1iMDFUTW5GblNIVnNkSE1yVERKVFZHOWtZakpoYWtGU2VGTUthMDVsYzNkVGNuWnhSbmRMWmtsdk5FVnhWSGRIUzJGcVRsSTJZbmM0YTFFM1kzZDRaWFo1VGxKSU5sTnVaMlZFYUdSV1oyczVOelJXVDJscldHTTVWd28yUm10RVJqTnJRbUZpZFdNcmFreGpSVGd6T1RsSGJuQlpVV2hqUlV0T2QzUnFabFpUVDNWd2RURTBlV29yYW5VMmRYUlBjV0ZUTVhweFlUVndPRzgwQ2t4aFVscEhkazFaZUhnMVIxRmtaRVJDVWk5RFEyeFZkelZvWVhBMVVUWldjMGx2TXpKak5VbzFkWFl5VmxsbVVFbExUQ3RTVFRaYWFHaHhaV0Z1SzBNS1UyNHhaREpFY1Rsa1dGbFZjRk4zTUhRMlMxQnJhVVJuVGtaQlkxUjBTR0psV0dKeFNVVnlhQ3RwTW1Wa01qVlFSSE5qTW0xblpsVjNlVVZPYUROR1l3cDRhbE5IVUVnM09WSldOVXB0TDJ4Q01IYzlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5zY2lrcHp5eC0xMnJud29iNi5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdHNyNXZtdwpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdHNyNXZtdwogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdHRkZmxrbG42NDZfY2xpYWtzdGVzdHNyNXZtdwogIG5hbWU6IGNsaWFrc3Rlc3RzcjV2bXcKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0c3I1dm13CmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdHRkZmxrbG42NDZfY2xpYWtzdGVzdHNyNXZtdwogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklha05EUVhkaFowRjNTVUpCWjBsU1FVcGFSVWhLVjFZMU9GSTNhRkF3UWtobGRqaElka1YzUkZGWlNrdHZXa2xvZG1OT1FWRkZURUpSUVhjS1JGUkZURTFCYTBkQk1WVkZRWGhOUTFreVJYZElhR05PVFdwTmQwNXFTVFZOUkd0NVRtcFJlRmRvWTA1TmFsVjNUbXBKTlUxRWEzcE9hbEY0VjJwQmR3cE5VbU4zUmxGWlJGWlJVVXRGZHpWNlpWaE9NRnBYTURaaVYwWjZaRWRXZVdONlJWWk5RazFIUVRGVlJVRjRUVTFpVjBaNlpFZFdlVmt5ZUhCYVZ6VXdDazFKU1VOSmFrRk9RbWRyY1docmFVYzVkekJDUVZGRlJrRkJUME5CWnpoQlRVbEpRME5uUzBOQlowVkJjVUpLSzJ0SVpXeHViRk5HWWxSVFRuaE9TSEVLTlZFclprdEVkWFZoYVVzMlFuaHZlRWw0UW1GcmMzcEpTRmM0ZVRWalYyNUpja1ozVWpaNVoyaG1SM0p4YlU1YVlqSnRNVWczWkVSSE5IWnJlRUZEUVFvMmJFdG1MMEpWVDJ4cVlTdG5RMVJ4Y0ZKUGVVMU9MMGRsVVZZMmRqY3ZSbUZTVFcxMU5VRjBkMjgyWVhSRFpWbDZRbVJqTTFKaFNrTmtkMnBQTDA1SkNsVXJlWGhXTkhGUE4xTjBTRTVYU1dsNWVFSm9ZbTEzWWsxVFEyNU1Sbm93THpkR01GZFBVMjVIY25KaGNtaEdaWEJSY1hSQlpITmtTMk0wTlM5bk4yWUtSRGhGV0hsWFRqUmpjM2xtV205TlpHUm1RMUJaYUdOUldVVlZkbWMzZW1SRVNHVXdTbXhzYlZkUFFVVXhVR2xMTTFsUGJ5OVBia041YlZWcVkxcGljZ28zVTBvMFVqVlJjbUZuU0ROdVdGSmtlbEJxVjFoMFExSkdMME4xTW1sMGVtUjVXamx6V25OUFdqaHBjMHRXYzBkSFoyMVlkSHA2Y0cxNmJqVm9XWFkyQ2xWWlNtSlVhbVJoZGtOaWJHMTRSVzFNTUV4WWEwWm9ZeTlKZWtNMGNqTXZNbXg2T0ZwM05sWklaR2t4ZDFNMVdUVTBOMlExV1hRMU9YazJiVVZ0VEc4S1ZXcG5OR2x3T0VWUGVrbGxaQzlCTUVwWlNWWnphVkZNVWxFMk9HOVBiM00xV0dGMWVtOWtjMDVOT0dWMFRsVndLM0JOTnpoeFRHTmFSa3RJU1VwTlRBcFFOVTVSV1hkeWJVZDFVU3RrUVZaUlZsbDVMelpzVVdZM2JrdFZXRTl2VEVKVFkzZHpUams0YzBsd1RVeFRkR2hQV0dObFRYbzVLMlJTUm5sRlZubzBDbmRaWkc5bWVVVmtiRkUxYWpadlIxRkRZbTEwU1d3eVdWQklVVTlGT0dOR2MzWndVMU5KUzNaVmRHa3ZkRlJGUTFNdk9XdGhMMjk0VHpSTWFWY3ZPRzhLUjNGSU9FMDRja0YyZDJsSlJHRmliM3BGYjFOUE1WTlFkV3BhVjBrMGVFSkpkQzh5U1VoTGREQXlRWEpJVVd3NU5USjVSV3h6TUVORFpYTndaMEpZVkFwcFYwTTNZbEprYWtKSFdtaGhXV1ZMVUdOU01sZDVUVU5CZDBWQlFXRk9WMDFHVVhkRVoxbEVWbEl3VUVGUlNDOUNRVkZFUVdkWFowMUNUVWRCTVZWa0NrcFJVVTFOUVc5SFEwTnpSMEZSVlVaQ2QwMURUVUYzUjBFeFZXUkZkMFZDTDNkUlEwMUJRWGRJZDFsRVZsSXdha0pDWjNkR2IwRlZabnBoTlVabllrb0tkRVZSVGxSNmVEUTBRWFZ2TVU5MlFWbHpkM2RFVVZsS1MyOWFTV2gyWTA1QlVVVk1RbEZCUkdkblNVSkJTRTl4UXk5UFFVaEdTRWd2UzJoTFNFWjRMd3BMUVhoaksxVXlZV3RzUVd0NmNVVktWVmRzVEhwalZsbzBaMDl1ZVd0emQwWk9RblZTVDB4RlpHaE9aMHR4WVhWaWFVd3hjRFZoUmpJMGF6TkJVVUZFQ2pGUWNFZFRTMU1yU1VSalRuQlljRkFyYUVGclVtaDBOWFJPTWtSVlpHZDBPRWRLWmsxWmEwUTRjSGhRWTNVelJHTjNWMHRpVjFKalVuZFFZbGhtU21VS2JFTkZXR2xRUmxOSlVtWkNXR1pSUzFseGVFaEpWVzl6TUZGcFFrbFBiaTl4TUN0SmRTdG1VMjE1ZEhGb2FFaHdURFF4V1dGMVIwWTJOMDVOZVRSRVlncE9lWGRVZVdWSGMyNXVWM0ZJUzNsMmNIQk5OSGhJVDAxb1JGTmFjMWRxVG5WelRVMDRaSEp4U1V3d2JYWkxTM2xaTURBMmNWbGpNVlYwU0RsdWFrWkVDbkJ2YkVjclkydEpNbGREWTAxNWRXbHRXbFJzT1dkME5YSk5WMFJzUWxZd1dXNDRURlpYWjBaV2VucENSbVkzUXpkQ2FqbFpTWGd6U2xrNWNGTjFSSGdLVFd0cWJrWjFaa3BOTWl0b2R6UTVVMjEwTlRsbFkybG5UVk0yYVVaRFZtbE5jMUJUUVZsS2NVWm1UV3AzTkd4alVWTjJlVlV3ZG13MFZXYzBNRkJYU0FwbVZWSlhSVXN4YkhweVZtaERTVzVaWVdVNGMwcHVjbW95U2tSSVZ6bGlkMlZEVFVST2QzWkRhV2RvVFRaMWMxRlNUMjFXTUV0SWRFRnhTVWcwU0ZSVUNtWjJUblE1YVd4aFRWb3pSemhCZDBWNkx6ZFVSbkJOZEd4WE16aElTRWhST1RGVVRFcHNhV1Y0Ykd0TlowWm5iMkUzWmxKa1YxSXpVMjVQT1ZSeVIwa0tiSFZOYTFCNldTOHlVR2gyUms5WVdEWnlUREk0VFcxeWIyUkhXbTFsUkZoS1lrOUpZMDFUU1ZJemJrTXdRMEZsWXpWTFRHbFZiVUpsYUc5V1p6QXZNUXBKWTB4eGNFaEdkVGc1YWsxaGREbG5jMWdyV1dST1ZGUlJTVVpwV1doM1drY3lXVnA0TjFkWlN6WlROM1o0Vld0SWRrdzFRMDV4YVdZNFIySkplVlpOQ2xsamNIbERaVmQwWldaMWEzVkVOR1Z2WmxwR2RqZFViZ290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MwRkpRa0ZCUzBOQlowVkJjVUpLSzJ0SVpXeHViRk5HWWxSVFRuaE9TSEUxVVN0bVMwUjFkV0ZwU3paQ2VHOTRTWGhDWVd0emVrbElWemg1Q2pWalYyNUpja1ozVWpaNVoyaG1SM0p4YlU1YVlqSnRNVWczWkVSSE5IWnJlRUZEUVRac1MyWXZRbFZQYkdwaEsyZERWSEZ3VWs5NVRVNHZSMlZSVmpZS2RqY3ZSbUZTVFcxMU5VRjBkMjgyWVhSRFpWbDZRbVJqTTFKaFNrTmtkMnBQTDA1SlZTdDVlRlkwY1U4M1UzUklUbGRKYVhsNFFtaGliWGRpVFZORGJncE1Sbm93THpkR01GZFBVMjVIY25KaGNtaEdaWEJSY1hSQlpITmtTMk0wTlM5bk4yWkVPRVZZZVZkT05HTnplV1phYjAxa1pHWkRVRmxvWTFGWlJWVjJDbWMzZW1SRVNHVXdTbXhzYlZkUFFVVXhVR2xMTTFsUGJ5OVBia041YlZWcVkxcGljamRUU2pSU05WRnlZV2RJTTI1WVVtUjZVR3BYV0hSRFVrWXZRM1VLTW1sMGVtUjVXamx6V25OUFdqaHBjMHRXYzBkSFoyMVlkSHA2Y0cxNmJqVm9XWFkyVlZsS1lsUnFaR0YyUTJKc2JYaEZiVXd3VEZoclJtaGpMMGw2UXdvMGNqTXZNbXg2T0ZwM05sWklaR2t4ZDFNMVdUVTBOMlExV1hRMU9YazJiVVZ0VEc5VmFtYzBhWEE0UlU5NlNXVmtMMEV3U2xsSlZuTnBVVXhTVVRZNENtOVBiM00xV0dGMWVtOWtjMDVOT0dWMFRsVndLM0JOTnpoeFRHTmFSa3RJU1VwTlRGQTFUbEZaZDNKdFIzVlJLMlJCVmxGV1dYa3ZObXhSWmpkdVMxVUtXRTl2VEVKVFkzZHpUams0YzBsd1RVeFRkR2hQV0dObFRYbzVLMlJTUm5sRlZubzBkMWxrYjJaNVJXUnNVVFZxTm05SFVVTmliWFJKYkRKWlVFaFJUd3BGT0dOR2MzWndVMU5KUzNaVmRHa3ZkRlJGUTFNdk9XdGhMMjk0VHpSTWFWY3ZPRzlIY1VnNFRUaHlRWFozYVVsRVlXSnZla1Z2VTA4eFUxQjFhbHBYQ2trMGVFSkpkQzh5U1VoTGREQXlRWEpJVVd3NU5USjVSV3h6TUVORFpYTndaMEpZVkdsWFF6ZGlVbVJxUWtkYWFHRlpaVXRRWTFJeVYzbE5RMEYzUlVFS1FWRkxRMEZuUVhjMVpXbFRjVmQ1ZVRaek5VTXpiVnBqYlN0SmJVMUhlRk55VlVweFQwbzBPREJNTnpRdk5XOUxWMkV2YVN0SFdYSmxWbnBPSzBObE9RcG5jR3BXVURKR09WZG9aemhHVG05UlZubFpZMFJ3UWtwQloyZ3ZieTlvVG5jcllWSm9Nak5ZU2tkYWMwUndXSEZMUlVNM1JuZEJSMW8wYmsxeWVta3lDbTE0Vkd4S1RUUlliV1Z0V0daNmFWTlVhWE5wYUdwNGRVSmlURWRVTDJWemFUTkNXSGxvTmxkb2JUSjFMMG8wVFVoVlIzZEJiSE5CZVdrMmVHTllVbm9LU2taelJuRk9WbFZxVmsxdE1ucDBTV0ptU2toS2JYVjVOR0Z4SzBRMlUxY3ZLM2xqU1dKS1EyaGxWRGxYYW1GMFEwSTNTV3N6YUcxalNEQjZWVzFTUlFwUlFVSktNMU56Y1hSM1JGaDJObFppY0RkeU0xaFpUalZYWW5CalRFbHZiamhTUkUxaU4xRldlVVJSSzBoVGRIQlFSemR4VFhscU56WnRXbGRvVVd4UENuTmthalJGZFdOaWVGSkxObGx2TkZWVWNFWTRhWFJ3ZDI5NUx6VkxPVGxVTkM4MFoydENaV1JoUWs0MFQwdDZWMjVWTUdWdFZrTkRkR3RLVjNoVU1sY0tXSGhNY1UxdFdGUkNaRm93YVd0Vk0xbG1PR2RMWkhjNGJFYzBXbWRVYUhoUE5HVXJWRkUwZW10YVNsRlBObkUwY1hWeFZrVmllR1ppWjA5eVoybDNlQW8wZUZFME4yOVNTVWMzZW5odlZFSXZWV3huT1VGWFVGbHBLM1k1VDNONVl6TkNhek5rY1hoaWRVVjJPQ3R5UzBRemVXSXpLMnhsUW1KNWFWWm5lQzlKQ2pGa0wwaEVRVXh4T0ZoNldWaHZheTlaYmxKS1JWazRlak55VG00dllVSkxXbVZtYjJkQ1VFNXhUVzlQY1V0eGNFRTVkMWsyYXpWa1Rub3hSa2hyWmxRS1NTOTRjWEF4VDFoUlFUVmhaemRyUjA5S1YxRXdkSFpaU205dk1rMVdUMnB6U20xUVdXVnJTaXRXVDJGWU0yVnVhMFU0V2s1d2FGcHpaWGh1UVhnNGFBcFJkMDVuWld0clFURnVkVU5yWjFOeFRFNWhOREJHU0dkelYwRnZUa3hYTTBoMGMyRmlja2RrZHpKSlkySjFWMHcyVVV0RFFWRkZRWGRWT0VFNFNrZG1DbHBsZWtNeVZpdGxNMHN2YWprdmMycFdZakpVUXpORFNIWlNOV1ExYTBwcGVEaFVSblZTYTJaSGNUaEdZV1pLT1hKME1HNXJTMVJhTDB4NVlpdHJRMllLZVdobVUybHRkVTF0UlVwU1dqUnpWeXR0TTJVclQwcHpWek5OWW5OWFZHWjZUblE0T0hWdlV6TlFhSGROU1hGdVFWbFVOSFl5WWxSVlYxTk9SM1ZyV1Fwek5IRkVjRE5hYzJrM2JVUm5lV2hLWkZaWlNtOVZZMUJvTjFsb2JtTjRUbWh4WWpKUU4xUXdZekZEUkU1bmJFdE9SVTFITUVobWNWQmplR2RuUTJ4MUNtTTVVemRJV2taWE9VY3ZVWGRQVG1ST1JHOWpNVU5wVUc1M1ZGUkJabGxYU2xORVVGaG5jMWRLU1U5UFZuZGxSazRyYlVoeWJ6VlZaVVl3YTA5ME56WUthVUUxUVc5VmFtWjBXSFYzYzNsMVNWQldUaXQ1WVVsMlozWnhTemRMTlhWT1pHRnJlR0pMY1ZKcWIwcHNWRVpCZVZneWIySnpZbFJDVnpabVFtd3pOQW8zY0RkM1ZFUjJaVGMxZVUxc2QwdERRVkZGUVROd1VrMDJUMGR6TUUxS1VWSkdVek14TDNWUldHZFlWRmxqT0dJelNYTllNSEZEYTJOQmNqSnROV2hKQ2xBeU5GTmlSbWh5TVRkU1VrRlhhMjV0TVhGdlduUnZWbmhNUlROSFpFMUJRVWRqYWxoaVYwUlpXa3c1YTA1R1RYUnJVbnBsUTNsbGRVUTVabTE0UTJJS1NsQndWRXhNU1dJemVHVk1hVlo0WVhoUVdFa3dhemx2T1dKSFNVWkZVM1V5WTJVNWJXUk1VM2sxZWtZNVkzZzRhRmRMV1cxSlZWcHFWelpxYlZGaU9BcFhXR0ZFVEN0aFZYaGhWa3hQVkhOdk1FTmxibUZMV0ZSdFdWcGljMUpKTm5wMlpHcGlTM3BWVEZOSVZXSTBjV05ETVZab1RGaFFVQ3RPWkhkRmQwd3dDak5qWkRReVpsWktkVmxJV25VMVNGcGFabFZHTlRGTlJ6a3dia2xITTA1TFdqbG5WSFp1TTBVdmMyRjJSRzUzYVdRMlYyTmhSRGRpZFd4TmRYSTFSVVlLVjNjMlkycE5MMFEwYVVaTVluWTViMWx3VUUwME1HZ3hRU3N3VUhaWVpucG9UVEkwZDNNMVlsWlJTME5CVVVKaFluQTBkVGROUlZsRGNHNW5NMU5ZVWdwalozVkJORU5FV1hCS1dXTjJUMnRVV2xKb2FXUjBORVpRU2pKUVExSjVUeTlDTDFwUU5VeHBZMmd4YmxGdFpXdElOSGROYkRWNmNFTjRialJ1V0Zkd0NtRlRWSGd2Y0ZOcFZsUkpRbFowVDBGUFMzQlZORFkzTjBKQ1pFSkJTbGxSWmpkNmExTkphakpaWjBkSlkxRTRZM1poUW5oWVYybHlNMWh1V0hCelVVTUtNMkZsVkdaUk5WbGpVV0ZUVWpBNFVtMTJaa0V2VjIxeVR6UktjSEpVY2t0ck0ya3JiRGQyTmtaUU1HdEhNbFZsZDJaVVNFbENja2N6TVdOc04zVTRlQW8zVUd4SmN6RlVVRGhRZFRWdFRIZFFiRlU0ZEZaTVZuQmhlRGN6YWs1SmQwSk5aR0pIVnpaUFEwcGljalY2VUVoR2VrOTVkM04xVEZOTVpXUm1RakJFQ25CeWFUQkxVVXBWVW1wS1JFYzNaVVZYTjJOUlNVVXpOSEU1UW5KdFJHbHRTRGxMU2pBdkwwOUJlRmd2ZEUwelZtUmliVFZZWXpkMGRYSmpTbmQwZURVS1ZtUkNSRUZ2U1VKQlVVUlRSR1JFTjFseFkzVkxTVTlLZVZFemNrcG1NR0o2Y0VkeU1UaEpjV2MxV1VzNFFraG1jakpyUjJSR1QxTnJVRmRSUkVjMVV3cEdiR3AzV2s5WE9VSnVVM2hDUWxoU1JqVkhlSEpIUW5aQlQySjFZeTlQTW1KUWMyZzFXRkp2SzNaaGFVeHFTRzlJWkRkRVVEUjFOaTlSWW5KM2JtSjBDazV3U1RSSmRFZERNbHBaV21KR2JsbHlVaXRKVTFReFpWSTVUMWRVVGtWck1sTkpNV3Q2VEdONWNYcExSelp3SzNkRVFtbHdZVmxZV1M5SWQycGpTbEFLVDBkNGFXRlpUbVF4YkRVeVRYcEZZbnBUU0ZKWVUzWnJNRXhIYWtOUlVVRlNPVWgwU21wdFdIUkpOMDlVTWt0NFN6bG5XVU5STVVGR1FsUnZWbFZYY2dwaVdFVnVVa1ZEVUhGUmNGZFJhRkJ5Tkd4VFdVY3hhbGcwWVV4WlptMWpaMHhwT1dSRmVXVlJSazV2YW5jeFlXOWFRVXBIVEVNeVMzWnhTbVJtVjBsWENtdFhaRmxNUnlzNWQwWkNNMGR3Vm1ORVEyaDZibUpXVXpKeVkwbEhZV3N4UVc5SlFrRkJWSFYzT0ZRMWRVUXdiRXBHUW5CR2RXbzFWSGhIUml0cVRURUtSelkzTVhwRWNVRmliMkowTVVKS01tTk1SRk4zZDNGcVZGWmhTa2hzWlRNM2RTczRMMUpPZERCb1VXbGpZbTlUVEVsd1NWbzRVa3R5U1VSTFFsSk5XQW8yZFN0eWFGUmpOR0V4VDJVMlVXWnpOa2h1UjIxVmVETmlSbTlZWVdGbGEzVnVXSGRoVVUxaWQyb3lhR3RaYWpOMlNqSTVNVmMxUTBsWGFUQkVNMEprQ25sM1ZXaHhTMkl4TjA5UlRGbHlVeTkxUkd0S1VFTmFNbkJLU1dSWmMzbENVRnBSTWpSM1pIaFdURGRoZWtKUlpWQjNObWN2V1hKTVpIbDBSbXA1T0U4S0szZEdUR3d4WVhOT2F6aGFVMFpPVTFoRlltWXpTVnBTYVhvMFdYbGFTa05YWW5CelduUnFlU3REUzFsUU1XWnVOamQ0VUZkdlpVeFZWVlpKWm05Qk9RcElZMmxxYmpkc1ZFdExiVWxMVkcxb1ZHTXlhWGRhUzBsaWQycElkWGRGT0ZjM1ZFVndlVUZyTDNCcFRrZzVSREYxWmxaeWJGTlNNbnB1ZHowS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiBzZ3E4dXQ3dnAwZnhiZ2cwanlvYzFkd2dkbjVnMnptOWoxb3RhenJyOWh6azgybzY3bXRvNmYzcXBxdnB0anQ4N2M0azlqZGx5NWc2ZWoybzc5OG0xaWRlY3NlemZvNm1ubHQ1ODJxM3puajQzZXdseXd4azlxejYweWJlYmZ2dwo=\"\n + \ }\n ]\n }" headers: cache-control: - no-cache content-length: - - '13072' + - '13084' content-type: - application/json date: - - Wed, 14 Jun 2023 21:28:20 GMT + - Thu, 29 Jun 2023 09:41:02 GMT expires: - '-1' pragma: @@ -1244,8 +1397,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/cliakstest000001?api-version=2023-05-01 response: @@ -1253,17 +1406,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/df6350b7-416d-43c7-82e0-96c8bf8fcef4?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 14 Jun 2023 21:28:22 GMT + - Thu, 29 Jun 2023 09:41:04 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/df6350b7-416d-43c7-82e0-96c8bf8fcef4?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 index a4e6c971f38..d4fd2aaca71 100644 --- 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 21:28:26 GMT + - Thu, 29 Jun 2023 09:41:07 GMT expires: - '-1' pragma: @@ -54,11 +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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {}}}' headers: Accept: - application/json @@ -69,69 +70,68 @@ interactions: Connection: - keep-alive Content-Length: - - '1732' + - '1403' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-j76vs21h.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-j76vs21h.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/909f60a2-404e-4915-b819-bf8ae75feed4?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/93d1e922-ce6a-4963-a44d-e4e46874eca7?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3539' + - '3210' content-type: - application/json date: - - Wed, 14 Jun 2023 21:28:33 GMT + - Thu, 29 Jun 2023 09:41:13 GMT expires: - '-1' pragma: @@ -161,60 +161,59 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-j76vs21h.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-j76vs21h.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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: - - '3539' + - '3210' content-type: - application/json date: - - Wed, 14 Jun 2023 21:28:35 GMT + - Thu, 29 Jun 2023 09:41:14 GMT expires: - '-1' pragma: @@ -246,62 +245,60 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-j76vs21h.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-j76vs21h.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/17c187b6-06b4-4ab7-b39e-6c5af901dd51\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": + {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": + false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": + {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3801' + - '3472' content-type: - application/json date: - - Wed, 14 Jun 2023 21:29:06 GMT + - Thu, 29 Jun 2023 09:41:45 GMT expires: - '-1' pragma: @@ -333,62 +330,60 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-j76vs21h.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-j76vs21h.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/17c187b6-06b4-4ab7-b39e-6c5af901dd51\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": + {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": + false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": + {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3801' + - '3472' content-type: - application/json date: - - Wed, 14 Jun 2023 21:29:37 GMT + - Thu, 29 Jun 2023 09:42:15 GMT expires: - '-1' pragma: @@ -420,65 +415,63 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-j76vs21h.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-j76vs21h.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/17c187b6-06b4-4ab7-b39e-6c5af901dd51\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4190' + - '3861' content-type: - application/json date: - - Wed, 14 Jun 2023 21:30:08 GMT + - Thu, 29 Jun 2023 09:42:46 GMT expires: - '-1' pragma: @@ -510,65 +503,63 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-j76vs21h.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-j76vs21h.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/17c187b6-06b4-4ab7-b39e-6c5af901dd51\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4190' + - '3861' content-type: - application/json date: - - Wed, 14 Jun 2023 21:30:38 GMT + - Thu, 29 Jun 2023 09:43:16 GMT expires: - '-1' pragma: @@ -600,65 +591,63 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-j76vs21h.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-j76vs21h.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/17c187b6-06b4-4ab7-b39e-6c5af901dd51\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4190' + - '3861' content-type: - application/json date: - - Wed, 14 Jun 2023 21:31:10 GMT + - Thu, 29 Jun 2023 09:43:47 GMT expires: - '-1' pragma: @@ -690,65 +679,63 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-j76vs21h.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-j76vs21h.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/17c187b6-06b4-4ab7-b39e-6c5af901dd51\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4190' + - '3861' content-type: - application/json date: - - Wed, 14 Jun 2023 21:31:40 GMT + - Thu, 29 Jun 2023 09:44:18 GMT expires: - '-1' pragma: @@ -780,65 +767,327 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-j76vs21h.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-j76vs21h.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/17c187b6-06b4-4ab7-b39e-6c5af901dd51\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4192' + - '3861' content-type: - application/json date: - - Wed, 14 Jun 2023 21:32:10 GMT + - Thu, 29 Jun 2023 09:44: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: + - 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-j76vs21h.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-j76vs21h.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/17c187b6-06b4-4ab7-b39e-6c5af901dd51\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: + - '3861' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:45: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: + - 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-j76vs21h.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-j76vs21h.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/17c187b6-06b4-4ab7-b39e-6c5af901dd51\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: + - '3861' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:45: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: + - 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-j76vs21h.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-j76vs21h.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/17c187b6-06b4-4ab7-b39e-6c5af901dd51\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: + - '3863' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:46:20 GMT expires: - '-1' pragma: @@ -870,71 +1119,64 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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-j76vs21h.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-j76vs21h.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": + 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n + \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/17c187b6-06b4-4ab7-b39e-6c5af901dd51\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4459' + - '4130' content-type: - application/json date: - - Wed, 14 Jun 2023 21:32:12 GMT + - Thu, 29 Jun 2023 09:46:21 GMT expires: - '-1' pragma: @@ -966,71 +1208,64 @@ interactions: ParameterSetName: - -g -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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-j76vs21h.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-j76vs21h.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": + 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n + \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/17c187b6-06b4-4ab7-b39e-6c5af901dd51\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4459' + - '4130' content-type: - application/json date: - - Wed, 14 Jun 2023 21:32:14 GMT + - Thu, 29 Jun 2023 09:46:22 GMT expires: - '-1' pragma: @@ -1062,65 +1297,63 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-j76vs21h.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-j76vs21h.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/17c187b6-06b4-4ab7-b39e-6c5af901dd51\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4192' + - '3863' content-type: - application/json date: - - Wed, 14 Jun 2023 21:32:15 GMT + - Thu, 29 Jun 2023 09:46:23 GMT expires: - '-1' pragma: @@ -1154,15 +1387,15 @@ interactions: ParameterSetName: - -g -n --file User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ - \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSUlV4WU9XSXhNM00yVkhCa1dVcFJPRWxVTWpSMWFrRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxVVVYbE5WRVUxVFZSa1lVZEJPSGxOUkZWNlRVUlplRTVFU1hoTmFtdDRUakZ2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVOMENsTXZUVWRhWnpBNWQyOXpMMnhOYm5FeGRHMVNNME5MVUhsTFNVUldkM05HY1ZsbmNVMWhVMU5JUkRCRFV6SnZiR0ZYUVdoSWFHNXNlVElyVms5QlUyY0tlRzV4ZERoYVJIVmFPV3BOWkdkNlNDdFhUVFJETTNBMFZ6UjZSRE4zWm00eVpqVlJNWGhYWldkUGMya3dkMk5SVUV4NVdEbDVZbGhDTlVOUVN6SkdLd3AzYXpJMlVURjFkMHB6ZEVsTFExWlZXbWQyZGs5U00ybFpOMDlyTmpjd2VtSXJNalJsWmt4UmFTdGtTbGhUUmtjNE56bFFVRnB4UTFsVU5rbHBWMnRCQ25WS1N6ZEJhR3BuV0hwSWVVWXlVVFl2YVRWd2RYSjJSbk5qWlVSc1NsWTNka29yU1VWeU16QndZMHhXVUVKUWRFSXpZWFZXZFVOSE0xVlpZbmROTkZRS2JUaFNZVXhMU0RsM1ZDc3paM3BPVEZwdk9Xa3JWMVE0Tm5FcmVTOTJOazgzZGl0eUwzTkZkbGt2VVRKMVZHSlFhRGRvTTFwYU9DdGphRU5MTjBwVVJ3cFBPRXRyUkZOdWIxY3paM2RoYjBjMWFUZDBOQ3RZT1VWdWQyVmhOM0UyZWxoT2VWb3JNalp5TWtWdVVtMUxOVEp6VTBZMk1tbG5PRnBpVVRoeVVuRlRDa3hMYW5GSWJ6aDFNamQxUmxWQ1dVZFhha292TjBzM2RuSkZjRzl1Y25wTWRsRXZZMXBFT1UxU1RGaEliRzFMYlhoM1oxcFBNV2hyVG5SdlJGZDJUMVFLU1ZWSU9UQlhValZ5WXpOT2NteE1UVkJQYkZob09HMVFPV2syWTNKQmJFRllibmRXY0RCbWIzUmhURXN6U2xoM05GVjZiR3BMV1hkUU1tTlJSVTVZTmdwQ1VpOVBTMFJoVm10UmFYSjFjR1JhWjFoMlVrZFhWMk14VURWQmJERTBWMVJYZVRWdGNYbHVOMjE2VkN0UVEyMXBUVk1yTTFaVE1VTlFiWHBOVDFaUENuSnlNbmt5WTI5eE0xRkxSbkppZGpKWWFXazNVVEZxTURSc1JGaGpLMDF5UTFOV1VrNTVOVEkyY2xOeU1VMVBSQzlDVVRoU2JYUXpMMEp4V2xaVFZtSUtjRlpKU0hOek4yVkVORmhUZEVSS1NHTlVMMmxzY0haYVVTdFJabmRZVFVWck5rMTFRWFJhWnpGUlNVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWMVJsUjVRVUZEU0cxT1MzbGhZWE4yQ201WVNIVkhMemhhVm5oSmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGRFQyeDZkMUJPVGxvM00yMXdkMFJtU2tFMFpWQm5iMjl6VUU0S2FsTTJabXBqZFdKeWEwcHZSVWxtVjA5bUwxcDBjM3BvTVZwblMxZExSeTlqWldrNE5XeEJiRVkyVUdOUU5tWkZXRzFXZW1SMFdTODBNbU5QTUVoa2FBbzRSalZtYmtNM1p6QlNabnBFTW05bVRrUk1hbVJXVm5OTVoweHhSWFpVYWt4amNFeHRVRXBYZDNFelMwNUROR0ZXY1ZBdlFreEhVV3RJWVhaNWN6Z3JDbWhZVG1wNmNXVXhLelEwYTNoRlNGWTRlbE13Y0VwWFNsTlVXR1V4VG1kRmVWb3ZPV1pXTUU4eVMyVlJRbWh1UmpobVV5OUJSazFQZFZKaGIweFhWbEVLYVZKakwxSlFZUzkyWm01bFVWVkZNR2M0YUN0NE9YYzJhM1paY1ZoMVZubHRWemxZYUZoQlVFZFBkblowU0VZNGNFbHRWRzF3WW5BNWVqTndhMVZDVlFwWlFVMVhhbWwyZEVod1JFMDRUVEE0ZERRM1JsaDRiMWx3VGtzeVV6QjRjVkpvVjJOd1RtSTFTR1ZpTWxrM00yOWhVRWh6V2xOUmVFcFlWMDAwYjA5UkNrczRRa2QwY2xVdlZubEZURkEzZVROSVR6VkpRVWxpYkRoREwzRmFVM056VGpWeGFuWjRMMnN2YVZKQlp6QlNaVWxtTmxrclVtdHZNVEJSVkRSYVZtb0tMMmxMWVdWTk55dEVUbFF3WVd0S2RGcFhNV1JtYTBwVFNuaHFUV1ZwVEZWM0wzTlZXVUZKTlZWeGFFMVphWFpaUW1GcWVuVm1SRE14TUd3dmNGVXZNZ3BrZUROM05IZGlWWFpaVUdoV1ZGWTFORkpsTjBaQlRrWTNWRU5tYUU1blZWZzRheTluUTFndmJHOTVhVFZWTmxkRWFYbFBkbVZwWkhSM1owdHhlVGxDQ21jMVJFeDRiVVZQWW5vNVEyTTVTWFpWYlRoV2Npc3ZXR2hxZFRCSVYzbE5hbU5pYmxKSGNESjNPR1JUY3paMVVHcFNTMnhrWjBKR2MxWjZLMWRJTm1vS1UxaEhiM053UjBsNGMxaHRSWHBxZDB4dUwycHRkWEJzYVRGdGJ6SkpkMHMzVVhwelVqSXZaM2x3UXpobWRFUlpNVXRzVERGbVoyVnJlbmhrUzNodGFBcEhNMVF2SzNsS2JHeFZWMGQzYmpKb0NpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc2R5cG90dmotazFjeGY0Y2EuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3Rkbm9wYWIKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3Rkbm9wYWIKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3RoZWdhc3U3a3JzX2NsaWFrc3Rlc3Rkbm9wYWIKICBuYW1lOiBjbGlha3N0ZXN0ZG5vcGFiCmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdGRub3BhYgpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3RoZWdhc3U3a3JzX2NsaWFrc3Rlc3Rkbm9wYWIKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJVkVORFFYZFhaMEYzU1VKQlowbFJaRnBNYTFRMGRHUmhVRFUzYVZsb1VIcFdSakpZUkVGT1FtZHJjV2hyYVVjNWR6QkNRVkZ6UmtGRVFVNEtUVkZ6ZDBOUldVUldVVkZFUlhkS2FsbFVRV1ZHZHpCNVRYcEJNazFVVVhsTlZFVTFUVlJrWVVaM01IbE9WRUV5VFZSUmVVMVVTVFZOVkdSaFRVUkJlQXBHZWtGV1FtZE9Wa0pCYjFSRWJrNDFZek5TYkdKVWNIUlpXRTR3V2xoS2VrMVNWWGRGZDFsRVZsRlJSRVYzZUhSWldFNHdXbGhLYW1KSGJHeGlibEYzQ21kblNXbE5RVEJIUTFOeFIxTkpZak5FVVVWQ1FWRlZRVUUwU1VORWQwRjNaMmRKUzBGdlNVTkJVVU4zUWtaUlZqRk5RblUwUW1wSU5GcDVVWGwwY0VnS1VGQXpZVlJ6WnpaWFVWSlRkazAxTURoR01YQlVLMk5vTnpodlRrOXlRazEwV0c5R05uaFBVM2h4WVZJeVIwcENjV0pJY0hSMGJWWktkMUZxUVhOMU1ncHBZbFU0VjFwUU4wZERiek5KTkZSeU0yVktSVWtyUzNVMFoyczRTbTE1YkdGM1dVTnBiMGsxZEhOS04ydG1WMjl1V21wR1FuRlpiVWRPY204NVZsRnpDa1kzVG5GVFEyMHhSM2M1WkdWQ09YUlFMMEZzYTFkbFQzUk5XblI0TldObFJsbElTR1l6UzNRM01sWTFiRWxZTWsxRk1sRk9Za3BIV2paNWFEbHNaakVLWVdGRWJYcE5RVWxsU1N0MU1ERnZla1JJZUV4VVZYRXlVakkwTDFsbWRWTldVMnhRUkdGSmMxcERjV1UyU0ZwbGRYZEthazFVUkM5cldVTjZSekF3VmdwcWMyOUpUVkJrVFZZM1luRjZUbGh3TXpSNlQzazRUQ3RpY1RoVWQycHZNbVZwYTFsVFlrNUJZMEo2VVVOYWJraG5jakZ3UjJ4UFpqTXhPVTl6TW1sSkNqVmpZMkpNUm13elNqaGpTVFZKYkZkNFJFWkpSRkZCVGxsUGEwNVRkMU5YYldGT09IUjFUbnA2YVVkV1REVnZXVGhTVTBoemFTODBURkk0UlZkNGVtOEtNVmhaVHk5Q1lsVm9jamhRUWtGMlpDOHhXbEpCZEVSV05HcG9lU3RUUVRoeGFuTkpNbWtyUlRFNWRXRTBPRVo1VlhKaGMyOXNTazFHYlcxUllsWTJid3BXVnpWMlpEUlBSV0pQTWpKWFdVNVpaMFpzV0daaWRYcHRWVVZNYUdOU2JYUkRZblpFUlRCbVdIRmljMlpJWlVKb1JHdzFPRGR2VDJaRVpYcFJaRUZuQ2tNd1puRm5XRFJDWkZCUlNURlJPR2xuVkM5b2JXRktURXRwY0dweGQzaGtZamxQTldVMlQxbGpTWE5OVjI0MVdXbFBXVVl2YVVsTWJHdHlibXd3YUdjS1JHdHZTbGQzV0VONlJ5OU5TemwwTlZCbldGQjBhVVZ5TUNzemNVbHJWM0p5YVc5RFRrbDFObVZHTnk5WVZWRlVWalZCVURGb2JFOXhiWFI1UkVwblVBcFhXRE0wYWpsMWNYUTNTazEzUW5oTmVYRTVkVXQzU1VSQlVVRkNiekZaZDFaRVFVOUNaMDVXU0ZFNFFrRm1PRVZDUVUxRFFtRkJkMFYzV1VSV1VqQnNDa0pCZDNkRFoxbEpTM2RaUWtKUlZVaEJkMGwzUkVGWlJGWlNNRlJCVVVndlFrRkpkMEZFUVdaQ1owNVdTRk5OUlVkRVFWZG5RbE0wVmxCSlFVRkpaVmtLTUhKS2NIRjVLMlJqWlRSaUwzaHNXRVZxUVU1Q1oydHhhR3RwUnpsM01FSkJVWE5HUVVGUFEwRm5SVUZvUkZSS1IybFBkbGx3TWtWbGNHWlZVM0oyYUFwc2FWRmxVR2x1Wnl0SWMwaERia0kyY1VwQmRpdG9WMmRvUXl0c2IwdFJWblU0WkVSU1ZURlplRFl6YTJSbFdUUkVPVVEwS3pCRE1GUjVXamhFUWtGdUNqWlBTMkV2VUc0ek5qUjBSRmRST0dSS0sxWkJTRmRCTkVjMVVVUnhZVlpYZG5wTVUzbGphblpxUW1aRVRGWjJiR2N6U1U5bWQzYzBaMkl2VkRSMVpXa0tjM0JFTURGMkwwVTBSbTVOZFRRclZFdFJSRk5HZDB0cFRFODNWVmROVUhOc04yNWxXa1ZGYm5jcmFVTnNXWEp4TjFod05qbHlhVVJoTlZFNWVXSmpjZ295WWt4S1YwRkNaM1phVjJKalpuTjJlV3RZWlV4UkwwbHpkMUZSU0hGa01tWTFjMnRFUVVaaFowNU5LMWxWTURndlZtZFFVbVJoTkRNeVJ6Rm9hMDQ1Q21sbVV6QnFjbTg1TDJjclZpdEJjV1ZMWVdkU01qVnliRE5OYTNGSkwwUnlVRzV6T0dFd2MxSkJMMjlVT0c1dldIcDBWVzVLTVZsS1JYSk5VbWhNVjJrS1VHZ3dRM1pYVmxGVGFISnNjMjUwY1VodVRVdFdSV3BNSzNjd1l6ZG5kVkV6YlVkdFF6ZHBSVGwzZURKV2RrNDRRakpMZGpGSE9YZ3lNREU0UkZoeFNBcEtRVmxITW1kaFdXY3lWMjFMZW1OU1pVNU9lbGhUYmtkbWRFeExSekZGTHpoa2FYRm1VRTVwTTBnMVpUSmhNV0ZzWmxWb0sxQlRWV05aUVZwMlluQk9DbGxWZW1KcVlVeGtVV1V6VkhCcmJTOTRiME5IU0RoU1NuQldhVzRyVUZGaVdsTm9TMk4zTDJkTGNXdGllWHBKTjFKUlVreE1RMnRJVWtsMlNFSTJiWE1LZDFoM01HOWtORTR4U1ZsUVdUUnNTREZSZGxkb1F6aGhiVFZTUmxJdllXNVpjRmx4WlVSeldEaG1kVEpUVmxOYVFtSlFTRXRKTjI1QmFGRkpjVmgxVlFwWmVISnFkMjVHVFVWbVNqVlNURE15YW1KWWFuSm5XakpLTkVkTlF6UXZXVEkzV0dGRWIyODNMMko0VmpOVlIwVkRlbWQyZUZOcmNraGhURnByTlc5WUNsZzROR2N3UzBSeFRXNUtaVlJaYTBWaWJXaDZObTgwUFFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMUZKUWtGQlMwTkJaMFZCYzBGU1ZVWmtWRUZpZFVGWmVDdEhZMnROY21GU2VubzVNbXMzU1U5c2EwVlZjbnBQWkZCQ1pHRlZMMjVKWlM5TENrUlVjWGRVVEZZMlFtVnpWR3R6WVcxclpHaHBVV0Z0ZURaaVlscHNVMk5GU1hkTVRIUnZiVEZRUm0xVUszaG5jVTU1VDBVMk9UTnBVa05RYVhKMVNVb0tVRU5hYzNCWGMwZEJiM0ZEVDJKaVEyVTFTREZ4U2pKWmVGRmhiVXBvYW1FMlVGWlZURUpsZW1GclozQjBVbk5RV0ZoblptSlVMM2RLV2tadWFuSlVSd3BpWTJWWVNHaFhRbmd6T1hseVpUbHNaVnBUUmpscVFrNXJSRmQ1VW0xbGMyOW1XbGc1VjIxbk5YTjZRVU5JYVZCeWRFNWhUWGQ0T0ZNd01VdDBhMlIxQ2xBeVNEZHJiRlZ3VkhjeWFVeEhVWEZ1ZFdneVdISnpRMWw2Ulhjdk5VZEJjM2gwVGtaWk4wdERSRVF6VkVabE1qWnplbFkyWkN0TmVuTjJReTl0Tm5ZS1JUaEpOazV1YjNCSFJXMTZVVWhCWXpCQmJWcDRORXM1WVZKd1ZHNDVPV1pVY2s1dmFVOVlTRWQ1ZUZwa2VXWklRMDlUU2xaelVYaFRRVEJCUkZkRWNBcEVWWE5GYkhCdGFtWk1ZbXBqT0RSb2JGTXJZVWRRUlZWb04wbDJLME13WmtKR2MyTTJUbFl5UkhaM1Z6RkpZUzlFZDFGTU0yWTVWMVZSVEZFeFpVazBDbU4yYTJkUVMyODNRMDV2ZG1oT1ptSnRkVkJDWTJ4TE1uSkxTbE5VUWxwd2EwY3haWEZHVm5WaU0yVkVhRWQ2ZEhSc2JVUlhTVUphVmpNeU4zTTFiRUlLUXpSWVJWcHlVVzAzZDNoT1NERTJiVGRJZURObldWRTFaV1pQTmtSdWR6TnpNRWhSU1VGMFNEWnZSaXRCV0ZRd1EwNVZVRWx2UlM4MFdtMXBVM2x2Y1FwWk5uTk5XRmN2VkhWWWRXcHRTRU5NUkVad0sxZEphbTFDWmpScFF6VmFTelUxWkVsWlFUVkxRMVp6Um5kemVIWjZRM1ppWlZRMFJubzNXV2hMT1ZCMENqWnBTa1p4TmpSeFFXcFRUSFZ1YUdVdk1URkZSVEZsVVVRNVdWcFVjWEJ5WTJkNVdVUXhiRGtyU1M5aWNYSmxlVlJOUVdOVVRYRjJZbWx6UTBGM1JVRUtRVkZMUTBGblJVRnFWVFZqVW5NMWRUQnNVVGM0VEU5U05ISm1TR1J4ZEdwVVJrRXdPVWx4YTB0MGQwTnFkVk56ZVZNdmNHRldaemxEUmxCWFZuazNWZ293UlhsQ1oxUk1WRnBKUTI1dFVHeHVjVU0wZDBSVmNYVlRiMFZxUlRrNFNIcFlVa2xzWVhNemMwNDFiVUp2YTNnM1pYY3hVSEJ4WlU5V2FreHVhREJIQ2xSVFNIWkhMMEUxZGpoU1ZYbEdTVVUxUWk5TVdWRm9Va3htV2s0MVluWTVVVVpVUVdwMlJYcGhOa1pWT0ZoelJVTjBWSEJ2ZVhCRWNISjNNU3RIVUdnS2RGVjJLM1k1TlZKM09FcFdjbGRtYm5wT09HVjVUMFJSVDFwSmRqSlJaemh6VXpCeksxWXZORlZoZWtKWEwzZHdRMHhpTjFKTmVXaHRSMkpNT1ZKV1JBcFFXVU12WTJjelZVaGFRMWd2YzB3MVZISkxaVWRJTkhsTFVtWkJNRmsyTldGTmQwOXlTVFEyWm1SUFJqUXJVMmhCVWl0YU5HNU1kbEZPYVV4eVZrcDZDa1JXYlZabGVWUkhURTF0V1ZkQ1FVRnBXa1Z0UlRGSVlrUkxOa0pQZUdvd2MzZFBaazFDVkc5QlFVVkdiMUpQYmxWc1NraHhWVlZHWmtaSFdIRm9TR3NLV0dGUFlYaHdWbHBrTjFZeGFVWlVTbmRwTnk5eE9YWm5Vek50SzNkdGRtNWlZbFJoTmtJeVZGWlBRMWwyVTBKck9XTnhXV2hsWkdNdmJ6QmFXVmQyU3dwelp6TjVkM1ZDVjBOUFZtVlFUMVZOVkdVMk9FMUVOWFpaV0hGWFJrZE1LMVpSUm5GQmRrdzNSMjVNV0ZGRVdUZFZVWFkyTnpnMmFrUTNRbFJDUWxkWkNtSnVaMnBIZEN0b1EweDJkelo2Y0N0S1ExRXhVMU12WmpBdlZuRklNV1pFT0dsTVYxb3hkelJOTVdKUWNDOTFTV2RITUZFMmFsSkJVbTFPV1RCak16UUthMEkzZEZaNFkxaFdhVE50ZEZWT1pFWmtVbGszU1hwWFNWVXdXVWh2TkVGaVQzTTRiVzFZWVVRcllUTTRUM2xwY1ROcmR6QjBkRGMxWVRReGIwVnpVd294V1c5WGJtMVpka1ZpZGpOYVRURnRLMXB4ZEZRMk5XSnNLekJTTjBkRVdXUnROamRwVUdaalJVRXpPVmN5WTNsdFJXdERaMmRGUWtGTk9FOURaRnBEQ2tWUE1IZE5iakUxYjNwcmIycHRjVTlrYUhaTk9USTRTa1U1VnpadVNtTkpWR2czZEdOWmNIbEZUWFJhYVVNd2VEZENWRmxZYTFOT2VsSTBRM0pVWVVnS1pYbEVaWE15YmtGMmRWRlFhbUZZZUZCb2JtNVZNRGR2V2psdU5ubE9NMng2V1hNMFYydDROVVUxUW5oNVZrNVhaVmw1V0VWeWVubHRUa1ZzYzNBemVncE9UV0o0TlZGSWJUVnRkSGhQTVVOeE9XRnpOREJMUkVkV1VWTlZjVEZTVFcxdVNrSk1SVTFTVjJGMldHNVBWR2RRV0ZKdlJFTTFSbTU0VjI5V2MwSnNDa05yTDJWaGNWaG1kVXhzSzNsaFFtaHBlRmx5VkZkWlVFdE1iWFpOWjJsVFpIUnNLME00Tkhsa2RHcE5RMmh4YlhGNVpIcG1TRzUxWkVWTWQycEVhM1VLVEhKS2NYUnlVbEI2ZDJsVFQxRklhVEZzZVZJemVFSm5OVFJXY0N0NkwzWk5VbEIzVkVzME4wbFBiM1ppVkhaVU5HbDBNMVUxYkhaWlEybHBVbmxIZFFveWFHUlRRbkpXWTNRMGJrMU1SakJEWjJkRlFrRk9iV2RDYVZsQmNHY3ZVRTVySzBZeFMzZHBUbEE0T0RWMmFsTlJXbHBQVFRGRGMwOW5TazEwYXpZMENtMXRObTkyZFZJelZtVnNXQ3RMVkZkRFR6bGhNREJvUmtWVGJ6QlVPVU5yYUZweFlsVmtTUzlHYzJodFVGVTBWamhCUlROeGR6bFhNMHBqYUdKalJIRUtRMGRRVkhVMVdITkNiMGhIZGswNVZqaEdTV055TjBSb1QzSkxlRUZKY1d0c09FYzFXV0l5UVZWRE9IRXpla2RzYkV4aE5YcFNUMFFyYm5sdlRGWXlOZ28zZFdaNGJXWmhObGMyZDBwTFNGUTJZMjkwT0ZKakx6SkdlRVZFY1ZrM1YycFFWM0J3T1dSNU16SkRlVk5UUVVjMmRURjRjalJKTVdnMGRHVmpiMlF5Q25aT2QyY3JSbEJ0VDJaTVptd3lNSFF3UkhwbGFrUktkVVJVZVc1cU16aFlNbWxWYzNOd1NERTFSamhSUlRCTlJreE1OalE0UkU1RWNWVjFlV2N3VW5jS1NUTXlTSG81ZVRSb1VYcEtVMGhRU2tWb1FUUllRV2QzT1N0TFVVeExTMmM1V0dodFkyazNPRzVEWTBOblowVkNRVXBNVTFkYVpHTTRZazh2V1ZrMGJ3cEhkRFJHVEVSbVZFaFdNVXBWYjNWb00wUmlTMUpSS3pCREwwWlRXR2hxVjBkaFMxbHphaXRoUkhSWldrNHpPVlpNWjFsQ2VpdElRelJGVkVkd2JVcDJDa1YxTWxaUFpGSmFOVXhrY0cxWFJua3lNMFoxY1RsRWRHa3pjMVpWY2tzemFVY3ZPSFk0TkdkdE9FSmtkME5RVEhkNVJreHZaMVIxTWtwWVlVbGFTR1lLYzJKVGRXSnRhMlJWVjJSQmRXMHZTRTAzU1hveVpXNUdRMEl2VFhCNE5VaDRNVnBpV21nelIwSk5NM1Z0WmxOV01tVkVOWEJqY0RNeU5FRllURE5wTHdvd04xWXhaVzVSU0hSNVJGcFJLMFZFUkhSWVkzSmFXREpvWlVKcWVVOTBSMVJhUVdRek1uaFhhM3BqSzFwU00zaFJUeTlYYzNobk5EY3hVVVUxT1cxckNsaHBTM1I2VlRkU1JUQkNRa1F2VVVaUmVXTlFjQ3RKUjAxeU56UjJkV04wWkc5SFdtSTVVR3QzTlZGbE5GZEZSRFJUVUhaTWNFWnlPRFp3YkhRcmQxTUtLM1pNZW01UFJVTm5aMFZCU2tjNGFVZEhTM0poY1VseFYxa3plVmRST0hoRFJIQlBRVkZLVTJOTVQwODJPR0Z3ZGpWRVVWSk5WM0pPVkU5VVNXWlVTUXB6VmxKR1JVaFBNRGg2TW14bFkyWXlXVGRhTWxac2RqQTRhbXh0Y2xkb1lXcENjSGd3VVhwcVRGcEZRVlp2VlZsVlZWVk1aSFY1TTJ0ME4zb3pUbTE2Q2tSVE9GVnNWRWQ1Um1zd2RreE9TRWxZWm04NFQxQnVkRmhyVjBoRk5EZFVNMlJIZW5CRlFYZGpXbU5TZFd3MmVVcFJVMU00T0hCRlJGSnFjSGxsUkZJS1ZVUkJTVlZsTVUxSFFWbHhUMlpNWkZWaUwyNU9lalk0VVhKVGQyOVBWbVZsU0ZobmQwUm1iMUpRUW5acVkwVm5aa1JxU0hVNU5IQkxSVVp6TUdJNFRncHVTbVpMV210RWVGSXZLMHRSVkdOcWFVUkJWbGRvV0VsTk9HdFVOMFpRWVdNdkwyY3JZWFEwU0d0WlowVk1WVmhPZEVWblNVOXJWbE5CVEdkNlptTnRDbUl3YlZSck5qZHhSVEJWWTFFeFRGQmlWMHgwTVdoNFZXWkdMMHRhWjNSemNWRkxRMEZSUVhablJrcHZNSE5FT1djclZVVnNjMk5JU0ZacU4wVXJjRFFLUWpOUlpUVkNVbVEzY0cwNU56RlVjMFpFWkhWRE9YTlFSMFoxVEV4MFIxQXliakpGZFV4RFREZ3hUbXhWVHpoSlJURnFUR0oxZVdGbU5VczVSVFJDZEFwVVdXdG1RbTRyYmtKWlpGbHFlakpETkVScWVYcG1WelJpT1dNNFRUQlNSemxvUTNsa2RIQmtWMGgyYUhOdU9XVkNhMkZsUldSQ09VdzRNVmh5WmxaaUNpdEtaQzl1Y3pKYVptMDFWRk5sYkhsR2JtODRla0pRWVVselFXSnRRWFZ0VVhkQlpVZFlOSEZTU25KNVlUUkllbGRKV20xTFdYcEZURWxITkhaRWFtNEthV2xIZUd4bVYyOTZlalJtUVN0SE1tTldibmxFV1dKT1YyRTJWbTQ0UTFvMk55dE1iVWRKYUU5cVVHb3lSalIyUzNnd2VWWlZWblZ0TTJ3dlIwSktkd3BTV1ZsdmEyRlBVRmdyVldoRllXZHNXVlJRVTBaeldDdHlVMmM1UzJKek5UWjJiR2RSWmlzNE1rVkpXamxVVm5GUVFYaG9XVFJ4TW1RM1kxRUtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogenVuNGlncGYxcTduOW16dzI4cTN1b3FhenZncHF4c2JqdXk2bGpndnJ3bnQ0eG9rY3BnMWp6YjBqOWFrbXRib2J0OGZ5anB1aTNqbmpmM2w3bTI3OGF4a2c4OXNndWQ3NHhubHF4bmE1Ync2eG9jenM3c29vcTRqaGh4bDJqY2gK\"\ - \n }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": + \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSWm1kTlpsaEZNWE5sWTFGbmQxVlJSMkZDUlUxUVJFRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxcWEzZFBWRTE0VGxST1lVZEJPSGxOUkZWNlRVUlplVTlVUVRWT1JFVXhUVEZ2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVScUNtNXZUell6TDNsalUycFVabUpvVUdSUGRVNVphQzh5VlV0MGJWVkxjblUxUjBabFVrNXpVaXRuTlN0bE1GVklNV2NyWm05eFMwbFdjRTVNTVhGRVMwOEtURkExWVUxNlVXOVNNbFJIWjBGd1pHNXhiVlkwZHpsSGFrTlROVFpKVXpjek5HeFJOakp2U1ROb1YyMDBRVmRPYUZCMGNYQlhOV1I0VFVSYVFXSmxaUXBvYTBWd09XaEVNbkpDVEdJeFZHbGFOR0ZTVEhSMWVXMXBSMkpJV25KMkwwbGtNbTAwUlRGQk1VZHRaRGRoV1RSWFRFeG5hbGhSVkVKcVUwWlBUMmwyQ2pjclZDOHdkalJJYlVwRVRtUXhWWFJpTjJkUVkyVnRUelJEUzNaWU4wZ3JMMlp5UWk5WmRtbGpOV0Z3VG1WcFV6RllXSFJHWm5oYWQwVTFhVzlCWlZjS00wNXJkM1prVVZZNWNXWlZWRlJxZDNwb1VuRlVNMmxyWmpCVllVMXpUaTh4TTAxbE0yODFiVlV3YkhWS1dVRnBSVk5IVWtGTllqVjZiM1FyTWl0SFdBcGFkMGg2YVdOVFVrSnNZM1ZxVjFKT1ZYQnJNMkpYUlRCT1YwNXpWRFpLWjNoQmFYVkxWMDQ0SzNWMVozVTRWM0F5Y2tzd1RtaGlWVlZuU1hOeFJtbEJDbGxQSzFCeFdtTXdNaXMzYW5SQlRuaG9Remw2VVZOYVNISXpZVmt3UVUwM1RGRTRUSEZvYzJRNVlsSkJPVlp4WlZsMU4yOUVNRmRCYmk5eVlYVnRSbUlLYUUxME0zcHdPWGxtZGxkQ1pscFpaWFprZERSRVVVaFhOMjl0YlZsWFJXOHJhSEJsTlVOdVVscHBSWEJQZGxwTkwxSnlielZGWkd0Rk5pOXFiSGR3YmdwRGVuUjFORWM1Y25oa1QyRTJNa0pKVkhKTFZ6SlBialZwYUhNeVZVdzNhbVpYU1U5MlEzQjNUblJXZUZSUlZtMVNkVmRNWjFadFFtdDNNR3BhU25sdkNteFZaVlJCYlU0clVrZENSR2RPTmxsTFNVRmpWRUp2WkVkcFFYUjZXWGxWTVVkSFFsbGtSak53VlM5SVZ6TlJZa3BSZFVKMVltdGtVRzFoSzJJdk5HNEtPRFpzWTNCSFkwNUhNR2h6VmpWWWVrMXNhVlpDU1hkMmVYZDVRWGhSUm13NVFXOVBNVVJoVnpCM1NVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZVeGEyOWhWVkp6VlRoUGRsZElVR0pxQ2tGb1pqZHBkalJtYW5scmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGSWFHbE5iMmgwUlc5VFluUjNVVkZsVG5kQlRubHdURzluVkVnS1pHSlZhbGxWZDA1aFowSlNhR1JTTTFVeVNTODBWRk50VUhCNmVFUXJhWGRpVVdkbWFqSlVUMVpqYmxCV1dHWmtOaTh2WjBOUlprMXNRV05OVVdGbWF3cE9MMmM0VGtkUWExcE1XV0ZPWWpVNVowOXhPRlpUWVRKMFJqZGplREppWkd0dFZ6SjRNRUprTmxsaVFVVTBZMGhISzFoWWNsSk1Na3hDY3pBNWFHNWtDbXR6UjBoWlpVSjNNVVZaVVhFelRVSjBLMXBrVGs4M1drZFpTRVp3UjBKQlZrcFNMMVZYUjFWWE9XUjBVbGhwZFhBM1JHbFZRbFVyY0VoT2IwWXZMM1VLVWtaWWNYaHZWWEZ0T0hkVVRqbENWM1ZLYkVFemFVRXlRVUZTY1RaRVVEVlpXRkpaVjNkemRVWkNZMjg1V21SVVRUWkhlbHBOVEdvMGJ6Y3dObWRuV2dwVE9GcEhVbkJJTVUxcmNETlVRWFptVDJwSVVYcEhUVGhqYzBsSGRXMWtTaTlrU0VSVldtaEthV2w1VkVOWVNHMXBkRFZoTW5WQlVuVkhjMnd4TVdwT0NsTmtjblJvVHpaMVZqbFdRVUZOZGtOdE1sTlFUVXRJY2twM2JreHdjSFJHTDJkRWFVVjJRMEY0Y2poME9HNVRSQzgwWVRKb1drdEljREpuVTFaaVFqZ0tTV28zYkV4cVNISkdjbWh4UVU5cU9IVlBTa1pJZDNabVMzbElRM2xKTkVRdmQyaG5kbXBoYW1KUGEzY3dkalJFYWxKVFIwaEJLM1ZLTldwa2QybHlTUW81VFhocVlVbEhNMUZ2WkdKWVpETkZTM0kxZVVJclJWbE5WelZTUlhCcFNrSmthRVJaVWtWNWFrZHlNakEwYWxWVVIxbFpiM0JzVW1KaFdqSkdlVGg2Q2xCeFpHSkdWakpuYXpZM1ZraEVVa1ZSWTFoaGNHUjJablZyTVM5aWIyOTJUMlI1T1VGUE1rUnhjVlZ2VEc1WVlVODRNVFp1V0VwV1R6VjFLMnMzV0djS1NqSm5VbkZ1V0VoTmVIQXZRVFIyTUZoTldUaEZUMmMxWm5WbVRHZHNNMWhOVERRM1ozbE5VR3h0V1RJdmJWbEdWVWhTYjFOTE9IZFJURGhEY1VvM2JRcHRWV040S3paQ1NHSTBaMVJPVlZCM0NpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc3Vmb3FkeGktajc2dnMyMWguaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3R4dXJkYWUKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3R4dXJkYWUKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3RrcmloaWZqc3h6X2NsaWFrc3Rlc3R4dXJkYWUKICBuYW1lOiBjbGlha3N0ZXN0eHVyZGFlCmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdHh1cmRhZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3RrcmloaWZqc3h6X2NsaWFrc3Rlc3R4dXJkYWUKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJYWtORFFYZGhaMEYzU1VKQlowbFNRVTB5YjJwTWRtcFRkVWxYVGtvM2NpczRUR1I2WkhOM1JGRlpTa3R2V2tsb2RtTk9RVkZGVEVKUlFYY0tSRlJGVEUxQmEwZEJNVlZGUVhoTlExa3lSWGRJYUdOT1RXcE5kMDVxU1RWTlJHdDZUVlJWZWxkb1kwNU5hbFYzVG1wSk5VMUVhekJOVkZWNlYycEJkd3BOVW1OM1JsRlpSRlpSVVV0RmR6VjZaVmhPTUZwWE1EWmlWMFo2WkVkV2VXTjZSVlpOUWsxSFFURlZSVUY0VFUxaVYwWjZaRWRXZVZreWVIQmFWelV3Q2sxSlNVTkpha0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRkZSa0ZCVDBOQlp6aEJUVWxKUTBOblMwTkJaMFZCZHpKMWFXUjBaMW96T0dsdGNsWTBTekJpU1VjS1kzaEZVMmxqYVZFelpGTXpkMnhtZFhKNVJVOHJNbkUyT1dKcVFVcFNheTlEY0hCMlpYWnZUMlF2UjNaRVF6UjZVV1ZXWTJWQ1RtUTBabTF0UzBSeU5ncHliRlpLZGs5WlF6QlRUVTR3YkVnM2JuY3dabFY2YWxScFNHZDVSa0ZOWVRaS2IwTkZNRmhqY1RKNmVXbEhia1pUYld0MFFUTjRXWEJyTlRWbk5qWkZDak15TWpkSWVrdG5ibFU0UlUxUlQzRnVVbVUyTDNKeE1HOW5jMGhxYW5WdVpXd3JURXhITlVsRFQwcE5LMjV3WlhSSU5tNVFha2RoS3pGdlRUZEVLMlVLWTFGVVZrWXdVMEp0UW05c1NrdGxXVUozTDAweGFIQXZaMmNyZDBsSVExRXJaM1ExYUVZelZrNVBObFZIYVRCYVRsVktOak4yUjNaeVRXUldOSEJETkFwNU5IRlFUMDFhWVRoNmJWZ3dSa1pHVDNSYVFuQlJaVTVzY0RKbGIwRnpUREpvVGxOVE1VdEdaRFJGVVZWaVl6aEpjMlpFTjB0bVlrNHlXRXB3UW5GbkNqRkxiVWRMT0VkcmVrSjNNR3BrUWxOamJUQkpaa2xVVVdkblYzWmlWVEZvVW5oelRFOUpkUzl3YzJsUGNuSnJLM3AzYjI4ck5ETnNablpqVDBwRE9ITUtTbEYxTm5KM1JtNVdaRmwwVjNBNVJ6RnlaWGxKY1ZCbWFIUXJSelJyZG1wVFJGSkJVVlpLWlRWR1FYUk5WWHBNZG0welV6VnhXakExYVVsdWNYbGpjQXB6ZUVNNGNHZEVOMjlXWVdONU4wRndZbFpOYlV0RlptRjZMMVpTUTNObWNWYzNhRWR5VWpsUk1GTTRPRWRvY1ROcE1teDRibVI1YmtSSVdqQTROMGxSQ2tOblVFZDFjVFZXUldwR1kwVjVZbkpzT1RGMFdqVk1hbU13VjJ0UE4yNTNXa3g0UmxOV2JtWkRaVVpvWkdSUE9YWlFOR0pvTlVJd1dDdHdlRU5pZUhrS2F5OTZWRVJPYld4c05WRnpjM2hJYnpWVmRFcGxNM3BQUm1WblV6RlFaRXhtTUU1cGRFeEhhSEJEWVdweGRHTXJTMlUzTmpVM1pHd3pPVW8wVlZnMGFncE5OM1pKYkRsV2JsQk9aM0p5VlhoeFdtNVdXbXhoVlVOQmQwVkJRV0ZPVjAxR1VYZEVaMWxFVmxJd1VFRlJTQzlDUVZGRVFXZFhaMDFDVFVkQk1WVmtDa3BSVVUxTlFXOUhRME56UjBGUlZVWkNkMDFEVFVGM1IwRXhWV1JGZDBWQ0wzZFJRMDFCUVhkSWQxbEVWbEl3YWtKQ1ozZEdiMEZWTVd0dllWVlNjMVVLT0U5MlYwaFFZbXBCYUdZM2FYWTBabXA1YTNkRVVWbEtTMjlhU1doMlkwNUJVVVZNUWxGQlJHZG5TVUpCVEhWWFZDOXFOalppTjJsb1lUbHJSRTVVYndwQ2F6WlNhbms0YlV0V09VbE1UMjlCYnl0NGNVNTNNVkpZWlVkYU5FMTBhVU51YjJSNk5HZ3ZZazlNYVdoMFVDc3ZhMEpHYUZOclFUQXhkbUV6T0ZvMENsRXhUR3N5ZVVNM01WSnlXV3RyZVZOTVdtTkJUVTFyVEZOemFUaDVjbTVUZURSMVIwTlNTMDlYUVdaQmRIVlBjRGhYT0hKdmRIcEhRazVzTkhvNFJsVUtabmRVYUhsTmNFUXZObVowVWtSVVMwSnRha051UkZKNFluUnVRVTVCWlZwbFJFRjRTV0l6T1RocFRtSmhXR1ZWVGtvd09WSndOVWRaT0VObGRVTXJSZ3BWWWpZMmFIWlZhMVpYYUhVeWFGbzVTa3BDZDI5RlMzQXdXbmhzZGs5SlpraGtVVE5YYVdKU1owODJlVTlETjFaQ2NWazRNVTlSY2xCSFlqSlhablpGQ2tkeVNVRkNaRTQwTmxKSFkweDFZbTk2Tm1oRWRHdEVkRzFVZUZWT04yMW1hRWh6UlRrdmRGaFVhVU5FU1VSc2FGcDVSR1ZGV1Vsb2RHWlJhVWRPSzFFS05VRldTWEY1VjA4NVYyaFpkMjF3V1ROV1UyTjNZazk1UzBWMmJXRlJNeTlpTDJGdWRGRXJWRVJRTUZOeE9EUnRTM1Z1VGxWVVZHUmlaSFpqTDIxeVN3cHFTR0pKUWpsa1pERnlaWFpPVjNwQlVYWXZSRWxJVDBoT1NEaEpNRkZvY1ZJd09XUmhiMmRDVVVjNWFUQXZiMjFCTWtVMFdEaFViMEV5WTB4d2JIZE1DbXh0YzBKVE1FWjJjelZaZVRSbFFrTjBUSGxSVEdkM1RVRjFaSGcyZDI5WFJtRkRNRE0wVm5wWVpFeEdaWFZtWmpGWmRUTnVPVTFJVkZOTUx6UTNkbTRLY3pWWVVEWk5VbWM0VEZCcGNHbFVRak5aTkVORFUyOVFVWGwwWjNKcWNXcHNibE5wYUVFd1RrVlNWMHhCT0ZsT2REQkxTbmhsWTFwV05VZzJSV1ZUY3dwbVJHeHBkV3BzUTJaeVNDdFhkRTlrV1VwdVlVUXJaMWRPTUVReFZsVlpUVTAwYlVoeVIzQmFWV1YzVml0dU1FcHVkVVJ3UTFoRGIwMWljbUY1SzA4eUNsUkpOblJQV2k5TmVqVlFhR1pwUWtoMlNXMXllVVJUYkFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMEZKUWtGQlMwTkJaMFZCZHpKMWFXUjBaMW96T0dsdGNsWTBTekJpU1VkamVFVlRhV05wVVROa1V6TjNiR1oxY25sRlR5c3ljVFk1WW1wQkNrcFNheTlEY0hCMlpYWnZUMlF2UjNaRVF6UjZVV1ZXWTJWQ1RtUTBabTF0UzBSeU5uSnNWa3AyVDFsRE1GTk5UakJzU0RkdWR6Qm1WWHBxVkdsSVoza0tSa0ZOWVRaS2IwTkZNRmhqY1RKNmVXbEhia1pUYld0MFFUTjRXWEJyTlRWbk5qWkZNekl5TjBoNlMyZHVWVGhGVFZGUGNXNVNaVFl2Y25Fd2IyZHpTQXBxYW5WdVpXd3JURXhITlVsRFQwcE5LMjV3WlhSSU5tNVFha2RoS3pGdlRUZEVLMlZqVVZSV1JqQlRRbTFDYjJ4S1MyVlpRbmN2VFRGb2NDOW5aeXQzQ2tsSVExRXJaM1ExYUVZelZrNVBObFZIYVRCYVRsVktOak4yUjNaeVRXUldOSEJETkhrMGNWQlBUVnBoT0hwdFdEQkdSa1pQZEZwQ2NGRmxUbXh3TW1VS2IwRnpUREpvVGxOVE1VdEdaRFJGVVZWaVl6aEpjMlpFTjB0bVlrNHlXRXB3UW5Gbk1VdHRSMHM0UjJ0NlFuY3dhbVJDVTJOdE1FbG1TVlJSWjJkWGRncGlWVEZvVW5oelRFOUpkUzl3YzJsUGNuSnJLM3AzYjI4ck5ETnNablpqVDBwRE9ITktVWFUyY25kR2JsWmtXWFJYY0RsSE1YSmxlVWx4VUdab2RDdEhDalJyZG1wVFJGSkJVVlpLWlRWR1FYUk5WWHBNZG0welV6VnhXakExYVVsdWNYbGpjSE40UXpod1owUTNiMVpoWTNrM1FYQmlWazF0UzBWbVlYb3ZWbElLUTNObWNWYzNhRWR5VWpsUk1GTTRPRWRvY1ROcE1teDRibVI1YmtSSVdqQTROMGxSUTJkUVIzVnhOVlpGYWtaalJYbGljbXc1TVhSYU5VeHFZekJYYXdwUE4yNTNXa3g0UmxOV2JtWkRaVVpvWkdSUE9YWlFOR0pvTlVJd1dDdHdlRU5pZUhsckwzcFVSRTV0Ykd3MVVYTnplRWh2TlZWMFNtVXplazlHWldkVENqRlFaRXhtTUU1cGRFeEhhSEJEWVdweGRHTXJTMlUzTmpVM1pHd3pPVW8wVlZnMGFrMDNka2xzT1ZadVVFNW5jbkpWZUhGYWJsWmFiR0ZWUTBGM1JVRUtRVkZMUTBGblFWWlJNMGg2Ulc5TFIwOW9VVUY1ZW01TlNsWXpWVk5YYUVZck55OW1hekZVU0ZoalFVZzJSVmd3UkRKSU1tVk1jbGhxYnpaM1ptRjBhQXB4ZWtoR01WWk9hSFJQYXpRME1XTlVZbUpCUzJSYWNXaDVRVVZqTVZGVWJpc3ZUVlZvU1dKMFpYRlJlRmt3Uld0VlozVmhWSFJJVFVsaFdtTTFkREJSQ2poamIxbEZVWFV5TUdsT05HWkZZemh0VG5kbmFFZDBkV0UxTDJwdE9VZ3Zha0ZsZWpscVVWUnFWREpWVTBVck9XaGtNQzkzU1d3Mk4xaDZSWE5RTmpRS2RpdHpkM0JGWTFJdmFIbDBPRkpaVEdreVVUaHpNR2w1YzBJeGVWZE1PVU12T1RWSFExcHZMME5qYkdWQk1XTmlaVTVwYXpnd1dVd3dXbEJGTUZacVVRcHJWa1YzY1VWRlVFNUNZMHBHTkcwNVJtNXJlVU5MUzAxMU5HbFJRbE41WlZaa04zaHNhazk0Y0VKWmRsWTNOMlV3VW5GVU5TdFRjSEl5YjBSMVdsSTNDbmMyWm05SUwwRkNjRVJzZWpReE5uSk5ibmxGTkRWME1FMXlNa3hHV1VKdU9WbDJaVmh2VjBkbGVrRlhRM0ZXVWtoM1lYZEVjblZyTms5RlVuSm5hVUVLVVVsMFlVOTRaMmx3Y1ZScmNqbEhXRE42V0dWS1l6WTBjSFUxU2tsVVptbHdlakZaTnpaMGNYWkRhalV4ZVdKVVVYTm1ZWFJCY2pZd1NEbGtZM1ZXT0FwQk5WRlNRVEJHWmpoT1FqUk9Vbk54V2s5Tk0wWkdWeTg0TUZNdk5EWnRLM0I1VEZKeVkweDBSRXhpZFdOc1l6UlVOVVYzVEVjelRVeHlZbEZhU1haSkNsVnZabWw2TDBWeFNqTnlTRzlKYVhCQ2RVWlhheTlFUW14c2R6QkhhbE5KYldWSlkxUTJjMlJFY1hsSk5rcGhlRTFsZEVjek0xcHNVRU5aVlRSa1R6a0taRzkzZVdKeWJqSnNWRXBYVEdGTmFVNUJLMUpJWkRCVEsySlRRVmczYlhoRldUUm1kR2R4TldOelUwZDFWVWhpYlhwYVFYRTFUV2xFV0ZoR2RWSlVjQXBPVW10MU1rSjZOMFk1YUVkcEwyVkVRbWxEVVdadGRDODRZVGgwWjJaRWJUbHpaVlJqWmpkSGFXMXZOVUpPY1Zkb1VVdERRVkZGUVRCemRrUkNURE5rQ21Rd1ptWTVTREppVVVoWlQxcHlha0Z1UlZGcGVrMVRRek54WlhSWVJtVjZjMVZoVlVSbEwzZEpkMEZCWVdaaVptaE5TaTkyWm01eVN6VlBaVGxwYUUwS01XOUdVbGxJTjJKS1NtdEhiVE5ETUhSSk5XazRXVE5WWm01YWVrcGFkbnB0VDBzelpsZ3pkbUZ2VkhaVUwzWlZSeXRtYVhvNU9IbHlkRmsyYzJZM1R3b3hjbVpRZWpCWE4wRkVZbTR4Y1N0Q2R6WTNkM05RWXpGR0swRkhRM1JwU1VGUllqaEtiemxEYWpKM05tUXlVSGRtZWtSdmVYZG9OVWwzVTAxUmJWVllDaTl1TlVGMk5UazVVREIyTWs4eGRFbzJNM1ZpUVV3elRra3haV2xvYjFjcmVGWTRXa2RhY0VwNlpsVjFVUzlyVVVwMmNVTTRjRnBYY2tKYWJuVjBVR1lLY2prdlozTjFSVlJJUms4MWJWWnlZVTFXY25CcE5reEphV1Z5VEVkek9VOTFaV05oU1U1bGNVaEJjSEZLT0ZWRVJFdFJlREk0WlRGU1pFZ3lTbXhMWkFwUGVHUllSbFpoT0dadVR6aFlkMHREUVZGRlFUZFdVRXR2TUdGcmRqZFhZall4U0ZaeVVYTXdZV2xMVHpZdk9HcGlUVXMyWW00clNTOXRSMnB4YWpOUUNscFZha3R6Tm5WR05XcHliR2xNZWtsQ0wyOUxaMWxXVG5kRVpGQmxRa1ZNUWxBMVJGUkRURE5yY21KSlVUSlVVSGxYWVZRcldGbG5ZWGxpZG1OeGVFTUtXRGN2UzBGS1FWUlNRV3BhWkc1dk0yaFlaamREVm14VGFYTmxSVzVOTjA5QmRqWnRkMU5wUjB0eE5ISk9TakJ3V205RVp6ZHljRVZtVVcxNk5tOXRaZ3BDYjNCVGEySldPVEZaY2k4MmVGWXlVRkJJWkhORWR5OU9VMjg0VVhkeE9Tc3ZhbVZMU1cxNk9IaHhVbE51V1VGc00yNHJlamsxUjNScmFFaEdNbHBsQ2tSTVdHVTVZV2c1YkdoWFNIQk5lRU56WlZoMEswSnJlbTFPV0VRNGNtUlNaVlpwUzNCTVExWmpWR3REU1hoSlMyWlJSVGhVSzJGa2VtZFdjblp0Ukc0S0wxcDViMWxpTjNwRFdtZFZiMmhMYkhsTk1IVllWa3BUYTNCbVFuTndlRGhHVW1GbmVGaHdjMlYzUzBOQlVVSTVXVlU1VmtWaE1sb3hhbTFEVkdabE53cEtjakEwU1dsdlIybEplQ3RoVjBKRFIxWkJTRkJsT0ZkM1dtdHpiRkYxY21SalVFcFJNWEk1ZERCaFRqbEJiMHRQUm5KNmNGWk1WM1k0U25Oa0syWlhDalFyU2toTlNXdzNXRGR1UVZoYVJVaDVNa292SzNwMWQwMTVTR0V4WWpWRVEwZEVhbTVVUlhwcVFVTm1hbVV5ZVdseFFVMDBWR1ZqUWxkaWIzSldkMjBLU3pSS1NXTnpibTVZTjFkM1VFMXVjWE52YUVacFZHVlZSRTVwVFVGMVoyWk5UWFY0TW1STWFHaElSR2t5ZERWaGEzTnFkV05RTUU1c1dVUnFkVmhUWndvMGIycExSVEpzY2xaSVJVVjRkVUYxV20xRE5GUlFUVVZ4UzFSblZYRkpWbXBCUlVJd2VraHNWRlp1TXl0eE5FRXlOamRHVGtkTE0xWktNWFJMUjNwaENta3pORFJzWnpVd1JIUlJaRUo1ZW5GM05tOWpMM3BQWmxwaVRtNHhNemxMUVVoUVZuaGtkMnBrT0VwclRFZDRTVFZFVEZvMWIyVTBOM2hCVVVaRVFUTUtjM0JXV0VGdlNVSkJVVU54WmxVNVRrUkRjU3RNWkVSamN5dFZNR054UVhOMmNtRTVaMjlSU1ZaaWRHOU9aVnBOUjBGb2FTOUNVa3BTYjIxWWJVNXBVUXBHUXpsbmF6TXhMMlpZYVdWdmQza3ZNRkIzWkROUFFqRnlaRXhoYkhsUlZFZFpkVEJJYlM5SE1YaEliVmMxTTJWWVFrbFlOWFpsYm05VVpWVlFLM2RZQ2tzclVrMDBSeXRUVTJsaWJFTkhNM0pzU0d0SWVrOXFhRGRrTkU1V1VHUk9TV1ZIV0RSdE9HcFhLMGsyYmxWVmJVeG9ielZ0Y2xCTVJuZE9TaXRZT1RBS1RVYzJOR2x4Y0hWRVlrdGpUVU4xV1Voall6aDNha3hLUjBoakx6RXJlVlkzTjJkQlRHUlZkUzlGZVRWT05IcEZNV2hrT0VRcldIZGhOV0pKUlRCd2F3cDZkMHR4ZFV4SlVUWnZVMUptYTJzMmRXaFpVaTkxT1dkd1Qwc3daazFhWld3dk1scENRbFJWZVVaYWVtSTVRbVJsUkdReWFFWmphMDFoTkd0NVpTOHJDa3hIY0cxSk9EbEZLMWRGWkZkVk5VbFZVWGwwUzNjeFdXVlFSREUzU1ZOU1FXOUpRa0ZHVWtneE5TdG9OVGhHTDJORFMzTTNTVE5rYzBWS1YzSm1aRUVLZGpWTFlqSmxUakp5TjJFd2JVVnhjRTQxYm5CTU9XVjZVMDFzUzFkSlkyWkZLekkwY21Relp6TlRkREpoVWtSdU5ISXJNREpzVlhCUWFVVmtjbkpQZGdwdU5TOURiM1JSYkdWTWR6ZE9NWGxYWjNCRGQyUklTVEJOTjJSaGRsRllTQzlTYnpKbVRYbFJiRXRKUkZsU1JHSlFTVWxPSzNSTmJTOVBieTl5TWxRMUNtRnhPWEpPYm1WdFN6bEZXbGs0TW5ZMlZtOXNRVEZvZVU1RFpIaGpNVGs1UlVONU1uSnpUbGgyY3k5eU1uRTRTVVEwTUN0WGJqTlNObWhsZUNzdmJuRUtjWE5pWmk5RmMwOHJPR3AyWjA1bmFrSnJRa1psYUZsVlVtVjJlR04wYlhkYU1GbHpTVFYwVTFObVUyTnJVbGxUVXk5QlZVUklXVFkxVUdWMmExQkJUUXBZTW1KbGRqRnFUSEZxY21waVVGQnFSWGhSY25OTVVsVlJUalY2UTBSU2JIRkZkVlpIU0hwaWExVk1RVkp6T1VKd1VVVlVhbWxVYTBNeU5EMEtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogbTlteHJ4YXhqZHAzNGJnbjgybXF5aXV6bTk0NW5iOGVxdjNpNmJlc2k3YTdjMmk0ajlxb3ZkYWI4MzRuNjVmcTI3emtieTl4b3hrcWV6MGxncTdqenN1c3N5N2U0Y3R5MTJnMzdsemxjb3NwajFlY3E3YnQ1cXljd2YxbGxmNWMK\"\n + \ }\n ]\n }" headers: cache-control: - no-cache @@ -1171,7 +1404,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 21:32:16 GMT + - Thu, 29 Jun 2023 09:46:23 GMT expires: - '-1' pragma: @@ -1207,15 +1440,15 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ - \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSUlV4WU9XSXhNM00yVkhCa1dVcFJPRWxVTWpSMWFrRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxVVVYbE5WRVUxVFZSa1lVZEJPSGxOUkZWNlRVUlplRTVFU1hoTmFtdDRUakZ2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVOMENsTXZUVWRhWnpBNWQyOXpMMnhOYm5FeGRHMVNNME5MVUhsTFNVUldkM05HY1ZsbmNVMWhVMU5JUkRCRFV6SnZiR0ZYUVdoSWFHNXNlVElyVms5QlUyY0tlRzV4ZERoYVJIVmFPV3BOWkdkNlNDdFhUVFJETTNBMFZ6UjZSRE4zWm00eVpqVlJNWGhYWldkUGMya3dkMk5SVUV4NVdEbDVZbGhDTlVOUVN6SkdLd3AzYXpJMlVURjFkMHB6ZEVsTFExWlZXbWQyZGs5U00ybFpOMDlyTmpjd2VtSXJNalJsWmt4UmFTdGtTbGhUUmtjNE56bFFVRnB4UTFsVU5rbHBWMnRCQ25WS1N6ZEJhR3BuV0hwSWVVWXlVVFl2YVRWd2RYSjJSbk5qWlVSc1NsWTNka29yU1VWeU16QndZMHhXVUVKUWRFSXpZWFZXZFVOSE0xVlpZbmROTkZRS2JUaFNZVXhMU0RsM1ZDc3paM3BPVEZwdk9Xa3JWMVE0Tm5FcmVTOTJOazgzZGl0eUwzTkZkbGt2VVRKMVZHSlFhRGRvTTFwYU9DdGphRU5MTjBwVVJ3cFBPRXRyUkZOdWIxY3paM2RoYjBjMWFUZDBOQ3RZT1VWdWQyVmhOM0UyZWxoT2VWb3JNalp5TWtWdVVtMUxOVEp6VTBZMk1tbG5PRnBpVVRoeVVuRlRDa3hMYW5GSWJ6aDFNamQxUmxWQ1dVZFhha292TjBzM2RuSkZjRzl1Y25wTWRsRXZZMXBFT1UxU1RGaEliRzFMYlhoM1oxcFBNV2hyVG5SdlJGZDJUMVFLU1ZWSU9UQlhValZ5WXpOT2NteE1UVkJQYkZob09HMVFPV2syWTNKQmJFRllibmRXY0RCbWIzUmhURXN6U2xoM05GVjZiR3BMV1hkUU1tTlJSVTVZTmdwQ1VpOVBTMFJoVm10UmFYSjFjR1JhWjFoMlVrZFhWMk14VURWQmJERTBWMVJYZVRWdGNYbHVOMjE2VkN0UVEyMXBUVk1yTTFaVE1VTlFiWHBOVDFaUENuSnlNbmt5WTI5eE0xRkxSbkppZGpKWWFXazNVVEZxTURSc1JGaGpLMDF5UTFOV1VrNTVOVEkyY2xOeU1VMVBSQzlDVVRoU2JYUXpMMEp4V2xaVFZtSUtjRlpKU0hOek4yVkVORmhUZEVSS1NHTlVMMmxzY0haYVVTdFJabmRZVFVWck5rMTFRWFJhWnpGUlNVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWMVJsUjVRVUZEU0cxT1MzbGhZWE4yQ201WVNIVkhMemhhVm5oSmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGRFQyeDZkMUJPVGxvM00yMXdkMFJtU2tFMFpWQm5iMjl6VUU0S2FsTTJabXBqZFdKeWEwcHZSVWxtVjA5bUwxcDBjM3BvTVZwblMxZExSeTlqWldrNE5XeEJiRVkyVUdOUU5tWkZXRzFXZW1SMFdTODBNbU5QTUVoa2FBbzRSalZtYmtNM1p6QlNabnBFTW05bVRrUk1hbVJXVm5OTVoweHhSWFpVYWt4amNFeHRVRXBYZDNFelMwNUROR0ZXY1ZBdlFreEhVV3RJWVhaNWN6Z3JDbWhZVG1wNmNXVXhLelEwYTNoRlNGWTRlbE13Y0VwWFNsTlVXR1V4VG1kRmVWb3ZPV1pXTUU4eVMyVlJRbWh1UmpobVV5OUJSazFQZFZKaGIweFhWbEVLYVZKakwxSlFZUzkyWm01bFVWVkZNR2M0YUN0NE9YYzJhM1paY1ZoMVZubHRWemxZYUZoQlVFZFBkblowU0VZNGNFbHRWRzF3WW5BNWVqTndhMVZDVlFwWlFVMVhhbWwyZEVod1JFMDRUVEE0ZERRM1JsaDRiMWx3VGtzeVV6QjRjVkpvVjJOd1RtSTFTR1ZpTWxrM00yOWhVRWh6V2xOUmVFcFlWMDAwYjA5UkNrczRRa2QwY2xVdlZubEZURkEzZVROSVR6VkpRVWxpYkRoREwzRmFVM056VGpWeGFuWjRMMnN2YVZKQlp6QlNaVWxtTmxrclVtdHZNVEJSVkRSYVZtb0tMMmxMWVdWTk55dEVUbFF3WVd0S2RGcFhNV1JtYTBwVFNuaHFUV1ZwVEZWM0wzTlZXVUZKTlZWeGFFMVphWFpaUW1GcWVuVm1SRE14TUd3dmNGVXZNZ3BrZUROM05IZGlWWFpaVUdoV1ZGWTFORkpsTjBaQlRrWTNWRU5tYUU1blZWZzRheTluUTFndmJHOTVhVFZWTmxkRWFYbFBkbVZwWkhSM1owdHhlVGxDQ21jMVJFeDRiVVZQWW5vNVEyTTVTWFpWYlRoV2Npc3ZXR2hxZFRCSVYzbE5hbU5pYmxKSGNESjNPR1JUY3paMVVHcFNTMnhrWjBKR2MxWjZLMWRJTm1vS1UxaEhiM053UjBsNGMxaHRSWHBxZDB4dUwycHRkWEJzYVRGdGJ6SkpkMHMzVVhwelVqSXZaM2x3UXpobWRFUlpNVXRzVERGbVoyVnJlbmhrUzNodGFBcEhNMVF2SzNsS2JHeFZWMGQzYmpKb0NpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc2R5cG90dmotazFjeGY0Y2EuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3Rkbm9wYWIKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3Rkbm9wYWIKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3RoZWdhc3U3a3JzX2NsaWFrc3Rlc3Rkbm9wYWIKICBuYW1lOiBjbGlha3N0ZXN0ZG5vcGFiCmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdGRub3BhYgpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3RoZWdhc3U3a3JzX2NsaWFrc3Rlc3Rkbm9wYWIKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJVkVORFFYZFhaMEYzU1VKQlowbFJaRnBNYTFRMGRHUmhVRFUzYVZsb1VIcFdSakpZUkVGT1FtZHJjV2hyYVVjNWR6QkNRVkZ6UmtGRVFVNEtUVkZ6ZDBOUldVUldVVkZFUlhkS2FsbFVRV1ZHZHpCNVRYcEJNazFVVVhsTlZFVTFUVlJrWVVaM01IbE9WRUV5VFZSUmVVMVVTVFZOVkdSaFRVUkJlQXBHZWtGV1FtZE9Wa0pCYjFSRWJrNDFZek5TYkdKVWNIUlpXRTR3V2xoS2VrMVNWWGRGZDFsRVZsRlJSRVYzZUhSWldFNHdXbGhLYW1KSGJHeGlibEYzQ21kblNXbE5RVEJIUTFOeFIxTkpZak5FVVVWQ1FWRlZRVUUwU1VORWQwRjNaMmRKUzBGdlNVTkJVVU4zUWtaUlZqRk5RblUwUW1wSU5GcDVVWGwwY0VnS1VGQXpZVlJ6WnpaWFVWSlRkazAxTURoR01YQlVLMk5vTnpodlRrOXlRazEwV0c5R05uaFBVM2h4WVZJeVIwcENjV0pJY0hSMGJWWktkMUZxUVhOMU1ncHBZbFU0VjFwUU4wZERiek5KTkZSeU0yVktSVWtyUzNVMFoyczRTbTE1YkdGM1dVTnBiMGsxZEhOS04ydG1WMjl1V21wR1FuRlpiVWRPY204NVZsRnpDa1kzVG5GVFEyMHhSM2M1WkdWQ09YUlFMMEZzYTFkbFQzUk5XblI0TldObFJsbElTR1l6UzNRM01sWTFiRWxZTWsxRk1sRk9Za3BIV2paNWFEbHNaakVLWVdGRWJYcE5RVWxsU1N0MU1ERnZla1JJZUV4VVZYRXlVakkwTDFsbWRWTldVMnhRUkdGSmMxcERjV1UyU0ZwbGRYZEthazFVUkM5cldVTjZSekF3VmdwcWMyOUpUVkJrVFZZM1luRjZUbGh3TXpSNlQzazRUQ3RpY1RoVWQycHZNbVZwYTFsVFlrNUJZMEo2VVVOYWJraG5jakZ3UjJ4UFpqTXhPVTl6TW1sSkNqVmpZMkpNUm13elNqaGpTVFZKYkZkNFJFWkpSRkZCVGxsUGEwNVRkMU5YYldGT09IUjFUbnA2YVVkV1REVnZXVGhTVTBoemFTODBURkk0UlZkNGVtOEtNVmhaVHk5Q1lsVm9jamhRUWtGMlpDOHhXbEpCZEVSV05HcG9lU3RUUVRoeGFuTkpNbWtyUlRFNWRXRTBPRVo1VlhKaGMyOXNTazFHYlcxUllsWTJid3BXVnpWMlpEUlBSV0pQTWpKWFdVNVpaMFpzV0daaWRYcHRWVVZNYUdOU2JYUkRZblpFUlRCbVdIRmljMlpJWlVKb1JHdzFPRGR2VDJaRVpYcFJaRUZuQ2tNd1puRm5XRFJDWkZCUlNURlJPR2xuVkM5b2JXRktURXRwY0dweGQzaGtZamxQTldVMlQxbGpTWE5OVjI0MVdXbFBXVVl2YVVsTWJHdHlibXd3YUdjS1JHdHZTbGQzV0VONlJ5OU5TemwwTlZCbldGQjBhVVZ5TUNzemNVbHJWM0p5YVc5RFRrbDFObVZHTnk5WVZWRlVWalZCVURGb2JFOXhiWFI1UkVwblVBcFhXRE0wYWpsMWNYUTNTazEzUW5oTmVYRTVkVXQzU1VSQlVVRkNiekZaZDFaRVFVOUNaMDVXU0ZFNFFrRm1PRVZDUVUxRFFtRkJkMFYzV1VSV1VqQnNDa0pCZDNkRFoxbEpTM2RaUWtKUlZVaEJkMGwzUkVGWlJGWlNNRlJCVVVndlFrRkpkMEZFUVdaQ1owNVdTRk5OUlVkRVFWZG5RbE0wVmxCSlFVRkpaVmtLTUhKS2NIRjVLMlJqWlRSaUwzaHNXRVZxUVU1Q1oydHhhR3RwUnpsM01FSkJVWE5HUVVGUFEwRm5SVUZvUkZSS1IybFBkbGx3TWtWbGNHWlZVM0oyYUFwc2FWRmxVR2x1Wnl0SWMwaERia0kyY1VwQmRpdG9WMmRvUXl0c2IwdFJWblU0WkVSU1ZURlplRFl6YTJSbFdUUkVPVVEwS3pCRE1GUjVXamhFUWtGdUNqWlBTMkV2VUc0ek5qUjBSRmRST0dSS0sxWkJTRmRCTkVjMVVVUnhZVlpYZG5wTVUzbGphblpxUW1aRVRGWjJiR2N6U1U5bWQzYzBaMkl2VkRSMVpXa0tjM0JFTURGMkwwVTBSbTVOZFRRclZFdFJSRk5HZDB0cFRFODNWVmROVUhOc04yNWxXa1ZGYm5jcmFVTnNXWEp4TjFod05qbHlhVVJoTlZFNWVXSmpjZ295WWt4S1YwRkNaM1phVjJKalpuTjJlV3RZWlV4UkwwbHpkMUZSU0hGa01tWTFjMnRFUVVaaFowNU5LMWxWTURndlZtZFFVbVJoTkRNeVJ6Rm9hMDQ1Q21sbVV6QnFjbTg1TDJjclZpdEJjV1ZMWVdkU01qVnliRE5OYTNGSkwwUnlVRzV6T0dFd2MxSkJMMjlVT0c1dldIcDBWVzVLTVZsS1JYSk5VbWhNVjJrS1VHZ3dRM1pYVmxGVGFISnNjMjUwY1VodVRVdFdSV3BNSzNjd1l6ZG5kVkV6YlVkdFF6ZHBSVGwzZURKV2RrNDRRakpMZGpGSE9YZ3lNREU0UkZoeFNBcEtRVmxITW1kaFdXY3lWMjFMZW1OU1pVNU9lbGhUYmtkbWRFeExSekZGTHpoa2FYRm1VRTVwTTBnMVpUSmhNV0ZzWmxWb0sxQlRWV05aUVZwMlluQk9DbGxWZW1KcVlVeGtVV1V6VkhCcmJTOTRiME5IU0RoU1NuQldhVzRyVUZGaVdsTm9TMk4zTDJkTGNXdGllWHBKTjFKUlVreE1RMnRJVWtsMlNFSTJiWE1LZDFoM01HOWtORTR4U1ZsUVdUUnNTREZSZGxkb1F6aGhiVFZTUmxJdllXNVpjRmx4WlVSeldEaG1kVEpUVmxOYVFtSlFTRXRKTjI1QmFGRkpjVmgxVlFwWmVISnFkMjVHVFVWbVNqVlNURE15YW1KWWFuSm5XakpLTkVkTlF6UXZXVEkzV0dGRWIyODNMMko0VmpOVlIwVkRlbWQyZUZOcmNraGhURnByTlc5WUNsZzROR2N3UzBSeFRXNUtaVlJaYTBWaWJXaDZObTgwUFFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMUZKUWtGQlMwTkJaMFZCYzBGU1ZVWmtWRUZpZFVGWmVDdEhZMnROY21GU2VubzVNbXMzU1U5c2EwVlZjbnBQWkZCQ1pHRlZMMjVKWlM5TENrUlVjWGRVVEZZMlFtVnpWR3R6WVcxclpHaHBVV0Z0ZURaaVlscHNVMk5GU1hkTVRIUnZiVEZRUm0xVUszaG5jVTU1VDBVMk9UTnBVa05RYVhKMVNVb0tVRU5hYzNCWGMwZEJiM0ZEVDJKaVEyVTFTREZ4U2pKWmVGRmhiVXBvYW1FMlVGWlZURUpsZW1GclozQjBVbk5RV0ZoblptSlVMM2RLV2tadWFuSlVSd3BpWTJWWVNHaFhRbmd6T1hseVpUbHNaVnBUUmpscVFrNXJSRmQ1VW0xbGMyOW1XbGc1VjIxbk5YTjZRVU5JYVZCeWRFNWhUWGQ0T0ZNd01VdDBhMlIxQ2xBeVNEZHJiRlZ3VkhjeWFVeEhVWEZ1ZFdneVdISnpRMWw2Ulhjdk5VZEJjM2gwVGtaWk4wdERSRVF6VkVabE1qWnplbFkyWkN0TmVuTjJReTl0Tm5ZS1JUaEpOazV1YjNCSFJXMTZVVWhCWXpCQmJWcDRORXM1WVZKd1ZHNDVPV1pVY2s1dmFVOVlTRWQ1ZUZwa2VXWklRMDlUU2xaelVYaFRRVEJCUkZkRWNBcEVWWE5GYkhCdGFtWk1ZbXBqT0RSb2JGTXJZVWRRUlZWb04wbDJLME13WmtKR2MyTTJUbFl5UkhaM1Z6RkpZUzlFZDFGTU0yWTVWMVZSVEZFeFpVazBDbU4yYTJkUVMyODNRMDV2ZG1oT1ptSnRkVkJDWTJ4TE1uSkxTbE5VUWxwd2EwY3haWEZHVm5WaU0yVkVhRWQ2ZEhSc2JVUlhTVUphVmpNeU4zTTFiRUlLUXpSWVJWcHlVVzAzZDNoT1NERTJiVGRJZURObldWRTFaV1pQTmtSdWR6TnpNRWhSU1VGMFNEWnZSaXRCV0ZRd1EwNVZVRWx2UlM4MFdtMXBVM2x2Y1FwWk5uTk5XRmN2VkhWWWRXcHRTRU5NUkVad0sxZEphbTFDWmpScFF6VmFTelUxWkVsWlFUVkxRMVp6Um5kemVIWjZRM1ppWlZRMFJubzNXV2hMT1ZCMENqWnBTa1p4TmpSeFFXcFRUSFZ1YUdVdk1URkZSVEZsVVVRNVdWcFVjWEJ5WTJkNVdVUXhiRGtyU1M5aWNYSmxlVlJOUVdOVVRYRjJZbWx6UTBGM1JVRUtRVkZMUTBGblJVRnFWVFZqVW5NMWRUQnNVVGM0VEU5U05ISm1TR1J4ZEdwVVJrRXdPVWx4YTB0MGQwTnFkVk56ZVZNdmNHRldaemxEUmxCWFZuazNWZ293UlhsQ1oxUk1WRnBKUTI1dFVHeHVjVU0wZDBSVmNYVlRiMFZxUlRrNFNIcFlVa2xzWVhNemMwNDFiVUp2YTNnM1pYY3hVSEJ4WlU5V2FreHVhREJIQ2xSVFNIWkhMMEUxZGpoU1ZYbEdTVVUxUWk5TVdWRm9Va3htV2s0MVluWTVVVVpVUVdwMlJYcGhOa1pWT0ZoelJVTjBWSEJ2ZVhCRWNISjNNU3RIVUdnS2RGVjJLM1k1TlZKM09FcFdjbGRtYm5wT09HVjVUMFJSVDFwSmRqSlJaemh6VXpCeksxWXZORlZoZWtKWEwzZHdRMHhpTjFKTmVXaHRSMkpNT1ZKV1JBcFFXVU12WTJjelZVaGFRMWd2YzB3MVZISkxaVWRJTkhsTFVtWkJNRmsyTldGTmQwOXlTVFEyWm1SUFJqUXJVMmhCVWl0YU5HNU1kbEZPYVV4eVZrcDZDa1JXYlZabGVWUkhURTF0V1ZkQ1FVRnBXa1Z0UlRGSVlrUkxOa0pQZUdvd2MzZFBaazFDVkc5QlFVVkdiMUpQYmxWc1NraHhWVlZHWmtaSFdIRm9TR3NLV0dGUFlYaHdWbHBrTjFZeGFVWlVTbmRwTnk5eE9YWm5Vek50SzNkdGRtNWlZbFJoTmtJeVZGWlBRMWwyVTBKck9XTnhXV2hsWkdNdmJ6QmFXVmQyU3dwelp6TjVkM1ZDVjBOUFZtVlFUMVZOVkdVMk9FMUVOWFpaV0hGWFJrZE1LMVpSUm5GQmRrdzNSMjVNV0ZGRVdUZFZVWFkyTnpnMmFrUTNRbFJDUWxkWkNtSnVaMnBIZEN0b1EweDJkelo2Y0N0S1ExRXhVMU12WmpBdlZuRklNV1pFT0dsTVYxb3hkelJOTVdKUWNDOTFTV2RITUZFMmFsSkJVbTFPV1RCak16UUthMEkzZEZaNFkxaFdhVE50ZEZWT1pFWmtVbGszU1hwWFNWVXdXVWh2TkVGaVQzTTRiVzFZWVVRcllUTTRUM2xwY1ROcmR6QjBkRGMxWVRReGIwVnpVd294V1c5WGJtMVpka1ZpZGpOYVRURnRLMXB4ZEZRMk5XSnNLekJTTjBkRVdXUnROamRwVUdaalJVRXpPVmN5WTNsdFJXdERaMmRGUWtGTk9FOURaRnBEQ2tWUE1IZE5iakUxYjNwcmIycHRjVTlrYUhaTk9USTRTa1U1VnpadVNtTkpWR2czZEdOWmNIbEZUWFJhYVVNd2VEZENWRmxZYTFOT2VsSTBRM0pVWVVnS1pYbEVaWE15YmtGMmRWRlFhbUZZZUZCb2JtNVZNRGR2V2psdU5ubE9NMng2V1hNMFYydDROVVUxUW5oNVZrNVhaVmw1V0VWeWVubHRUa1ZzYzNBemVncE9UV0o0TlZGSWJUVnRkSGhQTVVOeE9XRnpOREJMUkVkV1VWTlZjVEZTVFcxdVNrSk1SVTFTVjJGMldHNVBWR2RRV0ZKdlJFTTFSbTU0VjI5V2MwSnNDa05yTDJWaGNWaG1kVXhzSzNsaFFtaHBlRmx5VkZkWlVFdE1iWFpOWjJsVFpIUnNLME00Tkhsa2RHcE5RMmh4YlhGNVpIcG1TRzUxWkVWTWQycEVhM1VLVEhKS2NYUnlVbEI2ZDJsVFQxRklhVEZzZVZJemVFSm5OVFJXY0N0NkwzWk5VbEIzVkVzME4wbFBiM1ppVkhaVU5HbDBNMVUxYkhaWlEybHBVbmxIZFFveWFHUlRRbkpXWTNRMGJrMU1SakJEWjJkRlFrRk9iV2RDYVZsQmNHY3ZVRTVySzBZeFMzZHBUbEE0T0RWMmFsTlJXbHBQVFRGRGMwOW5TazEwYXpZMENtMXRObTkyZFZJelZtVnNXQ3RMVkZkRFR6bGhNREJvUmtWVGJ6QlVPVU5yYUZweFlsVmtTUzlHYzJodFVGVTBWamhCUlROeGR6bFhNMHBqYUdKalJIRUtRMGRRVkhVMVdITkNiMGhIZGswNVZqaEdTV055TjBSb1QzSkxlRUZKY1d0c09FYzFXV0l5UVZWRE9IRXpla2RzYkV4aE5YcFNUMFFyYm5sdlRGWXlOZ28zZFdaNGJXWmhObGMyZDBwTFNGUTJZMjkwT0ZKakx6SkdlRVZFY1ZrM1YycFFWM0J3T1dSNU16SkRlVk5UUVVjMmRURjRjalJKTVdnMGRHVmpiMlF5Q25aT2QyY3JSbEJ0VDJaTVptd3lNSFF3UkhwbGFrUktkVVJVZVc1cU16aFlNbWxWYzNOd1NERTFSamhSUlRCTlJreE1OalE0UkU1RWNWVjFlV2N3VW5jS1NUTXlTSG81ZVRSb1VYcEtVMGhRU2tWb1FUUllRV2QzT1N0TFVVeExTMmM1V0dodFkyazNPRzVEWTBOblowVkNRVXBNVTFkYVpHTTRZazh2V1ZrMGJ3cEhkRFJHVEVSbVZFaFdNVXBWYjNWb00wUmlTMUpSS3pCREwwWlRXR2hxVjBkaFMxbHphaXRoUkhSWldrNHpPVlpNWjFsQ2VpdElRelJGVkVkd2JVcDJDa1YxTWxaUFpGSmFOVXhrY0cxWFJua3lNMFoxY1RsRWRHa3pjMVpWY2tzemFVY3ZPSFk0TkdkdE9FSmtkME5RVEhkNVJreHZaMVIxTWtwWVlVbGFTR1lLYzJKVGRXSnRhMlJWVjJSQmRXMHZTRTAzU1hveVpXNUdRMEl2VFhCNE5VaDRNVnBpV21nelIwSk5NM1Z0WmxOV01tVkVOWEJqY0RNeU5FRllURE5wTHdvd04xWXhaVzVSU0hSNVJGcFJLMFZFUkhSWVkzSmFXREpvWlVKcWVVOTBSMVJhUVdRek1uaFhhM3BqSzFwU00zaFJUeTlYYzNobk5EY3hVVVUxT1cxckNsaHBTM1I2VlRkU1JUQkNRa1F2VVVaUmVXTlFjQ3RKUjAxeU56UjJkV04wWkc5SFdtSTVVR3QzTlZGbE5GZEZSRFJUVUhaTWNFWnlPRFp3YkhRcmQxTUtLM1pNZW01UFJVTm5aMFZCU2tjNGFVZEhTM0poY1VseFYxa3plVmRST0hoRFJIQlBRVkZLVTJOTVQwODJPR0Z3ZGpWRVVWSk5WM0pPVkU5VVNXWlVTUXB6VmxKR1JVaFBNRGg2TW14bFkyWXlXVGRhTWxac2RqQTRhbXh0Y2xkb1lXcENjSGd3VVhwcVRGcEZRVlp2VlZsVlZWVk1aSFY1TTJ0ME4zb3pUbTE2Q2tSVE9GVnNWRWQ1Um1zd2RreE9TRWxZWm04NFQxQnVkRmhyVjBoRk5EZFVNMlJIZW5CRlFYZGpXbU5TZFd3MmVVcFJVMU00T0hCRlJGSnFjSGxsUkZJS1ZVUkJTVlZsTVUxSFFWbHhUMlpNWkZWaUwyNU9lalk0VVhKVGQyOVBWbVZsU0ZobmQwUm1iMUpRUW5acVkwVm5aa1JxU0hVNU5IQkxSVVp6TUdJNFRncHVTbVpMV210RWVGSXZLMHRSVkdOcWFVUkJWbGRvV0VsTk9HdFVOMFpRWVdNdkwyY3JZWFEwU0d0WlowVk1WVmhPZEVWblNVOXJWbE5CVEdkNlptTnRDbUl3YlZSck5qZHhSVEJWWTFFeFRGQmlWMHgwTVdoNFZXWkdMMHRhWjNSemNWRkxRMEZSUVhablJrcHZNSE5FT1djclZVVnNjMk5JU0ZacU4wVXJjRFFLUWpOUlpUVkNVbVEzY0cwNU56RlVjMFpFWkhWRE9YTlFSMFoxVEV4MFIxQXliakpGZFV4RFREZ3hUbXhWVHpoSlJURnFUR0oxZVdGbU5VczVSVFJDZEFwVVdXdG1RbTRyYmtKWlpGbHFlakpETkVScWVYcG1WelJpT1dNNFRUQlNSemxvUTNsa2RIQmtWMGgyYUhOdU9XVkNhMkZsUldSQ09VdzRNVmh5WmxaaUNpdEtaQzl1Y3pKYVptMDFWRk5sYkhsR2JtODRla0pRWVVselFXSnRRWFZ0VVhkQlpVZFlOSEZTU25KNVlUUkllbGRKV20xTFdYcEZURWxITkhaRWFtNEthV2xIZUd4bVYyOTZlalJtUVN0SE1tTldibmxFV1dKT1YyRTJWbTQ0UTFvMk55dE1iVWRKYUU5cVVHb3lSalIyUzNnd2VWWlZWblZ0TTJ3dlIwSktkd3BTV1ZsdmEyRlBVRmdyVldoRllXZHNXVlJRVTBaeldDdHlVMmM1UzJKek5UWjJiR2RSWmlzNE1rVkpXamxVVm5GUVFYaG9XVFJ4TW1RM1kxRUtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogenVuNGlncGYxcTduOW16dzI4cTN1b3FhenZncHF4c2JqdXk2bGpndnJ3bnQ0eG9rY3BnMWp6YjBqOWFrbXRib2J0OGZ5anB1aTNqbmpmM2w3bTI3OGF4a2c4OXNndWQ3NHhubHF4bmE1Ync2eG9jenM3c29vcTRqaGh4bDJqY2gK\"\ - \n }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": + \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSWm1kTlpsaEZNWE5sWTFGbmQxVlJSMkZDUlUxUVJFRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxcWEzZFBWRTE0VGxST1lVZEJPSGxOUkZWNlRVUlplVTlVUVRWT1JFVXhUVEZ2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVScUNtNXZUell6TDNsalUycFVabUpvVUdSUGRVNVphQzh5VlV0MGJWVkxjblUxUjBabFVrNXpVaXRuTlN0bE1GVklNV2NyWm05eFMwbFdjRTVNTVhGRVMwOEtURkExWVUxNlVXOVNNbFJIWjBGd1pHNXhiVlkwZHpsSGFrTlROVFpKVXpjek5HeFJOakp2U1ROb1YyMDBRVmRPYUZCMGNYQlhOV1I0VFVSYVFXSmxaUXBvYTBWd09XaEVNbkpDVEdJeFZHbGFOR0ZTVEhSMWVXMXBSMkpJV25KMkwwbGtNbTAwUlRGQk1VZHRaRGRoV1RSWFRFeG5hbGhSVkVKcVUwWlBUMmwyQ2pjclZDOHdkalJJYlVwRVRtUXhWWFJpTjJkUVkyVnRUelJEUzNaWU4wZ3JMMlp5UWk5WmRtbGpOV0Z3VG1WcFV6RllXSFJHWm5oYWQwVTFhVzlCWlZjS00wNXJkM1prVVZZNWNXWlZWRlJxZDNwb1VuRlVNMmxyWmpCVllVMXpUaTh4TTAxbE0yODFiVlV3YkhWS1dVRnBSVk5IVWtGTllqVjZiM1FyTWl0SFdBcGFkMGg2YVdOVFVrSnNZM1ZxVjFKT1ZYQnJNMkpYUlRCT1YwNXpWRFpLWjNoQmFYVkxWMDQ0SzNWMVozVTRWM0F5Y2tzd1RtaGlWVlZuU1hOeFJtbEJDbGxQSzFCeFdtTXdNaXMzYW5SQlRuaG9Remw2VVZOYVNISXpZVmt3UVUwM1RGRTRUSEZvYzJRNVlsSkJPVlp4WlZsMU4yOUVNRmRCYmk5eVlYVnRSbUlLYUUxME0zcHdPWGxtZGxkQ1pscFpaWFprZERSRVVVaFhOMjl0YlZsWFJXOHJhSEJsTlVOdVVscHBSWEJQZGxwTkwxSnlielZGWkd0Rk5pOXFiSGR3YmdwRGVuUjFORWM1Y25oa1QyRTJNa0pKVkhKTFZ6SlBialZwYUhNeVZVdzNhbVpYU1U5MlEzQjNUblJXZUZSUlZtMVNkVmRNWjFadFFtdDNNR3BhU25sdkNteFZaVlJCYlU0clVrZENSR2RPTmxsTFNVRmpWRUp2WkVkcFFYUjZXWGxWTVVkSFFsbGtSak53VlM5SVZ6TlJZa3BSZFVKMVltdGtVRzFoSzJJdk5HNEtPRFpzWTNCSFkwNUhNR2h6VmpWWWVrMXNhVlpDU1hkMmVYZDVRWGhSUm13NVFXOVBNVVJoVnpCM1NVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZVeGEyOWhWVkp6VlRoUGRsZElVR0pxQ2tGb1pqZHBkalJtYW5scmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGSWFHbE5iMmgwUlc5VFluUjNVVkZsVG5kQlRubHdURzluVkVnS1pHSlZhbGxWZDA1aFowSlNhR1JTTTFVeVNTODBWRk50VUhCNmVFUXJhWGRpVVdkbWFqSlVUMVpqYmxCV1dHWmtOaTh2WjBOUlprMXNRV05OVVdGbWF3cE9MMmM0VGtkUWExcE1XV0ZPWWpVNVowOXhPRlpUWVRKMFJqZGplREppWkd0dFZ6SjRNRUprTmxsaVFVVTBZMGhISzFoWWNsSk1Na3hDY3pBNWFHNWtDbXR6UjBoWlpVSjNNVVZaVVhFelRVSjBLMXBrVGs4M1drZFpTRVp3UjBKQlZrcFNMMVZYUjFWWE9XUjBVbGhwZFhBM1JHbFZRbFVyY0VoT2IwWXZMM1VLVWtaWWNYaHZWWEZ0T0hkVVRqbENWM1ZLYkVFemFVRXlRVUZTY1RaRVVEVlpXRkpaVjNkemRVWkNZMjg1V21SVVRUWkhlbHBOVEdvMGJ6Y3dObWRuV2dwVE9GcEhVbkJJTVUxcmNETlVRWFptVDJwSVVYcEhUVGhqYzBsSGRXMWtTaTlrU0VSVldtaEthV2w1VkVOWVNHMXBkRFZoTW5WQlVuVkhjMnd4TVdwT0NsTmtjblJvVHpaMVZqbFdRVUZOZGtOdE1sTlFUVXRJY2twM2JreHdjSFJHTDJkRWFVVjJRMEY0Y2poME9HNVRSQzgwWVRKb1drdEljREpuVTFaaVFqZ0tTV28zYkV4cVNISkdjbWh4UVU5cU9IVlBTa1pJZDNabVMzbElRM2xKTkVRdmQyaG5kbXBoYW1KUGEzY3dkalJFYWxKVFIwaEJLM1ZLTldwa2QybHlTUW81VFhocVlVbEhNMUZ2WkdKWVpETkZTM0kxZVVJclJWbE5WelZTUlhCcFNrSmthRVJaVWtWNWFrZHlNakEwYWxWVVIxbFpiM0JzVW1KaFdqSkdlVGg2Q2xCeFpHSkdWakpuYXpZM1ZraEVVa1ZSWTFoaGNHUjJablZyTVM5aWIyOTJUMlI1T1VGUE1rUnhjVlZ2VEc1WVlVODRNVFp1V0VwV1R6VjFLMnMzV0djS1NqSm5VbkZ1V0VoTmVIQXZRVFIyTUZoTldUaEZUMmMxWm5WbVRHZHNNMWhOVERRM1ozbE5VR3h0V1RJdmJWbEdWVWhTYjFOTE9IZFJURGhEY1VvM2JRcHRWV040S3paQ1NHSTBaMVJPVlZCM0NpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc3Vmb3FkeGktajc2dnMyMWguaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3R4dXJkYWUKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3R4dXJkYWUKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3RrcmloaWZqc3h6X2NsaWFrc3Rlc3R4dXJkYWUKICBuYW1lOiBjbGlha3N0ZXN0eHVyZGFlCmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdHh1cmRhZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3RrcmloaWZqc3h6X2NsaWFrc3Rlc3R4dXJkYWUKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJYWtORFFYZGhaMEYzU1VKQlowbFNRVTB5YjJwTWRtcFRkVWxYVGtvM2NpczRUR1I2WkhOM1JGRlpTa3R2V2tsb2RtTk9RVkZGVEVKUlFYY0tSRlJGVEUxQmEwZEJNVlZGUVhoTlExa3lSWGRJYUdOT1RXcE5kMDVxU1RWTlJHdDZUVlJWZWxkb1kwNU5hbFYzVG1wSk5VMUVhekJOVkZWNlYycEJkd3BOVW1OM1JsRlpSRlpSVVV0RmR6VjZaVmhPTUZwWE1EWmlWMFo2WkVkV2VXTjZSVlpOUWsxSFFURlZSVUY0VFUxaVYwWjZaRWRXZVZreWVIQmFWelV3Q2sxSlNVTkpha0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRkZSa0ZCVDBOQlp6aEJUVWxKUTBOblMwTkJaMFZCZHpKMWFXUjBaMW96T0dsdGNsWTBTekJpU1VjS1kzaEZVMmxqYVZFelpGTXpkMnhtZFhKNVJVOHJNbkUyT1dKcVFVcFNheTlEY0hCMlpYWnZUMlF2UjNaRVF6UjZVV1ZXWTJWQ1RtUTBabTF0UzBSeU5ncHliRlpLZGs5WlF6QlRUVTR3YkVnM2JuY3dabFY2YWxScFNHZDVSa0ZOWVRaS2IwTkZNRmhqY1RKNmVXbEhia1pUYld0MFFUTjRXWEJyTlRWbk5qWkZDak15TWpkSWVrdG5ibFU0UlUxUlQzRnVVbVUyTDNKeE1HOW5jMGhxYW5WdVpXd3JURXhITlVsRFQwcE5LMjV3WlhSSU5tNVFha2RoS3pGdlRUZEVLMlVLWTFGVVZrWXdVMEp0UW05c1NrdGxXVUozTDAweGFIQXZaMmNyZDBsSVExRXJaM1ExYUVZelZrNVBObFZIYVRCYVRsVktOak4yUjNaeVRXUldOSEJETkFwNU5IRlFUMDFhWVRoNmJWZ3dSa1pHVDNSYVFuQlJaVTVzY0RKbGIwRnpUREpvVGxOVE1VdEdaRFJGVVZWaVl6aEpjMlpFTjB0bVlrNHlXRXB3UW5GbkNqRkxiVWRMT0VkcmVrSjNNR3BrUWxOamJUQkpaa2xVVVdkblYzWmlWVEZvVW5oelRFOUpkUzl3YzJsUGNuSnJLM3AzYjI4ck5ETnNablpqVDBwRE9ITUtTbEYxTm5KM1JtNVdaRmwwVjNBNVJ6RnlaWGxKY1ZCbWFIUXJSelJyZG1wVFJGSkJVVlpLWlRWR1FYUk5WWHBNZG0welV6VnhXakExYVVsdWNYbGpjQXB6ZUVNNGNHZEVOMjlXWVdONU4wRndZbFpOYlV0RlptRjZMMVpTUTNObWNWYzNhRWR5VWpsUk1GTTRPRWRvY1ROcE1teDRibVI1YmtSSVdqQTROMGxSQ2tOblVFZDFjVFZXUldwR1kwVjVZbkpzT1RGMFdqVk1hbU13VjJ0UE4yNTNXa3g0UmxOV2JtWkRaVVpvWkdSUE9YWlFOR0pvTlVJd1dDdHdlRU5pZUhrS2F5OTZWRVJPYld4c05WRnpjM2hJYnpWVmRFcGxNM3BQUm1WblV6RlFaRXhtTUU1cGRFeEhhSEJEWVdweGRHTXJTMlUzTmpVM1pHd3pPVW8wVlZnMGFncE5OM1pKYkRsV2JsQk9aM0p5VlhoeFdtNVdXbXhoVlVOQmQwVkJRV0ZPVjAxR1VYZEVaMWxFVmxJd1VFRlJTQzlDUVZGRVFXZFhaMDFDVFVkQk1WVmtDa3BSVVUxTlFXOUhRME56UjBGUlZVWkNkMDFEVFVGM1IwRXhWV1JGZDBWQ0wzZFJRMDFCUVhkSWQxbEVWbEl3YWtKQ1ozZEdiMEZWTVd0dllWVlNjMVVLT0U5MlYwaFFZbXBCYUdZM2FYWTBabXA1YTNkRVVWbEtTMjlhU1doMlkwNUJVVVZNUWxGQlJHZG5TVUpCVEhWWFZDOXFOalppTjJsb1lUbHJSRTVVYndwQ2F6WlNhbms0YlV0V09VbE1UMjlCYnl0NGNVNTNNVkpZWlVkYU5FMTBhVU51YjJSNk5HZ3ZZazlNYVdoMFVDc3ZhMEpHYUZOclFUQXhkbUV6T0ZvMENsRXhUR3N5ZVVNM01WSnlXV3RyZVZOTVdtTkJUVTFyVEZOemFUaDVjbTVUZURSMVIwTlNTMDlYUVdaQmRIVlBjRGhYT0hKdmRIcEhRazVzTkhvNFJsVUtabmRVYUhsTmNFUXZObVowVWtSVVMwSnRha051UkZKNFluUnVRVTVCWlZwbFJFRjRTV0l6T1RocFRtSmhXR1ZWVGtvd09WSndOVWRaT0VObGRVTXJSZ3BWWWpZMmFIWlZhMVpYYUhVeWFGbzVTa3BDZDI5RlMzQXdXbmhzZGs5SlpraGtVVE5YYVdKU1owODJlVTlETjFaQ2NWazRNVTlSY2xCSFlqSlhablpGQ2tkeVNVRkNaRTQwTmxKSFkweDFZbTk2Tm1oRWRHdEVkRzFVZUZWT04yMW1hRWh6UlRrdmRGaFVhVU5FU1VSc2FGcDVSR1ZGV1Vsb2RHWlJhVWRPSzFFS05VRldTWEY1VjA4NVYyaFpkMjF3V1ROV1UyTjNZazk1UzBWMmJXRlJNeTlpTDJGdWRGRXJWRVJRTUZOeE9EUnRTM1Z1VGxWVVZHUmlaSFpqTDIxeVN3cHFTR0pKUWpsa1pERnlaWFpPVjNwQlVYWXZSRWxJVDBoT1NEaEpNRkZvY1ZJd09XUmhiMmRDVVVjNWFUQXZiMjFCTWtVMFdEaFViMEV5WTB4d2JIZE1DbXh0YzBKVE1FWjJjelZaZVRSbFFrTjBUSGxSVEdkM1RVRjFaSGcyZDI5WFJtRkRNRE0wVm5wWVpFeEdaWFZtWmpGWmRUTnVPVTFJVkZOTUx6UTNkbTRLY3pWWVVEWk5VbWM0VEZCcGNHbFVRak5aTkVORFUyOVFVWGwwWjNKcWNXcHNibE5wYUVFd1RrVlNWMHhCT0ZsT2REQkxTbmhsWTFwV05VZzJSV1ZUY3dwbVJHeHBkV3BzUTJaeVNDdFhkRTlrV1VwdVlVUXJaMWRPTUVReFZsVlpUVTAwYlVoeVIzQmFWV1YzVml0dU1FcHVkVVJ3UTFoRGIwMWljbUY1SzA4eUNsUkpOblJQV2k5TmVqVlFhR1pwUWtoMlNXMXllVVJUYkFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMEZKUWtGQlMwTkJaMFZCZHpKMWFXUjBaMW96T0dsdGNsWTBTekJpU1VkamVFVlRhV05wVVROa1V6TjNiR1oxY25sRlR5c3ljVFk1WW1wQkNrcFNheTlEY0hCMlpYWnZUMlF2UjNaRVF6UjZVV1ZXWTJWQ1RtUTBabTF0UzBSeU5uSnNWa3AyVDFsRE1GTk5UakJzU0RkdWR6Qm1WWHBxVkdsSVoza0tSa0ZOWVRaS2IwTkZNRmhqY1RKNmVXbEhia1pUYld0MFFUTjRXWEJyTlRWbk5qWkZNekl5TjBoNlMyZHVWVGhGVFZGUGNXNVNaVFl2Y25Fd2IyZHpTQXBxYW5WdVpXd3JURXhITlVsRFQwcE5LMjV3WlhSSU5tNVFha2RoS3pGdlRUZEVLMlZqVVZSV1JqQlRRbTFDYjJ4S1MyVlpRbmN2VFRGb2NDOW5aeXQzQ2tsSVExRXJaM1ExYUVZelZrNVBObFZIYVRCYVRsVktOak4yUjNaeVRXUldOSEJETkhrMGNWQlBUVnBoT0hwdFdEQkdSa1pQZEZwQ2NGRmxUbXh3TW1VS2IwRnpUREpvVGxOVE1VdEdaRFJGVVZWaVl6aEpjMlpFTjB0bVlrNHlXRXB3UW5Gbk1VdHRSMHM0UjJ0NlFuY3dhbVJDVTJOdE1FbG1TVlJSWjJkWGRncGlWVEZvVW5oelRFOUpkUzl3YzJsUGNuSnJLM3AzYjI4ck5ETnNablpqVDBwRE9ITktVWFUyY25kR2JsWmtXWFJYY0RsSE1YSmxlVWx4VUdab2RDdEhDalJyZG1wVFJGSkJVVlpLWlRWR1FYUk5WWHBNZG0welV6VnhXakExYVVsdWNYbGpjSE40UXpod1owUTNiMVpoWTNrM1FYQmlWazF0UzBWbVlYb3ZWbElLUTNObWNWYzNhRWR5VWpsUk1GTTRPRWRvY1ROcE1teDRibVI1YmtSSVdqQTROMGxSUTJkUVIzVnhOVlpGYWtaalJYbGljbXc1TVhSYU5VeHFZekJYYXdwUE4yNTNXa3g0UmxOV2JtWkRaVVpvWkdSUE9YWlFOR0pvTlVJd1dDdHdlRU5pZUhsckwzcFVSRTV0Ykd3MVVYTnplRWh2TlZWMFNtVXplazlHWldkVENqRlFaRXhtTUU1cGRFeEhhSEJEWVdweGRHTXJTMlUzTmpVM1pHd3pPVW8wVlZnMGFrMDNka2xzT1ZadVVFNW5jbkpWZUhGYWJsWmFiR0ZWUTBGM1JVRUtRVkZMUTBGblFWWlJNMGg2Ulc5TFIwOW9VVUY1ZW01TlNsWXpWVk5YYUVZck55OW1hekZVU0ZoalFVZzJSVmd3UkRKSU1tVk1jbGhxYnpaM1ptRjBhQXB4ZWtoR01WWk9hSFJQYXpRME1XTlVZbUpCUzJSYWNXaDVRVVZqTVZGVWJpc3ZUVlZvU1dKMFpYRlJlRmt3Uld0VlozVmhWSFJJVFVsaFdtTTFkREJSQ2poamIxbEZVWFV5TUdsT05HWkZZemh0VG5kbmFFZDBkV0UxTDJwdE9VZ3Zha0ZsZWpscVVWUnFWREpWVTBVck9XaGtNQzkzU1d3Mk4xaDZSWE5RTmpRS2RpdHpkM0JGWTFJdmFIbDBPRkpaVEdreVVUaHpNR2w1YzBJeGVWZE1PVU12T1RWSFExcHZMME5qYkdWQk1XTmlaVTVwYXpnd1dVd3dXbEJGTUZacVVRcHJWa1YzY1VWRlVFNUNZMHBHTkcwNVJtNXJlVU5MUzAxMU5HbFJRbE41WlZaa04zaHNhazk0Y0VKWmRsWTNOMlV3VW5GVU5TdFRjSEl5YjBSMVdsSTNDbmMyWm05SUwwRkNjRVJzZWpReE5uSk5ibmxGTkRWME1FMXlNa3hHV1VKdU9WbDJaVmh2VjBkbGVrRlhRM0ZXVWtoM1lYZEVjblZyTms5RlVuSm5hVUVLVVVsMFlVOTRaMmx3Y1ZScmNqbEhXRE42V0dWS1l6WTBjSFUxU2tsVVptbHdlakZaTnpaMGNYWkRhalV4ZVdKVVVYTm1ZWFJCY2pZd1NEbGtZM1ZXT0FwQk5WRlNRVEJHWmpoT1FqUk9Vbk54V2s5Tk0wWkdWeTg0TUZNdk5EWnRLM0I1VEZKeVkweDBSRXhpZFdOc1l6UlVOVVYzVEVjelRVeHlZbEZhU1haSkNsVnZabWw2TDBWeFNqTnlTRzlKYVhCQ2RVWlhheTlFUW14c2R6QkhhbE5KYldWSlkxUTJjMlJFY1hsSk5rcGhlRTFsZEVjek0xcHNVRU5aVlRSa1R6a0taRzkzZVdKeWJqSnNWRXBYVEdGTmFVNUJLMUpJWkRCVEsySlRRVmczYlhoRldUUm1kR2R4TldOelUwZDFWVWhpYlhwYVFYRTFUV2xFV0ZoR2RWSlVjQXBPVW10MU1rSjZOMFk1YUVkcEwyVkVRbWxEVVdadGRDODRZVGgwWjJaRWJUbHpaVlJqWmpkSGFXMXZOVUpPY1Zkb1VVdERRVkZGUVRCemRrUkNURE5rQ21Rd1ptWTVTREppVVVoWlQxcHlha0Z1UlZGcGVrMVRRek54WlhSWVJtVjZjMVZoVlVSbEwzZEpkMEZCWVdaaVptaE5TaTkyWm01eVN6VlBaVGxwYUUwS01XOUdVbGxJTjJKS1NtdEhiVE5ETUhSSk5XazRXVE5WWm01YWVrcGFkbnB0VDBzelpsZ3pkbUZ2VkhaVUwzWlZSeXRtYVhvNU9IbHlkRmsyYzJZM1R3b3hjbVpRZWpCWE4wRkVZbTR4Y1N0Q2R6WTNkM05RWXpGR0swRkhRM1JwU1VGUllqaEtiemxEYWpKM05tUXlVSGRtZWtSdmVYZG9OVWwzVTAxUmJWVllDaTl1TlVGMk5UazVVREIyTWs4eGRFbzJNM1ZpUVV3elRra3haV2xvYjFjcmVGWTRXa2RhY0VwNlpsVjFVUzlyVVVwMmNVTTRjRnBYY2tKYWJuVjBVR1lLY2prdlozTjFSVlJJUms4MWJWWnlZVTFXY25CcE5reEphV1Z5VEVkek9VOTFaV05oU1U1bGNVaEJjSEZLT0ZWRVJFdFJlREk0WlRGU1pFZ3lTbXhMWkFwUGVHUllSbFpoT0dadVR6aFlkMHREUVZGRlFUZFdVRXR2TUdGcmRqZFhZall4U0ZaeVVYTXdZV2xMVHpZdk9HcGlUVXMyWW00clNTOXRSMnB4YWpOUUNscFZha3R6Tm5WR05XcHliR2xNZWtsQ0wyOUxaMWxXVG5kRVpGQmxRa1ZNUWxBMVJGUkRURE5yY21KSlVUSlVVSGxYWVZRcldGbG5ZWGxpZG1OeGVFTUtXRGN2UzBGS1FWUlNRV3BhWkc1dk0yaFlaamREVm14VGFYTmxSVzVOTjA5QmRqWnRkMU5wUjB0eE5ISk9TakJ3V205RVp6ZHljRVZtVVcxNk5tOXRaZ3BDYjNCVGEySldPVEZaY2k4MmVGWXlVRkJJWkhORWR5OU9VMjg0VVhkeE9Tc3ZhbVZMU1cxNk9IaHhVbE51V1VGc00yNHJlamsxUjNScmFFaEdNbHBsQ2tSTVdHVTVZV2c1YkdoWFNIQk5lRU56WlZoMEswSnJlbTFPV0VRNGNtUlNaVlpwUzNCTVExWmpWR3REU1hoSlMyWlJSVGhVSzJGa2VtZFdjblp0Ukc0S0wxcDViMWxpTjNwRFdtZFZiMmhMYkhsTk1IVllWa3BUYTNCbVFuTndlRGhHVW1GbmVGaHdjMlYzUzBOQlVVSTVXVlU1VmtWaE1sb3hhbTFEVkdabE53cEtjakEwU1dsdlIybEplQ3RoVjBKRFIxWkJTRkJsT0ZkM1dtdHpiRkYxY21SalVFcFJNWEk1ZERCaFRqbEJiMHRQUm5KNmNGWk1WM1k0U25Oa0syWlhDalFyU2toTlNXdzNXRGR1UVZoYVJVaDVNa292SzNwMWQwMTVTR0V4WWpWRVEwZEVhbTVVUlhwcVFVTm1hbVV5ZVdseFFVMDBWR1ZqUWxkaWIzSldkMjBLU3pSS1NXTnpibTVZTjFkM1VFMXVjWE52YUVacFZHVlZSRTVwVFVGMVoyWk5UWFY0TW1STWFHaElSR2t5ZERWaGEzTnFkV05RTUU1c1dVUnFkVmhUWndvMGIycExSVEpzY2xaSVJVVjRkVUYxV20xRE5GUlFUVVZ4UzFSblZYRkpWbXBCUlVJd2VraHNWRlp1TXl0eE5FRXlOamRHVGtkTE0xWktNWFJMUjNwaENta3pORFJzWnpVd1JIUlJaRUo1ZW5GM05tOWpMM3BQWmxwaVRtNHhNemxMUVVoUVZuaGtkMnBrT0VwclRFZDRTVFZFVEZvMWIyVTBOM2hCVVVaRVFUTUtjM0JXV0VGdlNVSkJVVU54WmxVNVRrUkRjU3RNWkVSamN5dFZNR054UVhOMmNtRTVaMjlSU1ZaaWRHOU9aVnBOUjBGb2FTOUNVa3BTYjIxWWJVNXBVUXBHUXpsbmF6TXhMMlpZYVdWdmQza3ZNRkIzWkROUFFqRnlaRXhoYkhsUlZFZFpkVEJJYlM5SE1YaEliVmMxTTJWWVFrbFlOWFpsYm05VVpWVlFLM2RZQ2tzclVrMDBSeXRUVTJsaWJFTkhNM0pzU0d0SWVrOXFhRGRrTkU1V1VHUk9TV1ZIV0RSdE9HcFhLMGsyYmxWVmJVeG9ielZ0Y2xCTVJuZE9TaXRZT1RBS1RVYzJOR2x4Y0hWRVlrdGpUVU4xV1Voall6aDNha3hLUjBoakx6RXJlVlkzTjJkQlRHUlZkUzlGZVRWT05IcEZNV2hrT0VRcldIZGhOV0pKUlRCd2F3cDZkMHR4ZFV4SlVUWnZVMUptYTJzMmRXaFpVaTkxT1dkd1Qwc3daazFhWld3dk1scENRbFJWZVVaYWVtSTVRbVJsUkdReWFFWmphMDFoTkd0NVpTOHJDa3hIY0cxSk9EbEZLMWRGWkZkVk5VbFZVWGwwUzNjeFdXVlFSREUzU1ZOU1FXOUpRa0ZHVWtneE5TdG9OVGhHTDJORFMzTTNTVE5rYzBWS1YzSm1aRUVLZGpWTFlqSmxUakp5TjJFd2JVVnhjRTQxYm5CTU9XVjZVMDFzUzFkSlkyWkZLekkwY21Relp6TlRkREpoVWtSdU5ISXJNREpzVlhCUWFVVmtjbkpQZGdwdU5TOURiM1JSYkdWTWR6ZE9NWGxYWjNCRGQyUklTVEJOTjJSaGRsRllTQzlTYnpKbVRYbFJiRXRKUkZsU1JHSlFTVWxPSzNSTmJTOVBieTl5TWxRMUNtRnhPWEpPYm1WdFN6bEZXbGs0TW5ZMlZtOXNRVEZvZVU1RFpIaGpNVGs1UlVONU1uSnpUbGgyY3k5eU1uRTRTVVEwTUN0WGJqTlNObWhsZUNzdmJuRUtjWE5pWmk5RmMwOHJPR3AyWjA1bmFrSnJRa1psYUZsVlVtVjJlR04wYlhkYU1GbHpTVFYwVTFObVUyTnJVbGxUVXk5QlZVUklXVFkxVUdWMmExQkJUUXBZTW1KbGRqRnFUSEZxY21waVVGQnFSWGhSY25OTVVsVlJUalY2UTBSU2JIRkZkVlpIU0hwaWExVk1RVkp6T1VKd1VVVlVhbWxVYTBNeU5EMEtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogbTlteHJ4YXhqZHAzNGJnbjgybXF5aXV6bTk0NW5iOGVxdjNpNmJlc2k3YTdjMmk0ajlxb3ZkYWI4MzRuNjVmcTI3emtieTl4b3hrcWV6MGxncTdqenN1c3N5N2U0Y3R5MTJnMzdsemxjb3NwajFlY3E3YnQ1cXljd2YxbGxmNWMK\"\n + \ }\n ]\n }" headers: cache-control: - no-cache @@ -1224,7 +1457,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 21:32:18 GMT + - Thu, 29 Jun 2023 09:46:24 GMT expires: - '-1' pragma: @@ -1240,7 +1473,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -1260,15 +1493,15 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ - \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSUlV4WU9XSXhNM00yVkhCa1dVcFJPRWxVTWpSMWFrRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxVVVYbE5WRVUxVFZSa1lVZEJPSGxOUkZWNlRVUlplRTVFU1hoTmFtdDRUakZ2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVOMENsTXZUVWRhWnpBNWQyOXpMMnhOYm5FeGRHMVNNME5MVUhsTFNVUldkM05HY1ZsbmNVMWhVMU5JUkRCRFV6SnZiR0ZYUVdoSWFHNXNlVElyVms5QlUyY0tlRzV4ZERoYVJIVmFPV3BOWkdkNlNDdFhUVFJETTNBMFZ6UjZSRE4zWm00eVpqVlJNWGhYWldkUGMya3dkMk5SVUV4NVdEbDVZbGhDTlVOUVN6SkdLd3AzYXpJMlVURjFkMHB6ZEVsTFExWlZXbWQyZGs5U00ybFpOMDlyTmpjd2VtSXJNalJsWmt4UmFTdGtTbGhUUmtjNE56bFFVRnB4UTFsVU5rbHBWMnRCQ25WS1N6ZEJhR3BuV0hwSWVVWXlVVFl2YVRWd2RYSjJSbk5qWlVSc1NsWTNka29yU1VWeU16QndZMHhXVUVKUWRFSXpZWFZXZFVOSE0xVlpZbmROTkZRS2JUaFNZVXhMU0RsM1ZDc3paM3BPVEZwdk9Xa3JWMVE0Tm5FcmVTOTJOazgzZGl0eUwzTkZkbGt2VVRKMVZHSlFhRGRvTTFwYU9DdGphRU5MTjBwVVJ3cFBPRXRyUkZOdWIxY3paM2RoYjBjMWFUZDBOQ3RZT1VWdWQyVmhOM0UyZWxoT2VWb3JNalp5TWtWdVVtMUxOVEp6VTBZMk1tbG5PRnBpVVRoeVVuRlRDa3hMYW5GSWJ6aDFNamQxUmxWQ1dVZFhha292TjBzM2RuSkZjRzl1Y25wTWRsRXZZMXBFT1UxU1RGaEliRzFMYlhoM1oxcFBNV2hyVG5SdlJGZDJUMVFLU1ZWSU9UQlhValZ5WXpOT2NteE1UVkJQYkZob09HMVFPV2syWTNKQmJFRllibmRXY0RCbWIzUmhURXN6U2xoM05GVjZiR3BMV1hkUU1tTlJSVTVZTmdwQ1VpOVBTMFJoVm10UmFYSjFjR1JhWjFoMlVrZFhWMk14VURWQmJERTBWMVJYZVRWdGNYbHVOMjE2VkN0UVEyMXBUVk1yTTFaVE1VTlFiWHBOVDFaUENuSnlNbmt5WTI5eE0xRkxSbkppZGpKWWFXazNVVEZxTURSc1JGaGpLMDF5UTFOV1VrNTVOVEkyY2xOeU1VMVBSQzlDVVRoU2JYUXpMMEp4V2xaVFZtSUtjRlpKU0hOek4yVkVORmhUZEVSS1NHTlVMMmxzY0haYVVTdFJabmRZVFVWck5rMTFRWFJhWnpGUlNVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWMVJsUjVRVUZEU0cxT1MzbGhZWE4yQ201WVNIVkhMemhhVm5oSmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGRFQyeDZkMUJPVGxvM00yMXdkMFJtU2tFMFpWQm5iMjl6VUU0S2FsTTJabXBqZFdKeWEwcHZSVWxtVjA5bUwxcDBjM3BvTVZwblMxZExSeTlqWldrNE5XeEJiRVkyVUdOUU5tWkZXRzFXZW1SMFdTODBNbU5QTUVoa2FBbzRSalZtYmtNM1p6QlNabnBFTW05bVRrUk1hbVJXVm5OTVoweHhSWFpVYWt4amNFeHRVRXBYZDNFelMwNUROR0ZXY1ZBdlFreEhVV3RJWVhaNWN6Z3JDbWhZVG1wNmNXVXhLelEwYTNoRlNGWTRlbE13Y0VwWFNsTlVXR1V4VG1kRmVWb3ZPV1pXTUU4eVMyVlJRbWh1UmpobVV5OUJSazFQZFZKaGIweFhWbEVLYVZKakwxSlFZUzkyWm01bFVWVkZNR2M0YUN0NE9YYzJhM1paY1ZoMVZubHRWemxZYUZoQlVFZFBkblowU0VZNGNFbHRWRzF3WW5BNWVqTndhMVZDVlFwWlFVMVhhbWwyZEVod1JFMDRUVEE0ZERRM1JsaDRiMWx3VGtzeVV6QjRjVkpvVjJOd1RtSTFTR1ZpTWxrM00yOWhVRWh6V2xOUmVFcFlWMDAwYjA5UkNrczRRa2QwY2xVdlZubEZURkEzZVROSVR6VkpRVWxpYkRoREwzRmFVM056VGpWeGFuWjRMMnN2YVZKQlp6QlNaVWxtTmxrclVtdHZNVEJSVkRSYVZtb0tMMmxMWVdWTk55dEVUbFF3WVd0S2RGcFhNV1JtYTBwVFNuaHFUV1ZwVEZWM0wzTlZXVUZKTlZWeGFFMVphWFpaUW1GcWVuVm1SRE14TUd3dmNGVXZNZ3BrZUROM05IZGlWWFpaVUdoV1ZGWTFORkpsTjBaQlRrWTNWRU5tYUU1blZWZzRheTluUTFndmJHOTVhVFZWTmxkRWFYbFBkbVZwWkhSM1owdHhlVGxDQ21jMVJFeDRiVVZQWW5vNVEyTTVTWFpWYlRoV2Npc3ZXR2hxZFRCSVYzbE5hbU5pYmxKSGNESjNPR1JUY3paMVVHcFNTMnhrWjBKR2MxWjZLMWRJTm1vS1UxaEhiM053UjBsNGMxaHRSWHBxZDB4dUwycHRkWEJzYVRGdGJ6SkpkMHMzVVhwelVqSXZaM2x3UXpobWRFUlpNVXRzVERGbVoyVnJlbmhrUzNodGFBcEhNMVF2SzNsS2JHeFZWMGQzYmpKb0NpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc2R5cG90dmotazFjeGY0Y2EuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3Rkbm9wYWIKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3Rkbm9wYWIKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3RoZWdhc3U3a3JzX2NsaWFrc3Rlc3Rkbm9wYWIKICBuYW1lOiBjbGlha3N0ZXN0ZG5vcGFiCmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdGRub3BhYgpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3RoZWdhc3U3a3JzX2NsaWFrc3Rlc3Rkbm9wYWIKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJVkVORFFYZFhaMEYzU1VKQlowbFJaRnBNYTFRMGRHUmhVRFUzYVZsb1VIcFdSakpZUkVGT1FtZHJjV2hyYVVjNWR6QkNRVkZ6UmtGRVFVNEtUVkZ6ZDBOUldVUldVVkZFUlhkS2FsbFVRV1ZHZHpCNVRYcEJNazFVVVhsTlZFVTFUVlJrWVVaM01IbE9WRUV5VFZSUmVVMVVTVFZOVkdSaFRVUkJlQXBHZWtGV1FtZE9Wa0pCYjFSRWJrNDFZek5TYkdKVWNIUlpXRTR3V2xoS2VrMVNWWGRGZDFsRVZsRlJSRVYzZUhSWldFNHdXbGhLYW1KSGJHeGlibEYzQ21kblNXbE5RVEJIUTFOeFIxTkpZak5FVVVWQ1FWRlZRVUUwU1VORWQwRjNaMmRKUzBGdlNVTkJVVU4zUWtaUlZqRk5RblUwUW1wSU5GcDVVWGwwY0VnS1VGQXpZVlJ6WnpaWFVWSlRkazAxTURoR01YQlVLMk5vTnpodlRrOXlRazEwV0c5R05uaFBVM2h4WVZJeVIwcENjV0pJY0hSMGJWWktkMUZxUVhOMU1ncHBZbFU0VjFwUU4wZERiek5KTkZSeU0yVktSVWtyUzNVMFoyczRTbTE1YkdGM1dVTnBiMGsxZEhOS04ydG1WMjl1V21wR1FuRlpiVWRPY204NVZsRnpDa1kzVG5GVFEyMHhSM2M1WkdWQ09YUlFMMEZzYTFkbFQzUk5XblI0TldObFJsbElTR1l6UzNRM01sWTFiRWxZTWsxRk1sRk9Za3BIV2paNWFEbHNaakVLWVdGRWJYcE5RVWxsU1N0MU1ERnZla1JJZUV4VVZYRXlVakkwTDFsbWRWTldVMnhRUkdGSmMxcERjV1UyU0ZwbGRYZEthazFVUkM5cldVTjZSekF3VmdwcWMyOUpUVkJrVFZZM1luRjZUbGh3TXpSNlQzazRUQ3RpY1RoVWQycHZNbVZwYTFsVFlrNUJZMEo2VVVOYWJraG5jakZ3UjJ4UFpqTXhPVTl6TW1sSkNqVmpZMkpNUm13elNqaGpTVFZKYkZkNFJFWkpSRkZCVGxsUGEwNVRkMU5YYldGT09IUjFUbnA2YVVkV1REVnZXVGhTVTBoemFTODBURkk0UlZkNGVtOEtNVmhaVHk5Q1lsVm9jamhRUWtGMlpDOHhXbEpCZEVSV05HcG9lU3RUUVRoeGFuTkpNbWtyUlRFNWRXRTBPRVo1VlhKaGMyOXNTazFHYlcxUllsWTJid3BXVnpWMlpEUlBSV0pQTWpKWFdVNVpaMFpzV0daaWRYcHRWVVZNYUdOU2JYUkRZblpFUlRCbVdIRmljMlpJWlVKb1JHdzFPRGR2VDJaRVpYcFJaRUZuQ2tNd1puRm5XRFJDWkZCUlNURlJPR2xuVkM5b2JXRktURXRwY0dweGQzaGtZamxQTldVMlQxbGpTWE5OVjI0MVdXbFBXVVl2YVVsTWJHdHlibXd3YUdjS1JHdHZTbGQzV0VONlJ5OU5TemwwTlZCbldGQjBhVVZ5TUNzemNVbHJWM0p5YVc5RFRrbDFObVZHTnk5WVZWRlVWalZCVURGb2JFOXhiWFI1UkVwblVBcFhXRE0wYWpsMWNYUTNTazEzUW5oTmVYRTVkVXQzU1VSQlVVRkNiekZaZDFaRVFVOUNaMDVXU0ZFNFFrRm1PRVZDUVUxRFFtRkJkMFYzV1VSV1VqQnNDa0pCZDNkRFoxbEpTM2RaUWtKUlZVaEJkMGwzUkVGWlJGWlNNRlJCVVVndlFrRkpkMEZFUVdaQ1owNVdTRk5OUlVkRVFWZG5RbE0wVmxCSlFVRkpaVmtLTUhKS2NIRjVLMlJqWlRSaUwzaHNXRVZxUVU1Q1oydHhhR3RwUnpsM01FSkJVWE5HUVVGUFEwRm5SVUZvUkZSS1IybFBkbGx3TWtWbGNHWlZVM0oyYUFwc2FWRmxVR2x1Wnl0SWMwaERia0kyY1VwQmRpdG9WMmRvUXl0c2IwdFJWblU0WkVSU1ZURlplRFl6YTJSbFdUUkVPVVEwS3pCRE1GUjVXamhFUWtGdUNqWlBTMkV2VUc0ek5qUjBSRmRST0dSS0sxWkJTRmRCTkVjMVVVUnhZVlpYZG5wTVUzbGphblpxUW1aRVRGWjJiR2N6U1U5bWQzYzBaMkl2VkRSMVpXa0tjM0JFTURGMkwwVTBSbTVOZFRRclZFdFJSRk5HZDB0cFRFODNWVmROVUhOc04yNWxXa1ZGYm5jcmFVTnNXWEp4TjFod05qbHlhVVJoTlZFNWVXSmpjZ295WWt4S1YwRkNaM1phVjJKalpuTjJlV3RZWlV4UkwwbHpkMUZSU0hGa01tWTFjMnRFUVVaaFowNU5LMWxWTURndlZtZFFVbVJoTkRNeVJ6Rm9hMDQ1Q21sbVV6QnFjbTg1TDJjclZpdEJjV1ZMWVdkU01qVnliRE5OYTNGSkwwUnlVRzV6T0dFd2MxSkJMMjlVT0c1dldIcDBWVzVLTVZsS1JYSk5VbWhNVjJrS1VHZ3dRM1pYVmxGVGFISnNjMjUwY1VodVRVdFdSV3BNSzNjd1l6ZG5kVkV6YlVkdFF6ZHBSVGwzZURKV2RrNDRRakpMZGpGSE9YZ3lNREU0UkZoeFNBcEtRVmxITW1kaFdXY3lWMjFMZW1OU1pVNU9lbGhUYmtkbWRFeExSekZGTHpoa2FYRm1VRTVwTTBnMVpUSmhNV0ZzWmxWb0sxQlRWV05aUVZwMlluQk9DbGxWZW1KcVlVeGtVV1V6VkhCcmJTOTRiME5IU0RoU1NuQldhVzRyVUZGaVdsTm9TMk4zTDJkTGNXdGllWHBKTjFKUlVreE1RMnRJVWtsMlNFSTJiWE1LZDFoM01HOWtORTR4U1ZsUVdUUnNTREZSZGxkb1F6aGhiVFZTUmxJdllXNVpjRmx4WlVSeldEaG1kVEpUVmxOYVFtSlFTRXRKTjI1QmFGRkpjVmgxVlFwWmVISnFkMjVHVFVWbVNqVlNURE15YW1KWWFuSm5XakpLTkVkTlF6UXZXVEkzV0dGRWIyODNMMko0VmpOVlIwVkRlbWQyZUZOcmNraGhURnByTlc5WUNsZzROR2N3UzBSeFRXNUtaVlJaYTBWaWJXaDZObTgwUFFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMUZKUWtGQlMwTkJaMFZCYzBGU1ZVWmtWRUZpZFVGWmVDdEhZMnROY21GU2VubzVNbXMzU1U5c2EwVlZjbnBQWkZCQ1pHRlZMMjVKWlM5TENrUlVjWGRVVEZZMlFtVnpWR3R6WVcxclpHaHBVV0Z0ZURaaVlscHNVMk5GU1hkTVRIUnZiVEZRUm0xVUszaG5jVTU1VDBVMk9UTnBVa05RYVhKMVNVb0tVRU5hYzNCWGMwZEJiM0ZEVDJKaVEyVTFTREZ4U2pKWmVGRmhiVXBvYW1FMlVGWlZURUpsZW1GclozQjBVbk5RV0ZoblptSlVMM2RLV2tadWFuSlVSd3BpWTJWWVNHaFhRbmd6T1hseVpUbHNaVnBUUmpscVFrNXJSRmQ1VW0xbGMyOW1XbGc1VjIxbk5YTjZRVU5JYVZCeWRFNWhUWGQ0T0ZNd01VdDBhMlIxQ2xBeVNEZHJiRlZ3VkhjeWFVeEhVWEZ1ZFdneVdISnpRMWw2Ulhjdk5VZEJjM2gwVGtaWk4wdERSRVF6VkVabE1qWnplbFkyWkN0TmVuTjJReTl0Tm5ZS1JUaEpOazV1YjNCSFJXMTZVVWhCWXpCQmJWcDRORXM1WVZKd1ZHNDVPV1pVY2s1dmFVOVlTRWQ1ZUZwa2VXWklRMDlUU2xaelVYaFRRVEJCUkZkRWNBcEVWWE5GYkhCdGFtWk1ZbXBqT0RSb2JGTXJZVWRRUlZWb04wbDJLME13WmtKR2MyTTJUbFl5UkhaM1Z6RkpZUzlFZDFGTU0yWTVWMVZSVEZFeFpVazBDbU4yYTJkUVMyODNRMDV2ZG1oT1ptSnRkVkJDWTJ4TE1uSkxTbE5VUWxwd2EwY3haWEZHVm5WaU0yVkVhRWQ2ZEhSc2JVUlhTVUphVmpNeU4zTTFiRUlLUXpSWVJWcHlVVzAzZDNoT1NERTJiVGRJZURObldWRTFaV1pQTmtSdWR6TnpNRWhSU1VGMFNEWnZSaXRCV0ZRd1EwNVZVRWx2UlM4MFdtMXBVM2x2Y1FwWk5uTk5XRmN2VkhWWWRXcHRTRU5NUkVad0sxZEphbTFDWmpScFF6VmFTelUxWkVsWlFUVkxRMVp6Um5kemVIWjZRM1ppWlZRMFJubzNXV2hMT1ZCMENqWnBTa1p4TmpSeFFXcFRUSFZ1YUdVdk1URkZSVEZsVVVRNVdWcFVjWEJ5WTJkNVdVUXhiRGtyU1M5aWNYSmxlVlJOUVdOVVRYRjJZbWx6UTBGM1JVRUtRVkZMUTBGblJVRnFWVFZqVW5NMWRUQnNVVGM0VEU5U05ISm1TR1J4ZEdwVVJrRXdPVWx4YTB0MGQwTnFkVk56ZVZNdmNHRldaemxEUmxCWFZuazNWZ293UlhsQ1oxUk1WRnBKUTI1dFVHeHVjVU0wZDBSVmNYVlRiMFZxUlRrNFNIcFlVa2xzWVhNemMwNDFiVUp2YTNnM1pYY3hVSEJ4WlU5V2FreHVhREJIQ2xSVFNIWkhMMEUxZGpoU1ZYbEdTVVUxUWk5TVdWRm9Va3htV2s0MVluWTVVVVpVUVdwMlJYcGhOa1pWT0ZoelJVTjBWSEJ2ZVhCRWNISjNNU3RIVUdnS2RGVjJLM1k1TlZKM09FcFdjbGRtYm5wT09HVjVUMFJSVDFwSmRqSlJaemh6VXpCeksxWXZORlZoZWtKWEwzZHdRMHhpTjFKTmVXaHRSMkpNT1ZKV1JBcFFXVU12WTJjelZVaGFRMWd2YzB3MVZISkxaVWRJTkhsTFVtWkJNRmsyTldGTmQwOXlTVFEyWm1SUFJqUXJVMmhCVWl0YU5HNU1kbEZPYVV4eVZrcDZDa1JXYlZabGVWUkhURTF0V1ZkQ1FVRnBXa1Z0UlRGSVlrUkxOa0pQZUdvd2MzZFBaazFDVkc5QlFVVkdiMUpQYmxWc1NraHhWVlZHWmtaSFdIRm9TR3NLV0dGUFlYaHdWbHBrTjFZeGFVWlVTbmRwTnk5eE9YWm5Vek50SzNkdGRtNWlZbFJoTmtJeVZGWlBRMWwyVTBKck9XTnhXV2hsWkdNdmJ6QmFXVmQyU3dwelp6TjVkM1ZDVjBOUFZtVlFUMVZOVkdVMk9FMUVOWFpaV0hGWFJrZE1LMVpSUm5GQmRrdzNSMjVNV0ZGRVdUZFZVWFkyTnpnMmFrUTNRbFJDUWxkWkNtSnVaMnBIZEN0b1EweDJkelo2Y0N0S1ExRXhVMU12WmpBdlZuRklNV1pFT0dsTVYxb3hkelJOTVdKUWNDOTFTV2RITUZFMmFsSkJVbTFPV1RCak16UUthMEkzZEZaNFkxaFdhVE50ZEZWT1pFWmtVbGszU1hwWFNWVXdXVWh2TkVGaVQzTTRiVzFZWVVRcllUTTRUM2xwY1ROcmR6QjBkRGMxWVRReGIwVnpVd294V1c5WGJtMVpka1ZpZGpOYVRURnRLMXB4ZEZRMk5XSnNLekJTTjBkRVdXUnROamRwVUdaalJVRXpPVmN5WTNsdFJXdERaMmRGUWtGTk9FOURaRnBEQ2tWUE1IZE5iakUxYjNwcmIycHRjVTlrYUhaTk9USTRTa1U1VnpadVNtTkpWR2czZEdOWmNIbEZUWFJhYVVNd2VEZENWRmxZYTFOT2VsSTBRM0pVWVVnS1pYbEVaWE15YmtGMmRWRlFhbUZZZUZCb2JtNVZNRGR2V2psdU5ubE9NMng2V1hNMFYydDROVVUxUW5oNVZrNVhaVmw1V0VWeWVubHRUa1ZzYzNBemVncE9UV0o0TlZGSWJUVnRkSGhQTVVOeE9XRnpOREJMUkVkV1VWTlZjVEZTVFcxdVNrSk1SVTFTVjJGMldHNVBWR2RRV0ZKdlJFTTFSbTU0VjI5V2MwSnNDa05yTDJWaGNWaG1kVXhzSzNsaFFtaHBlRmx5VkZkWlVFdE1iWFpOWjJsVFpIUnNLME00Tkhsa2RHcE5RMmh4YlhGNVpIcG1TRzUxWkVWTWQycEVhM1VLVEhKS2NYUnlVbEI2ZDJsVFQxRklhVEZzZVZJemVFSm5OVFJXY0N0NkwzWk5VbEIzVkVzME4wbFBiM1ppVkhaVU5HbDBNMVUxYkhaWlEybHBVbmxIZFFveWFHUlRRbkpXWTNRMGJrMU1SakJEWjJkRlFrRk9iV2RDYVZsQmNHY3ZVRTVySzBZeFMzZHBUbEE0T0RWMmFsTlJXbHBQVFRGRGMwOW5TazEwYXpZMENtMXRObTkyZFZJelZtVnNXQ3RMVkZkRFR6bGhNREJvUmtWVGJ6QlVPVU5yYUZweFlsVmtTUzlHYzJodFVGVTBWamhCUlROeGR6bFhNMHBqYUdKalJIRUtRMGRRVkhVMVdITkNiMGhIZGswNVZqaEdTV055TjBSb1QzSkxlRUZKY1d0c09FYzFXV0l5UVZWRE9IRXpla2RzYkV4aE5YcFNUMFFyYm5sdlRGWXlOZ28zZFdaNGJXWmhObGMyZDBwTFNGUTJZMjkwT0ZKakx6SkdlRVZFY1ZrM1YycFFWM0J3T1dSNU16SkRlVk5UUVVjMmRURjRjalJKTVdnMGRHVmpiMlF5Q25aT2QyY3JSbEJ0VDJaTVptd3lNSFF3UkhwbGFrUktkVVJVZVc1cU16aFlNbWxWYzNOd1NERTFSamhSUlRCTlJreE1OalE0UkU1RWNWVjFlV2N3VW5jS1NUTXlTSG81ZVRSb1VYcEtVMGhRU2tWb1FUUllRV2QzT1N0TFVVeExTMmM1V0dodFkyazNPRzVEWTBOblowVkNRVXBNVTFkYVpHTTRZazh2V1ZrMGJ3cEhkRFJHVEVSbVZFaFdNVXBWYjNWb00wUmlTMUpSS3pCREwwWlRXR2hxVjBkaFMxbHphaXRoUkhSWldrNHpPVlpNWjFsQ2VpdElRelJGVkVkd2JVcDJDa1YxTWxaUFpGSmFOVXhrY0cxWFJua3lNMFoxY1RsRWRHa3pjMVpWY2tzemFVY3ZPSFk0TkdkdE9FSmtkME5RVEhkNVJreHZaMVIxTWtwWVlVbGFTR1lLYzJKVGRXSnRhMlJWVjJSQmRXMHZTRTAzU1hveVpXNUdRMEl2VFhCNE5VaDRNVnBpV21nelIwSk5NM1Z0WmxOV01tVkVOWEJqY0RNeU5FRllURE5wTHdvd04xWXhaVzVSU0hSNVJGcFJLMFZFUkhSWVkzSmFXREpvWlVKcWVVOTBSMVJhUVdRek1uaFhhM3BqSzFwU00zaFJUeTlYYzNobk5EY3hVVVUxT1cxckNsaHBTM1I2VlRkU1JUQkNRa1F2VVVaUmVXTlFjQ3RKUjAxeU56UjJkV04wWkc5SFdtSTVVR3QzTlZGbE5GZEZSRFJUVUhaTWNFWnlPRFp3YkhRcmQxTUtLM1pNZW01UFJVTm5aMFZCU2tjNGFVZEhTM0poY1VseFYxa3plVmRST0hoRFJIQlBRVkZLVTJOTVQwODJPR0Z3ZGpWRVVWSk5WM0pPVkU5VVNXWlVTUXB6VmxKR1JVaFBNRGg2TW14bFkyWXlXVGRhTWxac2RqQTRhbXh0Y2xkb1lXcENjSGd3VVhwcVRGcEZRVlp2VlZsVlZWVk1aSFY1TTJ0ME4zb3pUbTE2Q2tSVE9GVnNWRWQ1Um1zd2RreE9TRWxZWm04NFQxQnVkRmhyVjBoRk5EZFVNMlJIZW5CRlFYZGpXbU5TZFd3MmVVcFJVMU00T0hCRlJGSnFjSGxsUkZJS1ZVUkJTVlZsTVUxSFFWbHhUMlpNWkZWaUwyNU9lalk0VVhKVGQyOVBWbVZsU0ZobmQwUm1iMUpRUW5acVkwVm5aa1JxU0hVNU5IQkxSVVp6TUdJNFRncHVTbVpMV210RWVGSXZLMHRSVkdOcWFVUkJWbGRvV0VsTk9HdFVOMFpRWVdNdkwyY3JZWFEwU0d0WlowVk1WVmhPZEVWblNVOXJWbE5CVEdkNlptTnRDbUl3YlZSck5qZHhSVEJWWTFFeFRGQmlWMHgwTVdoNFZXWkdMMHRhWjNSemNWRkxRMEZSUVhablJrcHZNSE5FT1djclZVVnNjMk5JU0ZacU4wVXJjRFFLUWpOUlpUVkNVbVEzY0cwNU56RlVjMFpFWkhWRE9YTlFSMFoxVEV4MFIxQXliakpGZFV4RFREZ3hUbXhWVHpoSlJURnFUR0oxZVdGbU5VczVSVFJDZEFwVVdXdG1RbTRyYmtKWlpGbHFlakpETkVScWVYcG1WelJpT1dNNFRUQlNSemxvUTNsa2RIQmtWMGgyYUhOdU9XVkNhMkZsUldSQ09VdzRNVmh5WmxaaUNpdEtaQzl1Y3pKYVptMDFWRk5sYkhsR2JtODRla0pRWVVselFXSnRRWFZ0VVhkQlpVZFlOSEZTU25KNVlUUkllbGRKV20xTFdYcEZURWxITkhaRWFtNEthV2xIZUd4bVYyOTZlalJtUVN0SE1tTldibmxFV1dKT1YyRTJWbTQ0UTFvMk55dE1iVWRKYUU5cVVHb3lSalIyUzNnd2VWWlZWblZ0TTJ3dlIwSktkd3BTV1ZsdmEyRlBVRmdyVldoRllXZHNXVlJRVTBaeldDdHlVMmM1UzJKek5UWjJiR2RSWmlzNE1rVkpXamxVVm5GUVFYaG9XVFJ4TW1RM1kxRUtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogenVuNGlncGYxcTduOW16dzI4cTN1b3FhenZncHF4c2JqdXk2bGpndnJ3bnQ0eG9rY3BnMWp6YjBqOWFrbXRib2J0OGZ5anB1aTNqbmpmM2w3bTI3OGF4a2c4OXNndWQ3NHhubHF4bmE1Ync2eG9jenM3c29vcTRqaGh4bDJqY2gK\"\ - \n }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": + \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSWm1kTlpsaEZNWE5sWTFGbmQxVlJSMkZDUlUxUVJFRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxcWEzZFBWRTE0VGxST1lVZEJPSGxOUkZWNlRVUlplVTlVUVRWT1JFVXhUVEZ2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVScUNtNXZUell6TDNsalUycFVabUpvVUdSUGRVNVphQzh5VlV0MGJWVkxjblUxUjBabFVrNXpVaXRuTlN0bE1GVklNV2NyWm05eFMwbFdjRTVNTVhGRVMwOEtURkExWVUxNlVXOVNNbFJIWjBGd1pHNXhiVlkwZHpsSGFrTlROVFpKVXpjek5HeFJOakp2U1ROb1YyMDBRVmRPYUZCMGNYQlhOV1I0VFVSYVFXSmxaUXBvYTBWd09XaEVNbkpDVEdJeFZHbGFOR0ZTVEhSMWVXMXBSMkpJV25KMkwwbGtNbTAwUlRGQk1VZHRaRGRoV1RSWFRFeG5hbGhSVkVKcVUwWlBUMmwyQ2pjclZDOHdkalJJYlVwRVRtUXhWWFJpTjJkUVkyVnRUelJEUzNaWU4wZ3JMMlp5UWk5WmRtbGpOV0Z3VG1WcFV6RllXSFJHWm5oYWQwVTFhVzlCWlZjS00wNXJkM1prVVZZNWNXWlZWRlJxZDNwb1VuRlVNMmxyWmpCVllVMXpUaTh4TTAxbE0yODFiVlV3YkhWS1dVRnBSVk5IVWtGTllqVjZiM1FyTWl0SFdBcGFkMGg2YVdOVFVrSnNZM1ZxVjFKT1ZYQnJNMkpYUlRCT1YwNXpWRFpLWjNoQmFYVkxWMDQ0SzNWMVozVTRWM0F5Y2tzd1RtaGlWVlZuU1hOeFJtbEJDbGxQSzFCeFdtTXdNaXMzYW5SQlRuaG9Remw2VVZOYVNISXpZVmt3UVUwM1RGRTRUSEZvYzJRNVlsSkJPVlp4WlZsMU4yOUVNRmRCYmk5eVlYVnRSbUlLYUUxME0zcHdPWGxtZGxkQ1pscFpaWFprZERSRVVVaFhOMjl0YlZsWFJXOHJhSEJsTlVOdVVscHBSWEJQZGxwTkwxSnlielZGWkd0Rk5pOXFiSGR3YmdwRGVuUjFORWM1Y25oa1QyRTJNa0pKVkhKTFZ6SlBialZwYUhNeVZVdzNhbVpYU1U5MlEzQjNUblJXZUZSUlZtMVNkVmRNWjFadFFtdDNNR3BhU25sdkNteFZaVlJCYlU0clVrZENSR2RPTmxsTFNVRmpWRUp2WkVkcFFYUjZXWGxWTVVkSFFsbGtSak53VlM5SVZ6TlJZa3BSZFVKMVltdGtVRzFoSzJJdk5HNEtPRFpzWTNCSFkwNUhNR2h6VmpWWWVrMXNhVlpDU1hkMmVYZDVRWGhSUm13NVFXOVBNVVJoVnpCM1NVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZVeGEyOWhWVkp6VlRoUGRsZElVR0pxQ2tGb1pqZHBkalJtYW5scmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGSWFHbE5iMmgwUlc5VFluUjNVVkZsVG5kQlRubHdURzluVkVnS1pHSlZhbGxWZDA1aFowSlNhR1JTTTFVeVNTODBWRk50VUhCNmVFUXJhWGRpVVdkbWFqSlVUMVpqYmxCV1dHWmtOaTh2WjBOUlprMXNRV05OVVdGbWF3cE9MMmM0VGtkUWExcE1XV0ZPWWpVNVowOXhPRlpUWVRKMFJqZGplREppWkd0dFZ6SjRNRUprTmxsaVFVVTBZMGhISzFoWWNsSk1Na3hDY3pBNWFHNWtDbXR6UjBoWlpVSjNNVVZaVVhFelRVSjBLMXBrVGs4M1drZFpTRVp3UjBKQlZrcFNMMVZYUjFWWE9XUjBVbGhwZFhBM1JHbFZRbFVyY0VoT2IwWXZMM1VLVWtaWWNYaHZWWEZ0T0hkVVRqbENWM1ZLYkVFemFVRXlRVUZTY1RaRVVEVlpXRkpaVjNkemRVWkNZMjg1V21SVVRUWkhlbHBOVEdvMGJ6Y3dObWRuV2dwVE9GcEhVbkJJTVUxcmNETlVRWFptVDJwSVVYcEhUVGhqYzBsSGRXMWtTaTlrU0VSVldtaEthV2w1VkVOWVNHMXBkRFZoTW5WQlVuVkhjMnd4TVdwT0NsTmtjblJvVHpaMVZqbFdRVUZOZGtOdE1sTlFUVXRJY2twM2JreHdjSFJHTDJkRWFVVjJRMEY0Y2poME9HNVRSQzgwWVRKb1drdEljREpuVTFaaVFqZ0tTV28zYkV4cVNISkdjbWh4UVU5cU9IVlBTa1pJZDNabVMzbElRM2xKTkVRdmQyaG5kbXBoYW1KUGEzY3dkalJFYWxKVFIwaEJLM1ZLTldwa2QybHlTUW81VFhocVlVbEhNMUZ2WkdKWVpETkZTM0kxZVVJclJWbE5WelZTUlhCcFNrSmthRVJaVWtWNWFrZHlNakEwYWxWVVIxbFpiM0JzVW1KaFdqSkdlVGg2Q2xCeFpHSkdWakpuYXpZM1ZraEVVa1ZSWTFoaGNHUjJablZyTVM5aWIyOTJUMlI1T1VGUE1rUnhjVlZ2VEc1WVlVODRNVFp1V0VwV1R6VjFLMnMzV0djS1NqSm5VbkZ1V0VoTmVIQXZRVFIyTUZoTldUaEZUMmMxWm5WbVRHZHNNMWhOVERRM1ozbE5VR3h0V1RJdmJWbEdWVWhTYjFOTE9IZFJURGhEY1VvM2JRcHRWV040S3paQ1NHSTBaMVJPVlZCM0NpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc3Vmb3FkeGktajc2dnMyMWguaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3R4dXJkYWUKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3R4dXJkYWUKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3RrcmloaWZqc3h6X2NsaWFrc3Rlc3R4dXJkYWUKICBuYW1lOiBjbGlha3N0ZXN0eHVyZGFlCmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdHh1cmRhZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3RrcmloaWZqc3h6X2NsaWFrc3Rlc3R4dXJkYWUKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJYWtORFFYZGhaMEYzU1VKQlowbFNRVTB5YjJwTWRtcFRkVWxYVGtvM2NpczRUR1I2WkhOM1JGRlpTa3R2V2tsb2RtTk9RVkZGVEVKUlFYY0tSRlJGVEUxQmEwZEJNVlZGUVhoTlExa3lSWGRJYUdOT1RXcE5kMDVxU1RWTlJHdDZUVlJWZWxkb1kwNU5hbFYzVG1wSk5VMUVhekJOVkZWNlYycEJkd3BOVW1OM1JsRlpSRlpSVVV0RmR6VjZaVmhPTUZwWE1EWmlWMFo2WkVkV2VXTjZSVlpOUWsxSFFURlZSVUY0VFUxaVYwWjZaRWRXZVZreWVIQmFWelV3Q2sxSlNVTkpha0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRkZSa0ZCVDBOQlp6aEJUVWxKUTBOblMwTkJaMFZCZHpKMWFXUjBaMW96T0dsdGNsWTBTekJpU1VjS1kzaEZVMmxqYVZFelpGTXpkMnhtZFhKNVJVOHJNbkUyT1dKcVFVcFNheTlEY0hCMlpYWnZUMlF2UjNaRVF6UjZVV1ZXWTJWQ1RtUTBabTF0UzBSeU5ncHliRlpLZGs5WlF6QlRUVTR3YkVnM2JuY3dabFY2YWxScFNHZDVSa0ZOWVRaS2IwTkZNRmhqY1RKNmVXbEhia1pUYld0MFFUTjRXWEJyTlRWbk5qWkZDak15TWpkSWVrdG5ibFU0UlUxUlQzRnVVbVUyTDNKeE1HOW5jMGhxYW5WdVpXd3JURXhITlVsRFQwcE5LMjV3WlhSSU5tNVFha2RoS3pGdlRUZEVLMlVLWTFGVVZrWXdVMEp0UW05c1NrdGxXVUozTDAweGFIQXZaMmNyZDBsSVExRXJaM1ExYUVZelZrNVBObFZIYVRCYVRsVktOak4yUjNaeVRXUldOSEJETkFwNU5IRlFUMDFhWVRoNmJWZ3dSa1pHVDNSYVFuQlJaVTVzY0RKbGIwRnpUREpvVGxOVE1VdEdaRFJGVVZWaVl6aEpjMlpFTjB0bVlrNHlXRXB3UW5GbkNqRkxiVWRMT0VkcmVrSjNNR3BrUWxOamJUQkpaa2xVVVdkblYzWmlWVEZvVW5oelRFOUpkUzl3YzJsUGNuSnJLM3AzYjI4ck5ETnNablpqVDBwRE9ITUtTbEYxTm5KM1JtNVdaRmwwVjNBNVJ6RnlaWGxKY1ZCbWFIUXJSelJyZG1wVFJGSkJVVlpLWlRWR1FYUk5WWHBNZG0welV6VnhXakExYVVsdWNYbGpjQXB6ZUVNNGNHZEVOMjlXWVdONU4wRndZbFpOYlV0RlptRjZMMVpTUTNObWNWYzNhRWR5VWpsUk1GTTRPRWRvY1ROcE1teDRibVI1YmtSSVdqQTROMGxSQ2tOblVFZDFjVFZXUldwR1kwVjVZbkpzT1RGMFdqVk1hbU13VjJ0UE4yNTNXa3g0UmxOV2JtWkRaVVpvWkdSUE9YWlFOR0pvTlVJd1dDdHdlRU5pZUhrS2F5OTZWRVJPYld4c05WRnpjM2hJYnpWVmRFcGxNM3BQUm1WblV6RlFaRXhtTUU1cGRFeEhhSEJEWVdweGRHTXJTMlUzTmpVM1pHd3pPVW8wVlZnMGFncE5OM1pKYkRsV2JsQk9aM0p5VlhoeFdtNVdXbXhoVlVOQmQwVkJRV0ZPVjAxR1VYZEVaMWxFVmxJd1VFRlJTQzlDUVZGRVFXZFhaMDFDVFVkQk1WVmtDa3BSVVUxTlFXOUhRME56UjBGUlZVWkNkMDFEVFVGM1IwRXhWV1JGZDBWQ0wzZFJRMDFCUVhkSWQxbEVWbEl3YWtKQ1ozZEdiMEZWTVd0dllWVlNjMVVLT0U5MlYwaFFZbXBCYUdZM2FYWTBabXA1YTNkRVVWbEtTMjlhU1doMlkwNUJVVVZNUWxGQlJHZG5TVUpCVEhWWFZDOXFOalppTjJsb1lUbHJSRTVVYndwQ2F6WlNhbms0YlV0V09VbE1UMjlCYnl0NGNVNTNNVkpZWlVkYU5FMTBhVU51YjJSNk5HZ3ZZazlNYVdoMFVDc3ZhMEpHYUZOclFUQXhkbUV6T0ZvMENsRXhUR3N5ZVVNM01WSnlXV3RyZVZOTVdtTkJUVTFyVEZOemFUaDVjbTVUZURSMVIwTlNTMDlYUVdaQmRIVlBjRGhYT0hKdmRIcEhRazVzTkhvNFJsVUtabmRVYUhsTmNFUXZObVowVWtSVVMwSnRha051UkZKNFluUnVRVTVCWlZwbFJFRjRTV0l6T1RocFRtSmhXR1ZWVGtvd09WSndOVWRaT0VObGRVTXJSZ3BWWWpZMmFIWlZhMVpYYUhVeWFGbzVTa3BDZDI5RlMzQXdXbmhzZGs5SlpraGtVVE5YYVdKU1owODJlVTlETjFaQ2NWazRNVTlSY2xCSFlqSlhablpGQ2tkeVNVRkNaRTQwTmxKSFkweDFZbTk2Tm1oRWRHdEVkRzFVZUZWT04yMW1hRWh6UlRrdmRGaFVhVU5FU1VSc2FGcDVSR1ZGV1Vsb2RHWlJhVWRPSzFFS05VRldTWEY1VjA4NVYyaFpkMjF3V1ROV1UyTjNZazk1UzBWMmJXRlJNeTlpTDJGdWRGRXJWRVJRTUZOeE9EUnRTM1Z1VGxWVVZHUmlaSFpqTDIxeVN3cHFTR0pKUWpsa1pERnlaWFpPVjNwQlVYWXZSRWxJVDBoT1NEaEpNRkZvY1ZJd09XUmhiMmRDVVVjNWFUQXZiMjFCTWtVMFdEaFViMEV5WTB4d2JIZE1DbXh0YzBKVE1FWjJjelZaZVRSbFFrTjBUSGxSVEdkM1RVRjFaSGcyZDI5WFJtRkRNRE0wVm5wWVpFeEdaWFZtWmpGWmRUTnVPVTFJVkZOTUx6UTNkbTRLY3pWWVVEWk5VbWM0VEZCcGNHbFVRak5aTkVORFUyOVFVWGwwWjNKcWNXcHNibE5wYUVFd1RrVlNWMHhCT0ZsT2REQkxTbmhsWTFwV05VZzJSV1ZUY3dwbVJHeHBkV3BzUTJaeVNDdFhkRTlrV1VwdVlVUXJaMWRPTUVReFZsVlpUVTAwYlVoeVIzQmFWV1YzVml0dU1FcHVkVVJ3UTFoRGIwMWljbUY1SzA4eUNsUkpOblJQV2k5TmVqVlFhR1pwUWtoMlNXMXllVVJUYkFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMEZKUWtGQlMwTkJaMFZCZHpKMWFXUjBaMW96T0dsdGNsWTBTekJpU1VkamVFVlRhV05wVVROa1V6TjNiR1oxY25sRlR5c3ljVFk1WW1wQkNrcFNheTlEY0hCMlpYWnZUMlF2UjNaRVF6UjZVV1ZXWTJWQ1RtUTBabTF0UzBSeU5uSnNWa3AyVDFsRE1GTk5UakJzU0RkdWR6Qm1WWHBxVkdsSVoza0tSa0ZOWVRaS2IwTkZNRmhqY1RKNmVXbEhia1pUYld0MFFUTjRXWEJyTlRWbk5qWkZNekl5TjBoNlMyZHVWVGhGVFZGUGNXNVNaVFl2Y25Fd2IyZHpTQXBxYW5WdVpXd3JURXhITlVsRFQwcE5LMjV3WlhSSU5tNVFha2RoS3pGdlRUZEVLMlZqVVZSV1JqQlRRbTFDYjJ4S1MyVlpRbmN2VFRGb2NDOW5aeXQzQ2tsSVExRXJaM1ExYUVZelZrNVBObFZIYVRCYVRsVktOak4yUjNaeVRXUldOSEJETkhrMGNWQlBUVnBoT0hwdFdEQkdSa1pQZEZwQ2NGRmxUbXh3TW1VS2IwRnpUREpvVGxOVE1VdEdaRFJGVVZWaVl6aEpjMlpFTjB0bVlrNHlXRXB3UW5Gbk1VdHRSMHM0UjJ0NlFuY3dhbVJDVTJOdE1FbG1TVlJSWjJkWGRncGlWVEZvVW5oelRFOUpkUzl3YzJsUGNuSnJLM3AzYjI4ck5ETnNablpqVDBwRE9ITktVWFUyY25kR2JsWmtXWFJYY0RsSE1YSmxlVWx4VUdab2RDdEhDalJyZG1wVFJGSkJVVlpLWlRWR1FYUk5WWHBNZG0welV6VnhXakExYVVsdWNYbGpjSE40UXpod1owUTNiMVpoWTNrM1FYQmlWazF0UzBWbVlYb3ZWbElLUTNObWNWYzNhRWR5VWpsUk1GTTRPRWRvY1ROcE1teDRibVI1YmtSSVdqQTROMGxSUTJkUVIzVnhOVlpGYWtaalJYbGljbXc1TVhSYU5VeHFZekJYYXdwUE4yNTNXa3g0UmxOV2JtWkRaVVpvWkdSUE9YWlFOR0pvTlVJd1dDdHdlRU5pZUhsckwzcFVSRTV0Ykd3MVVYTnplRWh2TlZWMFNtVXplazlHWldkVENqRlFaRXhtTUU1cGRFeEhhSEJEWVdweGRHTXJTMlUzTmpVM1pHd3pPVW8wVlZnMGFrMDNka2xzT1ZadVVFNW5jbkpWZUhGYWJsWmFiR0ZWUTBGM1JVRUtRVkZMUTBGblFWWlJNMGg2Ulc5TFIwOW9VVUY1ZW01TlNsWXpWVk5YYUVZck55OW1hekZVU0ZoalFVZzJSVmd3UkRKSU1tVk1jbGhxYnpaM1ptRjBhQXB4ZWtoR01WWk9hSFJQYXpRME1XTlVZbUpCUzJSYWNXaDVRVVZqTVZGVWJpc3ZUVlZvU1dKMFpYRlJlRmt3Uld0VlozVmhWSFJJVFVsaFdtTTFkREJSQ2poamIxbEZVWFV5TUdsT05HWkZZemh0VG5kbmFFZDBkV0UxTDJwdE9VZ3Zha0ZsZWpscVVWUnFWREpWVTBVck9XaGtNQzkzU1d3Mk4xaDZSWE5RTmpRS2RpdHpkM0JGWTFJdmFIbDBPRkpaVEdreVVUaHpNR2w1YzBJeGVWZE1PVU12T1RWSFExcHZMME5qYkdWQk1XTmlaVTVwYXpnd1dVd3dXbEJGTUZacVVRcHJWa1YzY1VWRlVFNUNZMHBHTkcwNVJtNXJlVU5MUzAxMU5HbFJRbE41WlZaa04zaHNhazk0Y0VKWmRsWTNOMlV3VW5GVU5TdFRjSEl5YjBSMVdsSTNDbmMyWm05SUwwRkNjRVJzZWpReE5uSk5ibmxGTkRWME1FMXlNa3hHV1VKdU9WbDJaVmh2VjBkbGVrRlhRM0ZXVWtoM1lYZEVjblZyTms5RlVuSm5hVUVLVVVsMFlVOTRaMmx3Y1ZScmNqbEhXRE42V0dWS1l6WTBjSFUxU2tsVVptbHdlakZaTnpaMGNYWkRhalV4ZVdKVVVYTm1ZWFJCY2pZd1NEbGtZM1ZXT0FwQk5WRlNRVEJHWmpoT1FqUk9Vbk54V2s5Tk0wWkdWeTg0TUZNdk5EWnRLM0I1VEZKeVkweDBSRXhpZFdOc1l6UlVOVVYzVEVjelRVeHlZbEZhU1haSkNsVnZabWw2TDBWeFNqTnlTRzlKYVhCQ2RVWlhheTlFUW14c2R6QkhhbE5KYldWSlkxUTJjMlJFY1hsSk5rcGhlRTFsZEVjek0xcHNVRU5aVlRSa1R6a0taRzkzZVdKeWJqSnNWRXBYVEdGTmFVNUJLMUpJWkRCVEsySlRRVmczYlhoRldUUm1kR2R4TldOelUwZDFWVWhpYlhwYVFYRTFUV2xFV0ZoR2RWSlVjQXBPVW10MU1rSjZOMFk1YUVkcEwyVkVRbWxEVVdadGRDODRZVGgwWjJaRWJUbHpaVlJqWmpkSGFXMXZOVUpPY1Zkb1VVdERRVkZGUVRCemRrUkNURE5rQ21Rd1ptWTVTREppVVVoWlQxcHlha0Z1UlZGcGVrMVRRek54WlhSWVJtVjZjMVZoVlVSbEwzZEpkMEZCWVdaaVptaE5TaTkyWm01eVN6VlBaVGxwYUUwS01XOUdVbGxJTjJKS1NtdEhiVE5ETUhSSk5XazRXVE5WWm01YWVrcGFkbnB0VDBzelpsZ3pkbUZ2VkhaVUwzWlZSeXRtYVhvNU9IbHlkRmsyYzJZM1R3b3hjbVpRZWpCWE4wRkVZbTR4Y1N0Q2R6WTNkM05RWXpGR0swRkhRM1JwU1VGUllqaEtiemxEYWpKM05tUXlVSGRtZWtSdmVYZG9OVWwzVTAxUmJWVllDaTl1TlVGMk5UazVVREIyTWs4eGRFbzJNM1ZpUVV3elRra3haV2xvYjFjcmVGWTRXa2RhY0VwNlpsVjFVUzlyVVVwMmNVTTRjRnBYY2tKYWJuVjBVR1lLY2prdlozTjFSVlJJUms4MWJWWnlZVTFXY25CcE5reEphV1Z5VEVkek9VOTFaV05oU1U1bGNVaEJjSEZLT0ZWRVJFdFJlREk0WlRGU1pFZ3lTbXhMWkFwUGVHUllSbFpoT0dadVR6aFlkMHREUVZGRlFUZFdVRXR2TUdGcmRqZFhZall4U0ZaeVVYTXdZV2xMVHpZdk9HcGlUVXMyWW00clNTOXRSMnB4YWpOUUNscFZha3R6Tm5WR05XcHliR2xNZWtsQ0wyOUxaMWxXVG5kRVpGQmxRa1ZNUWxBMVJGUkRURE5yY21KSlVUSlVVSGxYWVZRcldGbG5ZWGxpZG1OeGVFTUtXRGN2UzBGS1FWUlNRV3BhWkc1dk0yaFlaamREVm14VGFYTmxSVzVOTjA5QmRqWnRkMU5wUjB0eE5ISk9TakJ3V205RVp6ZHljRVZtVVcxNk5tOXRaZ3BDYjNCVGEySldPVEZaY2k4MmVGWXlVRkJJWkhORWR5OU9VMjg0VVhkeE9Tc3ZhbVZMU1cxNk9IaHhVbE51V1VGc00yNHJlamsxUjNScmFFaEdNbHBsQ2tSTVdHVTVZV2c1YkdoWFNIQk5lRU56WlZoMEswSnJlbTFPV0VRNGNtUlNaVlpwUzNCTVExWmpWR3REU1hoSlMyWlJSVGhVSzJGa2VtZFdjblp0Ukc0S0wxcDViMWxpTjNwRFdtZFZiMmhMYkhsTk1IVllWa3BUYTNCbVFuTndlRGhHVW1GbmVGaHdjMlYzUzBOQlVVSTVXVlU1VmtWaE1sb3hhbTFEVkdabE53cEtjakEwU1dsdlIybEplQ3RoVjBKRFIxWkJTRkJsT0ZkM1dtdHpiRkYxY21SalVFcFJNWEk1ZERCaFRqbEJiMHRQUm5KNmNGWk1WM1k0U25Oa0syWlhDalFyU2toTlNXdzNXRGR1UVZoYVJVaDVNa292SzNwMWQwMTVTR0V4WWpWRVEwZEVhbTVVUlhwcVFVTm1hbVV5ZVdseFFVMDBWR1ZqUWxkaWIzSldkMjBLU3pSS1NXTnpibTVZTjFkM1VFMXVjWE52YUVacFZHVlZSRTVwVFVGMVoyWk5UWFY0TW1STWFHaElSR2t5ZERWaGEzTnFkV05RTUU1c1dVUnFkVmhUWndvMGIycExSVEpzY2xaSVJVVjRkVUYxV20xRE5GUlFUVVZ4UzFSblZYRkpWbXBCUlVJd2VraHNWRlp1TXl0eE5FRXlOamRHVGtkTE0xWktNWFJMUjNwaENta3pORFJzWnpVd1JIUlJaRUo1ZW5GM05tOWpMM3BQWmxwaVRtNHhNemxMUVVoUVZuaGtkMnBrT0VwclRFZDRTVFZFVEZvMWIyVTBOM2hCVVVaRVFUTUtjM0JXV0VGdlNVSkJVVU54WmxVNVRrUkRjU3RNWkVSamN5dFZNR054UVhOMmNtRTVaMjlSU1ZaaWRHOU9aVnBOUjBGb2FTOUNVa3BTYjIxWWJVNXBVUXBHUXpsbmF6TXhMMlpZYVdWdmQza3ZNRkIzWkROUFFqRnlaRXhoYkhsUlZFZFpkVEJJYlM5SE1YaEliVmMxTTJWWVFrbFlOWFpsYm05VVpWVlFLM2RZQ2tzclVrMDBSeXRUVTJsaWJFTkhNM0pzU0d0SWVrOXFhRGRrTkU1V1VHUk9TV1ZIV0RSdE9HcFhLMGsyYmxWVmJVeG9ielZ0Y2xCTVJuZE9TaXRZT1RBS1RVYzJOR2x4Y0hWRVlrdGpUVU4xV1Voall6aDNha3hLUjBoakx6RXJlVlkzTjJkQlRHUlZkUzlGZVRWT05IcEZNV2hrT0VRcldIZGhOV0pKUlRCd2F3cDZkMHR4ZFV4SlVUWnZVMUptYTJzMmRXaFpVaTkxT1dkd1Qwc3daazFhWld3dk1scENRbFJWZVVaYWVtSTVRbVJsUkdReWFFWmphMDFoTkd0NVpTOHJDa3hIY0cxSk9EbEZLMWRGWkZkVk5VbFZVWGwwUzNjeFdXVlFSREUzU1ZOU1FXOUpRa0ZHVWtneE5TdG9OVGhHTDJORFMzTTNTVE5rYzBWS1YzSm1aRUVLZGpWTFlqSmxUakp5TjJFd2JVVnhjRTQxYm5CTU9XVjZVMDFzUzFkSlkyWkZLekkwY21Relp6TlRkREpoVWtSdU5ISXJNREpzVlhCUWFVVmtjbkpQZGdwdU5TOURiM1JSYkdWTWR6ZE9NWGxYWjNCRGQyUklTVEJOTjJSaGRsRllTQzlTYnpKbVRYbFJiRXRKUkZsU1JHSlFTVWxPSzNSTmJTOVBieTl5TWxRMUNtRnhPWEpPYm1WdFN6bEZXbGs0TW5ZMlZtOXNRVEZvZVU1RFpIaGpNVGs1UlVONU1uSnpUbGgyY3k5eU1uRTRTVVEwTUN0WGJqTlNObWhsZUNzdmJuRUtjWE5pWmk5RmMwOHJPR3AyWjA1bmFrSnJRa1psYUZsVlVtVjJlR04wYlhkYU1GbHpTVFYwVTFObVUyTnJVbGxUVXk5QlZVUklXVFkxVUdWMmExQkJUUXBZTW1KbGRqRnFUSEZxY21waVVGQnFSWGhSY25OTVVsVlJUalY2UTBSU2JIRkZkVlpIU0hwaWExVk1RVkp6T1VKd1VVVlVhbWxVYTBNeU5EMEtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogbTlteHJ4YXhqZHAzNGJnbjgybXF5aXV6bTk0NW5iOGVxdjNpNmJlc2k3YTdjMmk0ajlxb3ZkYWI4MzRuNjVmcTI3emtieTl4b3hrcWV6MGxncTdqenN1c3N5N2U0Y3R5MTJnMzdsemxjb3NwajFlY3E3YnQ1cXljd2YxbGxmNWMK\"\n + \ }\n ]\n }" headers: cache-control: - no-cache @@ -1277,7 +1510,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 21:32:19 GMT + - Thu, 29 Jun 2023 09:46:25 GMT expires: - '-1' pragma: @@ -1313,8 +1546,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/cliakstest000001?api-version=2023-05-01 response: @@ -1322,17 +1555,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b5fc439a-cf67-474b-8504-335ea11692e0?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 14 Jun 2023 21:32:22 GMT + - Thu, 29 Jun 2023 09:46:26 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/b5fc439a-cf67-474b-8504-335ea11692e0?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 index 04fb6bcf579..065e73fe38f 100644 --- 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 21:32:29 GMT + - Thu, 29 Jun 2023 09:46:29 GMT expires: - '-1' pragma: @@ -47,7 +47,7 @@ interactions: message: Not Found - request: body: '{"tags": {"key1": "value1"}, "location": "westus2", "properties": {"kubernetesVersion": - "", "dnsPrefix": "cliakstest-clitestyzrjdvdvr-8ecadf", "agentPoolProfiles": + "", "dnsPrefix": "cliakstest-clitesteadxcxjgz-79a739", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, @@ -55,8 +55,8 @@ 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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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", + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": @@ -71,70 +71,69 @@ interactions: Connection: - keep-alive Content-Length: - - '1939' + - '1610' 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-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.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 }" + 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-clitesteadxcxjgz-79a739\",\n + \ \"fqdn\": \"cliakstest-clitesteadxcxjgz-79a739-cth0i53l.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitesteadxcxjgz-79a739-cth0i53l.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"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/ac33777f-7477-4d4b-9548-d4f2020ae54c?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3ea07df9-6480-4cdd-95e0-977044d49392?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3616' + - '3287' content-type: - application/json date: - - Wed, 14 Jun 2023 21:32:38 GMT + - Thu, 29 Jun 2023 09:46:35 GMT expires: - '-1' pragma: @@ -165,14 +164,14 @@ interactions: - --resource-group --name --location --node-count --ssh-key-value --tags --nodepool-labels --nodepool-tags --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3ea07df9-6480-4cdd-95e0-977044d49392?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7f7733ac-7774-4b4d-9548-d4f2020ae54c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T21:32:38.6105737Z\"\n }" + string: "{\n \"name\": \"f97da03e-8064-dd4c-95e0-977044d49392\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:46:35.3159615Z\"\n }" headers: cache-control: - no-cache @@ -181,7 +180,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 21:32:38 GMT + - Thu, 29 Jun 2023 09:46:35 GMT expires: - '-1' pragma: @@ -214,14 +213,14 @@ interactions: - --resource-group --name --location --node-count --ssh-key-value --tags --nodepool-labels --nodepool-tags --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3ea07df9-6480-4cdd-95e0-977044d49392?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7f7733ac-7774-4b4d-9548-d4f2020ae54c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T21:32:38.6105737Z\"\n }" + string: "{\n \"name\": \"f97da03e-8064-dd4c-95e0-977044d49392\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:46:35.3159615Z\"\n }" headers: cache-control: - no-cache @@ -230,7 +229,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 21:33:09 GMT + - Thu, 29 Jun 2023 09:47:05 GMT expires: - '-1' pragma: @@ -263,14 +262,14 @@ interactions: - --resource-group --name --location --node-count --ssh-key-value --tags --nodepool-labels --nodepool-tags --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3ea07df9-6480-4cdd-95e0-977044d49392?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7f7733ac-7774-4b4d-9548-d4f2020ae54c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T21:32:38.6105737Z\"\n }" + string: "{\n \"name\": \"f97da03e-8064-dd4c-95e0-977044d49392\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:46:35.3159615Z\"\n }" headers: cache-control: - no-cache @@ -279,7 +278,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 21:33:39 GMT + - Thu, 29 Jun 2023 09:47:35 GMT expires: - '-1' pragma: @@ -312,14 +311,14 @@ interactions: - --resource-group --name --location --node-count --ssh-key-value --tags --nodepool-labels --nodepool-tags --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3ea07df9-6480-4cdd-95e0-977044d49392?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7f7733ac-7774-4b4d-9548-d4f2020ae54c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T21:32:38.6105737Z\"\n }" + string: "{\n \"name\": \"f97da03e-8064-dd4c-95e0-977044d49392\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:46:35.3159615Z\"\n }" headers: cache-control: - no-cache @@ -328,7 +327,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 21:34:09 GMT + - Thu, 29 Jun 2023 09:48:05 GMT expires: - '-1' pragma: @@ -361,14 +360,14 @@ interactions: - --resource-group --name --location --node-count --ssh-key-value --tags --nodepool-labels --nodepool-tags --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3ea07df9-6480-4cdd-95e0-977044d49392?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7f7733ac-7774-4b4d-9548-d4f2020ae54c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T21:32:38.6105737Z\"\n }" + string: "{\n \"name\": \"f97da03e-8064-dd4c-95e0-977044d49392\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:46:35.3159615Z\"\n }" headers: cache-control: - no-cache @@ -377,7 +376,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 21:34:40 GMT + - Thu, 29 Jun 2023 09:48:36 GMT expires: - '-1' pragma: @@ -410,14 +409,14 @@ interactions: - --resource-group --name --location --node-count --ssh-key-value --tags --nodepool-labels --nodepool-tags --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3ea07df9-6480-4cdd-95e0-977044d49392?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7f7733ac-7774-4b4d-9548-d4f2020ae54c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T21:32:38.6105737Z\"\n }" + string: "{\n \"name\": \"f97da03e-8064-dd4c-95e0-977044d49392\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:46:35.3159615Z\"\n }" headers: cache-control: - no-cache @@ -426,7 +425,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 21:35:10 GMT + - Thu, 29 Jun 2023 09:49:06 GMT expires: - '-1' pragma: @@ -459,15 +458,113 @@ interactions: - --resource-group --name --location --node-count --ssh-key-value --tags --nodepool-labels --nodepool-tags --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3ea07df9-6480-4cdd-95e0-977044d49392?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"f97da03e-8064-dd4c-95e0-977044d49392\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:46:35.3159615Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:49: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 --location --node-count --ssh-key-value --tags --nodepool-labels + --nodepool-tags --service-principal --client-secret + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3ea07df9-6480-4cdd-95e0-977044d49392?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f97da03e-8064-dd4c-95e0-977044d49392\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:46:35.3159615Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:50: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 --location --node-count --ssh-key-value --tags --nodepool-labels + --nodepool-tags --service-principal --client-secret + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3ea07df9-6480-4cdd-95e0-977044d49392?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f97da03e-8064-dd4c-95e0-977044d49392\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:46:35.3159615Z\",\n \"endTime\": + \"2023-06-29T09:50:23.4533206Z\"\n }" headers: cache-control: - no-cache @@ -476,7 +573,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 22:40:30 GMT + - Thu, 29 Jun 2023 09:50:36 GMT expires: - '-1' pragma: @@ -509,66 +606,61 @@ interactions: - --resource-group --name --location --node-count --ssh-key-value --tags --nodepool-labels --nodepool-tags --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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-clitesteadxcxjgz-79a739\",\n + \ \"fqdn\": \"cliakstest-clitesteadxcxjgz-79a739-cth0i53l.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitesteadxcxjgz-79a739-cth0i53l.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": 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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"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/45bbbe87-41ae-4692-80a7-ea4f544d6b4e\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '4212' + - '3551' content-type: - application/json date: - - Wed, 14 Jun 2023 22:40:37 GMT + - Thu, 29 Jun 2023 09:50:37 GMT expires: - '-1' pragma: @@ -600,66 +692,61 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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-clitesteadxcxjgz-79a739\",\n + \ \"fqdn\": \"cliakstest-clitesteadxcxjgz-79a739-cth0i53l.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitesteadxcxjgz-79a739-cth0i53l.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": 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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"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/45bbbe87-41ae-4692-80a7-ea4f544d6b4e\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '4212' + - '3551' content-type: - application/json date: - - Wed, 14 Jun 2023 22:40:38 GMT + - Thu, 29 Jun 2023 09:50:38 GMT expires: - '-1' pragma: @@ -691,70 +778,64 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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\ - \ }" + 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-clitesteadxcxjgz-79a739\",\n + \ \"fqdn\": \"cliakstest-clitesteadxcxjgz-79a739-cth0i53l.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitesteadxcxjgz-79a739-cth0i53l.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": + 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n + \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": 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.19.0\",\n \"upgradeSettings\": + {},\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": + {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": + [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 \"supportPlan\": \"KubernetesOfficial\",\n + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"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/45bbbe87-41ae-4692-80a7-ea4f544d6b4e\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": + [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": + false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": + {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\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: - - '4491' + - '3816' content-type: - application/json date: - - Wed, 14 Jun 2023 22:40:39 GMT + - Thu, 29 Jun 2023 09:50:39 GMT expires: - '-1' pragma: @@ -786,70 +867,64 @@ interactions: ParameterSetName: - -g -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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\ - \ }" + 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-clitesteadxcxjgz-79a739\",\n + \ \"fqdn\": \"cliakstest-clitesteadxcxjgz-79a739-cth0i53l.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitesteadxcxjgz-79a739-cth0i53l.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": + 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n + \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": 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.19.0\",\n \"upgradeSettings\": + {},\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": + {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": + [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 \"supportPlan\": \"KubernetesOfficial\",\n + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"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/45bbbe87-41ae-4692-80a7-ea4f544d6b4e\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": + [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": + false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": + {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\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: - - '4491' + - '3816' content-type: - application/json date: - - Wed, 14 Jun 2023 22:40:40 GMT + - Thu, 29 Jun 2023 09:50:39 GMT expires: - '-1' pragma: @@ -883,15 +958,15 @@ interactions: ParameterSetName: - -g -n --file User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/cliakstest000003/listClusterUserCredential?api-version=2023-05-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ - \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVV4RWVGWldUbGwyYWtKVEwwRnZiVFZ2UzA1bk0yZDNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDA1cVJUQk5ha1Y1VFhwQk1GZG9aMUJOYWtFeFRYcEJNazFVVVhsTlZFMTZUVVJTWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNtOUpUR1Y2ZEd4c2R6RnlTVWRrU0RKdmQxTnZOR1JoUjA5a1pXbE9lVXRNUVRCbldVY3hjSGhMTnpkcWJGWTJWSHBaUzBsT1QyVkxaM040WkdWbFRFd0tlVU5uUjFwMFJTdFpLemx4UWtacEsydG1WVWRUTUVVeVRXbzJkMVphTWpGRFRUUjFObFJMTlRSUmFXOWhPSFJsUWpCQ1VXUnVjRVU1Y2xwUU9UWldjd3AwZG1aR1ZHOWhaak5FZDBZclFVb3pRblEwV1RkVE5tZFphR1E0TjFOMVZYWjBlUzl1WkU5cVVHZzRhbWxQTUVjekt6bEtSWEp2WWxGamVGaHJiMnR1Q20wclZXbHRlamxOYzJnME1sSnZWbVUxYmpkNlNXVXJjRmRXY1dKWWNqQjVTVzVLYld4Q2RITnFOVzVvZDBSSmVWbFdla1JLY0UxS1VqVklVbmhUUzBRS1JWYzJMMlZtWjNWSWVXdDRURkUyUzJka1ZGZHZiVzlsUTJoTFFWSklXRlFyY0ZOUE5ucGlMMGR4UzJSVWNYcEpiMGg1V2s5SmVYSk1OMjgyVVVneVN3cG9WbEZQYjAxRGR6WllXaTlRVDFsTGFURk5lRlozY1ZsUVJsbEVaR1ZYWkZwSU0yWk9ZVlZzVm1OUFdrazJhV1EyWm5wNlRHTjBNbVJhV2pCb09WVnBDamhRTlZoWmIxcEtWV0ZQY1doTFRIVk1jMlZGZURCa1JURmpRa3hvTlhodE5WaEJObXMwWXpGMk9WRkZlRUZYVjJSaVFUUkdibkpYY3pSdVl6bDFUakFLZUVKaGF6UlRSekJKUzJsTU5USkhjMnMwTmxjNFdXRTBjM05KS3pGTk5UUlhXbGxCYnpnNGVFcFdibGx5Y25wR2JFODVjM2t2T1ZnMWIwVkliMHgyT1FwVlRUaGhSM1ZwT0hSRE1tRkVTWGRhVVV4WFJuYzFTWGhaWkZaWU0ycE5RWE5YZFdwWUswRklaR3BsVDFCVmVtUlBPRFJCVVVKWk1YVnZZa3ROYkVSVUNraDFlbkpxV0dsWVZGQmtVbEZZY1dKVlV5dFhhM1o2YjFwT1dUUm5jVGwzVlZJdlkydHhSakowY1RWUmRsUkdNME41WjBab2VqWnRkeTl6TkZSRGNFa0tORlJIUzNCWFpXOUtTUzlMVW14eFJGcElhRkF3VlcweFprVmpkV0Z6VkhGaVpWaHplR2RGZWxOalJVTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1NUWndlVFpYUkc1VE5rRXZlVzR2Q214bGVrMWllaXRtTmtNMFMwMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlFVbDJlVGM0UVV4MlZFaHViVmMzV1c0eE55czBVbVpITlRZS2VUWTRNbFl3Ykd4U01taHVaMjUyYmtOTk16UmlLekJTUTNwWVkxSXpjM0F3YnpoM1QwcDVVVFpoVkROVmVtWXJNRWc1Tm05elJGSmpUall6VFRRMlZ3cDRSSEpEZDJKNk5HTllWWFExVFU5WVQyOTBORTk1U0dWRlRFeExWM1JoWldablowRjFibGt6ZEd3M1F6RkdWRzFsYzJ0TFVURlBTRTVETmpKelFsbDNDbTlqYVU1cVRTOVZlWEIyZDBaSmVrUTBWRkJQTkU5c2JqRlFOR1p6ZG1kME5GYzRiVVZTWlVoeVdGUlBSWEl4V0ZoWGJqVjBhMlZMTkdwRGQxcEdWa0lLUm5oNFVqUlBTM1UwUlZOcWIyVnNWRGcwTVZjNFJGaEdZakJEVVc0d2RFVmplRmRhZFZsMFdsVkZMMk13Wm1abVVtTXZjVWQ2Um14WGNFdG5aMGxEVmdwdGNFRlNVWFpvV1ZBMmVYRnhlak12UW04MEsxWmxLemx1Ym05TGFEWTNaVlppSzNoVlMyWTRWemN4VFVRMVVtWlpkMmhNZGk4NU1WZE5ZVkF6WTFwdUNuTmtaekY2YWtaYVRDdHlTSFpUVUZOUk1UQmFaSE1yYlVvNEswbHVTVFk0UlV4c1EzWlllRmRvUmpNMU9XTlVlbVZJYzJGUmRsbGtjM1J1VjJwbGRtNEtORkZsV25ONmJIZEdXQ3QyVGpRNVpuZ3ljRmgyV0hkeGRtcHRRWGhoTjBGTlZ6aHZSMUJQZEhkV1JESmlhMWxQWTNWbFZtbHJWM0Y1UmxkMVJYRjFUd293Ukc1T1EzcFZUMEZ2YjNBelpqQnVZazlPU0ZGUWJqZFBUM0J1YUZwak55OUxkamhYTW5sMlNqUjRRMjh4ZUhWUVdUTmhVVkJvTkc5MGMwVk9OV1J0Q25sd2JuTXJjR2xTY0ZkM2FWWkpXVlpwUldOWFJVcEZkV1ZUWWpocVVIZG5Lekl5YW5KcFRqSXdTWEYxU2xweGNFOTNOWGswVkhaU09IaFRNR1oyTVVRS2NqQm9NR1JRWVVoUVJuVk9XbXBTY1RWWFpVNVhUbTFPYUZCcVFsUkViVmRTZEc1aVJtWjZUSEF6UVd4dlQwOWpiR2xrYVc5QlVrcHljVlpXUW5KUFFRb3plVFZNTmsxVlpIaElZVEEzYlZKUWFuYzlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzdGVzdC1jbGl0ZXN0eXpyamR2ZHZyLThlY2FkZi1nOHZzbmttYS5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdHd3YTJrMwpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdHd3YTJrMwogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdHl6cmpkdmR2cmVfY2xpYWtzdGVzdHd3YTJrMwogIG5hbWU6IGNsaWFrc3Rlc3R3d2EyazMKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0d3dhMmszCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdHl6cmpkdmR2cmVfY2xpYWtzdGVzdHd3YTJrMwogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklha05EUVhkaFowRjNTVUpCWjBsU1FVODNaMlJrYkhwdWRXdE1jV0psTnpKWFZteGFiRUYzUkZGWlNrdHZXa2xvZG1OT1FWRkZURUpSUVhjS1JGUkZURTFCYTBkQk1WVkZRWGhOUTFreVJYZElhR05PVFdwTmQwNXFSVEJOYWtWNVRYcEJNRmRvWTA1TmFsVjNUbXBGTUUxcVJYcE5la0V3VjJwQmR3cE5VbU4zUmxGWlJGWlJVVXRGZHpWNlpWaE9NRnBYTURaaVYwWjZaRWRXZVdONlJWWk5RazFIUVRGVlJVRjRUVTFpVjBaNlpFZFdlVmt5ZUhCYVZ6VXdDazFKU1VOSmFrRk9RbWRyY1docmFVYzVkekJDUVZGRlJrRkJUME5CWnpoQlRVbEpRME5uUzBOQlowVkJiakpsV205eFR5dHNTREFyTm01WlIxcE5SVFlLYVdKMllVTnVlakYxVVV4NVVGQnZlRW8xZDJORFpWaEhhVzVUYjI5RmFHTjFiMUZ0WVZJM1puRnBjMUYzVWsxcVFUVnVlbVpyUTNOSlVXRnJVVWh3TWdwdk5YZGtha280YWtKQlNrczRORmcxTlVsR1JEUnFkMUJXV1dNNVVHcG1kRFJ1ZERaSGRFaGplakJ5VUZWalZsY3hXRXRRTkc1eFJWcEJMM0k1Vm1KcENpdEpWMVZEVW5GUWJXc3hSMWxUV0VsdVZHb3hhazVvVUVscFNtaEVUa1pwV21WVmF6VlRRMlpXWmxOR1MySXdZMUF2UmtoUWFHazNSamxTUTBrMVdFa0tPVkJCTlRkVFpsRm5WMHQxYkhsb2FFUlRXV2xMYlcxYVZITjVUbGtyTXpFMU1uRlRTRTR3UkM5dFJ6TjFhbFJOY0dKa1JrdEJZMlp3VTFreVdGSjBTd3BKVGxwS2NYTnhiSEpKWVdVMVVuTTBjQ3RYT1c1dk1pODBXWEJwTkdGNFVUWTFjMWRyU0VsR1RXRllWV1ZQVWtkcmJHUTBXblp4UzFsMmJUbEpjRzVHQ2pkTVVGZExNblV2TjJoMFNFbzVRbVpQUW1SYU5rSlRWbGxZUkVsaGJEUnhiSEF3ZG14MVUyMVdUMjlTVm1wVVpGRnpOaTl1WTNkaGFrTjFNa1l4VGtRS1lUaHFOMlV2VW1ocFNqVjVlRTlTWWtkRmNVTk1ja0pHVTJOM2JYcHFORkJ5Y1d0WGEwVnpUM0J0VTNaQlJtNWtXVUZVUzJOU1JGVTFhbXRFYzBsaVlRcGtjbkozVlU4M1kwRk1UM1ExWlc1bFNuWm1RV0pWZUdrM00wa3dOMWROUTNsRVUwd3JlR3BQVFVodlJVRkRZazl3VDIxRkwxWkNZMlZYZVU5VE1GVmlDazV3Y214clJqWldXVVZDU2t0UFYwaHVZMFpXYUROS00zVktiak4yTlZRMFoxVjZVWEp5T1ZBd1UycGpkbWxaWW5SbWVVMVpTMHh2VVhWS1ptOURNRmNLUlhkdmFXSnZPVlpTUTNodmVuQXZRWFpLWkV0bE5rTjVaRk5VVVhkTmN6TlZja0paVjNkVU1rUkZLeTkwYVU5c2RrcEpjMjVITm1jelZuQkJPVmhVZFFwVmVWZDNVbmRJWjI1RFpISXlZVzVaWkZoMFRWQkRUVU5CZDBWQlFXRk9WMDFHVVhkRVoxbEVWbEl3VUVGUlNDOUNRVkZFUVdkWFowMUNUVWRCTVZWa0NrcFJVVTFOUVc5SFEwTnpSMEZSVlVaQ2QwMURUVUYzUjBFeFZXUkZkMFZDTDNkUlEwMUJRWGRJZDFsRVZsSXdha0pDWjNkR2IwRlZhbkZ1VEhCWlQyUUtURzlFTDB0bUsxWTNUWGgyVURVdmIweG5iM2RFVVZsS1MyOWFTV2gyWTA1QlVVVk1RbEZCUkdkblNVSkJTakI2YlUxb1ExcEVURmR0Y0ZFNVExVlllQXBJTm5KaU4xTk9UVWc0ZDNnMWRWSlFWVXAxVkVveE9YUlNSekZHUnpoaVZEbEpkaTgzTkZjMVJURlVWRkUwYldvdlFYcElUemszYjFGa0wxaHFSeXRKQ2xWV1NuSlNaVmMxY1dGdloyeE1VVUpxYzBFd1QzRk9XVE40UTAxeVRrRmFhbWhRWm5KQmVVNXpVa05XZVVoc1RYVkNSWGhKVjJwbmVWVXdiV0U0UTNFS0wzUjRNVWhYZVZJM1EwRmtXWHBoT1RoRVptUTNWVzFGUjNKdE9XdzRLMHhPV0ZWRVRXdEtkbEI1UW1zcmQwaE9RVWhSVDFveGJWRklVbGR3ZEU5a1p3cElVRTloYkVGallXTm9NRTVJZUhCV2MxUjNUbHA1TW5NNUwxZzRRWEJTTTFWMlFuWjZLM0JFZEhaVU1FTkphbFZOTkRCeVpGZHdWWFZwVld4WlUwdFFDazhyZDJOMWVuaERORXhGUlZkVk1XYzRZV2d5TUZSMmQydGlPRFl5SzNaT2FGQjRiMFpXUVRSQ2JrTndRMmM0U0VkWGRIRXhWVXROYVV0SFNYUlhjRWdLWlROM1kwdFNUR3RDWnpSMU1sY3daV3RzWkVkS2F6azBiWFJ3VDJkUE9ISTFSVlU1Tm5KMlNGZEZTMkZ2ZUVKTk5FMWxXV2h3TWxoSE1Vd3pVR1ExY1FwUU5tUjRkRXBEZGpCS1VHMUxNemRzU0N0U1QwTk1TVFUxV0U1V1QycE9iSGh4YldVeWFsUXlTbWxWUldoaGNpOW1NRVJITVhwMFMyMHpUVEpZYjJjckNuWXdabXh1TjNOTlNuSndjM0Z1Wms1dlVsQkxUVVV4VmxGdGNYaHpaM3BETkhkVWIzVlphR0ZDT1VGblJreDFWM1pTUzA1a01WaHFMME0yZEZKek5FMEtlRzR3U0VwUE56RXlkWHBQTkVFMlZubGhZMU5uV0VWamJIcGtTMVJEUlVwSWIydDZVek5GZFd0UFpHcFZabkF3TkhkcVdGWlFURFJuVmtGbWFVOUZWZ3BQYWtWU2FrY3haM2gzY21jdk5ESkxRVlpCZEhSd2FEUklZVk5EY20xU2MxSTRVRWROUVhsblVIVkpia2d5V21jeGJtb3pZbmx4Tm1SNFkwZFFNRW8yQ2tOV2FYbHBSVTFsVnpCdFRrTlhjbXRRTjFseWJYWlZUQW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MwRkpRa0ZCUzBOQlowVkJiakpsV205eFR5dHNTREFyTm01WlIxcE5SVFpwWW5aaFEyNTZNWFZSVEhsUVVHOTRTalYzWTBObFdFZHBibE52Q205RmFHTjFiMUZ0WVZJM1puRnBjMUYzVWsxcVFUVnVlbVpyUTNOSlVXRnJVVWh3TW04MWQyUnFTamhxUWtGS1N6ZzBXRFUxU1VaRU5HcDNVRlpaWXprS1VHcG1kRFJ1ZERaSGRFaGplakJ5VUZWalZsY3hXRXRRTkc1eFJWcEJMM0k1Vm1KcEswbFhWVU5TY1ZCdGF6RkhXVk5ZU1c1VWFqRnFUbWhRU1dsS2FBcEVUa1pwV21WVmF6VlRRMlpXWmxOR1MySXdZMUF2UmtoUWFHazNSamxTUTBrMVdFazVVRUUxTjFObVVXZFhTM1ZzZVdob1JGTlphVXR0YlZwVWMzbE9DbGtyTXpFMU1uRlRTRTR3UkM5dFJ6TjFhbFJOY0dKa1JrdEJZMlp3VTFreVdGSjBTMGxPV2tweGMzRnNja2xoWlRWU2N6UndLMWM1Ym04eUx6UlpjR2tLTkdGNFVUWTFjMWRyU0VsR1RXRllWV1ZQVWtkcmJHUTBXblp4UzFsMmJUbEpjRzVHTjB4UVYwc3lkUzgzYUhSSVNqbENaazlDWkZvMlFsTldXVmhFU1FwaGJEUnhiSEF3ZG14MVUyMVdUMjlTVm1wVVpGRnpOaTl1WTNkaGFrTjFNa1l4VGtSaE9HbzNaUzlTYUdsS05YbDRUMUppUjBWeFEweHlRa1pUWTNkdENucHFORkJ5Y1d0WGEwVnpUM0J0VTNaQlJtNWtXVUZVUzJOU1JGVTFhbXRFYzBsaVlXUnljbmRWVHpkalFVeFBkRFZsYm1WS2RtWkJZbFY0YVRjelNUQUtOMWROUTNsRVUwd3JlR3BQVFVodlJVRkRZazl3VDIxRkwxWkNZMlZYZVU5VE1GVmlUbkJ5Ykd0R05sWlpSVUpLUzA5WFNHNWpSbFpvTTBvemRVcHVNd3AyTlZRMFoxVjZVWEp5T1ZBd1UycGpkbWxaWW5SbWVVMVpTMHh2VVhWS1ptOURNRmRGZDI5cFltODVWbEpEZUc5NmNDOUJka3BrUzJVMlEzbGtVMVJSQ25kTmN6TlZja0paVjNkVU1rUkZLeTkwYVU5c2RrcEpjMjVITm1jelZuQkJPVmhVZFZWNVYzZFNkMGhuYmtOa2NqSmhibGxrV0hSTlVFTk5RMEYzUlVFS1FWRkxRMEZuUVZOa1oyTm1RazlQTDJkeWJsVnZXa3RtTDBwcWR6bHhZVXczUjJwM05HeDRNMjR5YjNRNGFrSXhTRkF4Wm1JMU9WQTBUa2ROWTBZeVlRcGpkemR2VVVaRFUyRTRjakJWWkVsWVdIaHZVVkZTY1c5MFVWbHJZMHRKYW1SU1MzcEdhV3ByUW5wSmJuVnhha2d2VEdsNE5sSlhOSEpRVjBvNE1EZDVDalpFWTNkamNrOU1MM1JVVG5BMVZIVllPRFJTV1VvMmRFeFZSR2RGTW1oUWJscHVaaTkxT0ZaMFZFTkZkRTlKVEZNNGJuVmFRbXBzVTFOTGFVNXRWMDRLWlRkbE5GWnlaRTVZUXpreldVWlJiRFYxZEZWSFUzTklkMEZOYTBOMVdrdG9kaTl2TTBOeWIwdHhPRU4yVGxoalNEVnhNM1UwZW5Oak9WTXdNVzE2VWdwc2RUaDBaVTVsTUZsM1ZVbGtRemcwVFZselEzSXlhRUZhUkdGNmEzUXlOVkF2Y25JdmFrNU5lVlpvU1dGYU1FdFVaRkphU2twUVRFZDNMMDFIV1hkR0NtTnZPRlJpZFdOeGExSldlbEZXYjJGWmR6SXZOVXhvTkRFeVNrdHNjalo2YTFoM1pITkZZa2x3YVhwRVVqWjBVVkJ0TUdwdmRYb3ZibWhCUkZkWk9ERUthRnBUV1RWUmIzTnVaSG8wVW1NckswdFlkMDlSVHpoelpYUk1jVzAxTTJweVpVWm9iMUF6VkVOdFpIbGtaRTFIU25wT1oya3lTM0ExV1dvMVNETkZNZ28wU25keVNXOTJXRkp5VFd4Q2FuWjFiMEoyTW5GTWVrTXlVVTFXYzA0M2RsRmtTMGRNYjJOTlVtVTFaRmszTVhsWlVsZFVWSE5yV2poVU5HZzFTbVp5Q2t0TGFVVkNZVVJ6VEVob1pXYzJXRzkyZEhGakswaE1Ra1V5TUhwelREUjRkVzl1V0VWM1VqVjBRekpPVldGTU5tSXJWVTh6VWtsVk1WTk5RMXBFV2xVS2FIbHJPVTl2VEN0c0swbFNWbXBxUlZFMFMyRlBZMDFHYTNnMllrZDZjMjFMVFdKR1VVaHNWaXRWVG1KRVJqTmpla2w2VXpObksyTlRNV3gyUm05VlRRcHZPVEZ6WmpSRk0yWkVRa1JEZUhvd1pERXdRV2hHZURsNFpqZFpMMHBEVjJ4cVpsVjZaVGg1UzBzcmNrbGFiREk0VVV0RFFWRkZRVEJhU0VVd1prMVFDbUpJYjNFNVluRjJTSFlyYkVsWVptWnFhVmhvWWtSS2JGaDBVeTlzYWt0cVJIazBSMFF4YVhOd1VtUmxVRWRKVkZWMkswdElkR3BRZVRsbWQxcFdPWFlLU1hGYVlYQTRSVWxOYVZCRU5rZDFiVlZMY2tGMWVrdFlTRTVZVlc5RE5uTnVNV1l4WmxoMFlXbFNWRk42U1ZWTmJsbEdNVnAwYjJ4ck56TjNPVXRoVndvNFR5OURWRU0wUjAxR1ZpdG9Oa2xPV1RkSmVUaHJNMHgxZVdsamFWWmxRelZLUVhKcU5XSjVPRTkyTjFwR1V6WllSMkZMTkZOWFpHeHhVREZWV1dJMUNrOXVlV3R2ZFRjNWIxWXZWMkpvWWk5cFpVeGpNME5yWm5WSFIwOUtWWGhIYUhBelRqaFVTQ3MwUm5WTmRUTXZRbUZMV2swMGJGZHpMMlJ5T0dwT1kxUUtTa3M0YnpoRU9ERldla3ROYVVob2QzVlpkRmQ2UW14MGVUbFNZMEk1UjBSMWVtUlpLMnN2VHpsSmVWbHdVMjVUUms5eVNWWTJPV1JVV2pSWVlsTlRjd3BGTUhCdGRrdEpVVm80UkVwTWQwdERRVkZGUVhkeWFXVmpkbE5vVTBwYVVUaE9jMmRXUm1kaVJqRjRUekJYYkhsd1oxcDVSbHBsUlVkMWEyWktaREZCQ2pWdFVsZFpOblE0ZEVOUVptRnNPVnBhWkVSRFQwSlNhMGR3ZGxveUswRXZSRzVJVlZOUldGbDFia1Z1T0ZWeGFHZFhjblZ3TmtWT1IwSTNTbU52YlVJS2IyNHlUbTltTkhOV1NYbGhXVVkxUzFRek5VNXdXbU50TUUxM1kzZGlRamhYTUc1cGVVVlJNVlExVkRCb2VIYzRaa2hGYmxOUVdGUjVRa2t5U0V3eFpBcHFTblpGZFZReU5XYzRUbHA0YVc0cldVdFZSVWt2WTAxelVUaHZWVE5WVWxjNGFHMDRkRWxxYlU4clFrVmhjM1VyV2sxR00xVk9NVXBKVEdwT2NWUnNDbU0wTjNoMVNIaE1lRUpzVWpVclozQjFPREl2V0dWVVIzRTRaSGs1YUd4aGJHVlZWbkZYTlU5eGRWRndPVzU1VmtGSWJXWkJha1YyTTFWNkt6TnRhSE1LV0VGRmNFVlJkR0ZrVnpWd00yZGhVMlpIWnpKQ1FVRkJVa013V1hOb01rbG9Sa3RJTVRKMVdGUlJTME5CVVVGcE1uVXJNVk0wZGtKTGQwTkRTbWsyUXdwS1ZuRTViV3RhWjFOblUxbEVhbTB4T0VGU09WbHhZV3RITmprclZtVXhRU3RCV1VGWVVDdENlVzFoWVdkemVuTjRiRzFDVVhOSmJFeFRNMlYzVFdkM0NreHhjV2wxVjFSTUwyUndXVk5ETTBJMlpqWllUbUYzV1ZKSVZHTkVaWGRqTmtreU1qTnNiMlY1UXpGVGEyVXlNa05PTVU5ck0xb3ZWa05GYjNOdE4zUUtSWGR6WTFjclQwZE9WbXR5TWpaNVN6QkdTbGwwVjJ4aWQyMDJPRlIzY2xFM2VUWTRibE55ZUhVd2VGWTNaaXR5TUd4Rk1qUm9RVXB1YW14NmNpOVJXQXBLZFRGMlIyWjNaVmgwUlVVdlVVZzViRXAzYW5Jckx6WTJOM2RaTlZsMlUyNVBaRzVPTDFKbVFqSnROa3Q1TWl0bGRrZFBTM2xrVURkeFNVMWplbUpZQ2pka2VGcDRhelZhVkdOa09UUnhlbFZRWkcxbmJ6QlJXbTE2WWpsVGRFUk5PRFpXWm5OMmFuZzJZWEYzYVhOWmJEVnhiRmQ1WTJGck0zSmlMMjlMVkVJS00wNXhXa0Z2U1VKQlJrNXpiMWxaUTNoUE4wTmFPVGh3U1c5eVFWUkxjMUJuZWpBMEwydFBabFV4Vm04eWRFcHJkV3hIVVc0elQxWXpWMVpMV0ZZd1dRcFhWMjVNWmtKUGFFRjJWR1l4TlhWSE1XbHVZbmN5WnlzMFNVdEJiazFCVlVwMFlUYzRUVWgyZGtaMldrcHFSVVpVTmpGbmRVVmxWRzU0UTJWUmQxQmxDbFZYTW10UFFsbHBkVTFYVUVseVVXMUlkRkJyT1hkS2RHWXhibkI2ZVZaUVdHZDRZM3B3Vmt0TVZtbFhObUZ6TkVWcVRIZzVjR2c1VkVOV1NrTnhaMjRLUlRsc1VYVkpiRlJoV21relExcHlOazFZTjBGRmVsaE9aMFF6WTFKcFFVcDZURko2VFU5alFWWkhlbVJ5T1hnMmNucHZSVWc0U1Vsd1ozTjVVbGwxTkFwb1ZucHJTRXN3TTJ0NGREVkljREJQUlVoVVltMHZTRWxsYVZacEszaFdRVTQzU2tFMFpESlpVR05ZUlhGUmMxcEtPRVJHTkVaaWVYTkdUamRHT0VKckNrVTNkSEFyVjNsUVoxVlVjR042VUVOV2JXaEtUM1Z1YlV0bmFtcE5ZV3REWjJkRlFrRkpaSEJrTTFWUUx6a3hSWHBXTUVoa1kyRTBabHBTVFVoQ2FtMEtZMEU0ZFUxNGVuTk9NRVpWV25WSmRubDVOMloyY1dwM1RWRTVWR0ZNTUVScVdrY3dkSGRwSzNsa1lWWkJPVEI0TkRoNkx6azFkelJSV0ZreGRVUXZZZ28wWkdkVE9FaHJOVVpGTlRoRU1pOVJVVTRyZGs5TE1YUkNRVzl5TVVaQ1RsZHFRa1JDUzFSbU9DdDViRXROTm1nM1FWb3ZOU3M1VTFWVGRFbGFlVlYyQ2pOV1QwSlVSM2R2SzJaM2RFWTRNRTUwZUZsclQwZHNRblZLV1VaMWJ6aDRkbGhTWTNsUFprcGpNRWxFZUhCM2FEWk1MMVoyVUhSeFZ6UlBWbFJwVjNVS2F6bDJiRWxuTHpOVFZIZE5SMmRVZEM5UVdVaEpibWQ2V1RWbGRHMWhRMDFMZFRCRVluWjFOWEJZVjA5SU1XMVNhakptV2tGNFprOW5iSFZ6U2s4eE1RcFFjQzgyUWxWek9GaHljMlZXV214MEswZFJkMVpzT1V0WlJYQnNjbk0wVm01dk0xTXdTSGsyUnpWNlNVOUtSM28xTkdOVlYwUlNia1ZKZHowS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiA1eWwwOXN4MGNnaXVzcHAyNHlnOXNvcTMzOHZrcDMzeHYzbnV5emllbHJ1azJqYzcweTFsMHVkc2s4NXF0bGczdzBvbWd6NHd5em8ydDF5Nmwwajh5eXk4ZzZmb3FmZGhtcTliZGxjYzg5MzV6MmRtYnB6bWZ3NHlvMHhpanpxNgo=\"\ - \n }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": + \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVZCdGQyRTVaSHBGVmpGR1YzbFpkazU1ZFVFdk56aDNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDA1cVNUVk5SR3Q2VG1wVmVsZG9aMUJOYWtFeFRYcEJNazFxYTNkUFZGRXlUbFJPWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNqSlhVekpQVmxseFQwdGpTMlJRTkZCMlQxZDRSVmhuT1RGQ1MwbENVekZSUTNoUmRqTk5NRGhHZHpSSk9FSkhWa3hvZUU1SFFqTkJZMWhPYVRGdlQxTUtkazVCUlRNdmJsb3Jiek5oY0hWb1RXSXJOamx2SzJWWmJYVjBMME5XYURORVFpdGtORk55Y0hrd1ZITnBhbUo1YVZaQ1ozbHdiR3N4VWpZMGJTOXNUUXBzZDJoSWJGRlFSVGMxVVd0UVZUZEdWMDh2VmxoYWVFMWlMM1JDYmt0R09IWkJWR2xPTjBKRlZWUkdSRTFoYWxOSWJrbElWVFk1U2xnelZHczJjV3BqQ21kaWFVTldXa0ZDTkRjMVUxbEhOMm94TlVocGIwbExabVkyWnpRek9ERldZbU56TVRreWEwSTVkVXA1Y0ZreGN6QjZMMFUzVEd0cmVUaGpUMnBDUTNFS1IxY3lNSGxIZFdvMVZHNVhXRVp0VDI5Qk0waFpkemhXY21oWU1uTTBibVJ6YVZkNmVrVmtWR00yYzNNeFIwZHBUazVLVVRCbmNWVlNPSHBYUTFCU1FRcHpWVEF4TVZwR05XUk9Ua0ZzV2xab1lVWllaMDB2WTNoVWVHcFRkbTVoYWpka1ltaHFia0k0VWtjMlIxcG5Uemw2YUM5T01HNVVWMmxTTVM5SVZGbEJDbUV4Tm1ZelRYY3hNRmt6UlZOUVNXaHdiVm92VW05TVZYUnlZMVZQVjIxb00wdFNiMFZ0UjBGMmMxbEpPR3BzTnpORFpGSnpRVUZqZVZsd1JqQTJkWFFLWlZwbVlVSlhlREZ4SzNsbVowVTFjMm9yTWxZNFpFTnZlV2hGZWpGcFpIbHViMVphUVdKaU1IRm9UeXR0UW05d1NtMXpSR2xHVVc5SmFIZGlRMlJZVXdwUVZGcGhOVXRrTldwalVUSmpUR2huVVhCTmFIcDJZakZ1YlVSUk1XOVJSR0psYVRGSVZGUnlja292VVhneGRtNWhlRXhPTHl0bGNrWmhabEJYVldrdkNreHljakY1YkdWRU1uSnhieloxTUU5SlFWSjJkRTV4TWtGb2NsZFBTRWR0VTA4eVVYTlJkVGxpTmpNek0zZzRhamxJYlRWT2FETjFlVlJhY1VSbk1GZ0tjVVp0VldaT1pUQk1lRUpCWmt4Wk5HeHJaVmw0U0RRNE1tbFdjUzl4YTA5aFYzTTJWbWN5VVU1T1kwTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1NGaGlXRFV5VkRGQ2NrNXRNV1p2Q2pKc1lrOHZjM0JNUm5aVEswMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlFUTTNhM2t6VEdaSlJrRlJRMDVwUzBSWlRWQnpibTUwTkZvS2EzbHdZa1p3UW1zMmJGRXJkbHBKTlRGa2RISlZWRU53UjAxTGJYSnZWR0oyU1ZjeE1sYzNZV2h0WTJRd1JsTnNOMGxYYTB4RE5VNU5WbHBOUXpKUlFRcDFlVU50YldwNlRtWlJXblp5UlRGVGNtaEpiRkZLWjBkMk5UQnZUa0pxTjBaU1dEZ3hZblZyYW1oMFJsRjNZa1pRWTNoM1dVcHphM2QwT0dadlkwRktDa2RyTUdkUU5uQTFhRlZOTWxGUldGZHdWR1ZwTTBwUlIyWlZjMnAzYjBOd1pYSkNPQ3RzTVVVMVN6bEVSMlV6Ynk5cFowVmpNVGgzYUVkT2IyMTZlbWNLZEVwSlVtcFZTVFpCYjA1aVJ5ODVkMjlVTTFaa2RGWlVPV1VyTm5aVFkyazNRM016UlZaa05FdDJkV1ZoUkhKblkyWkpTM1p1VldseFFVbFVlV3RUYkFwWlRUUjJXVk5hVVVFMVl6Sm1SazFpVGxwRlpYSXlOMVJFWjJoaGJtRnRORkp5ZERCVFdtTk5UR3R2V210UVp6QlpiVkpFV1Vwb1puZHViMWx0WVdRd0NrczVVRzgxVkc4clYzbzJVVEpHWW10d0szQXJOVFpNZFhCUWVWRllTRlZIU2s5UU1HbzVWRnB1UW5RMFJWZHVlWGxaYUdsUFYwcEVkbXhtY1VKdE1uUUtPRkpwYTJoVFVWWnllVk5XVW1sSmJEbEZNalZGZEhod1VsRmFlakJNUVc5UU9FZFpNVXhxVEdZcmNtcFNUWFpESzFWYWVFcDBjRkpMWTJaeldFVjRlZ28zYTBwRlpraFJhemw2YkdORWEwVTJiSEU0UWtOdmIzbDVNREZtVldZMGVrcENLekJhVUZFcllYWjRkbmhaWVhrMFJUZEZUSEpCWkROaFEwNXFiVVEzQ21adlZHSTJUSFkzUVZodWMxZDNSSHBSY2s1dFRVOVVSMFJJTDAxR1pETnlOMFoyVFhwa00weGlkV1ZoYUZsQlpsSXpUVEJPYUUxcmRFZHNWbWRST1VNS05qRldia055T1dWVmJFVjZOM1EwWnpWWlQzWTFURFp0UlRJMVdGTnNLMk51U3pCNE5IVTJPRFpFTW0xWEszRjFNV2xxYUdOb1YySjNjaTlpZDFoRVp3cFRlRUZ4ZUdWdVNGaGphR1JWWnpaYVZuYzlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzdGVzdC1jbGl0ZXN0ZWFkeGN4amd6LTc5YTczOS1jdGgwaTUzbC5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdHpqN2d1dwpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdHpqN2d1dwogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdGVhZHhjeGpnemlfY2xpYWtzdGVzdHpqN2d1dwogIG5hbWU6IGNsaWFrc3Rlc3R6ajdndXcKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0emo3Z3V3CmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdGVhZHhjeGpnemlfY2xpYWtzdGVzdHpqN2d1dwogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklWRU5EUVhkWFowRjNTVUpCWjBsUlF6QlFObTVMTVVwTE16bHpVR0kyUm1KeldtOTFha0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRnpSa0ZFUVU0S1RWRnpkME5SV1VSV1VWRkVSWGRLYWxsVVFXVkdkekI1VFhwQk1rMXFhM2RQVkUweVRsUk9ZVVozTUhsT1ZFRXlUV3ByZDA5VVVUSk9WRTVoVFVSQmVBcEdla0ZXUW1kT1ZrSkJiMVJFYms0MVl6TlNiR0pVY0hSWldFNHdXbGhLZWsxU1ZYZEZkMWxFVmxGUlJFVjNlSFJaV0U0d1dsaEthbUpIYkd4aWJsRjNDbWRuU1dsTlFUQkhRMU54UjFOSllqTkVVVVZDUVZGVlFVRTBTVU5FZDBGM1oyZEpTMEZ2U1VOQlVVUkdTVFJpV2sxeGN6Z3dLMUZRUkRoMWFrazFWQ3NLUVRWdU0wUmlXRkYwWVZKSmIwZ3lRa0pwWWt0ME5qRXpZMDV2U25KemRYRnNjSFV4VkVGTmJIVmtTSEJ1TDNKVWRuaFdSR1F6ZW5wYWMxVkVUbkpOV0FwQmVIY3lia3BVWjFCMGQxUnFTM2RrTHpWNmJsaGlaVE5aUkRGUVNXVTBha1UxVG5aSWFHTnNjbGd5VHk5S1FtWlJaVzVPT1RNMFJXdDRhVzVrVkVkeUNuSllTV0pOV2k5TVMzQXZlakUxZFRGd01YbHdZVTV5Y1ZaR2VIQXhLMEZ2V0hOSFowRnhWbUl6WkhkcGJqSmhUR3hhVjJkMVNVTk9kR2N3WmxSdlVtd0tSWGRVUWk5NVZuTjBWakJpTkM5dGRXNWpXbFJWWTNwaksxcHRWVXRDZERWU0wybDBTaTlWV0M5VEszWlZhVGRoYlhkTWJGUkZlU3MwV25OdlFYWnVXUXBxZERSNVNVWlFlaTltYjNGdmFsVmhTemQzVldWUU1UUldiVTFsVm5kUmRFbzFNbGRRY1ZsaVRVaGhjSFV3T1dwbVJ6VmpVbE14UkhGM1JVZG5VRFkyQ21GRGFEUk5jRFpEZWtkNFoxcE5NakZOZEdkVkswNXVXWGc0YW5kamJXRlNVRkZ5TVhrNE0wMUpXVEkyYzJFMGRFOHhWbm8wTlROTFJrSnRTbmRQV0ZvS1lraHdPVzVwT1hOS1RYTlJNVGhXUkhSSFR6aHRZMU0wWW5OeFdEVmlSMU41YzJkclEwWk9XSGw0ZFZjMFFtUnJUWFpJY0hOcE5EWk9Nemg0UTIxc1dBb3ZNVFp5VUZOaVZrRXlRMkZFVEhrMFUyOHpiamRrTkVjMldUTlVXRFY0ZUdGalNraHVZbU5pY0hORGJHdFlRMGxOTlRjNFVtNTBXWGxqWjJoc2N5OW9DbUZWVlN0UVRsWkVaakpWUmpSVWREWm5RVEoxVTFGT2VGUm1LMGxLYWtWMlpEUjVOWGhoZEVGVFJYRkJUbVZzVG5Sak1FeE1iVWxCYkZSc1kxSjJiakVLWVdnelFqY3diR2w1V0hoTmVVZHZNMEZhVUVsd1ZtcFBlWE54UjFkU1VWVlhMMUl5UVhVNE5ucHRWVGR1VVd3NWVrWnZOSEZyUlVWSU5HZ3hVWE5oU0FwdloyVlVRVmxqWkRkMFEza3ZZMlJwVVZSMlNGQlJTVVJCVVVGQ2J6RlpkMVpFUVU5Q1owNVdTRkU0UWtGbU9FVkNRVTFEUW1GQmQwVjNXVVJXVWpCc0NrSkJkM2REWjFsSlMzZFpRa0pSVlVoQmQwbDNSRUZaUkZaU01GUkJVVWd2UWtGSmQwRkVRV1pDWjA1V1NGTk5SVWRFUVZkblFsSXhNakVyWkdzNVVXRUtlbHAwV0RaT2NGZDZkamRMVTNoaU1IWnFRVTVDWjJ0eGFHdHBSemwzTUVKQlVYTkdRVUZQUTBGblJVRlVaMnhNTVRsbk1HcEpZWG94YUV0cU1YbDNVZ3BPZVVkSGJEQk9ZVVkwWVZCVmIxVjVlWGhCU2pVNVltMXBUek42ZVdKUlpVTmxkR2t2UzA5UWFETTBlRTQyT0VOa2VsQkRSREZRUlROS1YwVTRRVmROQ21kdWJ6RktTR3hSWlZOVGVreENibHAyYWpRdlRGVlFUbXBZYURkVlVrMVpiMmt3WkVnNE1ETnBZeXRRVGxKQmJDOVpaR2RPUTI1UU9WQlVRU3RtUW1RS2VrSjBSMHRZT0hKMWJVNTRXV2hYU25welRWQndZM2sxWmxaeVNEUnlORTF5U1dwcWVtWkJVR1ZJV1ZsV2JtWnRSVGxWTUZKUGNFNUxTbXBFVFRNemVBcFVkVEJMV0RGR1YxRlROMjk2Y0dvNFRIQktha28yUWs0MWVtc3hNa3RFWW1RNVRVVnRVV3hXVEhWVWFVbFNXWFkyVEdkUmRreGhOVXN5ZVhSVmFWWkJDa1J2VEZONVRFZ3dOMmhOTWxaek1VeG5TMkkzUVhoS1FXY3lWVTFsVGpKR1ZqVXljM1kyYkhKT05WRk9ZMll2VUU0eWFtRkRlVnB2WVV4MWJtODVRaThLVEN0WVZrOHlVMlpMZUVFeU5YQnVjVTlHWjFCUk5uWjBNMEpwWjNKeFdsUTVXRlp3UWpnd2ExbEVVRWhSZFhsU2MzWnJTQ3RNTkRKdWJHMWtlaXR3YWdwb1NHNUhLeXM0T0ZwTVRHbGtaVTFqUzNka1UyUk1WeTlXZG5aTVVHNWFiREl5V0djdlUzRnhOSGt5TW01T1YySm1TRUpGVkVaUVEza3hVelJWTDJ0RUNteFRhelZKVFhodVpUZHFTM2xKUkhKRGNrOTZialppYTI5SlN6QXdVMlp3V1RJdlVYVm9VVkZpU1dOTlFYTlpWbE5OT1ZKT1NVUXlUMWxMUWpGMlJYa0tSMFZuTUhOQ1NYRnpWbkJJUlVoVlJqZGpXalExYlROMVNFZFVZa0ZGTlZGWE1GQkJMMGN4UlVKd1dUZDRaWEpaVVdKQlEyVnRTVmRXY0UxdlRHVm9PUXBHWlRFMlVFNUpTVUZXYVhkQmFFTmxWbGhYZDNGdWRtRm9RMHhQTTFwRlpGWndUWFpxTUdoRVRUbEpZbWxyY2xkU01uZHphMlpLT0dsNlZEbEdjSEJ1Q2sxRFJVZERWREo2VFdWTlVuaHNlQzgzYlVOWWRWbEJQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MwRkpRa0ZCUzBOQlowVkJlRk5QUnpKVVMzSlFUbEJyUkhjdlRHOTVUMVV2WjA5YU9YY3lNVEJNVjJ0VFMwSTVaMUZaYlhseVpYUmtNMFJoQ2tOaE4weHhjR0ZpZEZWM1JFcGlibEkyV2k4Mk1EYzRWbEV6WkRnNE1tSkdRWHBoZWtaM1RXTk9jSGxWTkVRM1kwVTBlWE5JWml0ak5URXlNM1F5UVRrS1ZIbElkVWw0VDFSaWVEUllTbUV4T1dwMmVWRllNRWh3ZW1aa0swSktUVmx3TTFWNGNUWXhlVWQ2UjJaNWVYRm1PRGxsWW5SaFpHTnhWMnBoTm14U1l3cGhaR1puUzBZM1FtOUJTMnhYT1ROalNYQTViV2sxVjFadlRHbEJhbUpaVGtnd05rVmFVazFGZDJZNGJHSk1WbVJISzFBMWNuQXpSMVV4U0UwelVHMWFDbXhEWjJKbFZXWTBjbE5tTVVZdk1IWnlNVWwxTW5CelF6VlZlRTEyZFVkaVMwRk1OVEpKTjJWTmFVSlVPQzh6Tmt0eFNURkhhWFU0UmtocU9XVkdXbW9LU0d4alJVeFRaV1JzYWpadFIzcENNbkZpZEZCWk0zaDFXRVZWZEZFMmMwSkNiMFFyZFcxbmIyVkVTMlZuYzNoeldVZFVUblJVVEZsR1VHcGFNazFtU1FvNFNFcHRhMVF3U3psamRrNTZRMGRPZFhKSGRVeFVkRlpqSzA5a2VXaFJXbWxqUkd3eVYzZzJabG8wZG1KRFZFeEZUbVpHVVRkU2FuWktia1YxUnpkTENtd3JWM2hyYzNKSlNrRm9WRlk0YzJKc2RVRllXa1JNZURaaVNYVlBhbVF2VFZGd2NGWXZPV1Z4ZWpCdE1WRk9aMjFuZVRoMVJYRk9OU3N6WlVKMWJVNEtNREVyWTJOWGJrTlNOVEl6UnpaaVFYQmFSbmRwUkU5bEwwVmFOMWROYmtsSldtSlFORmRzUmxCcWVsWlJNemxzUW1WRk4yVnZRVTV5YTJ0RVkxVXpMd3BwUTFsNFRETmxUWFZqVjNKUlJXaExaMFJZY0ZSaVdFNURlVFZwUVVwVk5WaEZZalU1VjI5a2QyVTVTbGx6YkRoVVRXaHhUbmRIVkhsTFZsbDZjM0pMQ21oc2ExVkdSbll3WkdkTWRrOXpOV3hQTlRCS1ptTjRZVTlMY0VKQ1FpdEpaRlZNUjJnMlNVaHJkMGRJU0dVM1VYTjJNMGhaYTBVM2VIb3dRMEYzUlVFS1FWRkxRMEZuUVVneU1tRm5aVmhwUW5ORFFrTjVWM0JuVldsaE5rTlJTekUyWjBnMVJUUlJPSE5OYWxCMk5rMUZTMVpZYzJ0TU4yWTJLM1ZMU0ZBMlVBcDBlblpaTkZKTlVYTkxUMkZzVGpoUlJsVTRVbXhIVERsM1kzaGFaVzVLUW1GMlVUQkRPREZTY1dsWGFDOUlTVkZrY0dVdk5EQkpUMU5XWm05YVpuUlhDbFJ0YVRGM04yaG9XRzlsVTJoR2IwSk1ORUZEVW5GeFVUUm5ZbU40VFdweVpFbHlaREpvUlU0NGRWaDBNRFJJU2pkeVpuRTFkbTVZTjJoaGRFSlVia3NLVjNSRGExaExPVTVaWmxWQlZYcElibVZtVFVaemRDOU1RVFpKWWs1VGNsaFpTV1p3VlZWRmIzWXliRkZKUmtkeVQwaE9iSGw2ZW01MmMwWTFhaTlxUmdwVVpscHBkMjFEU1V0RmNHUjRRbVpXWXpkclRGVnZjVkZwWVROVWFEYzBjbGRWV2k5VWRuZE9ablpIUnpOWU9XUm5XVlEwY1hScVFXVk5PV1I2Vm5CdENtaHdRM2RRVEc4clFWa3dhMlJsTUdkSFJrYzFhRXhPUW5kNGNHb3lZVWc1TUU1TWJqUjFibE00TDJKNFlVOUxTVGx3VGxCUGMwMHJRVUpRVlRKa1dFVUtMMmRzVFU5cWRUTlJXa2N2ZFdaWGFuQkdZMVZCVm04cmNqQm9Uamx2U25STFIyTkRXVlJXTWtsc1lXdG1jM3BMYVhobWMwbFdiVUk0Ykdod1JXUkliUXB3WjNJcmNYbG1hV1F2U1VoNldVdFlUWFpQZURCQ1psazBXRnBCZWt0SUwxUTNUR2RNSzI0M1Mza3dUSFExVERkdFNIaDFXRTF6VVdGMWQxRk5SRmhCQ2pWMk9XRmhMMGgzUVhCVmEwTnJObFpUV21vdldVUmxUamR5WkZwMVVUQlFPR28yZVc5cFJsaFRhbGgxVkdReWQwWllXa05JTW1wdWJFNXhjRmhEYnpVS05uaENhWGxUU0VFMlVYY3dkMmczUlZoT2RHdGhRak5rYUU1WWMyOVZkbXBJUlhKc0t6aE1WRFJFYUc5YVJXbEpRWEpHTVVWMWQwTkZla3d6WVM5c1FRcDVjVVZTVEZWaE1sRnZTM3B2ZW1wa2IwUldVV2RGYW1oalNESnRVemxpWWtnek5FOTZaWGxNUkc1cWJIcDNXVE56VVV0RFFWRkZRVFZIZWxSWFR6SlFDbGxOYlU1amEyeG1TRXRYUldjNGNFeHVhRkYzVEdJMU9FUnVRbE55TWtJd1JtNHhOV2gzWjA5NE1GcG1lSGxsVjNwVFJDOWxMMlZNTnpJMldFa3JVM0FLUVdGWVZXaFJZak5QY21aWWIyOVZkVVJGWjFGTU5rZExNbkprZGpsb1VucHBVakEyVjNaQ1FURXhXVTV5YTNaM1JVRmFWbUp0VG04eEwxTklkakV2UVFwMVNUWmhNRFpLVjBkaFdrbFNja1JEVEVwRWEyRkpaMDl4WjBZNU9VaHhVeTlLVEhGbVkyazFjRVEwVjAxdE55ODBiRGRQVG5sM1JVaGtRbFZTUlRoMkNtSmFRVlJSYUdZM1EyZzJNRXRpUW5RdmNFZExTRVZhYkU4elNWWTFkVkIxVDI1a2FubE1SRWcyT0ZkbFdHSnpkVXd6TURGUk4xZGpjMDg1T1dGeEt6QUtVMHR0WW5sUVdrWmxhMDl6T0ZGeFVYVkpVMGxvVlhOQ2RsTXpkV3RDUjJwdmNXeEhObUpZWVZkcVZtZFhXakYwTjNSaVRYbEdVVk5LUVRSVVp6TlhNUXBsY1ZOTk9YQmFSMkprWkZwWGQwdERRVkZGUVROUEwxZDNWa0ozYzJGVFdqZFVkMUpIZFdoS2VVTldWVWhWSzBnMFlUaE5XazVqWjAxS1lYUnFXalJIQ205Sk1uWnBVbWhWYlcwMVZGbGpNRVpQUW1VNGFsSlVla2w2TlZkSlZFNXdNR0V2YjFoV1IxbEpNRFpFYlVoT1VGSmlWMGhKV2tGU2VHZGxUR05zYzJRS1lYcHlSSFoyVDJKTVdYaGlNRkVyZVZWVWNXcE9WVVEyT0dZclRFMXlSMDFRYVRKNmNrbFpWMlpuUzIxUVJVdFpObWhvYTNKeVUwZHFTbVU1VWtSaVFRcG5ObkJNVTBOdGNGTXpOVlp3WjNaUVlsUjRVek5qTkhwWFdERmxSbFo2V1ZwcGVESXllRkp5TlZoalpTdDZlWGg2TmpCR09FaDBSVE4yU0daRFpHNHpDbk5XVG14aFoySkxTMEp0VVd4V1l6bEhRbXcwYW1kSFNrY3hXbkp0UzJocVJUSjBRMDlIZUU5WGJVdHRkRlZGZDJWcmVVdFROV28yVlRkYWJqVmFTVTRLY1RocGJHNUJjbXBNT0M5U1QzbFRMMlZXZHpkVmVVVjVRaTlNS3k4eWFsSmpaRk5RWlM5amRGSjNTME5CVVVKc01qaEdRek50ZDFwR1RXUnRUbmxIWVFwbVNsSnBNRVZ3TXpaNmFYZHlWV2hWYUM5SVdFVnZUM2h2TjBsV1lrcHdjV05uT0hwc05IVXZXRkFyVVVsQmNtVmpZMjlxZWpCemRESlBlWHBvVXl0d0Ntd3lSVzl5TkhGb1NESkdXVmhCYVRORWVWWXhOMmhwTTBFM2JVbzBObWxIV0ZoRmMxUXJRakI0VGpWRWJ6QkRWbFJCTVdOWlV6VnVTR1pCWTJaNk9ERUtiMDVwU2pkVVoyODVNVTVwTmxscVoyUnNibU5OZFhodmFFaHlZMHhETTJJNU0wOWxaV0pFVWtkTlYwMUNTM2w0VUhKNlZUSlNjV3hIUzBnNWVuZFBOZ3AwTkZwUVRVMVdZbmg2Y0RJNFZUQnBMMUJUV0ZOUWVIRlNaVXhTUlRCUFV6a3dVblpPTlVOWmVrcFNOelZRYUVOVVoyb3pSV1pMY1d4RVpFeHVZMWhPQ21nelFVODNSVGh6WlVzd1NVRjZTamRWV1dkWU5XdFhOWFY0U2sxR1ZFOVNSbXQzYjNGbVRHcHNhRlZ5U0RWSldGVmpLMUo0TWs1MGJGRk1iVEJ2ZDBZS1dIZHZVa0Z2U1VKQlFWbEZabXQyY201bVdXOXliM2xaYlhweGNGbDNSVkpwZWxneFMxcFdURU5GU21reldubFdUR2R5ZVZvcmJrNXJhRGxuZVRCVlpBcG9hVmhsZVV0eFltTjFXa0V3VGtvdk5ubGhhVmRPY0N0UFVYbzFiMUJSZEU5cldsaDBZWGRJV1hKUVYxVmlWMk5HVURnM1dHaFVRMnd2ZUVka1JUWk5DbE5TTDNKc2IySkNNbmh2YWs0dlMwcGlSV2R2VERsTGRIVm1kMVE1ZERka2QxcDBXV3RSVDI1UlJ6ZEdkV1pvZDFaYVdtSkRNbXhMY0ZKNFJrUnFhR2dLU3pSSlNGSnNTVXRXTlU0d0x6QTRUSEpDYkZjeWQyOUdXV2RPWW1wbmFrVTRkRWxUSzBORVdUZEtWamxPWjFsQlptNTFkRTVUVEdWVE5TOVZjVmxNYndwR01XdEtPVVE0U1hsd1JFeHNLMnh1ZEVONVNGRmFUMUV3TUM5dlJ6QlpORGcyVG5sTlFtcFZjSFIxYVZGblkzWnhObkpGUkVveFIweE5VMUZSTVc1V0NrSnFWR1pNYkhadE1rUk1UMkkyWkhCNFpXODRPVFU1Y2tVM1JtcHlVbU5EWjJkRlFrRktNRVpMYlUxaldFRnVlRTlhYVV0NGJrcFBhemhLYlRGc1FsUUtUMWMyTkdWeU9HRXlabFZrU3poNmNVVktlVzk0VjNWWGNGWmxTQzl3VFU0cmQxQjNMMnMwYjNORmVXY3ZXazB3YUc5RmJ6bGxPWEJIYUdwM1JDOVFUUXBSTW5wSlpsTnhaMDlFZUZscWRsRndibHBUU0dGa2RrMWtWVXc0YWpWdVJucG9OR3d5U0hGWVpscHhlak5sTVhaUlJ6RmpTVFZPUlRCcUwzQmpZMnBqQ2xsSWFsSjVZbEZzUldGMWIzTm5aM2xTUTAxaU1WUnFhak4zTkc1d1owaE5NRUYyU3psbmJrVkNWak55UkVFMGFrNDFiV3R2WkZwak1WZDFNRVUzVFd3S1IyVTRSMFJFTmt4M1RYTkdPRGQ0VVM5S2RISmlXU3NyYWtoUk5sTk5lbWxOTHpFM1NVbHpPR2t5T1hwbU1rSkJVVEpaUWtwaVVWVmhTSFZTYTB4T2J3cEpVVkJCVVdKMlJWZHBVMk15YzBkM1ZuUTRWR3MwUjNneEszWmFTbmN6TVVwUFF6TldOVU5ISzNSUmRFWnlNbmxKVlUxRVpGQldUbWRXYnowS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiB6M2hucnZ3bGd6czdwajduazM0aDExdjgyOGFyOG8ybGN6dmQ4NDE0amlmenJjdm1xYXJ5NXdwY2FndTJxbzdjZDZsZmhqb3JiencydDJrM21oejF4bjgwZm91ZDI1ZWxqbGczZnBsNWIzOHNieHo0dW9oZnAwcXE2am9oOHE3MQo=\"\n + \ }\n ]\n }" headers: cache-control: - no-cache @@ -900,7 +975,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 22:40:41 GMT + - Thu, 29 Jun 2023 09:50:40 GMT expires: - '-1' pragma: @@ -936,15 +1011,15 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/cliakstest000003/listClusterUserCredential?api-version=2023-05-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ - \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVV4RWVGWldUbGwyYWtKVEwwRnZiVFZ2UzA1bk0yZDNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDA1cVJUQk5ha1Y1VFhwQk1GZG9aMUJOYWtFeFRYcEJNazFVVVhsTlZFMTZUVVJTWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNtOUpUR1Y2ZEd4c2R6RnlTVWRrU0RKdmQxTnZOR1JoUjA5a1pXbE9lVXRNUVRCbldVY3hjSGhMTnpkcWJGWTJWSHBaUzBsT1QyVkxaM040WkdWbFRFd0tlVU5uUjFwMFJTdFpLemx4UWtacEsydG1WVWRUTUVVeVRXbzJkMVphTWpGRFRUUjFObFJMTlRSUmFXOWhPSFJsUWpCQ1VXUnVjRVU1Y2xwUU9UWldjd3AwZG1aR1ZHOWhaak5FZDBZclFVb3pRblEwV1RkVE5tZFphR1E0TjFOMVZYWjBlUzl1WkU5cVVHZzRhbWxQTUVjekt6bEtSWEp2WWxGamVGaHJiMnR1Q20wclZXbHRlamxOYzJnME1sSnZWbVUxYmpkNlNXVXJjRmRXY1dKWWNqQjVTVzVLYld4Q2RITnFOVzVvZDBSSmVWbFdla1JLY0UxS1VqVklVbmhUUzBRS1JWYzJMMlZtWjNWSWVXdDRURkUyUzJka1ZGZHZiVzlsUTJoTFFWSklXRlFyY0ZOUE5ucGlMMGR4UzJSVWNYcEpiMGg1V2s5SmVYSk1OMjgyVVVneVN3cG9WbEZQYjAxRGR6WllXaTlRVDFsTGFURk5lRlozY1ZsUVJsbEVaR1ZYWkZwSU0yWk9ZVlZzVm1OUFdrazJhV1EyWm5wNlRHTjBNbVJhV2pCb09WVnBDamhRTlZoWmIxcEtWV0ZQY1doTFRIVk1jMlZGZURCa1JURmpRa3hvTlhodE5WaEJObXMwWXpGMk9WRkZlRUZYVjJSaVFUUkdibkpYY3pSdVl6bDFUakFLZUVKaGF6UlRSekJKUzJsTU5USkhjMnMwTmxjNFdXRTBjM05KS3pGTk5UUlhXbGxCYnpnNGVFcFdibGx5Y25wR2JFODVjM2t2T1ZnMWIwVkliMHgyT1FwVlRUaGhSM1ZwT0hSRE1tRkVTWGRhVVV4WFJuYzFTWGhaWkZaWU0ycE5RWE5YZFdwWUswRklaR3BsVDFCVmVtUlBPRFJCVVVKWk1YVnZZa3ROYkVSVUNraDFlbkpxV0dsWVZGQmtVbEZZY1dKVlV5dFhhM1o2YjFwT1dUUm5jVGwzVlZJdlkydHhSakowY1RWUmRsUkdNME41WjBab2VqWnRkeTl6TkZSRGNFa0tORlJIUzNCWFpXOUtTUzlMVW14eFJGcElhRkF3VlcweFprVmpkV0Z6VkhGaVpWaHplR2RGZWxOalJVTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1NUWndlVFpYUkc1VE5rRXZlVzR2Q214bGVrMWllaXRtTmtNMFMwMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlFVbDJlVGM0UVV4MlZFaHViVmMzV1c0eE55czBVbVpITlRZS2VUWTRNbFl3Ykd4U01taHVaMjUyYmtOTk16UmlLekJTUTNwWVkxSXpjM0F3YnpoM1QwcDVVVFpoVkROVmVtWXJNRWc1Tm05elJGSmpUall6VFRRMlZ3cDRSSEpEZDJKNk5HTllWWFExVFU5WVQyOTBORTk1U0dWRlRFeExWM1JoWldablowRjFibGt6ZEd3M1F6RkdWRzFsYzJ0TFVURlBTRTVETmpKelFsbDNDbTlqYVU1cVRTOVZlWEIyZDBaSmVrUTBWRkJQTkU5c2JqRlFOR1p6ZG1kME5GYzRiVVZTWlVoeVdGUlBSWEl4V0ZoWGJqVjBhMlZMTkdwRGQxcEdWa0lLUm5oNFVqUlBTM1UwUlZOcWIyVnNWRGcwTVZjNFJGaEdZakJEVVc0d2RFVmplRmRhZFZsMFdsVkZMMk13Wm1abVVtTXZjVWQ2Um14WGNFdG5aMGxEVmdwdGNFRlNVWFpvV1ZBMmVYRnhlak12UW04MEsxWmxLemx1Ym05TGFEWTNaVlppSzNoVlMyWTRWemN4VFVRMVVtWlpkMmhNZGk4NU1WZE5ZVkF6WTFwdUNuTmtaekY2YWtaYVRDdHlTSFpUVUZOUk1UQmFaSE1yYlVvNEswbHVTVFk0UlV4c1EzWlllRmRvUmpNMU9XTlVlbVZJYzJGUmRsbGtjM1J1VjJwbGRtNEtORkZsV25ONmJIZEdXQ3QyVGpRNVpuZ3ljRmgyV0hkeGRtcHRRWGhoTjBGTlZ6aHZSMUJQZEhkV1JESmlhMWxQWTNWbFZtbHJWM0Y1UmxkMVJYRjFUd293Ukc1T1EzcFZUMEZ2YjNBelpqQnVZazlPU0ZGUWJqZFBUM0J1YUZwak55OUxkamhYTW5sMlNqUjRRMjh4ZUhWUVdUTmhVVkJvTkc5MGMwVk9OV1J0Q25sd2JuTXJjR2xTY0ZkM2FWWkpXVlpwUldOWFJVcEZkV1ZUWWpocVVIZG5Lekl5YW5KcFRqSXdTWEYxU2xweGNFOTNOWGswVkhaU09IaFRNR1oyTVVRS2NqQm9NR1JRWVVoUVJuVk9XbXBTY1RWWFpVNVhUbTFPYUZCcVFsUkViVmRTZEc1aVJtWjZUSEF6UVd4dlQwOWpiR2xrYVc5QlVrcHljVlpXUW5KUFFRb3plVFZNTmsxVlpIaElZVEEzYlZKUWFuYzlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzdGVzdC1jbGl0ZXN0eXpyamR2ZHZyLThlY2FkZi1nOHZzbmttYS5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdHd3YTJrMwpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdHd3YTJrMwogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdHl6cmpkdmR2cmVfY2xpYWtzdGVzdHd3YTJrMwogIG5hbWU6IGNsaWFrc3Rlc3R3d2EyazMKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0d3dhMmszCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdHl6cmpkdmR2cmVfY2xpYWtzdGVzdHd3YTJrMwogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklha05EUVhkaFowRjNTVUpCWjBsU1FVODNaMlJrYkhwdWRXdE1jV0psTnpKWFZteGFiRUYzUkZGWlNrdHZXa2xvZG1OT1FWRkZURUpSUVhjS1JGUkZURTFCYTBkQk1WVkZRWGhOUTFreVJYZElhR05PVFdwTmQwNXFSVEJOYWtWNVRYcEJNRmRvWTA1TmFsVjNUbXBGTUUxcVJYcE5la0V3VjJwQmR3cE5VbU4zUmxGWlJGWlJVVXRGZHpWNlpWaE9NRnBYTURaaVYwWjZaRWRXZVdONlJWWk5RazFIUVRGVlJVRjRUVTFpVjBaNlpFZFdlVmt5ZUhCYVZ6VXdDazFKU1VOSmFrRk9RbWRyY1docmFVYzVkekJDUVZGRlJrRkJUME5CWnpoQlRVbEpRME5uUzBOQlowVkJiakpsV205eFR5dHNTREFyTm01WlIxcE5SVFlLYVdKMllVTnVlakYxVVV4NVVGQnZlRW8xZDJORFpWaEhhVzVUYjI5RmFHTjFiMUZ0WVZJM1puRnBjMUYzVWsxcVFUVnVlbVpyUTNOSlVXRnJVVWh3TWdwdk5YZGtha280YWtKQlNrczRORmcxTlVsR1JEUnFkMUJXV1dNNVVHcG1kRFJ1ZERaSGRFaGplakJ5VUZWalZsY3hXRXRRTkc1eFJWcEJMM0k1Vm1KcENpdEpWMVZEVW5GUWJXc3hSMWxUV0VsdVZHb3hhazVvVUVscFNtaEVUa1pwV21WVmF6VlRRMlpXWmxOR1MySXdZMUF2UmtoUWFHazNSamxTUTBrMVdFa0tPVkJCTlRkVFpsRm5WMHQxYkhsb2FFUlRXV2xMYlcxYVZITjVUbGtyTXpFMU1uRlRTRTR3UkM5dFJ6TjFhbFJOY0dKa1JrdEJZMlp3VTFreVdGSjBTd3BKVGxwS2NYTnhiSEpKWVdVMVVuTTBjQ3RYT1c1dk1pODBXWEJwTkdGNFVUWTFjMWRyU0VsR1RXRllWV1ZQVWtkcmJHUTBXblp4UzFsMmJUbEpjRzVHQ2pkTVVGZExNblV2TjJoMFNFbzVRbVpQUW1SYU5rSlRWbGxZUkVsaGJEUnhiSEF3ZG14MVUyMVdUMjlTVm1wVVpGRnpOaTl1WTNkaGFrTjFNa1l4VGtRS1lUaHFOMlV2VW1ocFNqVjVlRTlTWWtkRmNVTk1ja0pHVTJOM2JYcHFORkJ5Y1d0WGEwVnpUM0J0VTNaQlJtNWtXVUZVUzJOU1JGVTFhbXRFYzBsaVlRcGtjbkozVlU4M1kwRk1UM1ExWlc1bFNuWm1RV0pWZUdrM00wa3dOMWROUTNsRVUwd3JlR3BQVFVodlJVRkRZazl3VDIxRkwxWkNZMlZYZVU5VE1GVmlDazV3Y214clJqWldXVVZDU2t0UFYwaHVZMFpXYUROS00zVktiak4yTlZRMFoxVjZVWEp5T1ZBd1UycGpkbWxaWW5SbWVVMVpTMHh2VVhWS1ptOURNRmNLUlhkdmFXSnZPVlpTUTNodmVuQXZRWFpLWkV0bE5rTjVaRk5VVVhkTmN6TlZja0paVjNkVU1rUkZLeTkwYVU5c2RrcEpjMjVITm1jelZuQkJPVmhVZFFwVmVWZDNVbmRJWjI1RFpISXlZVzVaWkZoMFRWQkRUVU5CZDBWQlFXRk9WMDFHVVhkRVoxbEVWbEl3VUVGUlNDOUNRVkZFUVdkWFowMUNUVWRCTVZWa0NrcFJVVTFOUVc5SFEwTnpSMEZSVlVaQ2QwMURUVUYzUjBFeFZXUkZkMFZDTDNkUlEwMUJRWGRJZDFsRVZsSXdha0pDWjNkR2IwRlZhbkZ1VEhCWlQyUUtURzlFTDB0bUsxWTNUWGgyVURVdmIweG5iM2RFVVZsS1MyOWFTV2gyWTA1QlVVVk1RbEZCUkdkblNVSkJTakI2YlUxb1ExcEVURmR0Y0ZFNVExVlllQXBJTm5KaU4xTk9UVWc0ZDNnMWRWSlFWVXAxVkVveE9YUlNSekZHUnpoaVZEbEpkaTgzTkZjMVJURlVWRkUwYldvdlFYcElUemszYjFGa0wxaHFSeXRKQ2xWV1NuSlNaVmMxY1dGdloyeE1VVUpxYzBFd1QzRk9XVE40UTAxeVRrRmFhbWhRWm5KQmVVNXpVa05XZVVoc1RYVkNSWGhKVjJwbmVWVXdiV0U0UTNFS0wzUjRNVWhYZVZJM1EwRmtXWHBoT1RoRVptUTNWVzFGUjNKdE9XdzRLMHhPV0ZWRVRXdEtkbEI1UW1zcmQwaE9RVWhSVDFveGJWRklVbGR3ZEU5a1p3cElVRTloYkVGallXTm9NRTVJZUhCV2MxUjNUbHA1TW5NNUwxZzRRWEJTTTFWMlFuWjZLM0JFZEhaVU1FTkphbFZOTkRCeVpGZHdWWFZwVld4WlUwdFFDazhyZDJOMWVuaERORXhGUlZkVk1XYzRZV2d5TUZSMmQydGlPRFl5SzNaT2FGQjRiMFpXUVRSQ2JrTndRMmM0U0VkWGRIRXhWVXROYVV0SFNYUlhjRWdLWlROM1kwdFNUR3RDWnpSMU1sY3daV3RzWkVkS2F6azBiWFJ3VDJkUE9ISTFSVlU1Tm5KMlNGZEZTMkZ2ZUVKTk5FMWxXV2h3TWxoSE1Vd3pVR1ExY1FwUU5tUjRkRXBEZGpCS1VHMUxNemRzU0N0U1QwTk1TVFUxV0U1V1QycE9iSGh4YldVeWFsUXlTbWxWUldoaGNpOW1NRVJITVhwMFMyMHpUVEpZYjJjckNuWXdabXh1TjNOTlNuSndjM0Z1Wms1dlVsQkxUVVV4VmxGdGNYaHpaM3BETkhkVWIzVlphR0ZDT1VGblJreDFWM1pTUzA1a01WaHFMME0yZEZKek5FMEtlRzR3U0VwUE56RXlkWHBQTkVFMlZubGhZMU5uV0VWamJIcGtTMVJEUlVwSWIydDZVek5GZFd0UFpHcFZabkF3TkhkcVdGWlFURFJuVmtGbWFVOUZWZ3BQYWtWU2FrY3haM2gzY21jdk5ESkxRVlpCZEhSd2FEUklZVk5EY20xU2MxSTRVRWROUVhsblVIVkpia2d5V21jeGJtb3pZbmx4Tm1SNFkwZFFNRW8yQ2tOV2FYbHBSVTFsVnpCdFRrTlhjbXRRTjFseWJYWlZUQW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MwRkpRa0ZCUzBOQlowVkJiakpsV205eFR5dHNTREFyTm01WlIxcE5SVFpwWW5aaFEyNTZNWFZSVEhsUVVHOTRTalYzWTBObFdFZHBibE52Q205RmFHTjFiMUZ0WVZJM1puRnBjMUYzVWsxcVFUVnVlbVpyUTNOSlVXRnJVVWh3TW04MWQyUnFTamhxUWtGS1N6ZzBXRFUxU1VaRU5HcDNVRlpaWXprS1VHcG1kRFJ1ZERaSGRFaGplakJ5VUZWalZsY3hXRXRRTkc1eFJWcEJMM0k1Vm1KcEswbFhWVU5TY1ZCdGF6RkhXVk5ZU1c1VWFqRnFUbWhRU1dsS2FBcEVUa1pwV21WVmF6VlRRMlpXWmxOR1MySXdZMUF2UmtoUWFHazNSamxTUTBrMVdFazVVRUUxTjFObVVXZFhTM1ZzZVdob1JGTlphVXR0YlZwVWMzbE9DbGtyTXpFMU1uRlRTRTR3UkM5dFJ6TjFhbFJOY0dKa1JrdEJZMlp3VTFreVdGSjBTMGxPV2tweGMzRnNja2xoWlRWU2N6UndLMWM1Ym04eUx6UlpjR2tLTkdGNFVUWTFjMWRyU0VsR1RXRllWV1ZQVWtkcmJHUTBXblp4UzFsMmJUbEpjRzVHTjB4UVYwc3lkUzgzYUhSSVNqbENaazlDWkZvMlFsTldXVmhFU1FwaGJEUnhiSEF3ZG14MVUyMVdUMjlTVm1wVVpGRnpOaTl1WTNkaGFrTjFNa1l4VGtSaE9HbzNaUzlTYUdsS05YbDRUMUppUjBWeFEweHlRa1pUWTNkdENucHFORkJ5Y1d0WGEwVnpUM0J0VTNaQlJtNWtXVUZVUzJOU1JGVTFhbXRFYzBsaVlXUnljbmRWVHpkalFVeFBkRFZsYm1WS2RtWkJZbFY0YVRjelNUQUtOMWROUTNsRVUwd3JlR3BQVFVodlJVRkRZazl3VDIxRkwxWkNZMlZYZVU5VE1GVmlUbkJ5Ykd0R05sWlpSVUpLUzA5WFNHNWpSbFpvTTBvemRVcHVNd3AyTlZRMFoxVjZVWEp5T1ZBd1UycGpkbWxaWW5SbWVVMVpTMHh2VVhWS1ptOURNRmRGZDI5cFltODVWbEpEZUc5NmNDOUJka3BrUzJVMlEzbGtVMVJSQ25kTmN6TlZja0paVjNkVU1rUkZLeTkwYVU5c2RrcEpjMjVITm1jelZuQkJPVmhVZFZWNVYzZFNkMGhuYmtOa2NqSmhibGxrV0hSTlVFTk5RMEYzUlVFS1FWRkxRMEZuUVZOa1oyTm1RazlQTDJkeWJsVnZXa3RtTDBwcWR6bHhZVXczUjJwM05HeDRNMjR5YjNRNGFrSXhTRkF4Wm1JMU9WQTBUa2ROWTBZeVlRcGpkemR2VVVaRFUyRTRjakJWWkVsWVdIaHZVVkZTY1c5MFVWbHJZMHRKYW1SU1MzcEdhV3ByUW5wSmJuVnhha2d2VEdsNE5sSlhOSEpRVjBvNE1EZDVDalpFWTNkamNrOU1MM1JVVG5BMVZIVllPRFJTV1VvMmRFeFZSR2RGTW1oUWJscHVaaTkxT0ZaMFZFTkZkRTlKVEZNNGJuVmFRbXBzVTFOTGFVNXRWMDRLWlRkbE5GWnlaRTVZUXpreldVWlJiRFYxZEZWSFUzTklkMEZOYTBOMVdrdG9kaTl2TTBOeWIwdHhPRU4yVGxoalNEVnhNM1UwZW5Oak9WTXdNVzE2VWdwc2RUaDBaVTVsTUZsM1ZVbGtRemcwVFZselEzSXlhRUZhUkdGNmEzUXlOVkF2Y25JdmFrNU5lVlpvU1dGYU1FdFVaRkphU2twUVRFZDNMMDFIV1hkR0NtTnZPRlJpZFdOeGExSldlbEZXYjJGWmR6SXZOVXhvTkRFeVNrdHNjalo2YTFoM1pITkZZa2x3YVhwRVVqWjBVVkJ0TUdwdmRYb3ZibWhCUkZkWk9ERUthRnBUV1RWUmIzTnVaSG8wVW1NckswdFlkMDlSVHpoelpYUk1jVzAxTTJweVpVWm9iMUF6VkVOdFpIbGtaRTFIU25wT1oya3lTM0ExV1dvMVNETkZNZ28wU25keVNXOTJXRkp5VFd4Q2FuWjFiMEoyTW5GTWVrTXlVVTFXYzA0M2RsRmtTMGRNYjJOTlVtVTFaRmszTVhsWlVsZFVWSE5yV2poVU5HZzFTbVp5Q2t0TGFVVkNZVVJ6VEVob1pXYzJXRzkyZEhGakswaE1Ra1V5TUhwelREUjRkVzl1V0VWM1VqVjBRekpPVldGTU5tSXJWVTh6VWtsVk1WTk5RMXBFV2xVS2FIbHJPVTl2VEN0c0swbFNWbXBxUlZFMFMyRlBZMDFHYTNnMllrZDZjMjFMVFdKR1VVaHNWaXRWVG1KRVJqTmpla2w2VXpObksyTlRNV3gyUm05VlRRcHZPVEZ6WmpSRk0yWkVRa1JEZUhvd1pERXdRV2hHZURsNFpqZFpMMHBEVjJ4cVpsVjZaVGg1UzBzcmNrbGFiREk0VVV0RFFWRkZRVEJhU0VVd1prMVFDbUpJYjNFNVluRjJTSFlyYkVsWVptWnFhVmhvWWtSS2JGaDBVeTlzYWt0cVJIazBSMFF4YVhOd1VtUmxVRWRKVkZWMkswdElkR3BRZVRsbWQxcFdPWFlLU1hGYVlYQTRSVWxOYVZCRU5rZDFiVlZMY2tGMWVrdFlTRTVZVlc5RE5uTnVNV1l4WmxoMFlXbFNWRk42U1ZWTmJsbEdNVnAwYjJ4ck56TjNPVXRoVndvNFR5OURWRU0wUjAxR1ZpdG9Oa2xPV1RkSmVUaHJNMHgxZVdsamFWWmxRelZLUVhKcU5XSjVPRTkyTjFwR1V6WllSMkZMTkZOWFpHeHhVREZWV1dJMUNrOXVlV3R2ZFRjNWIxWXZWMkpvWWk5cFpVeGpNME5yWm5WSFIwOUtWWGhIYUhBelRqaFVTQ3MwUm5WTmRUTXZRbUZMV2swMGJGZHpMMlJ5T0dwT1kxUUtTa3M0YnpoRU9ERldla3ROYVVob2QzVlpkRmQ2UW14MGVUbFNZMEk1UjBSMWVtUlpLMnN2VHpsSmVWbHdVMjVUUms5eVNWWTJPV1JVV2pSWVlsTlRjd3BGTUhCdGRrdEpVVm80UkVwTWQwdERRVkZGUVhkeWFXVmpkbE5vVTBwYVVUaE9jMmRXUm1kaVJqRjRUekJYYkhsd1oxcDVSbHBsUlVkMWEyWktaREZCQ2pWdFVsZFpOblE0ZEVOUVptRnNPVnBhWkVSRFQwSlNhMGR3ZGxveUswRXZSRzVJVlZOUldGbDFia1Z1T0ZWeGFHZFhjblZ3TmtWT1IwSTNTbU52YlVJS2IyNHlUbTltTkhOV1NYbGhXVVkxUzFRek5VNXdXbU50TUUxM1kzZGlRamhYTUc1cGVVVlJNVlExVkRCb2VIYzRaa2hGYmxOUVdGUjVRa2t5U0V3eFpBcHFTblpGZFZReU5XYzRUbHA0YVc0cldVdFZSVWt2WTAxelVUaHZWVE5WVWxjNGFHMDRkRWxxYlU4clFrVmhjM1VyV2sxR00xVk9NVXBKVEdwT2NWUnNDbU0wTjNoMVNIaE1lRUpzVWpVclozQjFPREl2V0dWVVIzRTRaSGs1YUd4aGJHVlZWbkZYTlU5eGRWRndPVzU1VmtGSWJXWkJha1YyTTFWNkt6TnRhSE1LV0VGRmNFVlJkR0ZrVnpWd00yZGhVMlpIWnpKQ1FVRkJVa013V1hOb01rbG9Sa3RJTVRKMVdGUlJTME5CVVVGcE1uVXJNVk0wZGtKTGQwTkRTbWsyUXdwS1ZuRTViV3RhWjFOblUxbEVhbTB4T0VGU09WbHhZV3RITmprclZtVXhRU3RCV1VGWVVDdENlVzFoWVdkemVuTjRiRzFDVVhOSmJFeFRNMlYzVFdkM0NreHhjV2wxVjFSTUwyUndXVk5ETTBJMlpqWllUbUYzV1ZKSVZHTkVaWGRqTmtreU1qTnNiMlY1UXpGVGEyVXlNa05PTVU5ck0xb3ZWa05GYjNOdE4zUUtSWGR6WTFjclQwZE9WbXR5TWpaNVN6QkdTbGwwVjJ4aWQyMDJPRlIzY2xFM2VUWTRibE55ZUhVd2VGWTNaaXR5TUd4Rk1qUm9RVXB1YW14NmNpOVJXQXBLZFRGMlIyWjNaVmgwUlVVdlVVZzViRXAzYW5Jckx6WTJOM2RaTlZsMlUyNVBaRzVPTDFKbVFqSnROa3Q1TWl0bGRrZFBTM2xrVURkeFNVMWplbUpZQ2pka2VGcDRhelZhVkdOa09UUnhlbFZRWkcxbmJ6QlJXbTE2WWpsVGRFUk5PRFpXWm5OMmFuZzJZWEYzYVhOWmJEVnhiRmQ1WTJGck0zSmlMMjlMVkVJS00wNXhXa0Z2U1VKQlJrNXpiMWxaUTNoUE4wTmFPVGh3U1c5eVFWUkxjMUJuZWpBMEwydFBabFV4Vm04eWRFcHJkV3hIVVc0elQxWXpWMVpMV0ZZd1dRcFhWMjVNWmtKUGFFRjJWR1l4TlhWSE1XbHVZbmN5WnlzMFNVdEJiazFCVlVwMFlUYzRUVWgyZGtaMldrcHFSVVpVTmpGbmRVVmxWRzU0UTJWUmQxQmxDbFZYTW10UFFsbHBkVTFYVUVseVVXMUlkRkJyT1hkS2RHWXhibkI2ZVZaUVdHZDRZM3B3Vmt0TVZtbFhObUZ6TkVWcVRIZzVjR2c1VkVOV1NrTnhaMjRLUlRsc1VYVkpiRlJoV21relExcHlOazFZTjBGRmVsaE9aMFF6WTFKcFFVcDZURko2VFU5alFWWkhlbVJ5T1hnMmNucHZSVWc0U1Vsd1ozTjVVbGwxTkFwb1ZucHJTRXN3TTJ0NGREVkljREJQUlVoVVltMHZTRWxsYVZacEszaFdRVTQzU2tFMFpESlpVR05ZUlhGUmMxcEtPRVJHTkVaaWVYTkdUamRHT0VKckNrVTNkSEFyVjNsUVoxVlVjR042VUVOV2JXaEtUM1Z1YlV0bmFtcE5ZV3REWjJkRlFrRkpaSEJrTTFWUUx6a3hSWHBXTUVoa1kyRTBabHBTVFVoQ2FtMEtZMEU0ZFUxNGVuTk9NRVpWV25WSmRubDVOMloyY1dwM1RWRTVWR0ZNTUVScVdrY3dkSGRwSzNsa1lWWkJPVEI0TkRoNkx6azFkelJSV0ZreGRVUXZZZ28wWkdkVE9FaHJOVVpGTlRoRU1pOVJVVTRyZGs5TE1YUkNRVzl5TVVaQ1RsZHFRa1JDUzFSbU9DdDViRXROTm1nM1FWb3ZOU3M1VTFWVGRFbGFlVlYyQ2pOV1QwSlVSM2R2SzJaM2RFWTRNRTUwZUZsclQwZHNRblZLV1VaMWJ6aDRkbGhTWTNsUFprcGpNRWxFZUhCM2FEWk1MMVoyVUhSeFZ6UlBWbFJwVjNVS2F6bDJiRWxuTHpOVFZIZE5SMmRVZEM5UVdVaEpibWQ2V1RWbGRHMWhRMDFMZFRCRVluWjFOWEJZVjA5SU1XMVNhakptV2tGNFprOW5iSFZ6U2s4eE1RcFFjQzgyUWxWek9GaHljMlZXV214MEswZFJkMVpzT1V0WlJYQnNjbk0wVm01dk0xTXdTSGsyUnpWNlNVOUtSM28xTkdOVlYwUlNia1ZKZHowS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiA1eWwwOXN4MGNnaXVzcHAyNHlnOXNvcTMzOHZrcDMzeHYzbnV5emllbHJ1azJqYzcweTFsMHVkc2s4NXF0bGczdzBvbWd6NHd5em8ydDF5Nmwwajh5eXk4ZzZmb3FmZGhtcTliZGxjYzg5MzV6MmRtYnB6bWZ3NHlvMHhpanpxNgo=\"\ - \n }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": + \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVZCdGQyRTVaSHBGVmpGR1YzbFpkazU1ZFVFdk56aDNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDA1cVNUVk5SR3Q2VG1wVmVsZG9aMUJOYWtFeFRYcEJNazFxYTNkUFZGRXlUbFJPWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNqSlhVekpQVmxseFQwdGpTMlJRTkZCMlQxZDRSVmhuT1RGQ1MwbENVekZSUTNoUmRqTk5NRGhHZHpSSk9FSkhWa3hvZUU1SFFqTkJZMWhPYVRGdlQxTUtkazVCUlRNdmJsb3Jiek5oY0hWb1RXSXJOamx2SzJWWmJYVjBMME5XYURORVFpdGtORk55Y0hrd1ZITnBhbUo1YVZaQ1ozbHdiR3N4VWpZMGJTOXNUUXBzZDJoSWJGRlFSVGMxVVd0UVZUZEdWMDh2VmxoYWVFMWlMM1JDYmt0R09IWkJWR2xPTjBKRlZWUkdSRTFoYWxOSWJrbElWVFk1U2xnelZHczJjV3BqQ21kaWFVTldXa0ZDTkRjMVUxbEhOMm94TlVocGIwbExabVkyWnpRek9ERldZbU56TVRreWEwSTVkVXA1Y0ZreGN6QjZMMFUzVEd0cmVUaGpUMnBDUTNFS1IxY3lNSGxIZFdvMVZHNVhXRVp0VDI5Qk0waFpkemhXY21oWU1uTTBibVJ6YVZkNmVrVmtWR00yYzNNeFIwZHBUazVLVVRCbmNWVlNPSHBYUTFCU1FRcHpWVEF4TVZwR05XUk9Ua0ZzV2xab1lVWllaMDB2WTNoVWVHcFRkbTVoYWpka1ltaHFia0k0VWtjMlIxcG5Uemw2YUM5T01HNVVWMmxTTVM5SVZGbEJDbUV4Tm1ZelRYY3hNRmt6UlZOUVNXaHdiVm92VW05TVZYUnlZMVZQVjIxb00wdFNiMFZ0UjBGMmMxbEpPR3BzTnpORFpGSnpRVUZqZVZsd1JqQTJkWFFLWlZwbVlVSlhlREZ4SzNsbVowVTFjMm9yTWxZNFpFTnZlV2hGZWpGcFpIbHViMVphUVdKaU1IRm9UeXR0UW05d1NtMXpSR2xHVVc5SmFIZGlRMlJZVXdwUVZGcGhOVXRrTldwalVUSmpUR2huVVhCTmFIcDJZakZ1YlVSUk1XOVJSR0psYVRGSVZGUnlja292VVhneGRtNWhlRXhPTHl0bGNrWmhabEJYVldrdkNreHljakY1YkdWRU1uSnhieloxTUU5SlFWSjJkRTV4TWtGb2NsZFBTRWR0VTA4eVVYTlJkVGxpTmpNek0zZzRhamxJYlRWT2FETjFlVlJhY1VSbk1GZ0tjVVp0VldaT1pUQk1lRUpCWmt4Wk5HeHJaVmw0U0RRNE1tbFdjUzl4YTA5aFYzTTJWbWN5VVU1T1kwTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1NGaGlXRFV5VkRGQ2NrNXRNV1p2Q2pKc1lrOHZjM0JNUm5aVEswMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlFUTTNhM2t6VEdaSlJrRlJRMDVwUzBSWlRWQnpibTUwTkZvS2EzbHdZa1p3UW1zMmJGRXJkbHBKTlRGa2RISlZWRU53UjAxTGJYSnZWR0oyU1ZjeE1sYzNZV2h0WTJRd1JsTnNOMGxYYTB4RE5VNU5WbHBOUXpKUlFRcDFlVU50YldwNlRtWlJXblp5UlRGVGNtaEpiRkZLWjBkMk5UQnZUa0pxTjBaU1dEZ3hZblZyYW1oMFJsRjNZa1pRWTNoM1dVcHphM2QwT0dadlkwRktDa2RyTUdkUU5uQTFhRlZOTWxGUldGZHdWR1ZwTTBwUlIyWlZjMnAzYjBOd1pYSkNPQ3RzTVVVMVN6bEVSMlV6Ynk5cFowVmpNVGgzYUVkT2IyMTZlbWNLZEVwSlVtcFZTVFpCYjA1aVJ5ODVkMjlVTTFaa2RGWlVPV1VyTm5aVFkyazNRM016UlZaa05FdDJkV1ZoUkhKblkyWkpTM1p1VldseFFVbFVlV3RUYkFwWlRUUjJXVk5hVVVFMVl6Sm1SazFpVGxwRlpYSXlOMVJFWjJoaGJtRnRORkp5ZERCVFdtTk5UR3R2V210UVp6QlpiVkpFV1Vwb1puZHViMWx0WVdRd0NrczVVRzgxVkc4clYzbzJVVEpHWW10d0szQXJOVFpNZFhCUWVWRllTRlZIU2s5UU1HbzVWRnB1UW5RMFJWZHVlWGxaYUdsUFYwcEVkbXhtY1VKdE1uUUtPRkpwYTJoVFVWWnllVk5XVW1sSmJEbEZNalZGZEhod1VsRmFlakJNUVc5UU9FZFpNVXhxVEdZcmNtcFNUWFpESzFWYWVFcDBjRkpMWTJaeldFVjRlZ28zYTBwRlpraFJhemw2YkdORWEwVTJiSEU0UWtOdmIzbDVNREZtVldZMGVrcENLekJhVUZFcllYWjRkbmhaWVhrMFJUZEZUSEpCWkROaFEwNXFiVVEzQ21adlZHSTJUSFkzUVZodWMxZDNSSHBSY2s1dFRVOVVSMFJJTDAxR1pETnlOMFoyVFhwa00weGlkV1ZoYUZsQlpsSXpUVEJPYUUxcmRFZHNWbWRST1VNS05qRldia055T1dWVmJFVjZOM1EwWnpWWlQzWTFURFp0UlRJMVdGTnNLMk51U3pCNE5IVTJPRFpFTW0xWEszRjFNV2xxYUdOb1YySjNjaTlpZDFoRVp3cFRlRUZ4ZUdWdVNGaGphR1JWWnpaYVZuYzlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzdGVzdC1jbGl0ZXN0ZWFkeGN4amd6LTc5YTczOS1jdGgwaTUzbC5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdHpqN2d1dwpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdHpqN2d1dwogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdGVhZHhjeGpnemlfY2xpYWtzdGVzdHpqN2d1dwogIG5hbWU6IGNsaWFrc3Rlc3R6ajdndXcKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0emo3Z3V3CmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdGVhZHhjeGpnemlfY2xpYWtzdGVzdHpqN2d1dwogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklWRU5EUVhkWFowRjNTVUpCWjBsUlF6QlFObTVMTVVwTE16bHpVR0kyUm1KeldtOTFha0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRnpSa0ZFUVU0S1RWRnpkME5SV1VSV1VWRkVSWGRLYWxsVVFXVkdkekI1VFhwQk1rMXFhM2RQVkUweVRsUk9ZVVozTUhsT1ZFRXlUV3ByZDA5VVVUSk9WRTVoVFVSQmVBcEdla0ZXUW1kT1ZrSkJiMVJFYms0MVl6TlNiR0pVY0hSWldFNHdXbGhLZWsxU1ZYZEZkMWxFVmxGUlJFVjNlSFJaV0U0d1dsaEthbUpIYkd4aWJsRjNDbWRuU1dsTlFUQkhRMU54UjFOSllqTkVVVVZDUVZGVlFVRTBTVU5FZDBGM1oyZEpTMEZ2U1VOQlVVUkdTVFJpV2sxeGN6Z3dLMUZRUkRoMWFrazFWQ3NLUVRWdU0wUmlXRkYwWVZKSmIwZ3lRa0pwWWt0ME5qRXpZMDV2U25KemRYRnNjSFV4VkVGTmJIVmtTSEJ1TDNKVWRuaFdSR1F6ZW5wYWMxVkVUbkpOV0FwQmVIY3lia3BVWjFCMGQxUnFTM2RrTHpWNmJsaGlaVE5aUkRGUVNXVTBha1UxVG5aSWFHTnNjbGd5VHk5S1FtWlJaVzVPT1RNMFJXdDRhVzVrVkVkeUNuSllTV0pOV2k5TVMzQXZlakUxZFRGd01YbHdZVTV5Y1ZaR2VIQXhLMEZ2V0hOSFowRnhWbUl6WkhkcGJqSmhUR3hhVjJkMVNVTk9kR2N3WmxSdlVtd0tSWGRVUWk5NVZuTjBWakJpTkM5dGRXNWpXbFJWWTNwaksxcHRWVXRDZERWU0wybDBTaTlWV0M5VEszWlZhVGRoYlhkTWJGUkZlU3MwV25OdlFYWnVXUXBxZERSNVNVWlFlaTltYjNGdmFsVmhTemQzVldWUU1UUldiVTFsVm5kUmRFbzFNbGRRY1ZsaVRVaGhjSFV3T1dwbVJ6VmpVbE14UkhGM1JVZG5VRFkyQ21GRGFEUk5jRFpEZWtkNFoxcE5NakZOZEdkVkswNXVXWGc0YW5kamJXRlNVRkZ5TVhrNE0wMUpXVEkyYzJFMGRFOHhWbm8wTlROTFJrSnRTbmRQV0ZvS1lraHdPVzVwT1hOS1RYTlJNVGhXUkhSSFR6aHRZMU0wWW5OeFdEVmlSMU41YzJkclEwWk9XSGw0ZFZjMFFtUnJUWFpJY0hOcE5EWk9Nemg0UTIxc1dBb3ZNVFp5VUZOaVZrRXlRMkZFVEhrMFUyOHpiamRrTkVjMldUTlVXRFY0ZUdGalNraHVZbU5pY0hORGJHdFlRMGxOTlRjNFVtNTBXWGxqWjJoc2N5OW9DbUZWVlN0UVRsWkVaakpWUmpSVWREWm5RVEoxVTFGT2VGUm1LMGxLYWtWMlpEUjVOWGhoZEVGVFJYRkJUbVZzVG5Sak1FeE1iVWxCYkZSc1kxSjJiakVLWVdnelFqY3diR2w1V0hoTmVVZHZNMEZhVUVsd1ZtcFBlWE54UjFkU1VWVlhMMUl5UVhVNE5ucHRWVGR1VVd3NWVrWnZOSEZyUlVWSU5HZ3hVWE5oU0FwdloyVlVRVmxqWkRkMFEza3ZZMlJwVVZSMlNGQlJTVVJCVVVGQ2J6RlpkMVpFUVU5Q1owNVdTRkU0UWtGbU9FVkNRVTFEUW1GQmQwVjNXVVJXVWpCc0NrSkJkM2REWjFsSlMzZFpRa0pSVlVoQmQwbDNSRUZaUkZaU01GUkJVVWd2UWtGSmQwRkVRV1pDWjA1V1NGTk5SVWRFUVZkblFsSXhNakVyWkdzNVVXRUtlbHAwV0RaT2NGZDZkamRMVTNoaU1IWnFRVTVDWjJ0eGFHdHBSemwzTUVKQlVYTkdRVUZQUTBGblJVRlVaMnhNTVRsbk1HcEpZWG94YUV0cU1YbDNVZ3BPZVVkSGJEQk9ZVVkwWVZCVmIxVjVlWGhCU2pVNVltMXBUek42ZVdKUlpVTmxkR2t2UzA5UWFETTBlRTQyT0VOa2VsQkRSREZRUlROS1YwVTRRVmROQ21kdWJ6RktTR3hSWlZOVGVreENibHAyYWpRdlRGVlFUbXBZYURkVlVrMVpiMmt3WkVnNE1ETnBZeXRRVGxKQmJDOVpaR2RPUTI1UU9WQlVRU3RtUW1RS2VrSjBSMHRZT0hKMWJVNTRXV2hYU25welRWQndZM2sxWmxaeVNEUnlORTF5U1dwcWVtWkJVR1ZJV1ZsV2JtWnRSVGxWTUZKUGNFNUxTbXBFVFRNemVBcFVkVEJMV0RGR1YxRlROMjk2Y0dvNFRIQktha28yUWs0MWVtc3hNa3RFWW1RNVRVVnRVV3hXVEhWVWFVbFNXWFkyVEdkUmRreGhOVXN5ZVhSVmFWWkJDa1J2VEZONVRFZ3dOMmhOTWxaek1VeG5TMkkzUVhoS1FXY3lWVTFsVGpKR1ZqVXljM1kyYkhKT05WRk9ZMll2VUU0eWFtRkRlVnB2WVV4MWJtODVRaThLVEN0WVZrOHlVMlpMZUVFeU5YQnVjVTlHWjFCUk5uWjBNMEpwWjNKeFdsUTVXRlp3UWpnd2ExbEVVRWhSZFhsU2MzWnJTQ3RNTkRKdWJHMWtlaXR3YWdwb1NHNUhLeXM0T0ZwTVRHbGtaVTFqUzNka1UyUk1WeTlXZG5aTVVHNWFiREl5V0djdlUzRnhOSGt5TW01T1YySm1TRUpGVkVaUVEza3hVelJWTDJ0RUNteFRhelZKVFhodVpUZHFTM2xKUkhKRGNrOTZialppYTI5SlN6QXdVMlp3V1RJdlVYVm9VVkZpU1dOTlFYTlpWbE5OT1ZKT1NVUXlUMWxMUWpGMlJYa0tSMFZuTUhOQ1NYRnpWbkJJUlVoVlJqZGpXalExYlROMVNFZFVZa0ZGTlZGWE1GQkJMMGN4UlVKd1dUZDRaWEpaVVdKQlEyVnRTVmRXY0UxdlRHVm9PUXBHWlRFMlVFNUpTVUZXYVhkQmFFTmxWbGhYZDNGdWRtRm9RMHhQTTFwRlpGWndUWFpxTUdoRVRUbEpZbWxyY2xkU01uZHphMlpLT0dsNlZEbEdjSEJ1Q2sxRFJVZERWREo2VFdWTlVuaHNlQzgzYlVOWWRWbEJQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MwRkpRa0ZCUzBOQlowVkJlRk5QUnpKVVMzSlFUbEJyUkhjdlRHOTVUMVV2WjA5YU9YY3lNVEJNVjJ0VFMwSTVaMUZaYlhseVpYUmtNMFJoQ2tOaE4weHhjR0ZpZEZWM1JFcGlibEkyV2k4Mk1EYzRWbEV6WkRnNE1tSkdRWHBoZWtaM1RXTk9jSGxWTkVRM1kwVTBlWE5JWml0ak5URXlNM1F5UVRrS1ZIbElkVWw0VDFSaWVEUllTbUV4T1dwMmVWRllNRWh3ZW1aa0swSktUVmx3TTFWNGNUWXhlVWQ2UjJaNWVYRm1PRGxsWW5SaFpHTnhWMnBoTm14U1l3cGhaR1puUzBZM1FtOUJTMnhYT1ROalNYQTViV2sxVjFadlRHbEJhbUpaVGtnd05rVmFVazFGZDJZNGJHSk1WbVJISzFBMWNuQXpSMVV4U0UwelVHMWFDbXhEWjJKbFZXWTBjbE5tTVVZdk1IWnlNVWwxTW5CelF6VlZlRTEyZFVkaVMwRk1OVEpKTjJWTmFVSlVPQzh6Tmt0eFNURkhhWFU0UmtocU9XVkdXbW9LU0d4alJVeFRaV1JzYWpadFIzcENNbkZpZEZCWk0zaDFXRVZWZEZFMmMwSkNiMFFyZFcxbmIyVkVTMlZuYzNoeldVZFVUblJVVEZsR1VHcGFNazFtU1FvNFNFcHRhMVF3U3psamRrNTZRMGRPZFhKSGRVeFVkRlpqSzA5a2VXaFJXbWxqUkd3eVYzZzJabG8wZG1KRFZFeEZUbVpHVVRkU2FuWktia1YxUnpkTENtd3JWM2hyYzNKSlNrRm9WRlk0YzJKc2RVRllXa1JNZURaaVNYVlBhbVF2VFZGd2NGWXZPV1Z4ZWpCdE1WRk9aMjFuZVRoMVJYRk9OU3N6WlVKMWJVNEtNREVyWTJOWGJrTlNOVEl6UnpaaVFYQmFSbmRwUkU5bEwwVmFOMWROYmtsSldtSlFORmRzUmxCcWVsWlJNemxzUW1WRk4yVnZRVTV5YTJ0RVkxVXpMd3BwUTFsNFRETmxUWFZqVjNKUlJXaExaMFJZY0ZSaVdFNURlVFZwUVVwVk5WaEZZalU1VjI5a2QyVTVTbGx6YkRoVVRXaHhUbmRIVkhsTFZsbDZjM0pMQ21oc2ExVkdSbll3WkdkTWRrOXpOV3hQTlRCS1ptTjRZVTlMY0VKQ1FpdEpaRlZNUjJnMlNVaHJkMGRJU0dVM1VYTjJNMGhaYTBVM2VIb3dRMEYzUlVFS1FWRkxRMEZuUVVneU1tRm5aVmhwUW5ORFFrTjVWM0JuVldsaE5rTlJTekUyWjBnMVJUUlJPSE5OYWxCMk5rMUZTMVpZYzJ0TU4yWTJLM1ZMU0ZBMlVBcDBlblpaTkZKTlVYTkxUMkZzVGpoUlJsVTRVbXhIVERsM1kzaGFaVzVLUW1GMlVUQkRPREZTY1dsWGFDOUlTVkZrY0dVdk5EQkpUMU5XWm05YVpuUlhDbFJ0YVRGM04yaG9XRzlsVTJoR2IwSk1ORUZEVW5GeFVUUm5ZbU40VFdweVpFbHlaREpvUlU0NGRWaDBNRFJJU2pkeVpuRTFkbTVZTjJoaGRFSlVia3NLVjNSRGExaExPVTVaWmxWQlZYcElibVZtVFVaemRDOU1RVFpKWWs1VGNsaFpTV1p3VlZWRmIzWXliRkZKUmtkeVQwaE9iSGw2ZW01MmMwWTFhaTlxUmdwVVpscHBkMjFEU1V0RmNHUjRRbVpXWXpkclRGVnZjVkZwWVROVWFEYzBjbGRWV2k5VWRuZE9ablpIUnpOWU9XUm5XVlEwY1hScVFXVk5PV1I2Vm5CdENtaHdRM2RRVEc4clFWa3dhMlJsTUdkSFJrYzFhRXhPUW5kNGNHb3lZVWc1TUU1TWJqUjFibE00TDJKNFlVOUxTVGx3VGxCUGMwMHJRVUpRVlRKa1dFVUtMMmRzVFU5cWRUTlJXa2N2ZFdaWGFuQkdZMVZCVm04cmNqQm9Uamx2U25STFIyTkRXVlJXTWtsc1lXdG1jM3BMYVhobWMwbFdiVUk0Ykdod1JXUkliUXB3WjNJcmNYbG1hV1F2U1VoNldVdFlUWFpQZURCQ1psazBXRnBCZWt0SUwxUTNUR2RNSzI0M1Mza3dUSFExVERkdFNIaDFXRTF6VVdGMWQxRk5SRmhCQ2pWMk9XRmhMMGgzUVhCVmEwTnJObFpUV21vdldVUmxUamR5WkZwMVVUQlFPR28yZVc5cFJsaFRhbGgxVkdReWQwWllXa05JTW1wdWJFNXhjRmhEYnpVS05uaENhWGxUU0VFMlVYY3dkMmczUlZoT2RHdGhRak5rYUU1WWMyOVZkbXBJUlhKc0t6aE1WRFJFYUc5YVJXbEpRWEpHTVVWMWQwTkZla3d6WVM5c1FRcDVjVVZTVEZWaE1sRnZTM3B2ZW1wa2IwUldVV2RGYW1oalNESnRVemxpWWtnek5FOTZaWGxNUkc1cWJIcDNXVE56VVV0RFFWRkZRVFZIZWxSWFR6SlFDbGxOYlU1amEyeG1TRXRYUldjNGNFeHVhRkYzVEdJMU9FUnVRbE55TWtJd1JtNHhOV2gzWjA5NE1GcG1lSGxsVjNwVFJDOWxMMlZNTnpJMldFa3JVM0FLUVdGWVZXaFJZak5QY21aWWIyOVZkVVJGWjFGTU5rZExNbkprZGpsb1VucHBVakEyVjNaQ1FURXhXVTV5YTNaM1JVRmFWbUp0VG04eEwxTklkakV2UVFwMVNUWmhNRFpLVjBkaFdrbFNja1JEVEVwRWEyRkpaMDl4WjBZNU9VaHhVeTlLVEhGbVkyazFjRVEwVjAxdE55ODBiRGRQVG5sM1JVaGtRbFZTUlRoMkNtSmFRVlJSYUdZM1EyZzJNRXRpUW5RdmNFZExTRVZhYkU4elNWWTFkVkIxVDI1a2FubE1SRWcyT0ZkbFdHSnpkVXd6TURGUk4xZGpjMDg1T1dGeEt6QUtVMHR0WW5sUVdrWmxhMDl6T0ZGeFVYVkpVMGxvVlhOQ2RsTXpkV3RDUjJwdmNXeEhObUpZWVZkcVZtZFhXakYwTjNSaVRYbEdVVk5LUVRSVVp6TlhNUXBsY1ZOTk9YQmFSMkprWkZwWGQwdERRVkZGUVROUEwxZDNWa0ozYzJGVFdqZFVkMUpIZFdoS2VVTldWVWhWSzBnMFlUaE5XazVqWjAxS1lYUnFXalJIQ205Sk1uWnBVbWhWYlcwMVZGbGpNRVpQUW1VNGFsSlVla2w2TlZkSlZFNXdNR0V2YjFoV1IxbEpNRFpFYlVoT1VGSmlWMGhKV2tGU2VHZGxUR05zYzJRS1lYcHlSSFoyVDJKTVdYaGlNRkVyZVZWVWNXcE9WVVEyT0dZclRFMXlSMDFRYVRKNmNrbFpWMlpuUzIxUVJVdFpObWhvYTNKeVUwZHFTbVU1VWtSaVFRcG5ObkJNVTBOdGNGTXpOVlp3WjNaUVlsUjRVek5qTkhwWFdERmxSbFo2V1ZwcGVESXllRkp5TlZoalpTdDZlWGg2TmpCR09FaDBSVE4yU0daRFpHNHpDbk5XVG14aFoySkxTMEp0VVd4V1l6bEhRbXcwYW1kSFNrY3hXbkp0UzJocVJUSjBRMDlIZUU5WGJVdHRkRlZGZDJWcmVVdFROV28yVlRkYWJqVmFTVTRLY1RocGJHNUJjbXBNT0M5U1QzbFRMMlZXZHpkVmVVVjVRaTlNS3k4eWFsSmpaRk5RWlM5amRGSjNTME5CVVVKc01qaEdRek50ZDFwR1RXUnRUbmxIWVFwbVNsSnBNRVZ3TXpaNmFYZHlWV2hWYUM5SVdFVnZUM2h2TjBsV1lrcHdjV05uT0hwc05IVXZXRkFyVVVsQmNtVmpZMjlxZWpCemRESlBlWHBvVXl0d0Ntd3lSVzl5TkhGb1NESkdXVmhCYVRORWVWWXhOMmhwTTBFM2JVbzBObWxIV0ZoRmMxUXJRakI0VGpWRWJ6QkRWbFJCTVdOWlV6VnVTR1pCWTJaNk9ERUtiMDVwU2pkVVoyODVNVTVwTmxscVoyUnNibU5OZFhodmFFaHlZMHhETTJJNU0wOWxaV0pFVWtkTlYwMUNTM2w0VUhKNlZUSlNjV3hIUzBnNWVuZFBOZ3AwTkZwUVRVMVdZbmg2Y0RJNFZUQnBMMUJUV0ZOUWVIRlNaVXhTUlRCUFV6a3dVblpPTlVOWmVrcFNOelZRYUVOVVoyb3pSV1pMY1d4RVpFeHVZMWhPQ21nelFVODNSVGh6WlVzd1NVRjZTamRWV1dkWU5XdFhOWFY0U2sxR1ZFOVNSbXQzYjNGbVRHcHNhRlZ5U0RWSldGVmpLMUo0TWs1MGJGRk1iVEJ2ZDBZS1dIZHZVa0Z2U1VKQlFWbEZabXQyY201bVdXOXliM2xaYlhweGNGbDNSVkpwZWxneFMxcFdURU5GU21reldubFdUR2R5ZVZvcmJrNXJhRGxuZVRCVlpBcG9hVmhsZVV0eFltTjFXa0V3VGtvdk5ubGhhVmRPY0N0UFVYbzFiMUJSZEU5cldsaDBZWGRJV1hKUVYxVmlWMk5HVURnM1dHaFVRMnd2ZUVka1JUWk5DbE5TTDNKc2IySkNNbmh2YWs0dlMwcGlSV2R2VERsTGRIVm1kMVE1ZERka2QxcDBXV3RSVDI1UlJ6ZEdkV1pvZDFaYVdtSkRNbXhMY0ZKNFJrUnFhR2dLU3pSSlNGSnNTVXRXTlU0d0x6QTRUSEpDYkZjeWQyOUdXV2RPWW1wbmFrVTRkRWxUSzBORVdUZEtWamxPWjFsQlptNTFkRTVUVEdWVE5TOVZjVmxNYndwR01XdEtPVVE0U1hsd1JFeHNLMnh1ZEVONVNGRmFUMUV3TUM5dlJ6QlpORGcyVG5sTlFtcFZjSFIxYVZGblkzWnhObkpGUkVveFIweE5VMUZSTVc1V0NrSnFWR1pNYkhadE1rUk1UMkkyWkhCNFpXODRPVFU1Y2tVM1JtcHlVbU5EWjJkRlFrRktNRVpMYlUxaldFRnVlRTlhYVV0NGJrcFBhemhLYlRGc1FsUUtUMWMyTkdWeU9HRXlabFZrU3poNmNVVktlVzk0VjNWWGNGWmxTQzl3VFU0cmQxQjNMMnMwYjNORmVXY3ZXazB3YUc5RmJ6bGxPWEJIYUdwM1JDOVFUUXBSTW5wSlpsTnhaMDlFZUZscWRsRndibHBUU0dGa2RrMWtWVXc0YWpWdVJucG9OR3d5U0hGWVpscHhlak5sTVhaUlJ6RmpTVFZPUlRCcUwzQmpZMnBqQ2xsSWFsSjVZbEZzUldGMWIzTm5aM2xTUTAxaU1WUnFhak4zTkc1d1owaE5NRUYyU3psbmJrVkNWak55UkVFMGFrNDFiV3R2WkZwak1WZDFNRVUzVFd3S1IyVTRSMFJFTmt4M1RYTkdPRGQ0VVM5S2RISmlXU3NyYWtoUk5sTk5lbWxOTHpFM1NVbHpPR2t5T1hwbU1rSkJVVEpaUWtwaVVWVmhTSFZTYTB4T2J3cEpVVkJCVVdKMlJWZHBVMk15YzBkM1ZuUTRWR3MwUjNneEszWmFTbmN6TVVwUFF6TldOVU5ISzNSUmRFWnlNbmxKVlUxRVpGQldUbWRXYnowS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiB6M2hucnZ3bGd6czdwajduazM0aDExdjgyOGFyOG8ybGN6dmQ4NDE0amlmenJjdm1xYXJ5NXdwY2FndTJxbzdjZDZsZmhqb3JiencydDJrM21oejF4bjgwZm91ZDI1ZWxqbGczZnBsNWIzOHNieHo0dW9oZnAwcXE2am9oOHE3MQo=\"\n + \ }\n ]\n }" headers: cache-control: - no-cache @@ -953,7 +1028,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 22:40:42 GMT + - Thu, 29 Jun 2023 09:50:40 GMT expires: - '-1' pragma: @@ -987,66 +1062,61 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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-clitesteadxcxjgz-79a739\",\n + \ \"fqdn\": \"cliakstest-clitesteadxcxjgz-79a739-cth0i53l.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitesteadxcxjgz-79a739-cth0i53l.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": 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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"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/45bbbe87-41ae-4692-80a7-ea4f544d6b4e\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '4212' + - '3551' content-type: - application/json date: - - Wed, 14 Jun 2023 22:40:43 GMT + - Thu, 29 Jun 2023 09:50:41 GMT expires: - '-1' pragma: @@ -1067,7 +1137,7 @@ interactions: - request: body: '{"tags": {"key1": "value1"}, "location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": - "cliakstest-clitestyzrjdvdvr-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-clitesteadxcxjgz-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": @@ -1075,18 +1145,17 @@ interactions: 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_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"}]}, + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_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/45bbbe87-41ae-4692-80a7-ea4f544d6b4e"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": - ["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": + ["IPv4"]}, "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": + {"diskCSIDriver": {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": {"enabled": true}}, "workloadAutoScalerProfile": {}}}' headers: Accept: @@ -1098,74 +1167,69 @@ interactions: Connection: - keep-alive Content-Length: - - '2865' + - '2242' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-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.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 }" + 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-clitesteadxcxjgz-79a739\",\n + \ \"fqdn\": \"cliakstest-clitesteadxcxjgz-79a739-cth0i53l.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitesteadxcxjgz-79a739-cth0i53l.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"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/45bbbe87-41ae-4692-80a7-ea4f544d6b4e\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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/ea3a09e2-c708-45b6-91b5-afcf5cbb014a?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/50be9505-5465-4cc0-9bbf-a6deaa5716db?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4210' + - '3549' content-type: - application/json date: - - Wed, 14 Jun 2023 22:40:50 GMT + - Thu, 29 Jun 2023 09:50:47 GMT expires: - '-1' pragma: @@ -1181,7 +1245,151 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' + 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/50be9505-5465-4cc0-9bbf-a6deaa5716db?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"0595be50-6554-c04c-9bbf-a6deaa5716db\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:50:46.7383219Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:50: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 scale + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/50be9505-5465-4cc0-9bbf-a6deaa5716db?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"0595be50-6554-c04c-9bbf-a6deaa5716db\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:50:46.7383219Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09: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 scale + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/50be9505-5465-4cc0-9bbf-a6deaa5716db?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"0595be50-6554-c04c-9bbf-a6deaa5716db\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:50:46.7383219Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:51: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 @@ -1199,14 +1407,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/50be9505-5465-4cc0-9bbf-a6deaa5716db?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 }" + string: "{\n \"name\": \"0595be50-6554-c04c-9bbf-a6deaa5716db\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:50:46.7383219Z\"\n }" headers: cache-control: - no-cache @@ -1215,7 +1423,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 22:40:50 GMT + - Thu, 29 Jun 2023 09:52:17 GMT expires: - '-1' pragma: @@ -1247,14 +1455,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/50be9505-5465-4cc0-9bbf-a6deaa5716db?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 }" + string: "{\n \"name\": \"0595be50-6554-c04c-9bbf-a6deaa5716db\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:50:46.7383219Z\"\n }" headers: cache-control: - no-cache @@ -1263,7 +1471,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 22:41:21 GMT + - Thu, 29 Jun 2023 09:52:47 GMT expires: - '-1' pragma: @@ -1295,14 +1503,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/50be9505-5465-4cc0-9bbf-a6deaa5716db?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 }" + string: "{\n \"name\": \"0595be50-6554-c04c-9bbf-a6deaa5716db\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:50:46.7383219Z\"\n }" headers: cache-control: - no-cache @@ -1311,7 +1519,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 22:41:51 GMT + - Thu, 29 Jun 2023 09:53:17 GMT expires: - '-1' pragma: @@ -1343,14 +1551,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/50be9505-5465-4cc0-9bbf-a6deaa5716db?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 }" + string: "{\n \"name\": \"0595be50-6554-c04c-9bbf-a6deaa5716db\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:50:46.7383219Z\"\n }" headers: cache-control: - no-cache @@ -1359,7 +1567,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 22:42:21 GMT + - Thu, 29 Jun 2023 09:53:47 GMT expires: - '-1' pragma: @@ -1391,14 +1599,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/50be9505-5465-4cc0-9bbf-a6deaa5716db?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 }" + string: "{\n \"name\": \"0595be50-6554-c04c-9bbf-a6deaa5716db\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:50:46.7383219Z\"\n }" headers: cache-control: - no-cache @@ -1407,7 +1615,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 22:42:51 GMT + - Thu, 29 Jun 2023 09:54:18 GMT expires: - '-1' pragma: @@ -1439,14 +1647,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/50be9505-5465-4cc0-9bbf-a6deaa5716db?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 }" + string: "{\n \"name\": \"0595be50-6554-c04c-9bbf-a6deaa5716db\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:50:46.7383219Z\"\n }" headers: cache-control: - no-cache @@ -1455,7 +1663,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 22:43:21 GMT + - Thu, 29 Jun 2023 09:54:48 GMT expires: - '-1' pragma: @@ -1487,14 +1695,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/50be9505-5465-4cc0-9bbf-a6deaa5716db?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 }" + string: "{\n \"name\": \"0595be50-6554-c04c-9bbf-a6deaa5716db\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:50:46.7383219Z\"\n }" headers: cache-control: - no-cache @@ -1503,7 +1711,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 22:43:51 GMT + - Thu, 29 Jun 2023 09:55:18 GMT expires: - '-1' pragma: @@ -1535,15 +1743,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/50be9505-5465-4cc0-9bbf-a6deaa5716db?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"0595be50-6554-c04c-9bbf-a6deaa5716db\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:50:46.7383219Z\",\n \"endTime\": + \"2023-06-29T09:55:25.0113511Z\"\n }" headers: cache-control: - no-cache @@ -1552,7 +1760,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 22:44:21 GMT + - Thu, 29 Jun 2023 09:55:48 GMT expires: - '-1' pragma: @@ -1584,66 +1792,61 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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-clitesteadxcxjgz-79a739\",\n + \ \"fqdn\": \"cliakstest-clitesteadxcxjgz-79a739-cth0i53l.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitesteadxcxjgz-79a739-cth0i53l.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": 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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"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/45bbbe87-41ae-4692-80a7-ea4f544d6b4e\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '4212' + - '3551' content-type: - application/json date: - - Wed, 14 Jun 2023 22:44:22 GMT + - Thu, 29 Jun 2023 09:55:49 GMT expires: - '-1' pragma: @@ -1675,66 +1878,61 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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-clitesteadxcxjgz-79a739\",\n + \ \"fqdn\": \"cliakstest-clitesteadxcxjgz-79a739-cth0i53l.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitesteadxcxjgz-79a739-cth0i53l.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": 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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"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/45bbbe87-41ae-4692-80a7-ea4f544d6b4e\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '4212' + - '3551' content-type: - application/json date: - - Wed, 14 Jun 2023 22:44:23 GMT + - Thu, 29 Jun 2023 09:55:50 GMT expires: - '-1' pragma: @@ -1768,8 +1966,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -1777,17 +1975,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a0ab23c3-1049-4fbd-81e6-e2aba1a04505?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 14 Jun 2023 22:44:25 GMT + - Thu, 29 Jun 2023 09:55:52 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/a0ab23c3-1049-4fbd-81e6-e2aba1a04505?api-version=2016-03-30 pragma: - no-cache server: @@ -1797,7 +1995,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_disable_rbac.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_disable_rbac.yaml index 0b5d5fe5d41..76970c8d01d 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 22:44:29 GMT + - Thu, 29 Jun 2023 09:55:55 GMT expires: - '-1' pragma: @@ -58,12 +58,12 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --disable-rbac User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1039-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_disable_rbac","date":"2023-06-14T22:44:28Z","module":"acs"},"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-29T09:55:54Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -72,7 +72,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 22:44:29 GMT + - Thu, 29 Jun 2023 09:55:55 GMT expires: - '-1' pragma: @@ -88,18 +88,19 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest4c4irtwyo-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestcnd27hesa-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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {}}}' headers: Accept: - application/json @@ -110,69 +111,67 @@ interactions: Connection: - keep-alive Content-Length: - - '1752' + - '1423' Content-Type: - application/json ParameterSetName: - --resource-group --name --ssh-key-value --disable-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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestcnd27hesa-79a739\",\n \"fqdn\": \"cliakstest-clitestcnd27hesa-79a739-8bzgh0xh.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestcnd27hesa-79a739-8bzgh0xh.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"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/c2fbf732-cebf-4cce-9c4a-ed3bef951346?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c60af23e-3afd-45ac-9efa-887b090d6bfd?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3597' + - '3268' content-type: - application/json date: - - Wed, 14 Jun 2023 22:44:35 GMT + - Thu, 29 Jun 2023 09:56:00 GMT expires: - '-1' pragma: @@ -184,7 +183,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -202,14 +201,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --disable-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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c60af23e-3afd-45ac-9efa-887b090d6bfd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"32f7fbc2-bfce-ce4c-9c4a-ed3bef951346\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T22:44:35.4806163Z\"\n }" + string: "{\n \"name\": \"3ef20ac6-fd3a-ac45-9efa-887b090d6bfd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:56:01.1299849Z\"\n }" headers: cache-control: - no-cache @@ -218,7 +217,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 22:44:35 GMT + - Thu, 29 Jun 2023 09:56:00 GMT expires: - '-1' pragma: @@ -250,14 +249,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --disable-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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c60af23e-3afd-45ac-9efa-887b090d6bfd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"32f7fbc2-bfce-ce4c-9c4a-ed3bef951346\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T22:44:35.4806163Z\"\n }" + string: "{\n \"name\": \"3ef20ac6-fd3a-ac45-9efa-887b090d6bfd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:56:01.1299849Z\"\n }" headers: cache-control: - no-cache @@ -266,7 +265,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 22:45:05 GMT + - Thu, 29 Jun 2023 09:56:30 GMT expires: - '-1' pragma: @@ -298,14 +297,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --disable-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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c60af23e-3afd-45ac-9efa-887b090d6bfd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"32f7fbc2-bfce-ce4c-9c4a-ed3bef951346\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T22:44:35.4806163Z\"\n }" + string: "{\n \"name\": \"3ef20ac6-fd3a-ac45-9efa-887b090d6bfd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:56:01.1299849Z\"\n }" headers: cache-control: - no-cache @@ -314,7 +313,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 22:45:36 GMT + - Thu, 29 Jun 2023 09:57:01 GMT expires: - '-1' pragma: @@ -346,14 +345,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --disable-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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c60af23e-3afd-45ac-9efa-887b090d6bfd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"32f7fbc2-bfce-ce4c-9c4a-ed3bef951346\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T22:44:35.4806163Z\"\n }" + string: "{\n \"name\": \"3ef20ac6-fd3a-ac45-9efa-887b090d6bfd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:56:01.1299849Z\"\n }" headers: cache-control: - no-cache @@ -362,7 +361,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 22:46:06 GMT + - Thu, 29 Jun 2023 09:57:31 GMT expires: - '-1' pragma: @@ -394,14 +393,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --disable-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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c60af23e-3afd-45ac-9efa-887b090d6bfd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"32f7fbc2-bfce-ce4c-9c4a-ed3bef951346\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T22:44:35.4806163Z\"\n }" + string: "{\n \"name\": \"3ef20ac6-fd3a-ac45-9efa-887b090d6bfd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:56:01.1299849Z\"\n }" headers: cache-control: - no-cache @@ -410,7 +409,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 22:46:36 GMT + - Thu, 29 Jun 2023 09:58:01 GMT expires: - '-1' pragma: @@ -442,14 +441,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --disable-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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c60af23e-3afd-45ac-9efa-887b090d6bfd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"32f7fbc2-bfce-ce4c-9c4a-ed3bef951346\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T22:44:35.4806163Z\"\n }" + string: "{\n \"name\": \"3ef20ac6-fd3a-ac45-9efa-887b090d6bfd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:56:01.1299849Z\"\n }" headers: cache-control: - no-cache @@ -458,7 +457,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 22:47:07 GMT + - Thu, 29 Jun 2023 09:58:31 GMT expires: - '-1' pragma: @@ -490,14 +489,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --disable-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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c60af23e-3afd-45ac-9efa-887b090d6bfd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"32f7fbc2-bfce-ce4c-9c4a-ed3bef951346\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T22:44:35.4806163Z\"\n }" + string: "{\n \"name\": \"3ef20ac6-fd3a-ac45-9efa-887b090d6bfd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:56:01.1299849Z\"\n }" headers: cache-control: - no-cache @@ -506,7 +505,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 22:47:37 GMT + - Thu, 29 Jun 2023 09:59:02 GMT expires: - '-1' pragma: @@ -538,15 +537,255 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --disable-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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c60af23e-3afd-45ac-9efa-887b090d6bfd?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"3ef20ac6-fd3a-ac45-9efa-887b090d6bfd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:56:01.1299849Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:59: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 --ssh-key-value --disable-rbac + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c60af23e-3afd-45ac-9efa-887b090d6bfd?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"3ef20ac6-fd3a-ac45-9efa-887b090d6bfd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:56:01.1299849Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:00: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 --disable-rbac + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c60af23e-3afd-45ac-9efa-887b090d6bfd?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"3ef20ac6-fd3a-ac45-9efa-887b090d6bfd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:56:01.1299849Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10: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 --ssh-key-value --disable-rbac + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c60af23e-3afd-45ac-9efa-887b090d6bfd?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"3ef20ac6-fd3a-ac45-9efa-887b090d6bfd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:56:01.1299849Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:01: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 --disable-rbac + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c60af23e-3afd-45ac-9efa-887b090d6bfd?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"3ef20ac6-fd3a-ac45-9efa-887b090d6bfd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:56:01.1299849Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10: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 --ssh-key-value --disable-rbac + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c60af23e-3afd-45ac-9efa-887b090d6bfd?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"3ef20ac6-fd3a-ac45-9efa-887b090d6bfd\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:56:01.1299849Z\",\n \"endTime\": + \"2023-06-29T10:01:34.5800515Z\"\n }" headers: cache-control: - no-cache @@ -555,7 +794,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 22:48:07 GMT + - Thu, 29 Jun 2023 10:02:02 GMT expires: - '-1' pragma: @@ -587,66 +826,63 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --disable-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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestcnd27hesa-79a739\",\n \"fqdn\": \"cliakstest-clitestcnd27hesa-79a739-8bzgh0xh.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestcnd27hesa-79a739-8bzgh0xh.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4b3a2709-b8ad-4404-9fea-4b7df341898b\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4250' + - '3921' content-type: - application/json date: - - Wed, 14 Jun 2023 22:48:07 GMT + - Thu, 29 Jun 2023 10:02:03 GMT expires: - '-1' pragma: @@ -680,8 +916,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -689,17 +925,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f25226af-9fff-465b-bebe-7f90dde5fad9?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 14 Jun 2023 22:48:09 GMT + - Thu, 29 Jun 2023 10:02:05 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/f25226af-9fff-465b-bebe-7f90dde5fad9?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_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 index 74223f420a0..e6e79301765 100644 --- 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,36 +13,39 @@ interactions: ParameterSetName: - -l --query User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/kubernetesVersions?api-version=2023-05-01 response: body: - 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 }" + 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.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 \"version\": \"1.26\",\n \"capabilities\": {\n \"supportPlan\": + [\n \"KubernetesOfficial\"\n ]\n },\n \"patchVersions\": {\n + \ \"1.26.0\": {\n \"upgrades\": [\n \"1.26.3\",\n \"1.27.1\"\n + \ ]\n },\n \"1.26.3\": {\n \"upgrades\": [\n \"1.27.1\"\n + \ ]\n }\n }\n },\n {\n \"version\": \"1.27\",\n \"capabilities\": + {\n \"supportPlan\": [\n \"KubernetesOfficial\",\n \"AKSLongTermSupport\"\n + \ ]\n },\n \"patchVersions\": {\n \"1.27.1\": {\n \"upgrades\": + []\n }\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '957' + - '1218' content-type: - application/json date: - - Wed, 14 Jun 2023 22:48:12 GMT + - Thu, 29 Jun 2023 09:41:44 GMT expires: - '-1' pragma: @@ -75,8 +78,8 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -92,7 +95,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 22:48:12 GMT + - Thu, 29 Jun 2023 09:41:45 GMT expires: - '-1' pragma: @@ -108,17 +111,18 @@ interactions: message: Not Found - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "1.26.3", "dnsPrefix": "cliakstest-clitestbfqbgrtdd-8ecadf", + {"kubernetesVersion": "1.27.1", "dnsPrefix": "cliakstest-clitestcftjpnbaf-79a739", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "orchestratorVersion": "1.26.3", "upgradeSettings": {}, "enableNodePublicIP": + "mode": "System", "orchestratorVersion": "1.27.1", "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": - {"outboundType": "loadBalancer", "loadBalancerSku": "standard", "ipFamilies": - ["IPv4", "IPv6"]}, "disableLocalAccounts": false, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, + "networkProfile": {"outboundType": "loadBalancer", "loadBalancerSku": "standard", + "ipFamilies": ["IPv4", "IPv6"]}, "disableLocalAccounts": false, "storageProfile": + {}}}' headers: AKSHTTPCustomFeatures: - Microsoft.ContainerService/AKS-EnableDualStack @@ -131,72 +135,69 @@ interactions: Connection: - keep-alive Content-Length: - - '1680' + - '1351' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.27.1\",\n \"currentKubernetesVersion\": \"1.27.1\",\n \"dnsPrefix\": + \"cliakstest-clitestcftjpnbaf-79a739\",\n \"fqdn\": \"cliakstest-clitestcftjpnbaf-79a739-2gdq3bg9.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestcftjpnbaf-79a739-2gdq3bg9.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.27.1\",\n \"currentOrchestratorVersion\": + \"1.27.1\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"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 \"fd5c:510c:cbc5:aaf::/64\"\n + \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\",\n \"fdcd:e5a1:4ed0:5ca9::/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/7e6b821d-19ee-484b-a931-66041a5c574a?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/aacfee37-1156-42c6-bc80-fa7fed2526d9?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3695' + - '3368' content-type: - application/json date: - - Wed, 14 Jun 2023 22:48:18 GMT + - Thu, 29 Jun 2023 09:41:51 GMT expires: - '-1' pragma: @@ -227,23 +228,23 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/aacfee37-1156-42c6-bc80-fa7fed2526d9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1d826b7e-ee19-4b48-a931-66041a5c574a\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T22:48:18.8249764Z\"\n }" + string: "{\n \"name\": \"37eecfaa-5611-c642-bc80-fa7fed2526d9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:41:51.565272Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 14 Jun 2023 22:48:18 GMT + - Thu, 29 Jun 2023 09:41:51 GMT expires: - '-1' pragma: @@ -276,23 +277,23 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/aacfee37-1156-42c6-bc80-fa7fed2526d9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1d826b7e-ee19-4b48-a931-66041a5c574a\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T22:48:18.8249764Z\"\n }" + string: "{\n \"name\": \"37eecfaa-5611-c642-bc80-fa7fed2526d9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:41:51.565272Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 14 Jun 2023 22:48:48 GMT + - Thu, 29 Jun 2023 09:42:21 GMT expires: - '-1' pragma: @@ -325,23 +326,23 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/aacfee37-1156-42c6-bc80-fa7fed2526d9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1d826b7e-ee19-4b48-a931-66041a5c574a\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T22:48:18.8249764Z\"\n }" + string: "{\n \"name\": \"37eecfaa-5611-c642-bc80-fa7fed2526d9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:41:51.565272Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 14 Jun 2023 22:49:18 GMT + - Thu, 29 Jun 2023 09:42:51 GMT expires: - '-1' pragma: @@ -374,23 +375,23 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/aacfee37-1156-42c6-bc80-fa7fed2526d9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1d826b7e-ee19-4b48-a931-66041a5c574a\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T22:48:18.8249764Z\"\n }" + string: "{\n \"name\": \"37eecfaa-5611-c642-bc80-fa7fed2526d9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:41:51.565272Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 14 Jun 2023 22:49:49 GMT + - Thu, 29 Jun 2023 09:43:22 GMT expires: - '-1' pragma: @@ -423,23 +424,23 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/aacfee37-1156-42c6-bc80-fa7fed2526d9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1d826b7e-ee19-4b48-a931-66041a5c574a\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T22:48:18.8249764Z\"\n }" + string: "{\n \"name\": \"37eecfaa-5611-c642-bc80-fa7fed2526d9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:41:51.565272Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 14 Jun 2023 22:50:19 GMT + - Thu, 29 Jun 2023 09:43:52 GMT expires: - '-1' pragma: @@ -472,23 +473,23 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/aacfee37-1156-42c6-bc80-fa7fed2526d9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1d826b7e-ee19-4b48-a931-66041a5c574a\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T22:48:18.8249764Z\"\n }" + string: "{\n \"name\": \"37eecfaa-5611-c642-bc80-fa7fed2526d9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:41:51.565272Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 14 Jun 2023 22:50:49 GMT + - Thu, 29 Jun 2023 09:44:22 GMT expires: - '-1' pragma: @@ -521,23 +522,23 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/aacfee37-1156-42c6-bc80-fa7fed2526d9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1d826b7e-ee19-4b48-a931-66041a5c574a\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T22:48:18.8249764Z\"\n }" + string: "{\n \"name\": \"37eecfaa-5611-c642-bc80-fa7fed2526d9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:41:51.565272Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 14 Jun 2023 22:51:19 GMT + - Thu, 29 Jun 2023 09:44:52 GMT expires: - '-1' pragma: @@ -570,23 +571,23 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/aacfee37-1156-42c6-bc80-fa7fed2526d9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1d826b7e-ee19-4b48-a931-66041a5c574a\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T22:48:18.8249764Z\"\n }" + string: "{\n \"name\": \"37eecfaa-5611-c642-bc80-fa7fed2526d9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:41:51.565272Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 14 Jun 2023 22:51:50 GMT + - Thu, 29 Jun 2023 09:45:22 GMT expires: - '-1' pragma: @@ -619,24 +620,23 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/aacfee37-1156-42c6-bc80-fa7fed2526d9?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 }" + string: "{\n \"name\": \"37eecfaa-5611-c642-bc80-fa7fed2526d9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:41:51.565272Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '125' content-type: - application/json date: - - Wed, 14 Jun 2023 22:52:20 GMT + - Thu, 29 Jun 2023 09:45:52 GMT expires: - '-1' pragma: @@ -669,68 +669,115 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/aacfee37-1156-42c6-bc80-fa7fed2526d9?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"37eecfaa-5611-c642-bc80-fa7fed2526d9\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:41:51.565272Z\",\n \"endTime\": + \"2023-06-29T09:46:16.8709949Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '169' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:46: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 --ip-families --ssh-key-value --kubernetes-version + --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.27.1\",\n \"currentKubernetesVersion\": \"1.27.1\",\n \"dnsPrefix\": + \"cliakstest-clitestcftjpnbaf-79a739\",\n \"fqdn\": \"cliakstest-clitestcftjpnbaf-79a739-2gdq3bg9.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestcftjpnbaf-79a739-2gdq3bg9.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.27.1\",\n \"currentOrchestratorVersion\": + \"1.27.1\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"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/71a93f9e-8a92-4cfe-9c94-60d96edbf1b0\"\n + \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/2a7a9879-189c-47a7-94a4-141af422c2a4-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 \"fd5c:510c:cbc5:aaf::/64\"\n + \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\",\n \"fdcd:e5a1:4ed0:5ca9::/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: - - '4577' + - '4250' content-type: - application/json date: - - Wed, 14 Jun 2023 22:52:21 GMT + - Thu, 29 Jun 2023 09:46:23 GMT expires: - '-1' pragma: @@ -764,8 +811,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -773,17 +820,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5eb56ec6-7c46-447f-a011-5c2d56237cfa?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 14 Jun 2023 22:52:22 GMT + - Thu, 29 Jun 2023 09:46:24 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/5eb56ec6-7c46-447f-a011-5c2d56237cfa?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_azure_rbac.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_enable_azure_rbac.yaml index 9ecabd2f13f..324c1f8fb91 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 22:52:28 GMT + - Thu, 29 Jun 2023 09:46:28 GMT expires: - '-1' pragma: @@ -58,12 +58,12 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --enable-aad --enable-azure-rbac User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1039-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_enable_azure_rbac","date":"2023-06-14T22:52:28Z","module":"acs"},"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-29T09:46:27Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -72,7 +72,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 14 Jun 2023 22:52:29 GMT + - Thu, 29 Jun 2023 09:46:28 GMT expires: - '-1' pragma: @@ -88,19 +88,19 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestv2l6wgxqo-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestki45iz7as-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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "aadProfile": {"managed": true, "enableAzureRBAC": + true}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -111,72 +111,69 @@ interactions: Connection: - keep-alive Content-Length: - - '1809' + - '1480' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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\ - \ }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestki45iz7as-79a739\",\n \"fqdn\": \"cliakstest-clitestki45iz7as-79a739-9r723cvl.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestki45iz7as-79a739-9r723cvl.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"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/c79da10d-65be-4533-8b3f-b12c8783a6b5?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/20d40bff-f58b-4991-8543-fa84efad66d2?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3783' + - '3454' content-type: - application/json date: - - Wed, 14 Jun 2023 22:52:34 GMT + - Thu, 29 Jun 2023 09:46:34 GMT expires: - '-1' pragma: @@ -188,7 +185,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -206,14 +203,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/20d40bff-f58b-4991-8543-fa84efad66d2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0da19dc7-be65-3345-8b3f-b12c8783a6b5\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T22:52:35.0444364Z\"\n }" + string: "{\n \"name\": \"ff0bd420-8bf5-9149-8543-fa84efad66d2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:46:34.3003338Z\"\n }" headers: cache-control: - no-cache @@ -222,7 +219,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 22:52:34 GMT + - Thu, 29 Jun 2023 09:46:34 GMT expires: - '-1' pragma: @@ -254,14 +251,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/20d40bff-f58b-4991-8543-fa84efad66d2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0da19dc7-be65-3345-8b3f-b12c8783a6b5\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T22:52:35.0444364Z\"\n }" + string: "{\n \"name\": \"ff0bd420-8bf5-9149-8543-fa84efad66d2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:46:34.3003338Z\"\n }" headers: cache-control: - no-cache @@ -270,7 +267,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 22:53:04 GMT + - Thu, 29 Jun 2023 09:47:04 GMT expires: - '-1' pragma: @@ -302,14 +299,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/20d40bff-f58b-4991-8543-fa84efad66d2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0da19dc7-be65-3345-8b3f-b12c8783a6b5\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T22:52:35.0444364Z\"\n }" + string: "{\n \"name\": \"ff0bd420-8bf5-9149-8543-fa84efad66d2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:46:34.3003338Z\"\n }" headers: cache-control: - no-cache @@ -318,7 +315,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 22:53:34 GMT + - Thu, 29 Jun 2023 09:47:34 GMT expires: - '-1' pragma: @@ -350,14 +347,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/20d40bff-f58b-4991-8543-fa84efad66d2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0da19dc7-be65-3345-8b3f-b12c8783a6b5\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T22:52:35.0444364Z\"\n }" + string: "{\n \"name\": \"ff0bd420-8bf5-9149-8543-fa84efad66d2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:46:34.3003338Z\"\n }" headers: cache-control: - no-cache @@ -366,7 +363,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 22:54:06 GMT + - Thu, 29 Jun 2023 09:48:04 GMT expires: - '-1' pragma: @@ -398,14 +395,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/20d40bff-f58b-4991-8543-fa84efad66d2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0da19dc7-be65-3345-8b3f-b12c8783a6b5\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T22:52:35.0444364Z\"\n }" + string: "{\n \"name\": \"ff0bd420-8bf5-9149-8543-fa84efad66d2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:46:34.3003338Z\"\n }" headers: cache-control: - no-cache @@ -414,7 +411,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 22:54:36 GMT + - Thu, 29 Jun 2023 09:48:34 GMT expires: - '-1' pragma: @@ -446,14 +443,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/20d40bff-f58b-4991-8543-fa84efad66d2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0da19dc7-be65-3345-8b3f-b12c8783a6b5\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T22:52:35.0444364Z\"\n }" + string: "{\n \"name\": \"ff0bd420-8bf5-9149-8543-fa84efad66d2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:46:34.3003338Z\"\n }" headers: cache-control: - no-cache @@ -462,7 +459,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 22:55:06 GMT + - Thu, 29 Jun 2023 09:49:05 GMT expires: - '-1' pragma: @@ -494,14 +491,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/20d40bff-f58b-4991-8543-fa84efad66d2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0da19dc7-be65-3345-8b3f-b12c8783a6b5\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-14T22:52:35.0444364Z\"\n }" + string: "{\n \"name\": \"ff0bd420-8bf5-9149-8543-fa84efad66d2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:46:34.3003338Z\"\n }" headers: cache-control: - no-cache @@ -510,7 +507,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 22:55:36 GMT + - Thu, 29 Jun 2023 09:49:35 GMT expires: - '-1' pragma: @@ -542,15 +539,159 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/20d40bff-f58b-4991-8543-fa84efad66d2?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 }" + string: "{\n \"name\": \"ff0bd420-8bf5-9149-8543-fa84efad66d2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:46:34.3003338Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:50: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 --enable-aad --enable-azure-rbac + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/20d40bff-f58b-4991-8543-fa84efad66d2?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ff0bd420-8bf5-9149-8543-fa84efad66d2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:46:34.3003338Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:50: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 --enable-aad --enable-azure-rbac + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/20d40bff-f58b-4991-8543-fa84efad66d2?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ff0bd420-8bf5-9149-8543-fa84efad66d2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:46:34.3003338Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:51: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 --enable-aad --enable-azure-rbac + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/20d40bff-f58b-4991-8543-fa84efad66d2?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ff0bd420-8bf5-9149-8543-fa84efad66d2\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:46:34.3003338Z\",\n \"endTime\": + \"2023-06-29T09:51:25.9048902Z\"\n }" headers: cache-control: - no-cache @@ -559,7 +700,7 @@ interactions: content-type: - application/json date: - - Wed, 14 Jun 2023 22:56:06 GMT + - Thu, 29 Jun 2023 09:51:35 GMT expires: - '-1' pragma: @@ -591,69 +732,66 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestki45iz7as-79a739\",\n \"fqdn\": \"cliakstest-clitestki45iz7as-79a739-9r723cvl.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestki45iz7as-79a739-9r723cvl.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/2b69e6f2-17e3-4ccc-87ee-9d1d13fbe365\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"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: - - '4436' + - '4107' content-type: - application/json date: - - Wed, 14 Jun 2023 22:56:07 GMT + - Thu, 29 Jun 2023 09:51:36 GMT expires: - '-1' pragma: @@ -687,8 +825,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -696,17 +834,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/95788ef1-181c-4cae-ac9c-2cdc6c413511?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 14 Jun 2023 22:56:08 GMT + - Thu, 29 Jun 2023 09:51:37 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/95788ef1-181c-4cae-ac9c-2cdc6c413511?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 fc1eede0894..049c25da4ea 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 22:30:32 GMT + - Thu, 29 Jun 2023 09:51:40 GMT expires: - '-1' pragma: @@ -60,12 +60,12 @@ 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.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1039-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_loadbalancer_then_update","date":"2023-06-15T22:30:31Z","module":"acs"},"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-29T09:51:39Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -74,7 +74,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 22:30:33 GMT + - Thu, 29 Jun 2023 09:51:40 GMT expires: - '-1' pragma: @@ -90,20 +90,20 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest24eqbkw57-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestygk3popiq-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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard", "loadBalancerProfile": {"managedOutboundIPs": + {"count": 2, "countIPv6": 0}, "allocatedOutboundPorts": 2048, "idleTimeoutInMinutes": + 5}}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -114,71 +114,68 @@ interactions: Connection: - keep-alive Content-Length: - - '1887' + - '1558' 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestygk3popiq-79a739\",\n \"fqdn\": \"cliakstest-clitestygk3popiq-79a739-6t0t0ylr.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestygk3popiq-79a739-6t0t0ylr.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"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/1e77bea5-41de-4203-b815-597bdd16d0ee?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3ca52caf-0efc-47a2-bf1a-2e5121b0f0cf?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3665' + - '3336' content-type: - application/json date: - - Thu, 15 Jun 2023 22:30:54 GMT + - Thu, 29 Jun 2023 09:51:47 GMT expires: - '-1' pragma: @@ -190,7 +187,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -209,14 +206,63 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3ca52caf-0efc-47a2-bf1a-2e5121b0f0cf?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"af2ca53c-fc0e-a247-bf1a-2e5121b0f0cf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:51:47.0666778Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09: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 create + Connection: + - keep-alive + 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.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3ca52caf-0efc-47a2-bf1a-2e5121b0f0cf?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a5be771e-de41-0342-b815-597bdd16d0ee\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T22:30:40.9234002Z\"\n }" + string: "{\n \"name\": \"af2ca53c-fc0e-a247-bf1a-2e5121b0f0cf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:51:47.0666778Z\"\n }" headers: cache-control: - no-cache @@ -225,7 +271,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 22:30:55 GMT + - Thu, 29 Jun 2023 09:52:17 GMT expires: - '-1' pragma: @@ -258,14 +304,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3ca52caf-0efc-47a2-bf1a-2e5121b0f0cf?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a5be771e-de41-0342-b815-597bdd16d0ee\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T22:30:40.9234002Z\"\n }" + string: "{\n \"name\": \"af2ca53c-fc0e-a247-bf1a-2e5121b0f0cf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:51:47.0666778Z\"\n }" headers: cache-control: - no-cache @@ -274,7 +320,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 22:31:25 GMT + - Thu, 29 Jun 2023 09:52:47 GMT expires: - '-1' pragma: @@ -307,14 +353,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3ca52caf-0efc-47a2-bf1a-2e5121b0f0cf?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a5be771e-de41-0342-b815-597bdd16d0ee\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T22:30:40.9234002Z\"\n }" + string: "{\n \"name\": \"af2ca53c-fc0e-a247-bf1a-2e5121b0f0cf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:51:47.0666778Z\"\n }" headers: cache-control: - no-cache @@ -323,7 +369,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 22:31:55 GMT + - Thu, 29 Jun 2023 09:53:17 GMT expires: - '-1' pragma: @@ -356,14 +402,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3ca52caf-0efc-47a2-bf1a-2e5121b0f0cf?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a5be771e-de41-0342-b815-597bdd16d0ee\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T22:30:40.9234002Z\"\n }" + string: "{\n \"name\": \"af2ca53c-fc0e-a247-bf1a-2e5121b0f0cf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:51:47.0666778Z\"\n }" headers: cache-control: - no-cache @@ -372,7 +418,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 22:32:25 GMT + - Thu, 29 Jun 2023 09:53:47 GMT expires: - '-1' pragma: @@ -405,14 +451,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3ca52caf-0efc-47a2-bf1a-2e5121b0f0cf?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a5be771e-de41-0342-b815-597bdd16d0ee\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T22:30:40.9234002Z\"\n }" + string: "{\n \"name\": \"af2ca53c-fc0e-a247-bf1a-2e5121b0f0cf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:51:47.0666778Z\"\n }" headers: cache-control: - no-cache @@ -421,7 +467,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 22:32:55 GMT + - Thu, 29 Jun 2023 09:54:18 GMT expires: - '-1' pragma: @@ -454,14 +500,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3ca52caf-0efc-47a2-bf1a-2e5121b0f0cf?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a5be771e-de41-0342-b815-597bdd16d0ee\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T22:30:40.9234002Z\"\n }" + string: "{\n \"name\": \"af2ca53c-fc0e-a247-bf1a-2e5121b0f0cf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:51:47.0666778Z\"\n }" headers: cache-control: - no-cache @@ -470,7 +516,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 22:33:25 GMT + - Thu, 29 Jun 2023 09:54:48 GMT expires: - '-1' pragma: @@ -503,15 +549,211 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3ca52caf-0efc-47a2-bf1a-2e5121b0f0cf?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"af2ca53c-fc0e-a247-bf1a-2e5121b0f0cf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:51:47.0666778Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:55: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 --ssh-key-value --load-balancer-sku --load-balancer-managed-outbound-ip-count + --load-balancer-outbound-ports --load-balancer-idle-timeout + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3ca52caf-0efc-47a2-bf1a-2e5121b0f0cf?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"af2ca53c-fc0e-a247-bf1a-2e5121b0f0cf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:51:47.0666778Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09: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 create + Connection: + - keep-alive + 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.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3ca52caf-0efc-47a2-bf1a-2e5121b0f0cf?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"af2ca53c-fc0e-a247-bf1a-2e5121b0f0cf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:51:47.0666778Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09: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 create + Connection: + - keep-alive + 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.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3ca52caf-0efc-47a2-bf1a-2e5121b0f0cf?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"af2ca53c-fc0e-a247-bf1a-2e5121b0f0cf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:51:47.0666778Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:56: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 --ssh-key-value --load-balancer-sku --load-balancer-managed-outbound-ip-count + --load-balancer-outbound-ports --load-balancer-idle-timeout + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3ca52caf-0efc-47a2-bf1a-2e5121b0f0cf?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"af2ca53c-fc0e-a247-bf1a-2e5121b0f0cf\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:51:47.0666778Z\",\n \"endTime\": + \"2023-06-29T09:57:11.6459092Z\"\n }" headers: cache-control: - no-cache @@ -520,7 +762,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 22:33:56 GMT + - Thu, 29 Jun 2023 09:57:18 GMT expires: - '-1' pragma: @@ -553,68 +795,65 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestygk3popiq-79a739\",\n \"fqdn\": \"cliakstest-clitestygk3popiq-79a739-6t0t0ylr.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestygk3popiq-79a739-6t0t0ylr.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"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/0711708a-a926-4ccc-913d-06901859b1de\"\n + \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/44a4b513-c881-408a-b05e-fca50380de68\"\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: - - '4542' + - '4213' content-type: - application/json date: - - Thu, 15 Jun 2023 22:33:56 GMT + - Thu, 29 Jun 2023 09:57:19 GMT expires: - '-1' pragma: @@ -646,68 +885,65 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestygk3popiq-79a739\",\n \"fqdn\": \"cliakstest-clitestygk3popiq-79a739-6t0t0ylr.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestygk3popiq-79a739-6t0t0ylr.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"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/0711708a-a926-4ccc-913d-06901859b1de\"\n + \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/44a4b513-c881-408a-b05e-fca50380de68\"\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: - - '4542' + - '4213' content-type: - application/json date: - - Thu, 15 Jun 2023 22:33:58 GMT + - Thu, 29 Jun 2023 09:57:21 GMT expires: - '-1' pragma: @@ -728,22 +964,21 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": - "cliakstest-clitest24eqbkw57-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-clitestygk3popiq-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.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"}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_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": 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"}], + "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}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0711708a-a926-4ccc-913d-06901859b1de"}, + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/44a4b513-c881-408a-b05e-fca50380de68"}], "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", @@ -760,76 +995,73 @@ interactions: Connection: - keep-alive Content-Length: - - '3075' + - '2709' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestygk3popiq-79a739\",\n \"fqdn\": \"cliakstest-clitestygk3popiq-79a739-6t0t0ylr.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestygk3popiq-79a739-6t0t0ylr.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"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/0711708a-a926-4ccc-913d-06901859b1de\"\n + \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/44a4b513-c881-408a-b05e-fca50380de68\"\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/4b29f629-89b2-4f6c-830d-e24ef7b41b12?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a413bf7f-718b-4da5-aed7-d4cd0b05b78b?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4541' + - '4212' content-type: - application/json date: - - Thu, 15 Jun 2023 22:34:04 GMT + - Thu, 29 Jun 2023 09:57:26 GMT expires: - '-1' pragma: @@ -863,23 +1095,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a413bf7f-718b-4da5-aed7-d4cd0b05b78b?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 }" + string: "{\n \"name\": \"7fbf13a4-8b71-a54d-aed7-d4cd0b05b78b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:57:25.6458427Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 22:34:04 GMT + - Thu, 29 Jun 2023 09:57:26 GMT expires: - '-1' pragma: @@ -911,23 +1143,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a413bf7f-718b-4da5-aed7-d4cd0b05b78b?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 }" + string: "{\n \"name\": \"7fbf13a4-8b71-a54d-aed7-d4cd0b05b78b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:57:25.6458427Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 22:34:35 GMT + - Thu, 29 Jun 2023 09:57:56 GMT expires: - '-1' pragma: @@ -959,23 +1191,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a413bf7f-718b-4da5-aed7-d4cd0b05b78b?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 }" + string: "{\n \"name\": \"7fbf13a4-8b71-a54d-aed7-d4cd0b05b78b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:57:25.6458427Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 22:35:05 GMT + - Thu, 29 Jun 2023 09:58:26 GMT expires: - '-1' pragma: @@ -1007,23 +1239,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a413bf7f-718b-4da5-aed7-d4cd0b05b78b?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 }" + string: "{\n \"name\": \"7fbf13a4-8b71-a54d-aed7-d4cd0b05b78b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:57:25.6458427Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 22:35:35 GMT + - Thu, 29 Jun 2023 09:58:56 GMT expires: - '-1' pragma: @@ -1055,24 +1287,24 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a413bf7f-718b-4da5-aed7-d4cd0b05b78b?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 }" + string: "{\n \"name\": \"7fbf13a4-8b71-a54d-aed7-d4cd0b05b78b\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:57:25.6458427Z\",\n \"endTime\": + \"2023-06-29T09:59:01.7094042Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '170' content-type: - application/json date: - - Thu, 15 Jun 2023 22:36:04 GMT + - Thu, 29 Jun 2023 09:59:27 GMT expires: - '-1' pragma: @@ -1104,68 +1336,65 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestygk3popiq-79a739\",\n \"fqdn\": \"cliakstest-clitestygk3popiq-79a739-6t0t0ylr.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestygk3popiq-79a739-6t0t0ylr.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"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/0711708a-a926-4ccc-913d-06901859b1de\"\n + \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/44a4b513-c881-408a-b05e-fca50380de68\"\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: - - '4543' + - '4214' content-type: - application/json date: - - Thu, 15 Jun 2023 22:36:05 GMT + - Thu, 29 Jun 2023 09:59:27 GMT expires: - '-1' pragma: @@ -1199,8 +1428,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -1208,17 +1437,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7a31bfca-bd42-41dd-bbba-e3777eac81b7?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 15 Jun 2023 22:36:11 GMT + - Thu, 29 Jun 2023 09:59:29 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/7a31bfca-bd42-41dd-bbba-e3777eac81b7?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_network_cidr.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_network_cidr.yaml index 2712a40ac62..9fa00d4adba 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 @@ -14,8 +14,8 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 22:36:16 GMT + - Thu, 29 Jun 2023 09:59:32 GMT expires: - '-1' pragma: @@ -60,12 +60,12 @@ interactions: - --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-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1039-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_network_cidr","date":"2023-06-15T22:36:13Z","module":"acs"},"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-29T09:59:31Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -74,7 +74,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 22:36:15 GMT + - Thu, 29 Jun 2023 09:59:33 GMT expires: - '-1' pragma: @@ -90,19 +90,19 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestdo63xky4b-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestj35o7365l-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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": - {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", + "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": + false, "storageProfile": {}}}' headers: Accept: - application/json @@ -113,71 +113,68 @@ interactions: Connection: - keep-alive Content-Length: - - '1778' + - '1449' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestj35o7365l-79a739\",\n \"fqdn\": \"cliakstest-clitestj35o7365l-79a739-tyyug1j6.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestj35o7365l-79a739-tyyug1j6.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"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/4b215d85-59a2-44de-82ac-7b9f73e7b3c4?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/30b3b0ac-939a-40a8-adf2-ed48f2645028?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3627' + - '3298' content-type: - application/json date: - - Thu, 15 Jun 2023 22:36:23 GMT + - Thu, 29 Jun 2023 09:59:39 GMT expires: - '-1' pragma: @@ -208,14 +205,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/30b3b0ac-939a-40a8-adf2-ed48f2645028?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"855d214b-a259-de44-82ac-7b9f73e7b3c4\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T22:36:23.3614105Z\"\n }" + string: "{\n \"name\": \"acb0b330-9a93-a840-adf2-ed48f2645028\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:59:38.6774542Z\"\n }" headers: cache-control: - no-cache @@ -224,7 +221,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 22:36:23 GMT + - Thu, 29 Jun 2023 09:59:39 GMT expires: - '-1' pragma: @@ -257,14 +254,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/30b3b0ac-939a-40a8-adf2-ed48f2645028?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"855d214b-a259-de44-82ac-7b9f73e7b3c4\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T22:36:23.3614105Z\"\n }" + string: "{\n \"name\": \"acb0b330-9a93-a840-adf2-ed48f2645028\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:59:38.6774542Z\"\n }" headers: cache-control: - no-cache @@ -273,7 +270,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 22:36:53 GMT + - Thu, 29 Jun 2023 10:00:09 GMT expires: - '-1' pragma: @@ -306,14 +303,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/30b3b0ac-939a-40a8-adf2-ed48f2645028?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"855d214b-a259-de44-82ac-7b9f73e7b3c4\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T22:36:23.3614105Z\"\n }" + string: "{\n \"name\": \"acb0b330-9a93-a840-adf2-ed48f2645028\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:59:38.6774542Z\"\n }" headers: cache-control: - no-cache @@ -322,7 +319,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 22:37:23 GMT + - Thu, 29 Jun 2023 10:00:38 GMT expires: - '-1' pragma: @@ -355,14 +352,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/30b3b0ac-939a-40a8-adf2-ed48f2645028?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"855d214b-a259-de44-82ac-7b9f73e7b3c4\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T22:36:23.3614105Z\"\n }" + string: "{\n \"name\": \"acb0b330-9a93-a840-adf2-ed48f2645028\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:59:38.6774542Z\"\n }" headers: cache-control: - no-cache @@ -371,7 +368,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 22:37:54 GMT + - Thu, 29 Jun 2023 10:01:08 GMT expires: - '-1' pragma: @@ -404,14 +401,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/30b3b0ac-939a-40a8-adf2-ed48f2645028?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"855d214b-a259-de44-82ac-7b9f73e7b3c4\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T22:36:23.3614105Z\"\n }" + string: "{\n \"name\": \"acb0b330-9a93-a840-adf2-ed48f2645028\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:59:38.6774542Z\"\n }" headers: cache-control: - no-cache @@ -420,7 +417,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 22:38:24 GMT + - Thu, 29 Jun 2023 10:01:39 GMT expires: - '-1' pragma: @@ -453,14 +450,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/30b3b0ac-939a-40a8-adf2-ed48f2645028?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"855d214b-a259-de44-82ac-7b9f73e7b3c4\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T22:36:23.3614105Z\"\n }" + string: "{\n \"name\": \"acb0b330-9a93-a840-adf2-ed48f2645028\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:59:38.6774542Z\"\n }" headers: cache-control: - no-cache @@ -469,7 +466,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 22:38:54 GMT + - Thu, 29 Jun 2023 10:02:09 GMT expires: - '-1' pragma: @@ -502,14 +499,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/30b3b0ac-939a-40a8-adf2-ed48f2645028?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"855d214b-a259-de44-82ac-7b9f73e7b3c4\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T22:36:23.3614105Z\"\n }" + string: "{\n \"name\": \"acb0b330-9a93-a840-adf2-ed48f2645028\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:59:38.6774542Z\"\n }" headers: cache-control: - no-cache @@ -518,7 +515,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 22:39:25 GMT + - Thu, 29 Jun 2023 10:02:39 GMT expires: - '-1' pragma: @@ -551,14 +548,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/30b3b0ac-939a-40a8-adf2-ed48f2645028?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"855d214b-a259-de44-82ac-7b9f73e7b3c4\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T22:36:23.3614105Z\"\n }" + string: "{\n \"name\": \"acb0b330-9a93-a840-adf2-ed48f2645028\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:59:38.6774542Z\"\n }" headers: cache-control: - no-cache @@ -567,7 +564,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 22:39:55 GMT + - Thu, 29 Jun 2023 10:03:09 GMT expires: - '-1' pragma: @@ -600,14 +597,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/30b3b0ac-939a-40a8-adf2-ed48f2645028?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"855d214b-a259-de44-82ac-7b9f73e7b3c4\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T22:36:23.3614105Z\"\n }" + string: "{\n \"name\": \"acb0b330-9a93-a840-adf2-ed48f2645028\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:59:38.6774542Z\"\n }" headers: cache-control: - no-cache @@ -616,7 +613,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 22:40:25 GMT + - Thu, 29 Jun 2023 10:03:40 GMT expires: - '-1' pragma: @@ -649,14 +646,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/30b3b0ac-939a-40a8-adf2-ed48f2645028?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"855d214b-a259-de44-82ac-7b9f73e7b3c4\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T22:36:23.3614105Z\"\n }" + string: "{\n \"name\": \"acb0b330-9a93-a840-adf2-ed48f2645028\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:59:38.6774542Z\"\n }" headers: cache-control: - no-cache @@ -665,7 +662,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 22:40:55 GMT + - Thu, 29 Jun 2023 10:04:10 GMT expires: - '-1' pragma: @@ -698,15 +695,260 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/30b3b0ac-939a-40a8-adf2-ed48f2645028?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 }" + string: "{\n \"name\": \"acb0b330-9a93-a840-adf2-ed48f2645028\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:59:38.6774542Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:04: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 --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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/30b3b0ac-939a-40a8-adf2-ed48f2645028?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"acb0b330-9a93-a840-adf2-ed48f2645028\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:59:38.6774542Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:05: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 --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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/30b3b0ac-939a-40a8-adf2-ed48f2645028?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"acb0b330-9a93-a840-adf2-ed48f2645028\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:59:38.6774542Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10: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: 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/30b3b0ac-939a-40a8-adf2-ed48f2645028?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"acb0b330-9a93-a840-adf2-ed48f2645028\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:59:38.6774542Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:06: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 --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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/30b3b0ac-939a-40a8-adf2-ed48f2645028?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"acb0b330-9a93-a840-adf2-ed48f2645028\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:59:38.6774542Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:06: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 --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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/30b3b0ac-939a-40a8-adf2-ed48f2645028?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"acb0b330-9a93-a840-adf2-ed48f2645028\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:59:38.6774542Z\",\n \"endTime\": + \"2023-06-29T10:06:55.4332455Z\"\n }" headers: cache-control: - no-cache @@ -715,7 +957,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 22:41:24 GMT + - Thu, 29 Jun 2023 10:07:11 GMT expires: - '-1' pragma: @@ -748,66 +990,64 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestj35o7365l-79a739\",\n \"fqdn\": \"cliakstest-clitestj35o7365l-79a739-tyyug1j6.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestj35o7365l-79a739-tyyug1j6.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"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/2bdc2fa6-6386-44af-aa2c-d5abbd8990f5\"\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: - - '4280' + - '3951' content-type: - application/json date: - - Thu, 15 Jun 2023 22:41:26 GMT + - Thu, 29 Jun 2023 10:07:12 GMT expires: - '-1' pragma: @@ -841,8 +1081,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -850,17 +1090,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/73360e6d-011b-456f-8485-3bcc26196e61?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 15 Jun 2023 22:41:28 GMT + - Thu, 29 Jun 2023 10:07:13 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/73360e6d-011b-456f-8485-3bcc26196e61?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_public_ip.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_node_public_ip.yaml index 163320f087f..efc4450546b 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.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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/\\\"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}" + 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/\\\"4a9e213c-c72a-4a81-8bb5-a801dac6216d\\\"\",\r\n \"type\": + \"Microsoft.Network/publicIPPrefixes\",\r\n \"location\": \"westus2\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": + \"c3ed120e-0fde-4dea-bb41-6eee5aa173bb\",\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/70027328-59b5-4b99-b1db-f3c2d3c858ea?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/f95074cb-36eb-4ebb-89fe-08a1a50f46c8?api-version=2022-09-01 cache-control: - no-cache content-length: @@ -43,7 +43,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 02:22:38 GMT + - Thu, 29 Jun 2023 10:13:42 GMT expires: - '-1' pragma: @@ -56,9 +56,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - edfb7523-d7a5-49f2-9025-412ca40005e0 + - 35db2459-f962-4714-8284-381ab467db31 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 201 message: Created @@ -76,9 +76,58 @@ interactions: ParameterSetName: - -g -n --location --length User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/f95074cb-36eb-4ebb-89fe-08a1a50f46c8?api-version=2022-09-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: + - Thu, 29 Jun 2023 10:13: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: + - 368330e9-79b7-4ece-85d9-f35283f9d8b4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network public-ip prefix create + Connection: + - keep-alive + ParameterSetName: + - -g -n --location --length + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/f95074cb-36eb-4ebb-89fe-08a1a50f46c8?api-version=2022-09-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -90,7 +139,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 02:22:39 GMT + - Thu, 29 Jun 2023 10:13:52 GMT expires: - '-1' pragma: @@ -107,7 +156,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2132ce24-53a9-4a08-a860-c419e1e359eb + - aa6a9aad-b44a-4cd2-a2d1-8b8208d276df status: code: 200 message: OK @@ -125,31 +174,30 @@ interactions: ParameterSetName: - -g -n --location --length User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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/\\\"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}" + 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/\\\"94fdf971-9b20-435a-aae1-be0735e78cc3\\\"\",\r\n \"type\": + \"Microsoft.Network/publicIPPrefixes\",\r\n \"location\": \"westus2\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": + \"c3ed120e-0fde-4dea-bb41-6eee5aa173bb\",\r\n \"prefixLength\": 29,\r\n + \ \"publicIPAddressVersion\": \"IPv4\",\r\n \"ipPrefix\": \"4.155.17.160/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' + - '639' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 02:22:39 GMT + - Thu, 29 Jun 2023 10:13:52 GMT etag: - - W/"c356e6d7-0733-4d34-91da-d78f9cb3b784" + - W/"94fdf971-9b20-435a-aae1-be0735e78cc3" expires: - '-1' pragma: @@ -166,7 +214,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e112ea35-b903-4f69-8b3c-f4eda4a8bcf2 + - 8062d8e8-cb73-4aae-a3f7-7887c9a617a5 status: code: 200 message: OK @@ -184,8 +232,8 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --enable-node-public-ip --node-public-ip-prefix-id User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -201,7 +249,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 02:22:40 GMT + - Thu, 29 Jun 2023 10:13:53 GMT expires: - '-1' pragma: @@ -229,12 +277,12 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --enable-node-public-ip --node-public-ip-prefix-id User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1039-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_node_public_ip","date":"2023-06-15T02:22:34Z","module":"acs"},"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-29T10:13:39Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -243,7 +291,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 02:22:40 GMT + - Thu, 29 Jun 2023 10:13:53 GMT expires: - '-1' pragma: @@ -259,7 +307,7 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestituxb44pt-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest4lb5auwq2-79a739", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": @@ -267,11 +315,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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {}}}' headers: Accept: - application/json @@ -282,70 +331,68 @@ interactions: Connection: - keep-alive Content-Length: - - '1924' + - '1595' Content-Type: - application/json ParameterSetName: - --resource-group --name --ssh-key-value --enable-node-public-ip --node-public-ip-prefix-id User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitest4lb5auwq2-79a739\",\n \"fqdn\": \"cliakstest-clitest4lb5auwq2-79a739-fjxuds2h.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest4lb5auwq2-79a739-fjxuds2h.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"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/cb4ed43c-bd3a-4906-9a3c-653105fb1b85?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/21b2f0a3-491c-4de1-93bf-5e819675ea53?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3774' + - '3445' content-type: - application/json date: - - Thu, 15 Jun 2023 02:22:48 GMT + - Thu, 29 Jun 2023 10:14:00 GMT expires: - '-1' pragma: @@ -375,14 +422,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --enable-node-public-ip --node-public-ip-prefix-id User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/21b2f0a3-491c-4de1-93bf-5e819675ea53?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3cd44ecb-3abd-0649-9a3c-653105fb1b85\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T02:22:49.1849717Z\"\n }" + string: "{\n \"name\": \"a3f0b221-1c49-e14d-93bf-5e819675ea53\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:14:00.5234649Z\"\n }" headers: cache-control: - no-cache @@ -391,7 +438,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:22:48 GMT + - Thu, 29 Jun 2023 10:14:00 GMT expires: - '-1' pragma: @@ -400,10 +447,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -423,14 +466,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --enable-node-public-ip --node-public-ip-prefix-id User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/21b2f0a3-491c-4de1-93bf-5e819675ea53?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3cd44ecb-3abd-0649-9a3c-653105fb1b85\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T02:22:49.1849717Z\"\n }" + string: "{\n \"name\": \"a3f0b221-1c49-e14d-93bf-5e819675ea53\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:14:00.5234649Z\"\n }" headers: cache-control: - no-cache @@ -439,7 +482,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:23:20 GMT + - Thu, 29 Jun 2023 10:14:31 GMT expires: - '-1' pragma: @@ -448,10 +491,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -471,14 +510,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --enable-node-public-ip --node-public-ip-prefix-id User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/21b2f0a3-491c-4de1-93bf-5e819675ea53?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3cd44ecb-3abd-0649-9a3c-653105fb1b85\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T02:22:49.1849717Z\"\n }" + string: "{\n \"name\": \"a3f0b221-1c49-e14d-93bf-5e819675ea53\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:14:00.5234649Z\"\n }" headers: cache-control: - no-cache @@ -487,7 +526,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:23:50 GMT + - Thu, 29 Jun 2023 10:15:00 GMT expires: - '-1' pragma: @@ -496,10 +535,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -519,14 +554,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --enable-node-public-ip --node-public-ip-prefix-id User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/21b2f0a3-491c-4de1-93bf-5e819675ea53?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3cd44ecb-3abd-0649-9a3c-653105fb1b85\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T02:22:49.1849717Z\"\n }" + string: "{\n \"name\": \"a3f0b221-1c49-e14d-93bf-5e819675ea53\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:14:00.5234649Z\"\n }" headers: cache-control: - no-cache @@ -535,7 +570,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:24:19 GMT + - Thu, 29 Jun 2023 10:15:30 GMT expires: - '-1' pragma: @@ -544,10 +579,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -567,14 +598,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --enable-node-public-ip --node-public-ip-prefix-id User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/21b2f0a3-491c-4de1-93bf-5e819675ea53?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3cd44ecb-3abd-0649-9a3c-653105fb1b85\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T02:22:49.1849717Z\"\n }" + string: "{\n \"name\": \"a3f0b221-1c49-e14d-93bf-5e819675ea53\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:14:00.5234649Z\"\n }" headers: cache-control: - no-cache @@ -583,7 +614,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:24:49 GMT + - Thu, 29 Jun 2023 10:16:00 GMT expires: - '-1' pragma: @@ -592,10 +623,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -615,14 +642,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --enable-node-public-ip --node-public-ip-prefix-id User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/21b2f0a3-491c-4de1-93bf-5e819675ea53?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3cd44ecb-3abd-0649-9a3c-653105fb1b85\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T02:22:49.1849717Z\"\n }" + string: "{\n \"name\": \"a3f0b221-1c49-e14d-93bf-5e819675ea53\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:14:00.5234649Z\"\n }" headers: cache-control: - no-cache @@ -631,7 +658,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:25:19 GMT + - Thu, 29 Jun 2023 10:16:30 GMT expires: - '-1' pragma: @@ -640,10 +667,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -663,14 +686,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --enable-node-public-ip --node-public-ip-prefix-id User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/21b2f0a3-491c-4de1-93bf-5e819675ea53?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3cd44ecb-3abd-0649-9a3c-653105fb1b85\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T02:22:49.1849717Z\"\n }" + string: "{\n \"name\": \"a3f0b221-1c49-e14d-93bf-5e819675ea53\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:14:00.5234649Z\"\n }" headers: cache-control: - no-cache @@ -679,7 +702,183 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:25:50 GMT + - Thu, 29 Jun 2023 10:17:01 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 --ssh-key-value --enable-node-public-ip --node-public-ip-prefix-id + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/21b2f0a3-491c-4de1-93bf-5e819675ea53?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"a3f0b221-1c49-e14d-93bf-5e819675ea53\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:14:00.5234649Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:17:31 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 --ssh-key-value --enable-node-public-ip --node-public-ip-prefix-id + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/21b2f0a3-491c-4de1-93bf-5e819675ea53?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"a3f0b221-1c49-e14d-93bf-5e819675ea53\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:14:00.5234649Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:18:01 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 --ssh-key-value --enable-node-public-ip --node-public-ip-prefix-id + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/21b2f0a3-491c-4de1-93bf-5e819675ea53?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"a3f0b221-1c49-e14d-93bf-5e819675ea53\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:14:00.5234649Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:18:31 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 --ssh-key-value --enable-node-public-ip --node-public-ip-prefix-id + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/21b2f0a3-491c-4de1-93bf-5e819675ea53?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"a3f0b221-1c49-e14d-93bf-5e819675ea53\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:14:00.5234649Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:19:02 GMT expires: - '-1' pragma: @@ -688,10 +887,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -711,15 +906,15 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --enable-node-public-ip --node-public-ip-prefix-id User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/21b2f0a3-491c-4de1-93bf-5e819675ea53?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"a3f0b221-1c49-e14d-93bf-5e819675ea53\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:14:00.5234649Z\",\n \"endTime\": + \"2023-06-29T10:19:04.3954097Z\"\n }" headers: cache-control: - no-cache @@ -728,7 +923,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:26:20 GMT + - Thu, 29 Jun 2023 10:19:32 GMT expires: - '-1' pragma: @@ -737,10 +932,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -760,67 +951,64 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --enable-node-public-ip --node-public-ip-prefix-id User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitest4lb5auwq2-79a739\",\n \"fqdn\": \"cliakstest-clitest4lb5auwq2-79a739-fjxuds2h.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest4lb5auwq2-79a739-fjxuds2h.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a9c019fd-e810-4a55-a460-2840957355fd\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4427' + - '4098' content-type: - application/json date: - - Thu, 15 Jun 2023 02:26:21 GMT + - Thu, 29 Jun 2023 10:19:33 GMT expires: - '-1' pragma: @@ -829,10 +1017,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -854,8 +1038,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -863,17 +1047,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4150ac16-d665-476f-8f82-532f31346390?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 15 Jun 2023 02:26:22 GMT + - Thu, 29 Jun 2023 10:19:34 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/4150ac16-d665-476f-8f82-532f31346390?api-version=2016-03-30 pragma: - no-cache server: @@ -883,7 +1067,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_node_resource_group.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_node_resource_group.yaml index 72d20eee0b3..50244605852 100644 --- 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 02:26:28 GMT + - Thu, 29 Jun 2023 09:48:52 GMT expires: - '-1' pragma: @@ -46,17 +46,17 @@ interactions: message: Not Found - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestgfiqaa3dx-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestz7w3e5k7p-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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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", + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: @@ -69,69 +69,66 @@ interactions: Connection: - keep-alive Content-Length: - - '1791' + - '1462' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestz7w3e5k7p-79a739\",\n \"fqdn\": \"cliakstest-clitestz7w3e5k7p-79a739-xtiyz46f.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestz7w3e5k7p-79a739-xtiyz46f.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"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/fa6b5079-a47c-423a-86f3-409967f0e343?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/69d67404-2dfb-4559-8d74-e300bf4be6b0?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3570' + - '3241' content-type: - application/json date: - - Thu, 15 Jun 2023 02:26:35 GMT + - Thu, 29 Jun 2023 09:48:59 GMT expires: - '-1' pragma: @@ -143,7 +140,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -161,14 +158,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/69d67404-2dfb-4559-8d74-e300bf4be6b0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"79506bfa-7ca4-3a42-86f3-409967f0e343\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T02:26:34.8260604Z\"\n }" + string: "{\n \"name\": \"0474d669-fb2d-5945-8d74-e300bf4be6b0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:48:58.9256226Z\"\n }" headers: cache-control: - no-cache @@ -177,7 +174,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:26:35 GMT + - Thu, 29 Jun 2023 09:48:59 GMT expires: - '-1' pragma: @@ -209,14 +206,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/69d67404-2dfb-4559-8d74-e300bf4be6b0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"79506bfa-7ca4-3a42-86f3-409967f0e343\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T02:26:34.8260604Z\"\n }" + string: "{\n \"name\": \"0474d669-fb2d-5945-8d74-e300bf4be6b0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:48:58.9256226Z\"\n }" headers: cache-control: - no-cache @@ -225,7 +222,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:27:05 GMT + - Thu, 29 Jun 2023 09:49:29 GMT expires: - '-1' pragma: @@ -257,14 +254,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/69d67404-2dfb-4559-8d74-e300bf4be6b0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"79506bfa-7ca4-3a42-86f3-409967f0e343\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T02:26:34.8260604Z\"\n }" + string: "{\n \"name\": \"0474d669-fb2d-5945-8d74-e300bf4be6b0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:48:58.9256226Z\"\n }" headers: cache-control: - no-cache @@ -273,7 +270,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:27:35 GMT + - Thu, 29 Jun 2023 09:49:59 GMT expires: - '-1' pragma: @@ -305,14 +302,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/69d67404-2dfb-4559-8d74-e300bf4be6b0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"79506bfa-7ca4-3a42-86f3-409967f0e343\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T02:26:34.8260604Z\"\n }" + string: "{\n \"name\": \"0474d669-fb2d-5945-8d74-e300bf4be6b0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:48:58.9256226Z\"\n }" headers: cache-control: - no-cache @@ -321,7 +318,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:28:05 GMT + - Thu, 29 Jun 2023 09:50:29 GMT expires: - '-1' pragma: @@ -353,14 +350,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/69d67404-2dfb-4559-8d74-e300bf4be6b0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"79506bfa-7ca4-3a42-86f3-409967f0e343\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T02:26:34.8260604Z\"\n }" + string: "{\n \"name\": \"0474d669-fb2d-5945-8d74-e300bf4be6b0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:48:58.9256226Z\"\n }" headers: cache-control: - no-cache @@ -369,7 +366,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:28:35 GMT + - Thu, 29 Jun 2023 09:50:59 GMT expires: - '-1' pragma: @@ -401,14 +398,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/69d67404-2dfb-4559-8d74-e300bf4be6b0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"79506bfa-7ca4-3a42-86f3-409967f0e343\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T02:26:34.8260604Z\"\n }" + string: "{\n \"name\": \"0474d669-fb2d-5945-8d74-e300bf4be6b0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:48:58.9256226Z\"\n }" headers: cache-control: - no-cache @@ -417,7 +414,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:29:05 GMT + - Thu, 29 Jun 2023 09:51:30 GMT expires: - '-1' pragma: @@ -449,14 +446,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/69d67404-2dfb-4559-8d74-e300bf4be6b0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"79506bfa-7ca4-3a42-86f3-409967f0e343\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T02:26:34.8260604Z\"\n }" + string: "{\n \"name\": \"0474d669-fb2d-5945-8d74-e300bf4be6b0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:48:58.9256226Z\"\n }" headers: cache-control: - no-cache @@ -465,7 +462,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:29:35 GMT + - Thu, 29 Jun 2023 09:52:00 GMT expires: - '-1' pragma: @@ -497,15 +494,207 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/69d67404-2dfb-4559-8d74-e300bf4be6b0?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 }" + string: "{\n \"name\": \"0474d669-fb2d-5945-8d74-e300bf4be6b0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:48:58.9256226Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:52: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 --location --ssh-key-value --node-resource-group + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/69d67404-2dfb-4559-8d74-e300bf4be6b0?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"0474d669-fb2d-5945-8d74-e300bf4be6b0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:48:58.9256226Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:53: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 --location --ssh-key-value --node-resource-group + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/69d67404-2dfb-4559-8d74-e300bf4be6b0?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"0474d669-fb2d-5945-8d74-e300bf4be6b0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:48:58.9256226Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:53: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 --location --ssh-key-value --node-resource-group + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/69d67404-2dfb-4559-8d74-e300bf4be6b0?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"0474d669-fb2d-5945-8d74-e300bf4be6b0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:48:58.9256226Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09: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 +- 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/69d67404-2dfb-4559-8d74-e300bf4be6b0?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"0474d669-fb2d-5945-8d74-e300bf4be6b0\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:48:58.9256226Z\",\n \"endTime\": + \"2023-06-29T09:54:25.5589873Z\"\n }" headers: cache-control: - no-cache @@ -514,7 +703,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:30:05 GMT + - Thu, 29 Jun 2023 09:54:30 GMT expires: - '-1' pragma: @@ -546,66 +735,63 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestz7w3e5k7p-79a739\",\n \"fqdn\": \"cliakstest-clitestz7w3e5k7p-79a739-xtiyz46f.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestz7w3e5k7p-79a739-xtiyz46f.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"supportPlan\": \"KubernetesOfficial\",\n + \ \"networkProfile\": {\n \"networkPlugin\": \"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/40d1e5ca-984f-4776-b9ba-771286c69acb\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/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: - - '4171' + - '3842' content-type: - application/json date: - - Thu, 15 Jun 2023 02:30:06 GMT + - Thu, 29 Jun 2023 09:54:31 GMT expires: - '-1' pragma: @@ -639,8 +825,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -648,17 +834,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/312ee265-12f0-45a9-8292-6d32fa795a31?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 15 Jun 2023 02:30:14 GMT + - Thu, 29 Jun 2023 09:54:32 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/312ee265-12f0-45a9-8292-6d32fa795a31?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 5fbc52be9ad..5014bae853e 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 02:30:18 GMT + - Thu, 29 Jun 2023 09:54: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.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1039-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":"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"}}' + 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_nonaad_and_update_with_managed_aad","date":"2023-06-29T09:54:34Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '387' + - '380' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 02:30:18 GMT + - Thu, 29 Jun 2023 09:54:35 GMT expires: - '-1' pragma: @@ -87,19 +87,20 @@ interactions: code: 200 message: OK - request: - body: '{"location": "southcentralus", "identity": {"type": "SystemAssigned"}, - "properties": {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestzz7iwxisu-8ecadf", + body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestsfy3cr7fg-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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {}}}' headers: Accept: - application/json @@ -110,69 +111,67 @@ interactions: Connection: - keep-alive Content-Length: - - '1758' + - '1422' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - 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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestsfy3cr7fg-79a739\",\n \"fqdn\": \"cliakstest-clitestsfy3cr7fg-79a739-k84u0ryz.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestsfy3cr7fg-79a739-k84u0ryz.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/southcentralus/operations/96c1c1da-ade3-4e70-a2ce-0fb035b02125?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bab6a937-ef42-47d5-96d2-76b9beea7f6b?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3624' + - '3267' content-type: - application/json date: - - Thu, 15 Jun 2023 02:30:24 GMT + - Thu, 29 Jun 2023 09:54:41 GMT expires: - '-1' pragma: @@ -184,7 +183,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' status: code: 201 message: Created @@ -202,23 +201,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bab6a937-ef42-47d5-96d2-76b9beea7f6b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dac1c196-e3ad-704e-a2ce-0fb035b02125\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T02:30:24.4101055Z\"\n }" + string: "{\n \"name\": \"37a9b6ba-42ef-d547-96d2-76b9beea7f6b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:54:41.707862Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 02:30:24 GMT + - Thu, 29 Jun 2023 09:54:41 GMT expires: - '-1' pragma: @@ -250,23 +249,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bab6a937-ef42-47d5-96d2-76b9beea7f6b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dac1c196-e3ad-704e-a2ce-0fb035b02125\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T02:30:24.4101055Z\"\n }" + string: "{\n \"name\": \"37a9b6ba-42ef-d547-96d2-76b9beea7f6b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:54:41.707862Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 02:30:54 GMT + - Thu, 29 Jun 2023 09:55:12 GMT expires: - '-1' pragma: @@ -298,23 +297,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bab6a937-ef42-47d5-96d2-76b9beea7f6b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dac1c196-e3ad-704e-a2ce-0fb035b02125\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T02:30:24.4101055Z\"\n }" + string: "{\n \"name\": \"37a9b6ba-42ef-d547-96d2-76b9beea7f6b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:54:41.707862Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 02:31:25 GMT + - Thu, 29 Jun 2023 09:55:42 GMT expires: - '-1' pragma: @@ -346,23 +345,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bab6a937-ef42-47d5-96d2-76b9beea7f6b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dac1c196-e3ad-704e-a2ce-0fb035b02125\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T02:30:24.4101055Z\"\n }" + string: "{\n \"name\": \"37a9b6ba-42ef-d547-96d2-76b9beea7f6b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:54:41.707862Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 02:31:55 GMT + - Thu, 29 Jun 2023 09:56:12 GMT expires: - '-1' pragma: @@ -394,23 +393,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bab6a937-ef42-47d5-96d2-76b9beea7f6b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dac1c196-e3ad-704e-a2ce-0fb035b02125\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T02:30:24.4101055Z\"\n }" + string: "{\n \"name\": \"37a9b6ba-42ef-d547-96d2-76b9beea7f6b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:54:41.707862Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 02:32:25 GMT + - Thu, 29 Jun 2023 09:56:42 GMT expires: - '-1' pragma: @@ -442,23 +441,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bab6a937-ef42-47d5-96d2-76b9beea7f6b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dac1c196-e3ad-704e-a2ce-0fb035b02125\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T02:30:24.4101055Z\"\n }" + string: "{\n \"name\": \"37a9b6ba-42ef-d547-96d2-76b9beea7f6b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:54:41.707862Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 02:32:55 GMT + - Thu, 29 Jun 2023 09:57:12 GMT expires: - '-1' pragma: @@ -490,23 +489,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bab6a937-ef42-47d5-96d2-76b9beea7f6b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dac1c196-e3ad-704e-a2ce-0fb035b02125\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T02:30:24.4101055Z\"\n }" + string: "{\n \"name\": \"37a9b6ba-42ef-d547-96d2-76b9beea7f6b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:54:41.707862Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 02:33:25 GMT + - Thu, 29 Jun 2023 09:57:42 GMT expires: - '-1' pragma: @@ -538,24 +537,120 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bab6a937-ef42-47d5-96d2-76b9beea7f6b?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"37a9b6ba-42ef-d547-96d2-76b9beea7f6b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:54:41.707862Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '125' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:58: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.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bab6a937-ef42-47d5-96d2-76b9beea7f6b?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"37a9b6ba-42ef-d547-96d2-76b9beea7f6b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:54:41.707862Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:58: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 --vm-set-type --node-count --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bab6a937-ef42-47d5-96d2-76b9beea7f6b?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"37a9b6ba-42ef-d547-96d2-76b9beea7f6b\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:54:41.707862Z\",\n \"endTime\": + \"2023-06-29T09:59:11.4802609Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '169' content-type: - application/json date: - - Thu, 15 Jun 2023 02:33:56 GMT + - Thu, 29 Jun 2023 09:59:13 GMT expires: - '-1' pragma: @@ -587,66 +682,63 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - 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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-clitestsfy3cr7fg-79a739\",\n \"fqdn\": \"cliakstest-clitestsfy3cr7fg-79a739-k84u0ryz.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestsfy3cr7fg-79a739-k84u0ryz.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/b8643412-2ae9-4d11-9eeb-3cadb45c815a\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4291' + - '3920' content-type: - application/json date: - - Thu, 15 Jun 2023 02:33:57 GMT + - Thu, 29 Jun 2023 09:59:14 GMT expires: - '-1' pragma: @@ -679,66 +771,63 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - 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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-clitestsfy3cr7fg-79a739\",\n \"fqdn\": \"cliakstest-clitestsfy3cr7fg-79a739-k84u0ryz.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestsfy3cr7fg-79a739-k84u0ryz.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/b8643412-2ae9-4d11-9eeb-3cadb45c815a\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4291' + - '3920' content-type: - application/json date: - - Thu, 15 Jun 2023 02:33:58 GMT + - Thu, 29 Jun 2023 09:59:14 GMT expires: - '-1' pragma: @@ -757,28 +846,26 @@ interactions: code: 200 message: OK - request: - 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"}]}, + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": + "cliakstest-clitestsfy3cr7fg-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.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": + false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", + "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/b8643412-2ae9-4d11-9eeb-3cadb45c815a"}]}, "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", + {"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": {}}}' @@ -792,78 +879,75 @@ interactions: Connection: - keep-alive Content-Length: - - '2990' + - '2596' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - 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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestsfy3cr7fg-79a739\",\n \"fqdn\": \"cliakstest-clitestsfy3cr7fg-79a739-k84u0ryz.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestsfy3cr7fg-79a739-k84u0ryz.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/b8643412-2ae9-4d11-9eeb-3cadb45c815a\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"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\": \"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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/149165b6-ab2c-40ba-b346-2f3020cad571?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4494' + - '4123' content-type: - application/json date: - - Thu, 15 Jun 2023 02:34:02 GMT + - Thu, 29 Jun 2023 09:59:20 GMT expires: - '-1' pragma: @@ -898,14 +982,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/149165b6-ab2c-40ba-b346-2f3020cad571?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"aedfcad3-6a0c-324a-9005-db5c849ed7c9\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T02:34:02.2209869Z\"\n }" + string: "{\n \"name\": \"b6659114-2cab-ba40-b346-2f3020cad571\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:59:19.3336512Z\"\n }" headers: cache-control: - no-cache @@ -914,7 +998,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:34:02 GMT + - Thu, 29 Jun 2023 09:59:20 GMT expires: - '-1' pragma: @@ -947,14 +1031,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/149165b6-ab2c-40ba-b346-2f3020cad571?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"aedfcad3-6a0c-324a-9005-db5c849ed7c9\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T02:34:02.2209869Z\"\n }" + string: "{\n \"name\": \"b6659114-2cab-ba40-b346-2f3020cad571\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:59:19.3336512Z\"\n }" headers: cache-control: - no-cache @@ -963,7 +1047,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:34:32 GMT + - Thu, 29 Jun 2023 09:59:50 GMT expires: - '-1' pragma: @@ -996,14 +1080,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/149165b6-ab2c-40ba-b346-2f3020cad571?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"aedfcad3-6a0c-324a-9005-db5c849ed7c9\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T02:34:02.2209869Z\"\n }" + string: "{\n \"name\": \"b6659114-2cab-ba40-b346-2f3020cad571\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:59:19.3336512Z\"\n }" headers: cache-control: - no-cache @@ -1012,7 +1096,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:35:02 GMT + - Thu, 29 Jun 2023 10:00:20 GMT expires: - '-1' pragma: @@ -1045,14 +1129,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/149165b6-ab2c-40ba-b346-2f3020cad571?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"aedfcad3-6a0c-324a-9005-db5c849ed7c9\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T02:34:02.2209869Z\"\n }" + string: "{\n \"name\": \"b6659114-2cab-ba40-b346-2f3020cad571\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:59:19.3336512Z\"\n }" headers: cache-control: - no-cache @@ -1061,7 +1145,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:35:33 GMT + - Thu, 29 Jun 2023 10:00:50 GMT expires: - '-1' pragma: @@ -1094,14 +1178,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/149165b6-ab2c-40ba-b346-2f3020cad571?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"aedfcad3-6a0c-324a-9005-db5c849ed7c9\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T02:34:02.2209869Z\"\n }" + string: "{\n \"name\": \"b6659114-2cab-ba40-b346-2f3020cad571\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:59:19.3336512Z\"\n }" headers: cache-control: - no-cache @@ -1110,7 +1194,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:36:03 GMT + - Thu, 29 Jun 2023 10:01:21 GMT expires: - '-1' pragma: @@ -1143,15 +1227,15 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/149165b6-ab2c-40ba-b346-2f3020cad571?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"b6659114-2cab-ba40-b346-2f3020cad571\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:59:19.3336512Z\",\n \"endTime\": + \"2023-06-29T10:01:46.4112814Z\"\n }" headers: cache-control: - no-cache @@ -1160,7 +1244,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:36:33 GMT + - Thu, 29 Jun 2023 10:01:51 GMT expires: - '-1' pragma: @@ -1193,69 +1277,66 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - 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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-clitestsfy3cr7fg-79a739\",\n \"fqdn\": \"cliakstest-clitestsfy3cr7fg-79a739-k84u0ryz.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestsfy3cr7fg-79a739-k84u0ryz.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/b8643412-2ae9-4d11-9eeb-3cadb45c815a\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"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\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4496' + - '4125' content-type: - application/json date: - - Thu, 15 Jun 2023 02:36:34 GMT + - Thu, 29 Jun 2023 10:01:51 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 7522f781e20..293381e4af7 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 02:36:38 GMT + - Thu, 29 Jun 2023 10:01:55 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.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1039-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":"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"}}' + 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_nonaad_and_update_with_managed_aad_msi","date":"2023-06-29T10:01:53Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '391' + - '384' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 02:36:38 GMT + - Thu, 29 Jun 2023 10:01:54 GMT expires: - '-1' pragma: @@ -87,19 +87,20 @@ interactions: code: 200 message: OK - request: - body: '{"location": "southcentralus", "identity": {"type": "SystemAssigned"}, - "properties": {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitesttg73ndgxc-8ecadf", + body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestobd6sxovz-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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {}}}' headers: Accept: - application/json @@ -110,69 +111,136 @@ interactions: Connection: - keep-alive Content-Length: - - '1758' + - '1422' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - 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 }" + string: "{\n \"code\": \"GetVnetError\",\n \"message\": \"Get virtual network + failed. Subscription: 79a7390d-3a85-432d-9f6f-a11a703c8b83; resource group: + MC_clitest000001_cliakstest000001_westus2; virtual network name: aks-vnet-67045100\"\n + }" + headers: + cache-control: + - no-cache + connection: + - close + content-length: + - '224' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:02:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - service + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 500 + message: Internal Server Error +- request: + body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestobd6sxovz-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 AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + Content-Length: + - '1422' + Content-Type: + - application/json + ParameterSetName: + - --resource-group --name --vm-set-type --node-count --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestobd6sxovz-79a739\",\n \"fqdn\": \"cliakstest-clitestobd6sxovz-79a739-oqd6in49.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestobd6sxovz-79a739-oqd6in49.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/southcentralus/operations/c1feb0fb-4e9a-40d1-9821-9b4c117f6f89?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/71c490dd-1128-4bfc-b8fd-f98f1403a3c3?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3624' + - '3267' content-type: - application/json date: - - Thu, 15 Jun 2023 02:36:45 GMT + - Thu, 29 Jun 2023 10:02:39 GMT expires: - '-1' pragma: @@ -202,14 +270,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/71c490dd-1128-4bfc-b8fd-f98f1403a3c3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"fbb0fec1-9a4e-d140-9821-9b4c117f6f89\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T02:36:45.2623167Z\"\n }" + string: "{\n \"name\": \"dd90c471-2811-fc4b-b8fd-f98f1403a3c3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:02:33.0215764Z\"\n }" headers: cache-control: - no-cache @@ -218,7 +286,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:36:45 GMT + - Thu, 29 Jun 2023 10:02:39 GMT expires: - '-1' pragma: @@ -227,10 +295,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -250,14 +314,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/71c490dd-1128-4bfc-b8fd-f98f1403a3c3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"fbb0fec1-9a4e-d140-9821-9b4c117f6f89\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T02:36:45.2623167Z\"\n }" + string: "{\n \"name\": \"dd90c471-2811-fc4b-b8fd-f98f1403a3c3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:02:33.0215764Z\"\n }" headers: cache-control: - no-cache @@ -266,7 +330,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:37:15 GMT + - Thu, 29 Jun 2023 10:03:09 GMT expires: - '-1' pragma: @@ -275,10 +339,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -298,14 +358,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/71c490dd-1128-4bfc-b8fd-f98f1403a3c3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"fbb0fec1-9a4e-d140-9821-9b4c117f6f89\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T02:36:45.2623167Z\"\n }" + string: "{\n \"name\": \"dd90c471-2811-fc4b-b8fd-f98f1403a3c3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:02:33.0215764Z\"\n }" headers: cache-control: - no-cache @@ -314,7 +374,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:37:45 GMT + - Thu, 29 Jun 2023 10:03:39 GMT expires: - '-1' pragma: @@ -323,10 +383,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -346,14 +402,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/71c490dd-1128-4bfc-b8fd-f98f1403a3c3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"fbb0fec1-9a4e-d140-9821-9b4c117f6f89\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T02:36:45.2623167Z\"\n }" + string: "{\n \"name\": \"dd90c471-2811-fc4b-b8fd-f98f1403a3c3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:02:33.0215764Z\"\n }" headers: cache-control: - no-cache @@ -362,7 +418,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:38:15 GMT + - Thu, 29 Jun 2023 10:04:10 GMT expires: - '-1' pragma: @@ -371,10 +427,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -394,14 +446,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/71c490dd-1128-4bfc-b8fd-f98f1403a3c3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"fbb0fec1-9a4e-d140-9821-9b4c117f6f89\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T02:36:45.2623167Z\"\n }" + string: "{\n \"name\": \"dd90c471-2811-fc4b-b8fd-f98f1403a3c3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:02:33.0215764Z\"\n }" headers: cache-control: - no-cache @@ -410,7 +462,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:38:46 GMT + - Thu, 29 Jun 2023 10:04:40 GMT expires: - '-1' pragma: @@ -419,10 +471,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -442,14 +490,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/71c490dd-1128-4bfc-b8fd-f98f1403a3c3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"fbb0fec1-9a4e-d140-9821-9b4c117f6f89\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T02:36:45.2623167Z\"\n }" + string: "{\n \"name\": \"dd90c471-2811-fc4b-b8fd-f98f1403a3c3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:02:33.0215764Z\"\n }" headers: cache-control: - no-cache @@ -458,7 +506,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:39:16 GMT + - Thu, 29 Jun 2023 10:05:10 GMT expires: - '-1' pragma: @@ -467,10 +515,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -490,14 +534,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/71c490dd-1128-4bfc-b8fd-f98f1403a3c3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"fbb0fec1-9a4e-d140-9821-9b4c117f6f89\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T02:36:45.2623167Z\"\n }" + string: "{\n \"name\": \"dd90c471-2811-fc4b-b8fd-f98f1403a3c3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:02:33.0215764Z\"\n }" headers: cache-control: - no-cache @@ -506,7 +550,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:39:46 GMT + - Thu, 29 Jun 2023 10:05:40 GMT expires: - '-1' pragma: @@ -515,10 +559,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -538,14 +578,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/71c490dd-1128-4bfc-b8fd-f98f1403a3c3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"fbb0fec1-9a4e-d140-9821-9b4c117f6f89\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T02:36:45.2623167Z\"\n }" + string: "{\n \"name\": \"dd90c471-2811-fc4b-b8fd-f98f1403a3c3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:02:33.0215764Z\"\n }" headers: cache-control: - no-cache @@ -554,7 +594,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:40:16 GMT + - Thu, 29 Jun 2023 10:06:10 GMT expires: - '-1' pragma: @@ -563,10 +603,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -586,15 +622,59 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/71c490dd-1128-4bfc-b8fd-f98f1403a3c3?api-version=2016-03-30 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 }" + string: "{\n \"name\": \"dd90c471-2811-fc4b-b8fd-f98f1403a3c3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:02:33.0215764Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:06:40 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 -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/71c490dd-1128-4bfc-b8fd-f98f1403a3c3?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"dd90c471-2811-fc4b-b8fd-f98f1403a3c3\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:02:33.0215764Z\",\n \"endTime\": + \"2023-06-29T10:07:00.2987877Z\"\n }" headers: cache-control: - no-cache @@ -603,7 +683,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:40:47 GMT + - Thu, 29 Jun 2023 10:07:11 GMT expires: - '-1' pragma: @@ -612,10 +692,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -635,66 +711,63 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - 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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-clitestobd6sxovz-79a739\",\n \"fqdn\": \"cliakstest-clitestobd6sxovz-79a739-oqd6in49.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestobd6sxovz-79a739-oqd6in49.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/a9444e6c-6e2f-4231-82be-aedd2216237a\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4291' + - '3920' content-type: - application/json date: - - Thu, 15 Jun 2023 02:40:47 GMT + - Thu, 29 Jun 2023 10:07:12 GMT expires: - '-1' pragma: @@ -703,10 +776,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -727,66 +796,63 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - 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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-clitestobd6sxovz-79a739\",\n \"fqdn\": \"cliakstest-clitestobd6sxovz-79a739-oqd6in49.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestobd6sxovz-79a739-oqd6in49.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/a9444e6c-6e2f-4231-82be-aedd2216237a\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4291' + - '3920' content-type: - application/json date: - - Thu, 15 Jun 2023 02:40:49 GMT + - Thu, 29 Jun 2023 10:07:12 GMT expires: - '-1' pragma: @@ -805,28 +871,26 @@ interactions: code: 200 message: OK - request: - 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"}]}, + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": + "cliakstest-clitestobd6sxovz-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.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": + false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", + "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/a9444e6c-6e2f-4231-82be-aedd2216237a"}]}, "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", + {"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": {}}}' @@ -840,78 +904,75 @@ interactions: Connection: - keep-alive Content-Length: - - '2990' + - '2596' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - 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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestobd6sxovz-79a739\",\n \"fqdn\": \"cliakstest-clitestobd6sxovz-79a739-oqd6in49.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestobd6sxovz-79a739-oqd6in49.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/a9444e6c-6e2f-4231-82be-aedd2216237a\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"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\": \"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/98ba4a39-decc-49ca-b996-5869272b80f2?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7632b0d0-1c51-49c3-b364-15e41036d485?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4494' + - '4123' content-type: - application/json date: - - Thu, 15 Jun 2023 02:40:53 GMT + - Thu, 29 Jun 2023 10:07:16 GMT expires: - '-1' pragma: @@ -927,7 +988,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -946,14 +1007,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7632b0d0-1c51-49c3-b364-15e41036d485?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"394aba98-ccde-ca49-b996-5869272b80f2\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T02:40:53.2778182Z\"\n }" + string: "{\n \"name\": \"d0b03276-511c-c349-b364-15e41036d485\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:07:16.3970898Z\"\n }" headers: cache-control: - no-cache @@ -962,7 +1023,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:40:54 GMT + - Thu, 29 Jun 2023 10:07:16 GMT expires: - '-1' pragma: @@ -995,14 +1056,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7632b0d0-1c51-49c3-b364-15e41036d485?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"394aba98-ccde-ca49-b996-5869272b80f2\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T02:40:53.2778182Z\"\n }" + string: "{\n \"name\": \"d0b03276-511c-c349-b364-15e41036d485\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:07:16.3970898Z\"\n }" headers: cache-control: - no-cache @@ -1011,7 +1072,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:41:23 GMT + - Thu, 29 Jun 2023 10:07:46 GMT expires: - '-1' pragma: @@ -1044,14 +1105,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7632b0d0-1c51-49c3-b364-15e41036d485?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"394aba98-ccde-ca49-b996-5869272b80f2\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T02:40:53.2778182Z\"\n }" + string: "{\n \"name\": \"d0b03276-511c-c349-b364-15e41036d485\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:07:16.3970898Z\"\n }" headers: cache-control: - no-cache @@ -1060,7 +1121,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:41:54 GMT + - Thu, 29 Jun 2023 10:08:17 GMT expires: - '-1' pragma: @@ -1093,14 +1154,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7632b0d0-1c51-49c3-b364-15e41036d485?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"394aba98-ccde-ca49-b996-5869272b80f2\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T02:40:53.2778182Z\"\n }" + string: "{\n \"name\": \"d0b03276-511c-c349-b364-15e41036d485\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:07:16.3970898Z\"\n }" headers: cache-control: - no-cache @@ -1109,7 +1170,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:42:24 GMT + - Thu, 29 Jun 2023 10:08:47 GMT expires: - '-1' pragma: @@ -1142,14 +1203,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7632b0d0-1c51-49c3-b364-15e41036d485?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"394aba98-ccde-ca49-b996-5869272b80f2\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T02:40:53.2778182Z\"\n }" + string: "{\n \"name\": \"d0b03276-511c-c349-b364-15e41036d485\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:07:16.3970898Z\"\n }" headers: cache-control: - no-cache @@ -1158,7 +1219,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:42:54 GMT + - Thu, 29 Jun 2023 10:09:17 GMT expires: - '-1' pragma: @@ -1191,15 +1252,15 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7632b0d0-1c51-49c3-b364-15e41036d485?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"d0b03276-511c-c349-b364-15e41036d485\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:07:16.3970898Z\",\n \"endTime\": + \"2023-06-29T10:09:36.1646599Z\"\n }" headers: cache-control: - no-cache @@ -1208,7 +1269,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:43:24 GMT + - Thu, 29 Jun 2023 10:09:47 GMT expires: - '-1' pragma: @@ -1241,69 +1302,66 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - 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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-clitestobd6sxovz-79a739\",\n \"fqdn\": \"cliakstest-clitestobd6sxovz-79a739-oqd6in49.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestobd6sxovz-79a739-oqd6in49.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/a9444e6c-6e2f-4231-82be-aedd2216237a\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"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\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4496' + - '4125' content-type: - application/json date: - - Thu, 15 Jun 2023 02:43:24 GMT + - Thu, 29 Jun 2023 10:09:47 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 index 25cb8cdff47..26817f3ff8a 100644 --- 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,36 +13,39 @@ interactions: ParameterSetName: - -l --query User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/kubernetesVersions?api-version=2023-05-01 response: body: - 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 }" + string: "{\n \"values\": [\n {\n \"version\": \"1.27\",\n \"capabilities\": + {\n \"supportPlan\": [\n \"KubernetesOfficial\",\n \"AKSLongTermSupport\"\n + \ ]\n },\n \"patchVersions\": {\n \"1.27.1\": {\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.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 \"1.27.1\"\n + \ ]\n },\n \"1.26.3\": {\n \"upgrades\": [\n \"1.27.1\"\n + \ ]\n }\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '957' + - '1218' content-type: - application/json date: - - Thu, 15 Jun 2023 02:43:38 GMT + - Thu, 29 Jun 2023 10:09:53 GMT expires: - '-1' pragma: @@ -75,8 +78,8 @@ interactions: - -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -92,7 +95,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 02:43:39 GMT + - Thu, 29 Jun 2023 10:09:53 GMT expires: - '-1' pragma: @@ -108,15 +111,15 @@ interactions: message: Not Found - request: body: '{"tags": {"scenario_test": ""}, "location": "westus2", "properties": {"kubernetesVersion": - "1.25.6", "dnsPrefix": "cliaksdns000004", "agentPoolProfiles": [{"count": 1, + "1.26.3", "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": + "1.26.3", "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", + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": @@ -131,33 +134,67 @@ interactions: Connection: - keep-alive Content-Length: - - '1838' + - '1509' 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-01 response: body: - 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 }" + 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.26.3\",\n + \ \"currentKubernetesVersion\": \"1.26.3\",\n \"dnsPrefix\": \"cliaksdns000004\",\n + \ \"fqdn\": \"cliaksdns000004-7j0ehp67.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000004-7j0ehp67.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.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"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/f87e4296-997f-48e7-8b41-5620a5305111?api-version=2016-03-30 cache-control: - no-cache content-length: - - '313' + - '3088' content-type: - application/json date: - - Thu, 15 Jun 2023 02:43:44 GMT + - Thu, 29 Jun 2023 10:09:59 GMT expires: - '-1' pragma: @@ -169,97 +206,140 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: - code: 404 - message: Not Found + code: 201 + message: Created - 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": {}}}' + 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f87e4296-997f-48e7-8b41-5620a5305111?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"96427ef8-7f99-e748-8b41-5620a5305111\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:09:58.9133678Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: - application/json + date: + - Thu, 29 Jun 2023 10:09: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 - Content-Length: - - '1838' - Content-Type: + 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f87e4296-997f-48e7-8b41-5620a5305111?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"96427ef8-7f99-e748-8b41-5620a5305111\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:09:58.9133678Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: - application/json + date: + - Thu, 29 Jun 2023 10:10: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: - -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-05-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f87e4296-997f-48e7-8b41-5620a5305111?api-version=2016-03-30 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 }" + string: "{\n \"name\": \"96427ef8-7f99-e748-8b41-5620a5305111\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:09:58.9133678Z\"\n }" headers: - azure-asyncoperation: - - 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: - - '3417' + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 02:43:54 GMT + - Thu, 29 Jun 2023 10:10:59 GMT expires: - '-1' pragma: @@ -268,13 +348,64 @@ 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: + 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f87e4296-997f-48e7-8b41-5620a5305111?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"96427ef8-7f99-e748-8b41-5620a5305111\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:09:58.9133678Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:11: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: @@ -290,14 +421,14 @@ interactions: - -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f87e4296-997f-48e7-8b41-5620a5305111?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 }" + string: "{\n \"name\": \"96427ef8-7f99-e748-8b41-5620a5305111\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:09:58.9133678Z\"\n }" headers: cache-control: - no-cache @@ -306,7 +437,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:43:54 GMT + - Thu, 29 Jun 2023 10:11:59 GMT expires: - '-1' pragma: @@ -339,14 +470,14 @@ interactions: - -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f87e4296-997f-48e7-8b41-5620a5305111?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 }" + string: "{\n \"name\": \"96427ef8-7f99-e748-8b41-5620a5305111\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:09:58.9133678Z\"\n }" headers: cache-control: - no-cache @@ -355,7 +486,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:44:24 GMT + - Thu, 29 Jun 2023 10:12:29 GMT expires: - '-1' pragma: @@ -388,14 +519,14 @@ interactions: - -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f87e4296-997f-48e7-8b41-5620a5305111?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 }" + string: "{\n \"name\": \"96427ef8-7f99-e748-8b41-5620a5305111\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:09:58.9133678Z\"\n }" headers: cache-control: - no-cache @@ -404,7 +535,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:44:54 GMT + - Thu, 29 Jun 2023 10:13:00 GMT expires: - '-1' pragma: @@ -437,14 +568,14 @@ interactions: - -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f87e4296-997f-48e7-8b41-5620a5305111?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 }" + string: "{\n \"name\": \"96427ef8-7f99-e748-8b41-5620a5305111\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:09:58.9133678Z\"\n }" headers: cache-control: - no-cache @@ -453,7 +584,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:45:25 GMT + - Thu, 29 Jun 2023 10:13:30 GMT expires: - '-1' pragma: @@ -486,14 +617,14 @@ interactions: - -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f87e4296-997f-48e7-8b41-5620a5305111?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 }" + string: "{\n \"name\": \"96427ef8-7f99-e748-8b41-5620a5305111\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:09:58.9133678Z\"\n }" headers: cache-control: - no-cache @@ -502,7 +633,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:45:55 GMT + - Thu, 29 Jun 2023 10:14:00 GMT expires: - '-1' pragma: @@ -535,14 +666,14 @@ interactions: - -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f87e4296-997f-48e7-8b41-5620a5305111?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 }" + string: "{\n \"name\": \"96427ef8-7f99-e748-8b41-5620a5305111\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:09:58.9133678Z\"\n }" headers: cache-control: - no-cache @@ -551,7 +682,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:46:24 GMT + - Thu, 29 Jun 2023 10:14:30 GMT expires: - '-1' pragma: @@ -584,14 +715,14 @@ interactions: - -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f87e4296-997f-48e7-8b41-5620a5305111?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 }" + string: "{\n \"name\": \"96427ef8-7f99-e748-8b41-5620a5305111\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:09:58.9133678Z\"\n }" headers: cache-control: - no-cache @@ -600,7 +731,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:46:55 GMT + - Thu, 29 Jun 2023 10:15:00 GMT expires: - '-1' pragma: @@ -633,15 +764,15 @@ interactions: - -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f87e4296-997f-48e7-8b41-5620a5305111?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"96427ef8-7f99-e748-8b41-5620a5305111\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:09:58.9133678Z\",\n \"endTime\": + \"2023-06-29T10:15:21.7954969Z\"\n }" headers: cache-control: - no-cache @@ -650,7 +781,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:47:25 GMT + - Thu, 29 Jun 2023 10:15:31 GMT expires: - '-1' pragma: @@ -683,61 +814,59 @@ interactions: - -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.26.3\",\n + \ \"currentKubernetesVersion\": \"1.26.3\",\n \"dnsPrefix\": \"cliaksdns000004\",\n + \ \"fqdn\": \"cliaksdns000004-7j0ehp67.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000004-7j0ehp67.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.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"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/c730648a-8293-4fa4-b803-2957140a617f\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3681' + - '3352' content-type: - application/json date: - - Thu, 15 Jun 2023 02:47:26 GMT + - Thu, 29 Jun 2023 10:15:31 GMT expires: - '-1' pragma: @@ -769,65 +898,61 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.26.3\",\n + \ \"currentKubernetesVersion\": \"1.26.3\",\n \"dnsPrefix\": \"cliaksdns000004\",\n + \ \"fqdn\": \"cliaksdns000004-7j0ehp67.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000004-7j0ehp67.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.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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 \"supportPlan\": \"KubernetesOfficial\",\n + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"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/c730648a-8293-4fa4-b803-2957140a617f\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": + [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": + false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": + {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\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: - - '3930' + - '3601' content-type: - application/json date: - - Thu, 15 Jun 2023 02:47:28 GMT + - Thu, 29 Jun 2023 10:15:33 GMT expires: - '-1' pragma: @@ -859,61 +984,59 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.26.3\",\n + \ \"currentKubernetesVersion\": \"1.26.3\",\n \"dnsPrefix\": \"cliaksdns000004\",\n + \ \"fqdn\": \"cliaksdns000004-7j0ehp67.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000004-7j0ehp67.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.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"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/c730648a-8293-4fa4-b803-2957140a617f\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3681' + - '3352' content-type: - application/json date: - - Thu, 15 Jun 2023 02:47:30 GMT + - Thu, 29 Jun 2023 10:15:33 GMT expires: - '-1' pragma: @@ -945,61 +1068,59 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.26.3\",\n + \ \"currentKubernetesVersion\": \"1.26.3\",\n \"dnsPrefix\": \"cliaksdns000004\",\n + \ \"fqdn\": \"cliaksdns000004-7j0ehp67.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000004-7j0ehp67.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.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"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/c730648a-8293-4fa4-b803-2957140a617f\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3681' + - '3352' content-type: - application/json date: - - Thu, 15 Jun 2023 02:47:31 GMT + - Thu, 29 Jun 2023 10:15:34 GMT expires: - '-1' pragma: @@ -1019,21 +1140,22 @@ interactions: message: OK - request: body: '{"tags": {"scenario_test": ""}, "location": "westus2", "sku": {"name": - "Base", "tier": "Free"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": + "Base", "tier": "Free"}, "properties": {"kubernetesVersion": "1.26.3", "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.6", + "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "1.26.3", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "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"}]}}, "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"}]}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_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/c730648a-8293-4fa4-b803-2957140a617f"}]}, "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": @@ -1048,69 +1170,67 @@ interactions: Connection: - keep-alive Content-Length: - - '2458' + - '2129' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-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.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 }" + 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.26.3\",\n + \ \"currentKubernetesVersion\": \"1.26.3\",\n \"dnsPrefix\": \"cliaksdns000004\",\n + \ \"fqdn\": \"cliaksdns000004-7j0ehp67.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000004-7j0ehp67.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.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"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/c730648a-8293-4fa4-b803-2957140a617f\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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/89e418b4-d478-43ed-a5b5-926f2f21ee21?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/baccb3e2-8227-489b-ada1-fb6af282872e?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3679' + - '3350' content-type: - application/json date: - - Thu, 15 Jun 2023 02:47:42 GMT + - Thu, 29 Jun 2023 10:15:39 GMT expires: - '-1' pragma: @@ -1126,7 +1246,55 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' + 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/baccb3e2-8227-489b-ada1-fb6af282872e?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"e2b3ccba-2782-9b48-ada1-fb6af282872e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:15:39.1330501Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:15: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 @@ -1144,14 +1312,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/baccb3e2-8227-489b-ada1-fb6af282872e?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 }" + string: "{\n \"name\": \"e2b3ccba-2782-9b48-ada1-fb6af282872e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:15:39.1330501Z\"\n }" headers: cache-control: - no-cache @@ -1160,7 +1328,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:47:42 GMT + - Thu, 29 Jun 2023 10:16:09 GMT expires: - '-1' pragma: @@ -1192,14 +1360,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/baccb3e2-8227-489b-ada1-fb6af282872e?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 }" + string: "{\n \"name\": \"e2b3ccba-2782-9b48-ada1-fb6af282872e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:15:39.1330501Z\"\n }" headers: cache-control: - no-cache @@ -1208,7 +1376,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:48:12 GMT + - Thu, 29 Jun 2023 10:16:39 GMT expires: - '-1' pragma: @@ -1240,14 +1408,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/baccb3e2-8227-489b-ada1-fb6af282872e?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 }" + string: "{\n \"name\": \"e2b3ccba-2782-9b48-ada1-fb6af282872e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:15:39.1330501Z\"\n }" headers: cache-control: - no-cache @@ -1256,7 +1424,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:48:42 GMT + - Thu, 29 Jun 2023 10:17:09 GMT expires: - '-1' pragma: @@ -1288,14 +1456,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/baccb3e2-8227-489b-ada1-fb6af282872e?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 }" + string: "{\n \"name\": \"e2b3ccba-2782-9b48-ada1-fb6af282872e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:15:39.1330501Z\"\n }" headers: cache-control: - no-cache @@ -1304,7 +1472,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:49:12 GMT + - Thu, 29 Jun 2023 10:17:39 GMT expires: - '-1' pragma: @@ -1336,14 +1504,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/baccb3e2-8227-489b-ada1-fb6af282872e?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 }" + string: "{\n \"name\": \"e2b3ccba-2782-9b48-ada1-fb6af282872e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:15:39.1330501Z\"\n }" headers: cache-control: - no-cache @@ -1352,7 +1520,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:49:42 GMT + - Thu, 29 Jun 2023 10:18:09 GMT expires: - '-1' pragma: @@ -1384,14 +1552,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/baccb3e2-8227-489b-ada1-fb6af282872e?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 }" + string: "{\n \"name\": \"e2b3ccba-2782-9b48-ada1-fb6af282872e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:15:39.1330501Z\"\n }" headers: cache-control: - no-cache @@ -1400,7 +1568,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:50:12 GMT + - Thu, 29 Jun 2023 10:18:40 GMT expires: - '-1' pragma: @@ -1432,14 +1600,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/baccb3e2-8227-489b-ada1-fb6af282872e?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 }" + string: "{\n \"name\": \"e2b3ccba-2782-9b48-ada1-fb6af282872e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:15:39.1330501Z\"\n }" headers: cache-control: - no-cache @@ -1448,7 +1616,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:50:43 GMT + - Thu, 29 Jun 2023 10:19:10 GMT expires: - '-1' pragma: @@ -1480,15 +1648,63 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/baccb3e2-8227-489b-ada1-fb6af282872e?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"e2b3ccba-2782-9b48-ada1-fb6af282872e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:15:39.1330501Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:19: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 scale + Connection: + - keep-alive + ParameterSetName: + - -g -n --nodepool-name --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/baccb3e2-8227-489b-ada1-fb6af282872e?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"e2b3ccba-2782-9b48-ada1-fb6af282872e\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:15:39.1330501Z\",\n \"endTime\": + \"2023-06-29T10:19:56.2321971Z\"\n }" headers: cache-control: - no-cache @@ -1497,7 +1713,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:51:13 GMT + - Thu, 29 Jun 2023 10:20:10 GMT expires: - '-1' pragma: @@ -1529,61 +1745,59 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.26.3\",\n + \ \"currentKubernetesVersion\": \"1.26.3\",\n \"dnsPrefix\": \"cliaksdns000004\",\n + \ \"fqdn\": \"cliaksdns000004-7j0ehp67.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000004-7j0ehp67.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.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"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/c730648a-8293-4fa4-b803-2957140a617f\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3681' + - '3352' content-type: - application/json date: - - Thu, 15 Jun 2023 02:51:14 GMT + - Thu, 29 Jun 2023 10:20:10 GMT expires: - '-1' pragma: @@ -1615,61 +1829,59 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.26.3\",\n + \ \"currentKubernetesVersion\": \"1.26.3\",\n \"dnsPrefix\": \"cliaksdns000004\",\n + \ \"fqdn\": \"cliaksdns000004-7j0ehp67.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000004-7j0ehp67.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.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"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/c730648a-8293-4fa4-b803-2957140a617f\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3681' + - '3352' content-type: - application/json date: - - Thu, 15 Jun 2023 02:51:17 GMT + - Thu, 29 Jun 2023 10:20:12 GMT expires: - '-1' pragma: @@ -1703,8 +1915,8 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -1712,17 +1924,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b1cb98f1-a802-40a8-b92c-c723e3c0f134?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 15 Jun 2023 02:51:20 GMT + - Thu, 29 Jun 2023 10:20:13 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/b1cb98f1-a802-40a8-b92c-c723e3c0f134?api-version=2016-03-30 pragma: - no-cache server: @@ -1750,14 +1962,110 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b1cb98f1-a802-40a8-b92c-c723e3c0f134?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f198cbb1-02a8-a840-b92c-c723e3c0f134\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:20:14.2586209Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:20: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 delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b1cb98f1-a802-40a8-b92c-c723e3c0f134?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f198cbb1-02a8-a840-b92c-c723e3c0f134\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:20:14.2586209Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:20: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 delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b1cb98f1-a802-40a8-b92c-c723e3c0f134?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 }" + string: "{\n \"name\": \"f198cbb1-02a8-a840-b92c-c723e3c0f134\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:20:14.2586209Z\"\n }" headers: cache-control: - no-cache @@ -1766,7 +2074,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:51:21 GMT + - Thu, 29 Jun 2023 10:21:14 GMT expires: - '-1' pragma: @@ -1798,14 +2106,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b1cb98f1-a802-40a8-b92c-c723e3c0f134?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 }" + string: "{\n \"name\": \"f198cbb1-02a8-a840-b92c-c723e3c0f134\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:20:14.2586209Z\"\n }" headers: cache-control: - no-cache @@ -1814,7 +2122,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:51:51 GMT + - Thu, 29 Jun 2023 10:21:44 GMT expires: - '-1' pragma: @@ -1846,14 +2154,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b1cb98f1-a802-40a8-b92c-c723e3c0f134?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 }" + string: "{\n \"name\": \"f198cbb1-02a8-a840-b92c-c723e3c0f134\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:20:14.2586209Z\"\n }" headers: cache-control: - no-cache @@ -1862,7 +2170,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:52:21 GMT + - Thu, 29 Jun 2023 10:22:14 GMT expires: - '-1' pragma: @@ -1894,14 +2202,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b1cb98f1-a802-40a8-b92c-c723e3c0f134?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 }" + string: "{\n \"name\": \"f198cbb1-02a8-a840-b92c-c723e3c0f134\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:20:14.2586209Z\"\n }" headers: cache-control: - no-cache @@ -1910,7 +2218,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:52:51 GMT + - Thu, 29 Jun 2023 10:22:44 GMT expires: - '-1' pragma: @@ -1942,14 +2250,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b1cb98f1-a802-40a8-b92c-c723e3c0f134?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 }" + string: "{\n \"name\": \"f198cbb1-02a8-a840-b92c-c723e3c0f134\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:20:14.2586209Z\"\n }" headers: cache-control: - no-cache @@ -1958,7 +2266,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:53:21 GMT + - Thu, 29 Jun 2023 10:23:14 GMT expires: - '-1' pragma: @@ -1990,15 +2298,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b1cb98f1-a802-40a8-b92c-c723e3c0f134?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"f198cbb1-02a8-a840-b92c-c723e3c0f134\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:20:14.2586209Z\",\n \"endTime\": + \"2023-06-29T10:23:17.7064393Z\"\n }" headers: cache-control: - no-cache @@ -2007,7 +2315,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:53:51 GMT + - Thu, 29 Jun 2023 10:23:44 GMT expires: - '-1' pragma: @@ -2039,8 +2347,8 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -2056,7 +2364,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 02:53:53 GMT + - Thu, 29 Jun 2023 10:23:46 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 index a01569f357e..527312dd876 100644 --- 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,36 +13,39 @@ interactions: ParameterSetName: - -l --query User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/kubernetesVersions?api-version=2023-05-01 response: body: - 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 }" + 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 + \ \"1.27.1\"\n ]\n },\n \"1.26.3\": {\n \"upgrades\": + [\n \"1.27.1\"\n ]\n }\n }\n },\n {\n \"version\": + \"1.27\",\n \"capabilities\": {\n \"supportPlan\": [\n \"KubernetesOfficial\",\n + \ \"AKSLongTermSupport\"\n ]\n },\n \"patchVersions\": {\n \"1.27.1\": + {\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: - - '957' + - '1218' content-type: - application/json date: - - Thu, 15 Jun 2023 02:54:00 GMT + - Thu, 29 Jun 2023 10:23:49 GMT expires: - '-1' pragma: @@ -74,8 +77,8 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -91,7 +94,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 02:54:00 GMT + - Thu, 29 Jun 2023 10:23:50 GMT expires: - '-1' pragma: @@ -107,18 +110,19 @@ interactions: message: Not Found - request: body: '{"tags": {"scenario_test": ""}, "location": "westus2", "identity": {"type": - "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": + "SystemAssigned"}, "properties": {"kubernetesVersion": "1.26.3", "dnsPrefix": "cliaksdns000003", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "orchestratorVersion": "1.25.6", "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": "np000004"}], "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": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {}}}' headers: Accept: - application/json @@ -129,69 +133,68 @@ interactions: Connection: - keep-alive Content-Length: - - '1774' + - '1445' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.26.3\",\n + \ \"currentKubernetesVersion\": \"1.26.3\",\n \"dnsPrefix\": \"cliaksdns000003\",\n + \ \"fqdn\": \"cliaksdns000003-uicoy923.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000003-uicoy923.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.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"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/349f5ee7-e25c-4a24-af96-4378b0ce429f?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0ac7ed86-ae09-42d9-ae0f-76eefb237ba0?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3578' + - '3249' content-type: - application/json date: - - Thu, 15 Jun 2023 02:54:08 GMT + - Thu, 29 Jun 2023 10:23:56 GMT expires: - '-1' pragma: @@ -203,7 +206,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -221,14 +224,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0ac7ed86-ae09-42d9-ae0f-76eefb237ba0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e75e9f34-5ce2-244a-af96-4378b0ce429f\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T02:54:07.8145686Z\"\n }" + string: "{\n \"name\": \"86edc70a-09ae-d942-ae0f-76eefb237ba0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:23:55.7433819Z\"\n }" headers: cache-control: - no-cache @@ -237,7 +240,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:54:08 GMT + - Thu, 29 Jun 2023 10:23:56 GMT expires: - '-1' pragma: @@ -269,14 +272,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0ac7ed86-ae09-42d9-ae0f-76eefb237ba0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e75e9f34-5ce2-244a-af96-4378b0ce429f\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T02:54:07.8145686Z\"\n }" + string: "{\n \"name\": \"86edc70a-09ae-d942-ae0f-76eefb237ba0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:23:55.7433819Z\"\n }" headers: cache-control: - no-cache @@ -285,7 +288,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:54:38 GMT + - Thu, 29 Jun 2023 10:24:26 GMT expires: - '-1' pragma: @@ -317,14 +320,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0ac7ed86-ae09-42d9-ae0f-76eefb237ba0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e75e9f34-5ce2-244a-af96-4378b0ce429f\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T02:54:07.8145686Z\"\n }" + string: "{\n \"name\": \"86edc70a-09ae-d942-ae0f-76eefb237ba0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:23:55.7433819Z\"\n }" headers: cache-control: - no-cache @@ -333,7 +336,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:55:08 GMT + - Thu, 29 Jun 2023 10:24:56 GMT expires: - '-1' pragma: @@ -365,14 +368,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0ac7ed86-ae09-42d9-ae0f-76eefb237ba0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e75e9f34-5ce2-244a-af96-4378b0ce429f\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T02:54:07.8145686Z\"\n }" + string: "{\n \"name\": \"86edc70a-09ae-d942-ae0f-76eefb237ba0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:23:55.7433819Z\"\n }" headers: cache-control: - no-cache @@ -381,7 +384,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:55:38 GMT + - Thu, 29 Jun 2023 10:25:26 GMT expires: - '-1' pragma: @@ -413,14 +416,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0ac7ed86-ae09-42d9-ae0f-76eefb237ba0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e75e9f34-5ce2-244a-af96-4378b0ce429f\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T02:54:07.8145686Z\"\n }" + string: "{\n \"name\": \"86edc70a-09ae-d942-ae0f-76eefb237ba0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:23:55.7433819Z\"\n }" headers: cache-control: - no-cache @@ -429,7 +432,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:56:09 GMT + - Thu, 29 Jun 2023 10:25:56 GMT expires: - '-1' pragma: @@ -461,14 +464,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0ac7ed86-ae09-42d9-ae0f-76eefb237ba0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e75e9f34-5ce2-244a-af96-4378b0ce429f\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T02:54:07.8145686Z\"\n }" + string: "{\n \"name\": \"86edc70a-09ae-d942-ae0f-76eefb237ba0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:23:55.7433819Z\"\n }" headers: cache-control: - no-cache @@ -477,7 +480,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:56:39 GMT + - Thu, 29 Jun 2023 10:26:27 GMT expires: - '-1' pragma: @@ -509,14 +512,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0ac7ed86-ae09-42d9-ae0f-76eefb237ba0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e75e9f34-5ce2-244a-af96-4378b0ce429f\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T02:54:07.8145686Z\"\n }" + string: "{\n \"name\": \"86edc70a-09ae-d942-ae0f-76eefb237ba0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:23:55.7433819Z\"\n }" headers: cache-control: - no-cache @@ -525,7 +528,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:57:09 GMT + - Thu, 29 Jun 2023 10:26:57 GMT expires: - '-1' pragma: @@ -557,14 +560,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0ac7ed86-ae09-42d9-ae0f-76eefb237ba0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e75e9f34-5ce2-244a-af96-4378b0ce429f\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T02:54:07.8145686Z\"\n }" + string: "{\n \"name\": \"86edc70a-09ae-d942-ae0f-76eefb237ba0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:23:55.7433819Z\"\n }" headers: cache-control: - no-cache @@ -573,7 +576,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:57:39 GMT + - Thu, 29 Jun 2023 10:27:26 GMT expires: - '-1' pragma: @@ -605,15 +608,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0ac7ed86-ae09-42d9-ae0f-76eefb237ba0?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 }" + string: "{\n \"name\": \"86edc70a-09ae-d942-ae0f-76eefb237ba0\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:23:55.7433819Z\",\n \"endTime\": + \"2023-06-29T10:27:38.1438864Z\"\n }" headers: cache-control: - no-cache @@ -622,7 +625,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:58:09 GMT + - Thu, 29 Jun 2023 10:27:56 GMT expires: - '-1' pragma: @@ -654,66 +657,64 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.26.3\",\n + \ \"currentKubernetesVersion\": \"1.26.3\",\n \"dnsPrefix\": \"cliaksdns000003\",\n + \ \"fqdn\": \"cliaksdns000003-uicoy923.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000003-uicoy923.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.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/01d41e9a-bf7d-4708-bc5b-5e11e162833b\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4231' + - '3902' content-type: - application/json date: - - Thu, 15 Jun 2023 02:58:10 GMT + - Thu, 29 Jun 2023 10:27:57 GMT expires: - '-1' pragma: @@ -745,71 +746,65 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.26.3\",\n + \ \"currentKubernetesVersion\": \"1.26.3\",\n \"dnsPrefix\": \"cliaksdns000003\",\n + \ \"fqdn\": \"cliaksdns000003-uicoy923.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000003-uicoy923.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.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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 \"supportPlan\": \"KubernetesOfficial\",\n + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": + \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": + {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/01d41e9a-bf7d-4708-bc5b-5e11e162833b\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4504' + - '4175' content-type: - application/json date: - - Thu, 15 Jun 2023 02:58:13 GMT + - Thu, 29 Jun 2023 10:27:58 GMT expires: - '-1' pragma: @@ -841,66 +836,64 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.26.3\",\n + \ \"currentKubernetesVersion\": \"1.26.3\",\n \"dnsPrefix\": \"cliaksdns000003\",\n + \ \"fqdn\": \"cliaksdns000003-uicoy923.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000003-uicoy923.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.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/01d41e9a-bf7d-4708-bc5b-5e11e162833b\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4231' + - '3902' content-type: - application/json date: - - Thu, 15 Jun 2023 02:58:15 GMT + - Thu, 29 Jun 2023 10:27:58 GMT expires: - '-1' pragma: @@ -932,66 +925,64 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.26.3\",\n + \ \"currentKubernetesVersion\": \"1.26.3\",\n \"dnsPrefix\": \"cliaksdns000003\",\n + \ \"fqdn\": \"cliaksdns000003-uicoy923.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000003-uicoy923.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.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/01d41e9a-bf7d-4708-bc5b-5e11e162833b\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4231' + - '3902' content-type: - application/json date: - - Thu, 15 Jun 2023 02:58:17 GMT + - Thu, 29 Jun 2023 10:28:00 GMT expires: - '-1' pragma: @@ -1012,20 +1003,21 @@ interactions: - request: body: '{"tags": {"scenario_test": ""}, "location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "1.25.6", "dnsPrefix": "cliaksdns000003", "agentPoolProfiles": + {"kubernetesVersion": "1.26.3", "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.6", "upgradeSettings": {}, "powerState": + "System", "orchestratorVersion": "1.26.3", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "np000004"}], "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/cd893f3c-60f4-498f-8a1d-3b9c766d8734"}]}, + {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_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/01d41e9a-bf7d-4708-bc5b-5e11e162833b"}]}, "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"}}, @@ -1042,74 +1034,72 @@ interactions: Connection: - keep-alive Content-Length: - - '2854' + - '2525' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.26.3\",\n + \ \"currentKubernetesVersion\": \"1.26.3\",\n \"dnsPrefix\": \"cliaksdns000003\",\n + \ \"fqdn\": \"cliaksdns000003-uicoy923.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000003-uicoy923.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.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/01d41e9a-bf7d-4708-bc5b-5e11e162833b\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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/bf276f34-be6b-45a6-a98a-94eca6025404?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0912cdd0-19e0-4df0-a141-1d84a5c7cadb?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4229' + - '3900' content-type: - application/json date: - - Thu, 15 Jun 2023 02:58:23 GMT + - Thu, 29 Jun 2023 10:28:05 GMT expires: - '-1' pragma: @@ -1125,7 +1115,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 200 message: OK @@ -1143,14 +1133,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0912cdd0-19e0-4df0-a141-1d84a5c7cadb?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 }" + string: "{\n \"name\": \"d0cd1209-e019-f04d-a141-1d84a5c7cadb\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:28:04.8065946Z\"\n }" headers: cache-control: - no-cache @@ -1159,7 +1149,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:58:23 GMT + - Thu, 29 Jun 2023 10:28:05 GMT expires: - '-1' pragma: @@ -1191,14 +1181,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0912cdd0-19e0-4df0-a141-1d84a5c7cadb?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 }" + string: "{\n \"name\": \"d0cd1209-e019-f04d-a141-1d84a5c7cadb\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:28:04.8065946Z\"\n }" headers: cache-control: - no-cache @@ -1207,7 +1197,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:58:53 GMT + - Thu, 29 Jun 2023 10:28:35 GMT expires: - '-1' pragma: @@ -1239,14 +1229,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0912cdd0-19e0-4df0-a141-1d84a5c7cadb?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 }" + string: "{\n \"name\": \"d0cd1209-e019-f04d-a141-1d84a5c7cadb\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:28:04.8065946Z\"\n }" headers: cache-control: - no-cache @@ -1255,7 +1245,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:59:23 GMT + - Thu, 29 Jun 2023 10:29:05 GMT expires: - '-1' pragma: @@ -1287,14 +1277,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0912cdd0-19e0-4df0-a141-1d84a5c7cadb?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 }" + string: "{\n \"name\": \"d0cd1209-e019-f04d-a141-1d84a5c7cadb\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:28:04.8065946Z\"\n }" headers: cache-control: - no-cache @@ -1303,7 +1293,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 02:59:53 GMT + - Thu, 29 Jun 2023 10:29:36 GMT expires: - '-1' pragma: @@ -1335,14 +1325,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0912cdd0-19e0-4df0-a141-1d84a5c7cadb?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 }" + string: "{\n \"name\": \"d0cd1209-e019-f04d-a141-1d84a5c7cadb\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:28:04.8065946Z\"\n }" headers: cache-control: - no-cache @@ -1351,7 +1341,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 03:00:23 GMT + - Thu, 29 Jun 2023 10:30:06 GMT expires: - '-1' pragma: @@ -1383,14 +1373,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0912cdd0-19e0-4df0-a141-1d84a5c7cadb?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 }" + string: "{\n \"name\": \"d0cd1209-e019-f04d-a141-1d84a5c7cadb\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:28:04.8065946Z\"\n }" headers: cache-control: - no-cache @@ -1399,7 +1389,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 03:00:54 GMT + - Thu, 29 Jun 2023 10:30:36 GMT expires: - '-1' pragma: @@ -1431,14 +1421,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0912cdd0-19e0-4df0-a141-1d84a5c7cadb?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 }" + string: "{\n \"name\": \"d0cd1209-e019-f04d-a141-1d84a5c7cadb\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:28:04.8065946Z\"\n }" headers: cache-control: - no-cache @@ -1447,7 +1437,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 03:01:24 GMT + - Thu, 29 Jun 2023 10:31:06 GMT expires: - '-1' pragma: @@ -1479,24 +1469,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0912cdd0-19e0-4df0-a141-1d84a5c7cadb?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"d0cd1209-e019-f04d-a141-1d84a5c7cadb\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:28:04.8065946Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 03:01:54 GMT + - Thu, 29 Jun 2023 10:31:36 GMT expires: - '-1' pragma: @@ -1528,66 +1517,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0912cdd0-19e0-4df0-a141-1d84a5c7cadb?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 \"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 }" + string: "{\n \"name\": \"d0cd1209-e019-f04d-a141-1d84a5c7cadb\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:28:04.8065946Z\"\n }" headers: cache-control: - no-cache content-length: - - '4231' + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 03:01:55 GMT + - Thu, 29 Jun 2023 10:32:06 GMT expires: - '-1' pragma: @@ -1609,76 +1555,33 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - aks show + - aks scale Connection: - keep-alive ParameterSetName: - - -g -n + - -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0912cdd0-19e0-4df0-a141-1d84a5c7cadb?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 \"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 }" + string: "{\n \"name\": \"d0cd1209-e019-f04d-a141-1d84a5c7cadb\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:28:04.8065946Z\"\n }" headers: cache-control: - no-cache content-length: - - '4231' + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 03:01:58 GMT + - Thu, 29 Jun 2023 10:32:36 GMT expires: - '-1' pragma: @@ -1700,51 +1603,51 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - aks delete + - aks scale Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - -g -n --yes + - -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: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-05-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0912cdd0-19e0-4df0-a141-1d84a5c7cadb?api-version=2016-03-30 response: body: - string: '' + string: "{\n \"name\": \"d0cd1209-e019-f04d-a141-1d84a5c7cadb\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:28:04.8065946Z\",\n \"endTime\": + \"2023-06-29T10:32:39.4675229Z\"\n }" headers: - azure-asyncoperation: - - 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' + - '170' + content-type: + - application/json date: - - Thu, 15 Jun 2023 03:02:01 GMT + - Thu, 29 Jun 2023 10:33:07 GMT expires: - '-1' - location: - - 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: - nginx strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1753,29 +1656,70 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks delete + - aks scale Connection: - keep-alive ParameterSetName: - - -g -n --yes + - -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-05-01 response: body: - string: "{\n \"name\": \"ce93f979-4720-9f46-b237-e4a2916fe813\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T03:02:02.331221Z\"\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.26.3\",\n + \ \"currentKubernetesVersion\": \"1.26.3\",\n \"dnsPrefix\": \"cliaksdns000003\",\n + \ \"fqdn\": \"cliaksdns000003-uicoy923.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000003-uicoy923.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.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/01d41e9a-bf7d-4708-bc5b-5e11e162833b\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '125' + - '3902' content-type: - application/json date: - - Thu, 15 Jun 2023 03:02:01 GMT + - Thu, 29 Jun 2023 10:33:08 GMT expires: - '-1' pragma: @@ -1797,33 +1741,74 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks delete + - aks show Connection: - keep-alive ParameterSetName: - - -g -n --yes + - -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-05-01 response: body: - string: "{\n \"name\": \"ce93f979-4720-9f46-b237-e4a2916fe813\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T03:02:02.331221Z\"\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.26.3\",\n + \ \"currentKubernetesVersion\": \"1.26.3\",\n \"dnsPrefix\": \"cliaksdns000003\",\n + \ \"fqdn\": \"cliaksdns000003-uicoy923.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000003-uicoy923.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.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/01d41e9a-bf7d-4708-bc5b-5e11e162833b\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '125' + - '3902' content-type: - application/json date: - - Thu, 15 Jun 2023 03:02:32 GMT + - Thu, 29 Jun 2023 10:33:08 GMT expires: - '-1' pragma: @@ -1841,6 +1826,55 @@ interactions: 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 + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ec2e388-e138-415f-8be0-4471c08c5db9?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 29 Jun 2023 10:33:09 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/5ec2e388-e138-415f-8be0-4471c08c5db9?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: + - '14998' + status: + code: 202 + message: Accepted - request: body: null headers: @@ -1855,23 +1889,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ec2e388-e138-415f-8be0-4471c08c5db9?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 }" + string: "{\n \"name\": \"88e3c25e-38e1-5f41-8be0-4471c08c5db9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:33:10.1044719Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 03:03:02 GMT + - Thu, 29 Jun 2023 10:33:09 GMT expires: - '-1' pragma: @@ -1903,23 +1937,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ec2e388-e138-415f-8be0-4471c08c5db9?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 }" + string: "{\n \"name\": \"88e3c25e-38e1-5f41-8be0-4471c08c5db9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:33:10.1044719Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 03:03:32 GMT + - Thu, 29 Jun 2023 10:33:39 GMT expires: - '-1' pragma: @@ -1951,23 +1985,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ec2e388-e138-415f-8be0-4471c08c5db9?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 }" + string: "{\n \"name\": \"88e3c25e-38e1-5f41-8be0-4471c08c5db9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:33:10.1044719Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 03:04:02 GMT + - Thu, 29 Jun 2023 10:34:09 GMT expires: - '-1' pragma: @@ -1999,23 +2033,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ec2e388-e138-415f-8be0-4471c08c5db9?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 }" + string: "{\n \"name\": \"88e3c25e-38e1-5f41-8be0-4471c08c5db9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:33:10.1044719Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 03:04:32 GMT + - Thu, 29 Jun 2023 10:34:40 GMT expires: - '-1' pragma: @@ -2047,23 +2081,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ec2e388-e138-415f-8be0-4471c08c5db9?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 }" + string: "{\n \"name\": \"88e3c25e-38e1-5f41-8be0-4471c08c5db9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:33:10.1044719Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 03:05:02 GMT + - Thu, 29 Jun 2023 10:35:10 GMT expires: - '-1' pragma: @@ -2095,24 +2129,24 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5ec2e388-e138-415f-8be0-4471c08c5db9?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 }" + string: "{\n \"name\": \"88e3c25e-38e1-5f41-8be0-4471c08c5db9\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:33:10.1044719Z\",\n \"endTime\": + \"2023-06-29T10:35:36.3533499Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '170' content-type: - application/json date: - - Thu, 15 Jun 2023 03:05:32 GMT + - Thu, 29 Jun 2023 10:35:40 GMT expires: - '-1' pragma: @@ -2144,18 +2178,18 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - 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 }" + 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: 79a7390d-3a85-432d-9f6f-a11a703c8b83, + resourceGroup: clitest000001.\",\n \"subcode\": \"GetManagedCluster_NotFound\"\n + }" headers: cache-control: - no-cache @@ -2164,7 +2198,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 03:05:34 GMT + - Thu, 29 Jun 2023 10:35:41 GMT expires: - '-1' pragma: 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 index abd03e8468b..d0bd1fee8f9 100644 --- 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,36 +13,39 @@ interactions: ParameterSetName: - -l --query User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/kubernetesVersions?api-version=2023-05-01 response: body: - 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 }" + string: "{\n \"values\": [\n {\n \"version\": \"1.27\",\n \"capabilities\": + {\n \"supportPlan\": [\n \"KubernetesOfficial\",\n \"AKSLongTermSupport\"\n + \ ]\n },\n \"patchVersions\": {\n \"1.27.1\": {\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.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.27.1\",\n \"1.26.3\"\n + \ ]\n },\n \"1.26.3\": {\n \"upgrades\": [\n \"1.27.1\"\n + \ ]\n }\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '957' + - '1218' content-type: - application/json date: - - Thu, 15 Jun 2023 03:05:45 GMT + - Thu, 29 Jun 2023 09:51:22 GMT expires: - '-1' pragma: @@ -75,8 +78,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -92,7 +95,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 03:05:47 GMT + - Thu, 29 Jun 2023 09:51:21 GMT expires: - '-1' pragma: @@ -108,15 +111,15 @@ interactions: message: Not Found - request: body: '{"tags": {"scenario_test": ""}, "location": "westus2", "properties": {"kubernetesVersion": - "1.25.6", "dnsPrefix": "cliaksdns000002", "agentPoolProfiles": [{"count": 1, + "1.26.3", "dnsPrefix": "cliaksdns000002", "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": + "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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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", + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": @@ -131,68 +134,67 @@ interactions: Connection: - keep-alive Content-Length: - - '1839' + - '1510' 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: 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.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 }" + 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.26.3\",\n + \ \"currentKubernetesVersion\": \"1.26.3\",\n \"dnsPrefix\": \"cliaksdns000002\",\n + \ \"fqdn\": \"cliaksdns000002-89ph59rs.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000002-89ph59rs.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": + [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": + \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/7582cd1c-0048-4e42-a06a-87adfb335e39?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ccaab1cf-6795-4aa6-ad84-042ff4f1b609?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3418' + - '3089' content-type: - application/json date: - - Thu, 15 Jun 2023 03:05:58 GMT + - Thu, 29 Jun 2023 09:51:27 GMT expires: - '-1' pragma: @@ -204,7 +206,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -222,59 +224,478 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + response: + 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.26.3\",\n + \ \"currentKubernetesVersion\": \"1.26.3\",\n \"dnsPrefix\": \"cliaksdns000002\",\n + \ \"fqdn\": \"cliaksdns000002-89ph59rs.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000002-89ph59rs.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": + [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": + \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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: + - '3089' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09: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: + - 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + response: + 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.26.3\",\n + \ \"currentKubernetesVersion\": \"1.26.3\",\n \"dnsPrefix\": \"cliaksdns000002\",\n + \ \"fqdn\": \"cliaksdns000002-89ph59rs.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000002-89ph59rs.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": + [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": + \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/d05cbba3-8f6d-4fd5-a0c0-fe4857c2de98\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: + - '3351' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:51: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: + - 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + response: + 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.26.3\",\n + \ \"currentKubernetesVersion\": \"1.26.3\",\n \"dnsPrefix\": \"cliaksdns000002\",\n + \ \"fqdn\": \"cliaksdns000002-89ph59rs.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000002-89ph59rs.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": + [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": + \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/d05cbba3-8f6d-4fd5-a0c0-fe4857c2de98\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: + - '3351' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:52: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: + - 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + response: + 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.26.3\",\n + \ \"currentKubernetesVersion\": \"1.26.3\",\n \"dnsPrefix\": \"cliaksdns000002\",\n + \ \"fqdn\": \"cliaksdns000002-89ph59rs.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000002-89ph59rs.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": + [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": + \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/d05cbba3-8f6d-4fd5-a0c0-fe4857c2de98\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: + - '3351' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:53: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: + - 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + response: + 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.26.3\",\n + \ \"currentKubernetesVersion\": \"1.26.3\",\n \"dnsPrefix\": \"cliaksdns000002\",\n + \ \"fqdn\": \"cliaksdns000002-89ph59rs.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000002-89ph59rs.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": + [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": + \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/d05cbba3-8f6d-4fd5-a0c0-fe4857c2de98\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: + - '3351' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:53: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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: 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.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 }" + 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.26.3\",\n + \ \"currentKubernetesVersion\": \"1.26.3\",\n \"dnsPrefix\": \"cliaksdns000002\",\n + \ \"fqdn\": \"cliaksdns000002-89ph59rs.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000002-89ph59rs.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": + [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": + \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/d05cbba3-8f6d-4fd5-a0c0-fe4857c2de98\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3418' + - '3351' content-type: - application/json date: - - Thu, 15 Jun 2023 03:05:59 GMT + - Thu, 29 Jun 2023 09:54:01 GMT expires: - '-1' pragma: @@ -306,61 +727,59 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: 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.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 }" + 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.26.3\",\n + \ \"currentKubernetesVersion\": \"1.26.3\",\n \"dnsPrefix\": \"cliaksdns000002\",\n + \ \"fqdn\": \"cliaksdns000002-89ph59rs.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000002-89ph59rs.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": + [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": + \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/d05cbba3-8f6d-4fd5-a0c0-fe4857c2de98\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3680' + - '3351' content-type: - application/json date: - - Thu, 15 Jun 2023 03:06:30 GMT + - Thu, 29 Jun 2023 09:54:32 GMT expires: - '-1' pragma: @@ -392,61 +811,59 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: 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.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 }" + 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.26.3\",\n + \ \"currentKubernetesVersion\": \"1.26.3\",\n \"dnsPrefix\": \"cliaksdns000002\",\n + \ \"fqdn\": \"cliaksdns000002-89ph59rs.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000002-89ph59rs.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": + [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": + \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/d05cbba3-8f6d-4fd5-a0c0-fe4857c2de98\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3680' + - '3351' content-type: - application/json date: - - Thu, 15 Jun 2023 03:07:00 GMT + - Thu, 29 Jun 2023 09:55:03 GMT expires: - '-1' pragma: @@ -478,61 +895,59 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: 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.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 }" + 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.26.3\",\n + \ \"currentKubernetesVersion\": \"1.26.3\",\n \"dnsPrefix\": \"cliaksdns000002\",\n + \ \"fqdn\": \"cliaksdns000002-89ph59rs.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000002-89ph59rs.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": + [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": + \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/d05cbba3-8f6d-4fd5-a0c0-fe4857c2de98\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3680' + - '3351' content-type: - application/json date: - - Thu, 15 Jun 2023 03:07:31 GMT + - Thu, 29 Jun 2023 09:55:33 GMT expires: - '-1' pragma: @@ -564,61 +979,59 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: 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.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 }" + 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.26.3\",\n + \ \"currentKubernetesVersion\": \"1.26.3\",\n \"dnsPrefix\": \"cliaksdns000002\",\n + \ \"fqdn\": \"cliaksdns000002-89ph59rs.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000002-89ph59rs.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": + [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": + \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/d05cbba3-8f6d-4fd5-a0c0-fe4857c2de98\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3680' + - '3351' content-type: - application/json date: - - Thu, 15 Jun 2023 03:08:02 GMT + - Thu, 29 Jun 2023 09:56:03 GMT expires: - '-1' pragma: @@ -650,61 +1063,59 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: 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.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 }" + 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.26.3\",\n + \ \"currentKubernetesVersion\": \"1.26.3\",\n \"dnsPrefix\": \"cliaksdns000002\",\n + \ \"fqdn\": \"cliaksdns000002-89ph59rs.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000002-89ph59rs.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": + [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": + \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/d05cbba3-8f6d-4fd5-a0c0-fe4857c2de98\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3680' + - '3351' content-type: - application/json date: - - Thu, 15 Jun 2023 03:08:33 GMT + - Thu, 29 Jun 2023 09:56:35 GMT expires: - '-1' pragma: @@ -736,61 +1147,59 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: 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.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 }" + 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.26.3\",\n + \ \"currentKubernetesVersion\": \"1.26.3\",\n \"dnsPrefix\": \"cliaksdns000002\",\n + \ \"fqdn\": \"cliaksdns000002-89ph59rs.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000002-89ph59rs.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": + [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": + \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/d05cbba3-8f6d-4fd5-a0c0-fe4857c2de98\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3682' + - '3353' content-type: - application/json date: - - Thu, 15 Jun 2023 03:09:03 GMT + - Thu, 29 Jun 2023 09:57:05 GMT expires: - '-1' pragma: @@ -822,61 +1231,59 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: 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.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 }" + 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.26.3\",\n + \ \"currentKubernetesVersion\": \"1.26.3\",\n \"dnsPrefix\": \"cliaksdns000002\",\n + \ \"fqdn\": \"cliaksdns000002-89ph59rs.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000002-89ph59rs.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": + [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": + \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/d05cbba3-8f6d-4fd5-a0c0-fe4857c2de98\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3682' + - '3353' content-type: - application/json date: - - Thu, 15 Jun 2023 03:09:05 GMT + - Thu, 29 Jun 2023 09:57:06 GMT expires: - '-1' pragma: @@ -908,36 +1315,39 @@ interactions: ParameterSetName: - -l User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/kubernetesVersions?api-version=2023-05-01 response: body: - 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 }" + 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.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 + \ \"1.27.1\"\n ]\n },\n \"1.26.3\": {\n \"upgrades\": + [\n \"1.27.1\"\n ]\n }\n }\n },\n {\n \"version\": + \"1.27\",\n \"capabilities\": {\n \"supportPlan\": [\n \"KubernetesOfficial\",\n + \ \"AKSLongTermSupport\"\n ]\n },\n \"patchVersions\": {\n \"1.27.1\": + {\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 }" headers: cache-control: - no-cache content-length: - - '957' + - '1218' content-type: - application/json date: - - Thu, 15 Jun 2023 03:09:06 GMT + - Thu, 29 Jun 2023 09:57:06 GMT expires: - '-1' pragma: @@ -969,36 +1379,39 @@ interactions: ParameterSetName: - -l -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/kubernetesVersions?api-version=2023-05-01 response: body: - 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 }" + 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 \"1.27.1\"\n + \ ]\n },\n \"1.26.3\": {\n \"upgrades\": [\n \"1.27.1\"\n + \ ]\n }\n }\n },\n {\n \"version\": \"1.27\",\n \"capabilities\": + {\n \"supportPlan\": [\n \"KubernetesOfficial\",\n \"AKSLongTermSupport\"\n + \ ]\n },\n \"patchVersions\": {\n \"1.27.1\": {\n \"upgrades\": + []\n }\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '957' + - '1218' content-type: - application/json date: - - Thu, 15 Jun 2023 03:09:07 GMT + - Thu, 29 Jun 2023 09:57:06 GMT expires: - '-1' pragma: @@ -1030,28 +1443,27 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/upgradeProfiles/default?api-version=2023-05-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.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\ - \ }" + 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.26.3\",\n \"osType\": \"Linux\",\n \"upgrades\": [\n {\n \"kubernetesVersion\": + \"1.27.1\",\n \"isPreview\": true\n }\n ]\n },\n \"agentPoolProfiles\": + null\n }\n }" headers: cache-control: - no-cache content-length: - - '551' + - '525' content-type: - application/json date: - - Thu, 15 Jun 2023 03:09:09 GMT + - Thu, 29 Jun 2023 09:57:07 GMT expires: - '-1' pragma: @@ -1083,28 +1495,27 @@ interactions: ParameterSetName: - -g -n --output User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/upgradeProfiles/default?api-version=2023-05-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.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\ - \ }" + 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.26.3\",\n \"osType\": \"Linux\",\n \"upgrades\": [\n {\n \"kubernetesVersion\": + \"1.27.1\",\n \"isPreview\": true\n }\n ]\n },\n \"agentPoolProfiles\": + null\n }\n }" headers: cache-control: - no-cache content-length: - - '551' + - '525' content-type: - application/json date: - - Thu, 15 Jun 2023 03:09:11 GMT + - Thu, 29 Jun 2023 09:57:08 GMT expires: - '-1' pragma: @@ -1136,61 +1547,59 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: 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.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 }" + 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.26.3\",\n + \ \"currentKubernetesVersion\": \"1.26.3\",\n \"dnsPrefix\": \"cliaksdns000002\",\n + \ \"fqdn\": \"cliaksdns000002-89ph59rs.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000002-89ph59rs.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": + [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": + \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/d05cbba3-8f6d-4fd5-a0c0-fe4857c2de98\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3682' + - '3353' content-type: - application/json date: - - Thu, 15 Jun 2023 03:09:13 GMT + - Thu, 29 Jun 2023 09:57:08 GMT expires: - '-1' pragma: @@ -1210,22 +1619,22 @@ interactions: message: OK - request: body: '{"tags": {"scenario_test": ""}, "location": "westus2", "sku": {"name": - "Base", "tier": "Free"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": + "Base", "tier": "Free"}, "properties": {"kubernetesVersion": "1.26.3", "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", + "VirtualMachineScaleSets", "mode": "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": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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"}]}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_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/d05cbba3-8f6d-4fd5-a0c0-fe4857c2de98"}]}, "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": @@ -1240,72 +1649,69 @@ interactions: Connection: - keep-alive Content-Length: - - '2523' + - '2194' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: 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.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 }" + 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.26.3\",\n + \ \"currentKubernetesVersion\": \"1.26.3\",\n \"dnsPrefix\": \"cliaksdns000002\",\n + \ \"fqdn\": \"cliaksdns000002-89ph59rs.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000002-89ph59rs.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": + [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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\": \"229d163c4aed4e50a5d6.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/d05cbba3-8f6d-4fd5-a0c0-fe4857c2de98\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1402c8ae-4877-48af-8294-b091d16df4e0?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3873' + - '3544' content-type: - application/json date: - - Thu, 15 Jun 2023 03:09:18 GMT + - Thu, 29 Jun 2023 09:57:14 GMT expires: - '-1' pragma: @@ -1339,14 +1745,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1402c8ae-4877-48af-8294-b091d16df4e0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f2a300ae-4efa-3b4a-a371-ebda89275ae1\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T03:09:18.3012608Z\"\n }" + string: "{\n \"name\": \"aec80214-7748-af48-8294-b091d16df4e0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:57:13.8489716Z\"\n }" headers: cache-control: - no-cache @@ -1355,7 +1761,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 03:09:19 GMT + - Thu, 29 Jun 2023 09:57:14 GMT expires: - '-1' pragma: @@ -1387,14 +1793,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1402c8ae-4877-48af-8294-b091d16df4e0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f2a300ae-4efa-3b4a-a371-ebda89275ae1\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T03:09:18.3012608Z\"\n }" + string: "{\n \"name\": \"aec80214-7748-af48-8294-b091d16df4e0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:57:13.8489716Z\"\n }" headers: cache-control: - no-cache @@ -1403,7 +1809,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 03:09:49 GMT + - Thu, 29 Jun 2023 09:57:44 GMT expires: - '-1' pragma: @@ -1435,14 +1841,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1402c8ae-4877-48af-8294-b091d16df4e0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f2a300ae-4efa-3b4a-a371-ebda89275ae1\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T03:09:18.3012608Z\"\n }" + string: "{\n \"name\": \"aec80214-7748-af48-8294-b091d16df4e0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:57:13.8489716Z\"\n }" headers: cache-control: - no-cache @@ -1451,7 +1857,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 03:10:19 GMT + - Thu, 29 Jun 2023 09:58:15 GMT expires: - '-1' pragma: @@ -1483,14 +1889,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1402c8ae-4877-48af-8294-b091d16df4e0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f2a300ae-4efa-3b4a-a371-ebda89275ae1\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T03:09:18.3012608Z\"\n }" + string: "{\n \"name\": \"aec80214-7748-af48-8294-b091d16df4e0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:57:13.8489716Z\"\n }" headers: cache-control: - no-cache @@ -1499,7 +1905,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 03:10:49 GMT + - Thu, 29 Jun 2023 09:58:45 GMT expires: - '-1' pragma: @@ -1531,15 +1937,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1402c8ae-4877-48af-8294-b091d16df4e0?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"aec80214-7748-af48-8294-b091d16df4e0\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:57:13.8489716Z\",\n \"endTime\": + \"2023-06-29T09:58:56.6671492Z\"\n }" headers: cache-control: - no-cache @@ -1548,7 +1954,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 03:11:19 GMT + - Thu, 29 Jun 2023 09:59:14 GMT expires: - '-1' pragma: @@ -1580,64 +1986,61 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: 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.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 }" + 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.26.3\",\n + \ \"currentKubernetesVersion\": \"1.26.3\",\n \"dnsPrefix\": \"cliaksdns000002\",\n + \ \"fqdn\": \"cliaksdns000002-89ph59rs.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000002-89ph59rs.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": + [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": + \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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\": \"229d163c4aed4e50a5d6.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/d05cbba3-8f6d-4fd5-a0c0-fe4857c2de98\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3875' + - '3546' content-type: - application/json date: - - Thu, 15 Jun 2023 03:11:20 GMT + - Thu, 29 Jun 2023 09:59:15 GMT expires: - '-1' pragma: @@ -1671,8 +2074,8 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/cliakstest000001?api-version=2023-05-01 response: @@ -1680,17 +2083,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1957a157-e0aa-4690-9c92-b156cd8fae33?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 15 Jun 2023 03:11:25 GMT + - Thu, 29 Jun 2023 09:59:17 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/1957a157-e0aa-4690-9c92-b156cd8fae33?api-version=2016-03-30 pragma: - no-cache server: @@ -1718,14 +2121,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1957a157-e0aa-4690-9c92-b156cd8fae33?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 }" + string: "{\n \"name\": \"57a15719-aae0-9046-9c92-b156cd8fae33\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:59:17.7086116Z\"\n }" headers: cache-control: - no-cache @@ -1734,7 +2137,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 03:11:25 GMT + - Thu, 29 Jun 2023 09:59:17 GMT expires: - '-1' pragma: @@ -1766,14 +2169,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1957a157-e0aa-4690-9c92-b156cd8fae33?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 }" + string: "{\n \"name\": \"57a15719-aae0-9046-9c92-b156cd8fae33\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:59:17.7086116Z\"\n }" headers: cache-control: - no-cache @@ -1782,7 +2185,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 03:11:54 GMT + - Thu, 29 Jun 2023 09:59:47 GMT expires: - '-1' pragma: @@ -1814,14 +2217,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1957a157-e0aa-4690-9c92-b156cd8fae33?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 }" + string: "{\n \"name\": \"57a15719-aae0-9046-9c92-b156cd8fae33\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:59:17.7086116Z\"\n }" headers: cache-control: - no-cache @@ -1830,7 +2233,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 03:12:25 GMT + - Thu, 29 Jun 2023 10:00:17 GMT expires: - '-1' pragma: @@ -1862,14 +2265,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1957a157-e0aa-4690-9c92-b156cd8fae33?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 }" + string: "{\n \"name\": \"57a15719-aae0-9046-9c92-b156cd8fae33\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:59:17.7086116Z\"\n }" headers: cache-control: - no-cache @@ -1878,7 +2281,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 03:12:55 GMT + - Thu, 29 Jun 2023 10:00:48 GMT expires: - '-1' pragma: @@ -1910,14 +2313,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1957a157-e0aa-4690-9c92-b156cd8fae33?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 }" + string: "{\n \"name\": \"57a15719-aae0-9046-9c92-b156cd8fae33\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:59:17.7086116Z\"\n }" headers: cache-control: - no-cache @@ -1926,7 +2329,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 03:13:25 GMT + - Thu, 29 Jun 2023 10:01:18 GMT expires: - '-1' pragma: @@ -1958,14 +2361,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1957a157-e0aa-4690-9c92-b156cd8fae33?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 }" + string: "{\n \"name\": \"57a15719-aae0-9046-9c92-b156cd8fae33\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:59:17.7086116Z\"\n }" headers: cache-control: - no-cache @@ -1974,7 +2377,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 03:13:56 GMT + - Thu, 29 Jun 2023 10:01:48 GMT expires: - '-1' pragma: @@ -2006,14 +2409,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1957a157-e0aa-4690-9c92-b156cd8fae33?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 }" + string: "{\n \"name\": \"57a15719-aae0-9046-9c92-b156cd8fae33\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:59:17.7086116Z\"\n }" headers: cache-control: - no-cache @@ -2022,7 +2425,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 03:14:26 GMT + - Thu, 29 Jun 2023 10:02:18 GMT expires: - '-1' pragma: @@ -2054,15 +2457,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1957a157-e0aa-4690-9c92-b156cd8fae33?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 }" + string: "{\n \"name\": \"57a15719-aae0-9046-9c92-b156cd8fae33\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:59:17.7086116Z\",\n \"endTime\": + \"2023-06-29T10:02:30.6684371Z\"\n }" headers: cache-control: - no-cache @@ -2071,7 +2474,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 03:14:56 GMT + - Thu, 29 Jun 2023 10:02:48 GMT expires: - '-1' pragma: @@ -2103,8 +2506,8 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -2120,7 +2523,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 03:14:59 GMT + - Thu, 29 Jun 2023 10:02:48 GMT expires: - '-1' pragma: 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 index 5b98abc2adf..690cde1a49e 100644 --- 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,36 +13,39 @@ interactions: ParameterSetName: - -l --query User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/kubernetesVersions?api-version=2023-05-01 response: body: - 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 }" + 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 + \ \"1.27.1\"\n ]\n },\n \"1.26.3\": {\n \"upgrades\": + [\n \"1.27.1\"\n ]\n }\n }\n },\n {\n \"version\": + \"1.27\",\n \"capabilities\": {\n \"supportPlan\": [\n \"KubernetesOfficial\",\n + \ \"AKSLongTermSupport\"\n ]\n },\n \"patchVersions\": {\n \"1.27.1\": + {\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: - - '957' + - '1218' content-type: - application/json date: - - Thu, 15 Jun 2023 03:15:06 GMT + - Thu, 29 Jun 2023 10:02:51 GMT expires: - '-1' pragma: @@ -74,8 +77,8 @@ interactions: ParameterSetName: - -g -n -p --ssh-key-value -l -k --node-vm-size --tags -c --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -91,7 +94,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 03:15:09 GMT + - Thu, 29 Jun 2023 10:02:51 GMT expires: - '-1' pragma: @@ -107,18 +110,19 @@ interactions: message: Not Found - request: body: '{"tags": {"scenario_test": ""}, "location": "westus2", "identity": {"type": - "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": + "SystemAssigned"}, "properties": {"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.25.6", "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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {}}}' headers: Accept: - application/json @@ -129,69 +133,68 @@ interactions: Connection: - keep-alive Content-Length: - - '1775' + - '1446' Content-Type: - application/json ParameterSetName: - -g -n -p --ssh-key-value -l -k --node-vm-size --tags -c --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: 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.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 }" + 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.26.3\",\n + \ \"currentKubernetesVersion\": \"1.26.3\",\n \"dnsPrefix\": \"cliaksdns000002\",\n + \ \"fqdn\": \"cliaksdns000002-cg46o2q2.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000002-cg46o2q2.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": + [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": + \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/a014ce58-5703-4432-bbf4-6a670c720ea7?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6cde4d0c-45d6-4285-b64e-a1da79b39841?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3579' + - '3250' content-type: - application/json date: - - Thu, 15 Jun 2023 03:15:17 GMT + - Thu, 29 Jun 2023 10:02:57 GMT expires: - '-1' pragma: @@ -203,7 +206,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -221,61 +224,60 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: 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.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 }" + 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.26.3\",\n + \ \"currentKubernetesVersion\": \"1.26.3\",\n \"dnsPrefix\": \"cliaksdns000002\",\n + \ \"fqdn\": \"cliaksdns000002-cg46o2q2.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000002-cg46o2q2.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": + [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": + \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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: - - '3579' + - '3250' content-type: - application/json date: - - Thu, 15 Jun 2023 03:15:20 GMT + - Thu, 29 Jun 2023 10:02:57 GMT expires: - '-1' pragma: @@ -307,61 +309,61 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: 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.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 }" + 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.26.3\",\n + \ \"currentKubernetesVersion\": \"1.26.3\",\n \"dnsPrefix\": \"cliaksdns000002\",\n + \ \"fqdn\": \"cliaksdns000002-cg46o2q2.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000002-cg46o2q2.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": + [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": + \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/9cdc5e30-9c74-4e6f-b9fa-6ef483c87c14\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": + {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": + false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": + {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3579' + - '3512' content-type: - application/json date: - - Thu, 15 Jun 2023 03:15:50 GMT + - Thu, 29 Jun 2023 10:03:29 GMT expires: - '-1' pragma: @@ -393,63 +395,61 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: 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.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 }" + 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.26.3\",\n + \ \"currentKubernetesVersion\": \"1.26.3\",\n \"dnsPrefix\": \"cliaksdns000002\",\n + \ \"fqdn\": \"cliaksdns000002-cg46o2q2.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000002-cg46o2q2.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": + [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": + \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/9cdc5e30-9c74-4e6f-b9fa-6ef483c87c14\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": + {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": + false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": + {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3841' + - '3512' content-type: - application/json date: - - Thu, 15 Jun 2023 03:16:21 GMT + - Thu, 29 Jun 2023 10:04:00 GMT expires: - '-1' pragma: @@ -481,66 +481,64 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: 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.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 }" + 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.26.3\",\n + \ \"currentKubernetesVersion\": \"1.26.3\",\n \"dnsPrefix\": \"cliaksdns000002\",\n + \ \"fqdn\": \"cliaksdns000002-cg46o2q2.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000002-cg46o2q2.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": + [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": + \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/9cdc5e30-9c74-4e6f-b9fa-6ef483c87c14\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4230' + - '3901' content-type: - application/json date: - - Thu, 15 Jun 2023 03:16:52 GMT + - Thu, 29 Jun 2023 10:04:30 GMT expires: - '-1' pragma: @@ -572,66 +570,64 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: 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.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 }" + 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.26.3\",\n + \ \"currentKubernetesVersion\": \"1.26.3\",\n \"dnsPrefix\": \"cliaksdns000002\",\n + \ \"fqdn\": \"cliaksdns000002-cg46o2q2.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000002-cg46o2q2.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": + [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": + \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/9cdc5e30-9c74-4e6f-b9fa-6ef483c87c14\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4230' + - '3901' content-type: - application/json date: - - Thu, 15 Jun 2023 03:17:23 GMT + - Thu, 29 Jun 2023 10:05:00 GMT expires: - '-1' pragma: @@ -663,66 +659,64 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: 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.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 }" + 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.26.3\",\n + \ \"currentKubernetesVersion\": \"1.26.3\",\n \"dnsPrefix\": \"cliaksdns000002\",\n + \ \"fqdn\": \"cliaksdns000002-cg46o2q2.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000002-cg46o2q2.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": + [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": + \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/9cdc5e30-9c74-4e6f-b9fa-6ef483c87c14\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4230' + - '3901' content-type: - application/json date: - - Thu, 15 Jun 2023 03:17:53 GMT + - Thu, 29 Jun 2023 10:05:31 GMT expires: - '-1' pragma: @@ -754,66 +748,64 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: 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.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 }" + 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.26.3\",\n + \ \"currentKubernetesVersion\": \"1.26.3\",\n \"dnsPrefix\": \"cliaksdns000002\",\n + \ \"fqdn\": \"cliaksdns000002-cg46o2q2.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000002-cg46o2q2.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": + [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": + \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/9cdc5e30-9c74-4e6f-b9fa-6ef483c87c14\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4230' + - '3901' content-type: - application/json date: - - Thu, 15 Jun 2023 03:18:24 GMT + - Thu, 29 Jun 2023 10:06:01 GMT expires: - '-1' pragma: @@ -845,66 +837,64 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: 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.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 }" + 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.26.3\",\n + \ \"currentKubernetesVersion\": \"1.26.3\",\n \"dnsPrefix\": \"cliaksdns000002\",\n + \ \"fqdn\": \"cliaksdns000002-cg46o2q2.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000002-cg46o2q2.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": + [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": + \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/9cdc5e30-9c74-4e6f-b9fa-6ef483c87c14\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4230' + - '3901' content-type: - application/json date: - - Thu, 15 Jun 2023 03:18:55 GMT + - Thu, 29 Jun 2023 10:06:33 GMT expires: - '-1' pragma: @@ -936,66 +926,242 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: 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.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 }" + 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.26.3\",\n + \ \"currentKubernetesVersion\": \"1.26.3\",\n \"dnsPrefix\": \"cliaksdns000002\",\n + \ \"fqdn\": \"cliaksdns000002-cg46o2q2.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000002-cg46o2q2.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": + [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": + \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/9cdc5e30-9c74-4e6f-b9fa-6ef483c87c14\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4232' + - '3901' content-type: - application/json date: - - Thu, 15 Jun 2023 03:19:26 GMT + - Thu, 29 Jun 2023 10:07: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.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + response: + 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.26.3\",\n + \ \"currentKubernetesVersion\": \"1.26.3\",\n \"dnsPrefix\": \"cliaksdns000002\",\n + \ \"fqdn\": \"cliaksdns000002-cg46o2q2.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000002-cg46o2q2.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": + [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": + \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/9cdc5e30-9c74-4e6f-b9fa-6ef483c87c14\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: + - '3901' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:07: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: + - 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + response: + 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.26.3\",\n + \ \"currentKubernetesVersion\": \"1.26.3\",\n \"dnsPrefix\": \"cliaksdns000002\",\n + \ \"fqdn\": \"cliaksdns000002-cg46o2q2.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000002-cg46o2q2.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": + [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": + \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/9cdc5e30-9c74-4e6f-b9fa-6ef483c87c14\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: + - '3903' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:08:04 GMT expires: - '-1' pragma: @@ -1027,66 +1193,64 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: 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.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 }" + 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.26.3\",\n + \ \"currentKubernetesVersion\": \"1.26.3\",\n \"dnsPrefix\": \"cliaksdns000002\",\n + \ \"fqdn\": \"cliaksdns000002-cg46o2q2.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000002-cg46o2q2.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": + [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": + \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/9cdc5e30-9c74-4e6f-b9fa-6ef483c87c14\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4232' + - '3903' content-type: - application/json date: - - Thu, 15 Jun 2023 03:19:28 GMT + - Thu, 29 Jun 2023 10:08:05 GMT expires: - '-1' pragma: @@ -1118,36 +1282,39 @@ interactions: ParameterSetName: - -l User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/kubernetesVersions?api-version=2023-05-01 response: body: - 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 }" + string: "{\n \"values\": [\n {\n \"version\": \"1.27\",\n \"capabilities\": + {\n \"supportPlan\": [\n \"KubernetesOfficial\",\n \"AKSLongTermSupport\"\n + \ ]\n },\n \"patchVersions\": {\n \"1.27.1\": {\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 \"version\": \"1.26\",\n \"capabilities\": {\n \"supportPlan\": + [\n \"KubernetesOfficial\"\n ]\n },\n \"patchVersions\": {\n + \ \"1.26.0\": {\n \"upgrades\": [\n \"1.26.3\",\n \"1.27.1\"\n + \ ]\n },\n \"1.26.3\": {\n \"upgrades\": [\n \"1.27.1\"\n + \ ]\n }\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '957' + - '1218' content-type: - application/json date: - - Thu, 15 Jun 2023 03:19:28 GMT + - Thu, 29 Jun 2023 10:08:06 GMT expires: - '-1' pragma: @@ -1179,36 +1346,39 @@ interactions: ParameterSetName: - -l -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/kubernetesVersions?api-version=2023-05-01 response: body: - 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 }" + string: "{\n \"values\": [\n {\n \"version\": \"1.27\",\n \"capabilities\": + {\n \"supportPlan\": [\n \"KubernetesOfficial\",\n \"AKSLongTermSupport\"\n + \ ]\n },\n \"patchVersions\": {\n \"1.27.1\": {\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.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.27.1\",\n \"1.26.3\"\n + \ ]\n },\n \"1.26.3\": {\n \"upgrades\": [\n \"1.27.1\"\n + \ ]\n }\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '957' + - '1218' content-type: - application/json date: - - Thu, 15 Jun 2023 03:19:30 GMT + - Thu, 29 Jun 2023 10:08:06 GMT expires: - '-1' pragma: @@ -1240,28 +1410,27 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/upgradeProfiles/default?api-version=2023-05-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.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\ - \ }" + 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.26.3\",\n \"osType\": \"Linux\",\n \"upgrades\": [\n {\n \"kubernetesVersion\": + \"1.27.1\",\n \"isPreview\": true\n }\n ]\n },\n \"agentPoolProfiles\": + null\n }\n }" headers: cache-control: - no-cache content-length: - - '551' + - '525' content-type: - application/json date: - - Thu, 15 Jun 2023 03:19:31 GMT + - Thu, 29 Jun 2023 10:08:07 GMT expires: - '-1' pragma: @@ -1293,28 +1462,27 @@ interactions: ParameterSetName: - -g -n --output User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/upgradeProfiles/default?api-version=2023-05-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.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\ - \ }" + 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.26.3\",\n \"osType\": \"Linux\",\n \"upgrades\": [\n {\n \"kubernetesVersion\": + \"1.27.1\",\n \"isPreview\": true\n }\n ]\n },\n \"agentPoolProfiles\": + null\n }\n }" headers: cache-control: - no-cache content-length: - - '551' + - '525' content-type: - application/json date: - - Thu, 15 Jun 2023 03:19:32 GMT + - Thu, 29 Jun 2023 10:08:07 GMT expires: - '-1' pragma: @@ -1346,66 +1514,64 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: 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.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 }" + 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.26.3\",\n + \ \"currentKubernetesVersion\": \"1.26.3\",\n \"dnsPrefix\": \"cliaksdns000002\",\n + \ \"fqdn\": \"cliaksdns000002-cg46o2q2.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000002-cg46o2q2.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": + [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": + \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/9cdc5e30-9c74-4e6f-b9fa-6ef483c87c14\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4232' + - '3903' content-type: - application/json date: - - Thu, 15 Jun 2023 03:19:34 GMT + - Thu, 29 Jun 2023 10:08:08 GMT expires: - '-1' pragma: @@ -1426,22 +1592,22 @@ interactions: - request: body: '{"tags": {"scenario_test": ""}, "location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "1.25.6", "dnsPrefix": "cliaksdns000002", "agentPoolProfiles": + {"kubernetesVersion": "1.26.3", "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": + "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": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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"}]}, + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_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/9cdc5e30-9c74-4e6f-b9fa-6ef483c87c14"}]}, "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"}}, @@ -1458,77 +1624,74 @@ interactions: Connection: - keep-alive Content-Length: - - '2919' + - '2590' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: 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.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 }" + 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.26.3\",\n + \ \"currentKubernetesVersion\": \"1.26.3\",\n \"dnsPrefix\": \"cliaksdns000002\",\n + \ \"fqdn\": \"cliaksdns000002-cg46o2q2.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000002-cg46o2q2.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": + [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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\": \"4d48504a10664a2fb0d3.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/9cdc5e30-9c74-4e6f-b9fa-6ef483c87c14\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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/644c30be-c19d-4bb9-9e17-ddc02bda03ce?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/626a53aa-b8dc-4698-9ab9-ab7dd2171e9a?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4423' + - '4094' content-type: - application/json date: - - Thu, 15 Jun 2023 03:19:39 GMT + - Thu, 29 Jun 2023 10:08:13 GMT expires: - '-1' pragma: @@ -1544,7 +1707,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -1562,14 +1725,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/626a53aa-b8dc-4698-9ab9-ab7dd2171e9a?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 }" + string: "{\n \"name\": \"aa536a62-dcb8-9846-9ab9-ab7dd2171e9a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:08:12.6782743Z\"\n }" headers: cache-control: - no-cache @@ -1578,7 +1741,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 03:19:39 GMT + - Thu, 29 Jun 2023 10:08:13 GMT expires: - '-1' pragma: @@ -1610,14 +1773,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/626a53aa-b8dc-4698-9ab9-ab7dd2171e9a?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 }" + string: "{\n \"name\": \"aa536a62-dcb8-9846-9ab9-ab7dd2171e9a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:08:12.6782743Z\"\n }" headers: cache-control: - no-cache @@ -1626,7 +1789,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 03:20:09 GMT + - Thu, 29 Jun 2023 10:08:43 GMT expires: - '-1' pragma: @@ -1658,14 +1821,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/626a53aa-b8dc-4698-9ab9-ab7dd2171e9a?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 }" + string: "{\n \"name\": \"aa536a62-dcb8-9846-9ab9-ab7dd2171e9a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:08:12.6782743Z\"\n }" headers: cache-control: - no-cache @@ -1674,7 +1837,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 03:20:39 GMT + - Thu, 29 Jun 2023 10:09:13 GMT expires: - '-1' pragma: @@ -1706,14 +1869,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/626a53aa-b8dc-4698-9ab9-ab7dd2171e9a?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 }" + string: "{\n \"name\": \"aa536a62-dcb8-9846-9ab9-ab7dd2171e9a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:08:12.6782743Z\"\n }" headers: cache-control: - no-cache @@ -1722,7 +1885,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 03:21:10 GMT + - Thu, 29 Jun 2023 10:09:43 GMT expires: - '-1' pragma: @@ -1754,14 +1917,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/626a53aa-b8dc-4698-9ab9-ab7dd2171e9a?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 }" + string: "{\n \"name\": \"aa536a62-dcb8-9846-9ab9-ab7dd2171e9a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:08:12.6782743Z\"\n }" headers: cache-control: - no-cache @@ -1770,7 +1933,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 03:21:41 GMT + - Thu, 29 Jun 2023 10:10:13 GMT expires: - '-1' pragma: @@ -1802,15 +1965,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/626a53aa-b8dc-4698-9ab9-ab7dd2171e9a?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 }" + string: "{\n \"name\": \"aa536a62-dcb8-9846-9ab9-ab7dd2171e9a\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:08:12.6782743Z\",\n \"endTime\": + \"2023-06-29T10:10:31.407697Z\"\n }" headers: cache-control: - no-cache @@ -1819,7 +1982,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 03:22:13 GMT + - Thu, 29 Jun 2023 10:10:44 GMT expires: - '-1' pragma: @@ -1851,72 +2014,68 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: 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.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 }" + 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.26.3\",\n + \ \"currentKubernetesVersion\": \"1.26.3\",\n \"dnsPrefix\": \"cliaksdns000002\",\n + \ \"fqdn\": \"cliaksdns000002-cg46o2q2.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": + \"cliaksdns000002-cg46o2q2.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": + [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": + \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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\": \"4d48504a10664a2fb0d3.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/9cdc5e30-9c74-4e6f-b9fa-6ef483c87c14\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4796' + - '4467' content-type: - application/json date: - - Thu, 15 Jun 2023 03:22:13 GMT + - Thu, 29 Jun 2023 10:10:44 GMT expires: - '-1' pragma: @@ -1950,8 +2109,8 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/cliakstest000001?api-version=2023-05-01 response: @@ -1959,17 +2118,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa76112c-df50-44ad-9e89-b694127adaeb?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 15 Jun 2023 03:22:15 GMT + - Thu, 29 Jun 2023 10:10:45 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/fa76112c-df50-44ad-9e89-b694127adaeb?api-version=2016-03-30 pragma: - no-cache server: @@ -1997,14 +2156,62 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa76112c-df50-44ad-9e89-b694127adaeb?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"2c1176fa-50df-ad44-9e89-b694127adaeb\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:10:46.4758445Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:10: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 delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa76112c-df50-44ad-9e89-b694127adaeb?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 }" + string: "{\n \"name\": \"2c1176fa-50df-ad44-9e89-b694127adaeb\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:10:46.4758445Z\"\n }" headers: cache-control: - no-cache @@ -2013,7 +2220,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 03:22:16 GMT + - Thu, 29 Jun 2023 10:11:15 GMT expires: - '-1' pragma: @@ -2045,14 +2252,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa76112c-df50-44ad-9e89-b694127adaeb?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 }" + string: "{\n \"name\": \"2c1176fa-50df-ad44-9e89-b694127adaeb\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:10:46.4758445Z\"\n }" headers: cache-control: - no-cache @@ -2061,7 +2268,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 03:22:46 GMT + - Thu, 29 Jun 2023 10:11:46 GMT expires: - '-1' pragma: @@ -2093,14 +2300,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa76112c-df50-44ad-9e89-b694127adaeb?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 }" + string: "{\n \"name\": \"2c1176fa-50df-ad44-9e89-b694127adaeb\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:10:46.4758445Z\"\n }" headers: cache-control: - no-cache @@ -2109,7 +2316,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 03:23:16 GMT + - Thu, 29 Jun 2023 10:12:16 GMT expires: - '-1' pragma: @@ -2141,14 +2348,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa76112c-df50-44ad-9e89-b694127adaeb?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 }" + string: "{\n \"name\": \"2c1176fa-50df-ad44-9e89-b694127adaeb\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:10:46.4758445Z\"\n }" headers: cache-control: - no-cache @@ -2157,7 +2364,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 03:23:46 GMT + - Thu, 29 Jun 2023 10:12:46 GMT expires: - '-1' pragma: @@ -2189,14 +2396,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa76112c-df50-44ad-9e89-b694127adaeb?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 }" + string: "{\n \"name\": \"2c1176fa-50df-ad44-9e89-b694127adaeb\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:10:46.4758445Z\"\n }" headers: cache-control: - no-cache @@ -2205,7 +2412,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 03:24:16 GMT + - Thu, 29 Jun 2023 10:13:16 GMT expires: - '-1' pragma: @@ -2237,14 +2444,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa76112c-df50-44ad-9e89-b694127adaeb?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 }" + string: "{\n \"name\": \"2c1176fa-50df-ad44-9e89-b694127adaeb\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:10:46.4758445Z\"\n }" headers: cache-control: - no-cache @@ -2253,7 +2460,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 03:24:47 GMT + - Thu, 29 Jun 2023 10:13:46 GMT expires: - '-1' pragma: @@ -2285,15 +2492,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa76112c-df50-44ad-9e89-b694127adaeb?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"2c1176fa-50df-ad44-9e89-b694127adaeb\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:10:46.4758445Z\",\n \"endTime\": + \"2023-06-29T10:14:04.1753762Z\"\n }" headers: cache-control: - no-cache @@ -2302,7 +2509,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 03:25:17 GMT + - Thu, 29 Jun 2023 10:14:16 GMT expires: - '-1' pragma: @@ -2334,8 +2541,8 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -2351,7 +2558,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 03:25:19 GMT + - Thu, 29 Jun 2023 10:14:17 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 index 7d9dcfde5fa..4c60a5124ff 100644 --- 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 03:25:32 GMT + - Thu, 29 Jun 2023 10:14:20 GMT expires: - '-1' pragma: @@ -53,8 +53,8 @@ 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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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", + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": @@ -69,67 +69,66 @@ interactions: Connection: - keep-alive Content-Length: - - '1796' + - '1467' 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-iai5tdc4.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-iai5tdc4.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/af4e39a8-f459-44e3-a174-c9340a214aad?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17ea272d-6677-45f3-ba45-5696fa470f7c?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3378' + - '3049' content-type: - application/json date: - - Thu, 15 Jun 2023 03:25:41 GMT + - Thu, 29 Jun 2023 10:14:25 GMT expires: - '-1' pragma: @@ -141,7 +140,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -159,58 +158,306 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-iai5tdc4.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-iai5tdc4.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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: + - '3049' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10: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: + - 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-iai5tdc4.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-iai5tdc4.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/2d9eaeff-91bc-4001-85e9-4d91789019da\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: + - '3311' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10: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: + - 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-iai5tdc4.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-iai5tdc4.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/2d9eaeff-91bc-4001-85e9-4d91789019da\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: + - '3311' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:15: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 wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-iai5tdc4.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-iai5tdc4.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/2d9eaeff-91bc-4001-85e9-4d91789019da\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3378' + - '3311' content-type: - application/json date: - - Thu, 15 Jun 2023 03:25:43 GMT + - Thu, 29 Jun 2023 10:15:58 GMT expires: - '-1' pragma: @@ -242,60 +489,58 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-iai5tdc4.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-iai5tdc4.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/2d9eaeff-91bc-4001-85e9-4d91789019da\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3640' + - '3311' content-type: - application/json date: - - Thu, 15 Jun 2023 03:26:13 GMT + - Thu, 29 Jun 2023 10:16:29 GMT expires: - '-1' pragma: @@ -327,60 +572,58 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-iai5tdc4.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-iai5tdc4.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/2d9eaeff-91bc-4001-85e9-4d91789019da\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3640' + - '3311' content-type: - application/json date: - - Thu, 15 Jun 2023 03:26:44 GMT + - Thu, 29 Jun 2023 10:17:00 GMT expires: - '-1' pragma: @@ -412,60 +655,58 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-iai5tdc4.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-iai5tdc4.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/2d9eaeff-91bc-4001-85e9-4d91789019da\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3640' + - '3311' content-type: - application/json date: - - Thu, 15 Jun 2023 03:27:15 GMT + - Thu, 29 Jun 2023 10:17:30 GMT expires: - '-1' pragma: @@ -497,60 +738,58 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-iai5tdc4.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-iai5tdc4.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/2d9eaeff-91bc-4001-85e9-4d91789019da\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3640' + - '3311' content-type: - application/json date: - - Thu, 15 Jun 2023 03:27:46 GMT + - Thu, 29 Jun 2023 10:18:01 GMT expires: - '-1' pragma: @@ -582,60 +821,58 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-iai5tdc4.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-iai5tdc4.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/2d9eaeff-91bc-4001-85e9-4d91789019da\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3640' + - '3311' content-type: - application/json date: - - Thu, 15 Jun 2023 03:28:16 GMT + - Thu, 29 Jun 2023 10:18:32 GMT expires: - '-1' pragma: @@ -667,60 +904,58 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-iai5tdc4.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-iai5tdc4.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/2d9eaeff-91bc-4001-85e9-4d91789019da\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3640' + - '3311' content-type: - application/json date: - - Thu, 15 Jun 2023 03:28:48 GMT + - Thu, 29 Jun 2023 10:19:02 GMT expires: - '-1' pragma: @@ -752,60 +987,58 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-iai5tdc4.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-iai5tdc4.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/2d9eaeff-91bc-4001-85e9-4d91789019da\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3642' + - '3313' content-type: - application/json date: - - Thu, 15 Jun 2023 03:29:18 GMT + - Thu, 29 Jun 2023 10:19:32 GMT expires: - '-1' pragma: @@ -837,65 +1070,60 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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-iai5tdc4.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-iai5tdc4.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": + 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n + \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/2d9eaeff-91bc-4001-85e9-4d91789019da\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": + [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": + false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": + {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\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: - - '3885' + - '3556' content-type: - application/json date: - - Thu, 15 Jun 2023 03:29:20 GMT + - Thu, 29 Jun 2023 10:19:34 GMT expires: - '-1' pragma: @@ -927,65 +1155,60 @@ interactions: ParameterSetName: - -g -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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-iai5tdc4.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-iai5tdc4.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": + 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n + \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/2d9eaeff-91bc-4001-85e9-4d91789019da\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": + [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": + false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": + {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\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: - - '3885' + - '3556' content-type: - application/json date: - - Thu, 15 Jun 2023 03:29:21 GMT + - Thu, 29 Jun 2023 10:19:35 GMT expires: - '-1' pragma: @@ -1017,60 +1240,58 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-iai5tdc4.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-iai5tdc4.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/2d9eaeff-91bc-4001-85e9-4d91789019da\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3642' + - '3313' content-type: - application/json date: - - Thu, 15 Jun 2023 03:29:23 GMT + - Thu, 29 Jun 2023 10:19:35 GMT expires: - '-1' pragma: @@ -1104,15 +1325,15 @@ interactions: ParameterSetName: - -g -n --file User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ - \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSWmtKa2VFNUNPRWMxVEVGVmVIRktUVFpXTTFacWFrRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxVVZYZE5la1V5VFZST1lVZEJPSGxOUkZWNlRVUlplRTVVUVhwTmFsbDRUVEZ2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVOMkNrOTNZVzlHYzNsMGEyZzFkbFZDYlRCRVNIVTBaSEY2VVZGWUsyUnJZVXhVVldwNGVsQkNUVkZ6TjNaNFZqUk5aa3BCYmxwMk4yZEdSemhQYTA5TVJEY0tiMHBUWVdOQmNVVnJSakEzV25sM056aGFOMGhGWVVvMmMybDNObXhZTjJaQlVtZ3pjMUkzVFdwcGRFZHVUWGRDYzFCd1ZsSTRVV0o2UW5sbWFqY3pkZ3BOYzNsYVNWVlNUV1ZTYkhSRFNVVmpTbkJPVkZJNFYyZERNRTR2TlVwRVVWbEdMM0ZqZWpCS2QxWlVMMGR3ZENzM1NuRnROWEJzV1VKM2FVTnFkbkZEQ25kbVFsTktSRmd4V0RBNE5pOXBabFJsT1VWbE5YWkpkMGQ1VUVzM2MzRm1lV1JMUWxkTVpIVXhNQ3N4ZDA4d1NsWnJjVlU1YW10ck1UTk1ZVFpyYnpNS2JHMVFMeTlsUkRWR1FXOWhRVlZyYmpOclpIWlJRbE0wVVU0MVozaERSR2t4V2pGNFMyMTJibmh3V0ZOc2QwcHNNREZUS3pWT2VqUTBVVkIyV0dKd1ZBcFFlV055VFhWM1dUaDZXRTUzZDBWckszWnROR2RuZERFMlIyVkJVakZGSzJ0Qk5IZG1OV2x5T1VoeE1GSllhMmhKYXpJMVRUSlJSa2dyTDNoMk4wdHpDbmN2Y2tOUFJscDFZMWd4UVhkWWVuY3pkbEpRUnpSTWRuUjJXalo1UlRGR2RtTlFhVVZZWXpob1dUbFFWRzlLZUZvck5sVkJXRUZRTjJRck5rWmllbWNLVG1zck5qRTJPREI1T1VaU2VUUk1lWFl6UVUxdWRUQk5MM1pGU3l0dE5XRmFZM1ZIT0hrMVZtcHFVbkpPWVhkWlRFbHlWVGhrYURsQ2RrbFpWa2xZVEFwYVRrTk1VMVpxVHpsNFNtSnhObTlMV1d0WmVIWnZTRVYyTHpoRFlXSlJSbTlKWlRWbFpVSlpLMDFTYmpGRmIySmlVM2RDV0Zsc1RHRjRLMnhPUlhFNENtWTJWWGg1Vm5aek1Gb3daamxQWjFSVFFUVkRaREJ6Y3k5RGIySnFjWEl3U2xadVRWRlNZM0pxVTBOYU0zQlpkVFl6TkZKdWNXMXpkbGRpYXpkd2NWY0tRMUJrV1VGUGFtVnJZVFZDWlRaU01FWkJWazFvZWxweFIyeE5XWFZDWTJkYVZVdHFZMXBpTlRGM1NVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZVM2FrNUhaMHcxUkdSTlMyNW5PRlZ1Q2xWNFMzZzBNVWRhY0dVd2QwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGR1QzbG9NbkJWUlVWUlIyVjZSRGh4YmtNclRHOU5VM0pwTTJ3S09VZEtTa1lyY0RSTE0ycFBhSFZLZW5aek1XMWtObkJ6T0U1WVZtOU1UM2wwZEhoTVkxRndiREowY1RaYWREVXhUVGd2YmtWdmNGazFNbGRQZDBObk5BcE1WRlJXWVROemMwc3hSMk5QVkhReU1EZGplRXRZUkhCakwzVnNNelkxU0cxQk1FcHBhR0kzVURZM01DOUxLMWN4TVcxb1kxY3pSVUpaVkM5bkszaE5DbTFMUjBwV1VVTlJZbkpOWWpSRUsyZFJZbWs1UVZFMWFXZzNNbTltYmxoQ2R6VlhOelZrTkVwSFV6aGhTVEZNU0dKdVZIQjVLemhKWTJaS2RIazViWEVLWlRsaVZURmlOSEZaYkRVMVIyZE9NRzVOVkZkQmFsUlFPVk5XVjJkVlV6bHlURE5FWVV4UFQwdDZhekJYU2pWUk5tUnNTa1JzTjJ4SFVWRlFja3hIYXdweFFtdFhWRm8xYzJrclpFOVlZVmRTWjNwTmJrVmhVRGhFV2pOM1pGTkVOR1I2YjBsbFEzSlpRMUY2ZG14aEwyNXpXRGxEYm1SbVZGTTJkRlJLTVdWU0Npc3lTbFZVZUdoVmJFcFlMek5UVmxoNlIxSkVXRlYxUzNBeFdqaHFOakZHVkVobFVITmFXa2xhWTA1VWFrOU5SVGwzYW1SdlNXbzVOR3R0YnpkdlYyY0tXWGh3U3paRlFuRjRVWEp5Um1aMVUwZzRTSEpaUWpWMlJreG9VVEpHYkhWQmVHbE5UbmR6TTFaNFJrZGhWVXgwYTBSSFIxaEZZbGRFUTBkTWJEZFZWQXByYTI4NVVtOURVMHBvYW1JemFYZHBibk5OWVdrdlJXUjRWMEpYUW5obFF6UllTWEJzVVVsWlQyd3JRa0ZtYzAxWGJUQnFLM0ZVVjFZdlFqbEdjRE5HQ25SRVpta3lhMDE2ZGt3ME4zUlhVa2xJY1cxbUsxQXhORlU0VFVZM09FeDRhRTFSU210MFNGVjZNSEZuVkZsYVkwaGFOMk5FVlRKbFJsWklSaXRSY0c0S1NUZHRRVkZITXpVMFRtSkhjbWx0UWxGUFdYUkdNbHBtYmtKbWRVRm9iblJTYUVGVFZtcHphSEp6TWpJellUTlVkM0I0T1dNelFuUTFhRTk2YzBwWVl3cEdhekZqVjAxalVFaEtWVzFXYUhrdkNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2RuczJ0dnQ3N2MtbHZlN204NHIuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3RoNnNvc3EKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3RoNnNvc3EKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3RyMjR0a3RrNnpvX2NsaWFrc3Rlc3RoNnNvc3EKICBuYW1lOiBjbGlha3N0ZXN0aDZzb3NxCmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdGg2c29zcQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3RyMjR0a3RrNnpvX2NsaWFrc3Rlc3RoNnNvc3EKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJVkVORFFYZFhaMEYzU1VKQlowbFJTVUZMUjBkWldUaFRjRmhEVHpsTVYxVlRRbFV4ZWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZ6UmtGRVFVNEtUVkZ6ZDBOUldVUldVVkZFUlhkS2FsbFVRV1ZHZHpCNVRYcEJNazFVVlhkTmVrVXlUVlJPWVVaM01IbE9WRUV5VFZSVmQwMTZTVEpOVkU1aFRVUkJlQXBHZWtGV1FtZE9Wa0pCYjFSRWJrNDFZek5TYkdKVWNIUlpXRTR3V2xoS2VrMVNWWGRGZDFsRVZsRlJSRVYzZUhSWldFNHdXbGhLYW1KSGJHeGlibEYzQ21kblNXbE5RVEJIUTFOeFIxTkpZak5FVVVWQ1FWRlZRVUUwU1VORWQwRjNaMmRKUzBGdlNVTkJVVVJpTjI1RE0wTlJWMGhaZVhOSVNUTlVabU5vVkZJS1dsRm5UUzgxSzB0M1JXYzBXVWhuYmxaNFRYVTVUbG8zVG01SVFXTmFjSEZoWlc1ellrYzNTazFUWmk4emVVaERlVUpJUjI5TWNuZFpiMlJrY2pGbFV3cGFXR3N5VjNWVWFqRnJiRzkzVFZoUmNrUmFjWFpSU2pKMVkxWnRNalJwYkdsek9XNXNkR3QwTjBkQlQzQm1aVm80VUZKSE1Ga3ZNWHBETW1aamJVdHZDbU5vWW05NVlYcGpTQ3ROWldKYVMwSkRaRVJqYnpjclJUQXhjVkp3ZGtwV1IySkJNbmsyTlVSaGQwY3phRzVzYXpsWmJVd3JWVzVIVWtOVWVGcDVUVkFLVEZSME9FUm9SbGRUYkdGTWRqVkZXVnBzVkV0MFIwUnZPVU5qTm5ZelRWVjNPWEZaZGs1aE5FVlVkMUZKVDFoVE5HWlpNRE5YWlhkd1JsUTBablJKZUFwaVFXeHVVVTFhWmxsdVZXTkRhaTgxUTFCeWRUTmxhMkZEY2tWelVHOVlXRkJ1VTFWT2NtNUVTM0V6U0dGVVJsbDJkVGRpYWpCVVFuUjJSRFV5YUVKWENsRk9NemRHVVU5SFMwMUNZblZUTVhkaU0zRk1kRmxHVDBSbU1DdGllRXRNVUdsa2JuTmlSVTV1VUVwSE1XUkZURVpsV1VwRGFFMXhaWFY2VFd0bVJXMEtlbWxIVjJzNFp5OXRjalJYYWpVeUsyaGllWGxPTURSNlpTODNNV2RTV0d0cE4wUkVOVWcyZUhoVE56UlVRMHQ2Um5obWFVaFRjMVo1THpOaFEzbG5hQXBrVnpGNWJXWm5RMUJzSzFWQmJreHVOSGRsVFZoc1JUSlhWVFpETlROTVJqSkdLMlpuTkVOS1RVeFVObXgyTmtoSVUzZGFZekpTVmpKc2FuRkRMM0EzQ2pGa1lVeFdSV1JrTjBSRFRTdDZabHB0VUN0c1puaDNWemR3Wmt0V1prZFVjbmxWZG5ReGNqaE5NMkYwZGtvdmRqWTRNVTVpY2tFd1kydHVSSEowUlVZS2JITnpOR1ZKTVZWV0wyRmlkamRwZVdRNVNqa3lRMjFrUW5aUFFtVnlWSE13VjNaQlRFVlZlVmR2Vm5GRWVFeG5SRGRpU1hFdldEUkNNREZVVVV0aVZ3cHZZMlpxVmtOeVQzbGpSV1ZSVjFZeVdqTkVRM1JSU1VSQlVVRkNiekZaZDFaRVFVOUNaMDVXU0ZFNFFrRm1PRVZDUVUxRFFtRkJkMFYzV1VSV1VqQnNDa0pCZDNkRFoxbEpTM2RaUWtKUlZVaEJkMGwzUkVGWlJGWlNNRlJCVVVndlFrRkpkMEZFUVdaQ1owNVdTRk5OUlVkRVFWZG5RbFIxVFRCaFFYWnJUakFLZDNGbFJIaFRaRlJGY2tocVZWcHRiRGRVUVU1Q1oydHhhR3RwUnpsM01FSkJVWE5HUVVGUFEwRm5SVUZtUmpOVFlWWXhZWGdyYnpOUlpuWmtPVTB6VXdwblF6ZFBjbm93WkZCTVNqUkdaVWxoTkhsdFVXMUJZM012Tm1KNWRXOXJNa04yUzB3clFtcFNaMmRSVW04ME1YaGtiMnA0ZGtwWWVtbzFNVE0xYjJFMkNsbHVOREprVW5WbU1VTnlhREV6ZFc1MVN6UkljRGhxTVU5QlF6VnlOekpEUmxaNVdEWnlORWRpYVdKT0wyWjBla3hzYkVOM1JXaFNVMHQyUVZRMlVua0tSVlF6ZHpoclpVSkthRXRJYTFKaE4wOVdZa2hMWkRrM2VVdE9lRUk1YWtGeU1sUmthVXd6Y0ZwaVV5OUNTMmRhV0VsbVRUVjRVVkJJVUZWUmFFWlNNZ280WXpNMVdHSTBOVWhXYjBKYVlVUXZOVUkySzNGM09IQjNNa0l5WTBscVpsRkhiR3RNWVZFdkwxY3diVmw2UkdnMWRqVXlabFoxTW10cVNrSlpjVkZTQ2xGNGF6TmFZMnBKVVZaM2NucGtTMVFyWmpBMVQwYzFiVlEzUjBGdVdsTm1kM0pSVUhCS2VXaFJhWFZrU2s1V1RUbE5VMlp3UW1GVVkwdENablZ4UmtNS2RubHVUVXR4T1M5TWMxcEJhVTF3V1ZwdmJXSXdSR1pqZG1wUFZsbEZUbmR5ZEZaTllXSldSMVJaVFhKQlJETk1VbTVVZDBOVU1qSXpiRVF2WW1WblJBcE9WVEZwUTJOblFsUjJVRVIyVUdNeWJHcG1VMlpFUjI5WlJYRmpOMEZqUTNwS1JWVkpURmN5Tm5OUFZYazFhM28xWVVOcWJqZEhjRGd2YVVkdFZtZFpDa2MyU2xGNlVVSTNjR3Q0ZW5aM01rSnVUbFV6WlROa1RVWmxlRWRTWVV3eFYwbDNhWE0yZVRaMVMwdHdjMUppYmxCS1JYZFROMDV3VDBGR2VIZEpXREVLWVcxWGFEWnpkMHRZZWpNdlRHWkJaa3BMUzBGak9VSTBlV05IWlU1cWNVUkViMnRZZHpSdVNETk1jR2gxTWtKNWQxWTVPWE54TVhKUFozZEpjbG8wTWdwVWVUaGpUV1JqY0UxV1JtWlZWVmhZTml0aFpXeEZVVll4TjFJemJsUnlRVVZRUzNWMVRsY3dWbFZUWVhsd1Zpc3ljblV6VW5WMGRYSnZhMDU1U0hCUkNuWnlabEpNZGt3cmMzRTFVbTlqZWxFdmVtTk1iRkpaUFFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMmRKUWtGQlMwTkJaMFZCTWlzMWQzUjNhMFpvTWsxeVFubE9NRE16U1ZVd1YxVkpSRkFyWm1selFrbFBSMEkwU2pGalZFeDJWRmRsZWxwNENuZElSMkZoYlc1d04wZDRkWGxVUlc0dk9UaG9kM05uVW5oeFF6WTRSMHRJV0dFNVdHdHRWalZPYkhKck5EbGFTbUZOUkVZd1MzY3lZWEl3UTJSeWJrWUtXblIxU1hCWmNsQmFOV0phVEdWNFowUnhXRE50WmtRd1VuUkhVRGxqZDNSdU0wcHBjVWhKVnpaTmJYTXpRaTlxU0cweVUyZFJibEV6UzA4dmFFNU9ZUXByWVdKNVZsSnRkMDV6ZFhWUk1uTkNkRFJhTlZwUVYwcHBMMnhLZUd0UmF6aFhZMnBFZVRBM1prRTBVbFpyY0ZkcE55dFNSMGRhVlhseVVtYzJVRkZ1Q2s5eU9YcEdUVkJoYlV4NlYzVkNSVGhGUTBSc01IVklNazVPTVc1elMxSlZLMGczVTAxWGQwcGFNRVJIV0RKS01VaEJieThyVVdvMk4zUXpjRWRuY1hnS1RFUTJSakY2TlRCc1JHRTFkM2x4ZEhneWEzaFhURGQxTWpRNVJYZGlZbmNyWkc5UlZtdEVaQ3Q0VlVSb2FXcEJWemRyZEdOSE9UWnBOMWRDVkdjek9RcFFiVGhUYVhvMGJsbzNSM2hFV25wNVVuUllVa040V0cxRFVXOVVTMjV5YzNwS1NIaEtjelJvYkhCUVNWQTFjU3RHYnl0a2RtOVhPSE5xWkU5Tk0zWXJDamxaUlZZMVNYVjNkeXRTSzNOalZYVXJSWGRwYzNoaldEUm9NSEpHWTNZNU1tZHpiMGxZVm5SamNHNDBRV28xWm14QlNuazFLMDFJYWtZMVVrNXNiRThLWjNWa2VYaGthR1p1TkU5QmFWUkRNQ3R3WWl0b2VEQnpSMWhPYTFaa2NGazJaM1kyWlRsWVYya3hVa2hZWlhkM2FsQnpNekphYWk5d1dEaGpSblUyV0FwNWJGaDRhelk0YkV3M1pHRXZSRTR5Y21KNVpqY3JkazVVVnpaM1RraEtTbmMyTjFKQ1dtSk1UMGhwVGxaR1pqSnROeXMwYzI1bVUyWmtaM0J1VVdKNkNtZFljVEEzVGtaeWQwTjRSazFzY1VaaFp6aFRORUVyTW5sTGRqRXJRV1JPVlRCRGJURnhTRWcwTVZGeGVuTnVRa2hyUm14a2JXUjNkM0pWUTBGM1JVRUtRVkZMUTBGblFVaFhMelF6YTJKNU1tOUNTR3BvYTAweE5uVndXbUV5YTA5cWEzTXpZVWRJUTFOVVFXTkhUMVJUWTBkNmR6WkplRGMxVWtaSGRVVTJWUXByTjJoT1ZWUkVSMlJvTHpaR1dtNUxja3gzTUhGUlpHZHJhWEEzUVhCNFFYWnNMMnRaT1hCSVFVSlNaV1pFVkVJNE5YTjFaamszYTBwNmNESldObEJFQ2tWeFFXNHdhalJSYmpKelpXOXdjRFVyUXpnMlExZEJTbU4wYkhOVE5EQkxjM2g2ZFhKTU5UY3lVM3BMTVhCdkwydzVZMnA1WWt4Q1NuWllOamxSV1ZvS1pqQXhVV2RxWTI1bVpqa3pObTFPTURWS01tTllaRVpwY0hCSVkzZDVWek5oTHpCWGFIaDRTVkowZGtSR2EwZEhSM1V3V0ZCdWVFWnJabmd5TWtkeWNncExNelV2TkVWMlJFOXRZVmRZVDNSU1REUjBNWFJNYjBoTGNUZzNObWxMVTJGMU9UUmFOa2xHYTNrME5qRm9jMWhtVTA0NGRFcHFha2w1UWpGaFIybGpDbEZSZVUxU1JsSlhWazlZU3pBelJFbDBaekpXT0dSdk1HTnBRMVIzYlhoc1RHUk1OM0poYW1OclZtdzNVVnB4V1ZsNVZUTTNlbmt5TDJrdmVIZHVlR3dLUzBSWFozbHhVR2xVTW5sVldUWmtjV3cxUkhCMVN6ZHRha1V5VkROemFWcE5jRVZKY1VSMVZsYzNZbnBOZDJWMFZuZHNkRTFXUm1VM2VVbDRNVXcyVlFwVlNGbHNkRnB4UkRrdksxWnVibGt3YUhGdFZuUk5kRUl4SzFCeFRVSTNMMFF4WTJ4T1FpdGtOVVJLTUVWc1ZITXJlazlzU2t3M1EwRndaV1ZpYkV4bENqUk1keXRRYWtkblJrZFhabkY2YlZKVGRrOVZPVXBhVWpsa1dFbHlUMUZtYm1KblpERmtTbUZGWkVONVRXaEliWGhZUTB4cE1GZzBTbTh6VWpCc1NYQUtjVVpLYUhoRFEwVkxTQzhyTHpSTFkyOWxkMnQwYnpGNUwwOTBOVmhqTjBKbVMySlViVEJGUmpWM01XTklTR2hxUm1Zelp6QjZUbEJwZFhGUldWTktaUW95UW1ReU1qQlZhMmxPVUZOQlJXSkxaVWRYU0RkM2RWZ3djeTlVZEVGUkwweHlVMnhzWnpaTlQweEtUVlZtYkhWRVVVdERRVkZGUVRaemNFMXJaR2t3Q210S2VqVXJWMVJ2Y1UxWE0xRXJOMDlWY1U5RGVrUkdkM2szV0RsM2JqRXdkRkpWYzBaWU1FRTBXaXRuT1UwNVVqbEJOVlJxUTJNMk1FRm1TVWRxZFRRS2VtWlpOMEYxY1dsaE5scE1TR1JKU2tFemQyTXdNazRyZFcxc1MwVkRNbVZDZVd0WFluQk5RMFZSWlRodWVubFBkM1ZUWm5WT1NHaGxVbWhSUzB4T1pBcFROblo0U0VVeWJHRlRSSHBoTkdVNWEwTm5hMk4xUld3eFJtZE5ibXRrVHpWalFUTklUblZsYjJoQ2NuVXlhVzlSZVhKSFptZG1aRXhtVVZoMGRsSXpDako2VkhCQmMxUlFTR1YyVTBScmJ6ZzVjaTlGUW5ZeFYwSldaV28zTWtsdlZFbHpTVE5qUVRWTUwzZFFkWFpPZG1ZMWJHVXlhR2RtTmxCb1dsTlpjVWtLTUdwU04xSnhPVXhFZEcxdlZpdEtSWGt5U2xoTWNITnJiemxzUVVOSEswSjNXSFZ1WldGa09Gb3lUVGx1TWtSSU5IUnhObEZuWlZORWFVc3lURWx5WlFweFZFNUphMlJJTkc4clQyTlNkMHREUVZGRlFUYzRlVVpETjNBeEx6ZDRiRWhDTVhoWGJWUkJTMWh1WW5sR2JHSkhOV016VjA1M2JYWmljMmRhTWtKVENrUkVaMHhySzJSaVFYTk5Ubk5FZWtWb2MxRjFabFZ0VG5GMVlXVnplRWx0UnpobWJVUnJMMHhFZFU5MU5FMDFNa2RIUTNZNE5EQnZOMVo0YUZwdVNVZ0tXazlxVDBaa1prUjZUbFJ5V1dsMmVXOVJkSEEwTmpSUmVISkhObHBXZEVWSlkwaEdTVXhqY1c1dE5XZDZlblJNUTFaVmJsVlpSMjUxUjBsWFdqTlNkd3BzTjFJMFJsTjFObEV2WVU1a0wzSlZRMms0U0ZvM1VYRlZjMHh0VkhCcWJFNU1Xa2hqV25oUGVXcFBkRnBaVUZCS1puWkpObGQ2YTFVMVZXZE1MMkY2Q2xkQlltYzNjMHB0U2xwVFNucElPWEpPVmsxM1FXRkJUM2MxVURkMVdWQnFhSG81ZFRWeFRYcDRNUzlvV1hndldXTkpTakZqY2xadlNqaFRTa3hDTDFrS2FVbHRSelZ1VVd0VVQyUlZkWFIxVDNsd2JHVXJhVlEyV1ZjeU1VNWxZV3BQYkVFdkszRXpla2wzUzBOQlVVVkJiVk53U210NVpHTmxOalU0UVVNM1RRb3ZSRk51U0cxRWRVcGphbGhNWkM5bE5XNVhaSGxxTDFCWU9GbHNSVkYxVVVKS0x5c3ZNVlY2T0VaT1kwOHlWRzlKUVdaRWFWTkhSM0ZKTTBZMU1YZHlDbWR5UW1vNWJITnlWME5QYVVwdFExVnliMU0zVGxKNVpFbzJlWFJJYjNNeVdVOWxPRXNyUkRCbVRERnhWMDFhUzBsYVdYcDZTMnhrTld4NVVHMU9aM0VLV0ZFclN6TkpOR0p2Y1hka1VYWm5VR3h3ZFhRNU5UaHlTVUZSY0hJclEzaGtjVmhvYzJOMFVGbFRia3BtVkZGcFNFeFdUWFI1VWpVdkx6Rm1UMFpuZEFwcFUxcHhla3h0ZGxaWlV6WkhOV3QxWjJGUGRuQlNNVk5xYzFKM2FqQkRlbnBrVEZGaVJGRmpaVFZCVVRaYVQzUldWM2xXZVhKNlpVUnpjaTh4U21aTkNrUnBOemxsTHpreWR6TnpkWGh2SzJNNGJYQnhUa1poVW5acFpYUnNSbGx1WlUxaGNubzBibmxQT1VwWGFWaGhiekpEU0dFeEsyNXlORlpOT0U1NWVGUUtNa2sxUjFKM1MwTkJVVVZCY0ZsYWVGZEVWWFpsYjFoaE4xWjBUbWRYTkVkVWVISXdiMUZyT1VsSlFucEVaakUxUzBsS1ozcGljbkJLT1VsUUt6bHZOUXBOYlVSa2RFRmtaVk5SUW0xaWMyc3dOWGRGYlVSemJUWlZTR0prTUVsak0zcFhSbEYwTlVWTldqWjBiVU5UU1hCWVFqZHRhRTFoTVZncmVISlNVbmxaQ2pWWE1HSjRZbTg0VlhadlJEYzRkVnBtVHpNeGEyb3dOMlpIYlRZemRXaFJiazltYjBneVVEUlhZM0pVZUhsc1QxVnlTWGxqVG5Od1ZsTTJXSEpXVm5ZS2VqZFpRekZSZW5CRVRtRkdjMEZ1YmtwU1YzWXdRbFYxVFdkTFdYTnJNa2t2V0RWTFpFMWFWbGRSZWtOR1NUWTNNVkUwWkVZM05tTTRWMmhsU0RkR1JRcDJWRUZhU201WVZqRlJkRVpIWm05WU9YUjZVbG8yT0c5bldsWkNkMmxhY0dWWVozWndha3N6VUc5S2RTc3JNVWx3YUhFNU4xSXhWMXBJYXpaRGVESnJDbUZSYkU1eVYxbGpNMHhEWkhCUFIyUnBNVGhzVGt3eWRHTnVWWFZzUzFVMlRGRkxRMEZSUlVGMVdXWm9aekF5YlRKVmQwMDBNV1ZKTmt0U2NYUjNkSFFLZDNkRFpIaDFhM0V6YmxNMFZsWlNlbk0xUmxSeU5uSm1VWEp2YVZaRlkyZElhVmxyY1hsWGVFRktWV3BQSzBKRU1qUm1OVXMwVjFKVlExbEJXbFl4THdwNmIyTTJOWGhDTWxVd1FqUXpjak5UZFhWVU1sbHBkMFZqUnpoT2NtSTNNbWx0YjBWalVqRmFOMnhwV0dVclJUVXlhVlIyYlZScFdHSXZlbWRhZWpCdkNubFRSV2wyV21aMGJreFBZekZUZG01dWFFUlNNbEE1VHl0VFUzUXliMlJ3VDFNdk1HdGplbE15V1d0SlN5dDZRbm8xV0V4a1FsQnFTVmhRY1RBMEwzQUtPV2g1YzJwNmVGRXJOak1yZGpFNVVqQjZRVnBNTkZwWVdYUmxWVTlhUjBGd1pHRmthbEU0U1dzd2JHMTZlSGNyS3prMWNGaEZlbG80VlVWS1UzTkpOQXB5TVdSSmFXeGhWQzlDUVZod05IVkNTM1Y2SzFwRk9USm1NM2hJTTFwQk5TODFiM0ZqVlZoTk5rUm1MeTkwVUVFMVdYcFJWemRtVEdKUmJrODFkejA5Q2kwdExTMHRSVTVFSUZKVFFTQlFVa2xXUVZSRklFdEZXUzB0TFMwdENnPT0KICAgIHRva2VuOiBpNXFlbzV2bGhoYXZmb25kbmwzaDhma2tqaHBqNzcyMGJocWY2ZDNvbm5udmxiOGNxZnFhZHJlbTEzaGZ4dHFyODc3MTNtMnl0Nm9ieG8zcTcxbGZubTc5bGtmbmdpdTU3aW0wdDlzY3c3ZHZidHp1MzRwZDJsdWh6eDV4MDF1OAo=\"\ - \n }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": + \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVU1S2NUQXhhbXRPVUhGdFpUSlNUSHAyZUV0MU1WVjNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDA1cVNUVk5WRUYzVGtSUk1GZG9aMUJOYWtFeFRYcEJNazFxYTNoTlJFVXdUa1JTWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNuRlFaa3cxWm1reVN5OXRSM1JZVTA1bGVGQkJNMUZSU3pSdmRVaGpSMHN2UWxwblpEbG1iREJ2VFVkVVJsUkVSbmQyVW5GUmVuTlVPWGsyVW5Gd09IUUtPSFJyUkUxb1RtY3dWMXByU0Znd2F6bDVhV1ZpVERoaWNHdHVkVkpFZHpoMlVUUnliVWd4V0dGTlRsQnRVeXROWVdObFRYQmFNVUl5VDFKd05scHZNUXBvYXpGRVNIb3ZkVUZ4YzBsc2FqRjFURXBEVDNrdmIwTlRXa3RGVVhrNGFVVjNWWGwyWTNrMU1XRnlXVVpwVFdzck5VVlFNRTkxUVVSTGNHbHNaVloyQ2poT1dWSklkamt5UzJ4Tk4xTjZjVk16VTFBclpGTkVZWEYzVDNOWFpHOXpUVkJPYURFeVUxSkRjM2N6U1VGSU5qWnNkRmhNVjFSUE1sY3JWWEkxYTBVS1JXNWlOMXA0YTJwSWVsQkdhVWc1YWtoelRFRnRhbWxDZUhVclVEZEhlRzkyTldacGJ6ZDNTa3QzWVRCNGIxVmxka1ZGZVhkM2EwRkdaMFJsYlRoeGJ3cHBSemwzVWpONFRHRTJiVkJTUVhweVdWcG9iakkzWnpaaVpTOUlZbGd6T0U5ME1VdDRSbWRTU2pGS1IxbFdkR2RYUWpWSU16WlhaRGwxTVdWWWNsaFpDbXBOWXpKNGMzUnJZMnBCYTNWU04xcElVRUp5U2s4MU5XTlFPWGwzYUVsbk0xUTFTazQyU3pWUFZrWXhNVFZsWm1KSlVVVTNlbkp6T0hjclZGcFVhRFlLY25KUE5XWnBXR3cwTjBsWGRrcHlUek42ZW14WU4zcERaa2QzZW1WNGFsRjZaMlY0Y0Vka1NIVjNWblZrU2tGM04xRlRXa05TVlhsdFZta3ZkRll5VVFwUmRETkpZV3gwYm1GV09XWXJhazVMWTIwM00wcENWRXd4VEROSWNqWkNVblJuVTA1WE5HOVZSR3hqYjJsd1FWRmFNMWhhUm1GbWJsazRVSHBrVm1wU0NqUTNhWFZIUkVkek5VMHpNa05hWVdwbVRubHNTVUZ5VDBWTlVUZFRXRkp3YzNvemVHNXZjVEZrY1ZZNFUyVlJWU3RTT1UxU1FXMDRRV2swZFVSa05UY0tXa3hFTmtWSGNUSlhSMGg0VDBOaWIwVm9lbUp4T0hwcmVXbFRaSGM1TUhGUU5XTlNUM2RhV0VOM09FTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1EyMTVNVTlGUWxwUGFtZHhSemswQ213ckx6UlhObEpoTWt3MmVVMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlFTOVFVR2RLS3k5S2RXZE5OWFo0YUZWc1puUXlWbm8xTmpZS1pVSlhWMGRTZFhWNWRqRXhRbUk1YkRaeE1rVXZZMWRGUkROdlVEZENOMnRpVFhCSlRWbDRiMGQyYTFabVFsRXJTV3hCYjFob1IyWkZRbVE1TVRjMFdRcGlRVmxZUVdKNVYxWkhSSE12U0VaU1lWQkdNMWh4VURSeVRXSjVRWHBYYW5kaVIzSmxPVlp5UW5WdldFSndZbHAwV1VwVWEwNUNRVlV4TVVjeWJFSmtDamd2WlZKcFRHeElZemM0UzAxcGJIVlplbUUxYnpaUlJtWk9URzFXYURWYU5qVjBNamRDTmxsaGRXdEtVM0I2UkVsTU4zbGllVTAzZEN0T1lWcHVSbW9LZEhkM2NsWnRRbEpwVlVGTVIwZFlNVUpTY3pSeVN6Rk5hRmxSWW5rNVpWUlRhamxFZEd4WlFuSm1MMHB4UTFGMllUWlNOVzlNV21ac1VWSmFia1ZVUXdwcFprVjBkMjF2Wm05RWNHdGhNRFl5V1RsQk5pOU5VbXNyWnpKSlozUkNZekY1VFdkWFV6RlFkM3B6ZG1waU1tazFaR3B1U0dNMGNXSnhkVWM0VkN0RUNtb3JOMVF2VnpSck0wWjVUelV6VW1ZMmRXUnljRFp4VlVKSVpqbDFPVzlEVjBkVU1tWnZjR1prVW5WamJGTnphVWRoUmxCTk1pODRZM0JrVEZOUFNuQUtkMnRzTTFOSVYwdDRjRmRWVjNwUE9VVm1kaXMxYjNWaldtTkVibFE0VlZaWGFEY3lUbVF2Ym14SFVWZEZTV2N5TDFCRFIzRnhhV0YzUTFSRVpHbFBZd3BHVEVaeVpEUnJVV0UzWjNNNGNXRm9hWGhYTldSWk5tRlZiVmRUZGxSTFoyZHhWbkZSVVd4MGNYVmlWRGM0YWtvck16QTRLelpzUzNsc1VWRjBLMnhXQ21kS2ExZHdRVmt2Y2tzME9EZzJaVk5oVlcxTWJsUnNNWFZQVkZoTWVtWTJPQ3ROZEZwbldqUlBZVTFJYzJGM1ExQmtlVFpYY0VNNFdqZFJaMGxvVTI0S2N6SmthRU5NT1VWVFNEUlpVMHhhUTFWemRFMTZkM0JyTjB4V2FYWnZjbE5MWmxkU1ZGWXZUMmRvYXpOa1JtZEVhV0Z4VW1sQlNHSTROR05sVjBvM2R3cFdMMWhJVm5GVVpqWXpRblkxY1V4bmRrRTlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5zMjVkbmZyay1pYWk1dGRjNC5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdHlmem90dwpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdHlmem90dwogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdGdpYW00d2hxYWpfY2xpYWtzdGVzdHlmem90dwogIG5hbWU6IGNsaWFrc3Rlc3R5ZnpvdHcKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0eWZ6b3R3CmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdGdpYW00d2hxYWpfY2xpYWtzdGVzdHlmem90dwogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklha05EUVhkaFowRjNTVUpCWjBsU1FVMXhiREZGVldWUE16Wk1URzlHVFdsMFRsRndjazEzUkZGWlNrdHZXa2xvZG1OT1FWRkZURUpSUVhjS1JGUkZURTFCYTBkQk1WVkZRWGhOUTFreVJYZElhR05PVFdwTmQwNXFTVFZOVkVGM1RrUlJNRmRvWTA1TmFsVjNUbXBKTlUxVVFYaE9SRkV3VjJwQmR3cE5VbU4zUmxGWlJGWlJVVXRGZHpWNlpWaE9NRnBYTURaaVYwWjZaRWRXZVdONlJWWk5RazFIUVRGVlJVRjRUVTFpVjBaNlpFZFdlVmt5ZUhCYVZ6VXdDazFKU1VOSmFrRk9RbWRyY1docmFVYzVkekJDUVZGRlJrRkJUME5CWnpoQlRVbEpRME5uUzBOQlowVkJlRWR1ZDFNMWRITlZOR2R2WWxsWE5qSnZPRFFLV25aVVQyMXpOR1pWVFU5TVRsVklXa0ozY1hSbVFtYzNjRUk1YTBGTmEySlljbEpVWm5vd1dGbEllRzVVY1VKd1JEUnRiSFJ5TTBoUVVHVnFVWHB6TWdwNGN6SjBNa3N6UnpGMVptMXFOR1Z4UmtkQll5dHpiM1ZIVTFCTVNHWlRXVEpPYjFSREwwNVRNRlU0WVdSaGNGRnVOekZtU1doMlNYUnhTbEUzU1hwQkNqSXdWbmRqTVZCTWJrcFZlbTVXYWxveWNERnlhRkpYUnpCbVNYaDVNSFU1YVZSM1VtRndhVE5ZTTJOTVkzRTVVR05SVnpseVVVMDVTR1lyTmtsQ1JUUUtVamxwZUcxdlJYRlBORk5SV25ObFRsUlRVM2hyUldSVVRDdFpOVVo1Y0VaSlNXUjRLMk0zZWpkcGRsaEhNMnBCUVhrclZFTnFaWGQ0Tlc5QlVWUk9RZ3AzZUdkdVJXcFlTakY0YUhKT05GWXZPRnBhTDFkdGFYUnFkbEJsTnk5cVRFRTVWbVE1V2xZd0sweHNTWEZOVDBFdk1uWkxRMlk1UVZZMmMyYzBTbkZvQ25OaU1EUkxWRmxUY1hwRlQxUnVMMVJMTlVSbmNHNUtORWRxZG1wMFVuVnhRa1JJTlRZMlpYWXhka05xU1hoaFEyeFFVR2hwVlN0RmRYRnpSMVowZW1RS1QxRXhMeTk0YVRSTU55dFFOazFtUlVWWlZUa3pZMFZKVFV0RGJXSTBTbXBOTWsxSlJYTnVOeThyVEhGb2RFTkhZMmt5TUM5alNYVkdhVVJTU25oMFRncDVXa0p1T1dJMVJFbG1USHBHY1c0NGRTdFVlVEJPZGt0VFVIcHNhVVUwTDFZNGVXVnBUems0TDFWUU5EaEVZVzByTVVWVVVYUlpORE5vVkUxalpXdEhDbFZVVDNkSWNGZEtiMUIxYjFwVk56RjJibmczY3k5Nk1uWlVUVXhrUm5OUVRXdHVjR1l5YlVKc2NscEliR3hTUTI1T2JVTnBRVXAwVDIxc04yeEtSWEVLTTIxS1V6QnFNRzk2TlZBd1J6aHhSVWxLWmpWMWNuTTNjRzFLZUZWSVVXSnhkRnA2VUc0d01GTlhURVk0WW5sbk1HVnFSR3ROVTFFMFVUSkhjVXRvYkFwaWF6Wk9USFpqV1RObk5ERm1SbmczVkdWR1ZFeFZPRU5CZDBWQlFXRk9WMDFHVVhkRVoxbEVWbEl3VUVGUlNDOUNRVkZFUVdkWFowMUNUVWRCTVZWa0NrcFJVVTFOUVc5SFEwTnpSMEZSVlVaQ2QwMURUVUYzUjBFeFZXUkZkMFZDTDNkUlEwMUJRWGRJZDFsRVZsSXdha0pDWjNkR2IwRlZTMkpNVlRSUlJtc0tOazlEYjJJemFWZzNMMmhpY0VaeVdYWnlTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVk1RbEZCUkdkblNVSkJRV0ZXYzFSc1luZFpiMDlTZW10blozSkdTZ3BzU1doVVFqSnRjbVoyYkhjcmRuaHpjWGxDZEV3clNIQk1lblJEV1M4M1pGbFJaRkY1WkhBNVpURTBOVkpZTVVGU05IWnBlbTlRV2twTWQyWmtkbGxxQ2tGclltWkhlbmxoYVRadFZYWkhhR2RTSzB3M1lYTXJNRkJWUWtZcmIwVldObEJSYjBReFJHbDRTVEEwV21aSE1tMVdRbWh4WTIxaFFsbzViRnBpTWtnS1JYWnJiblJQVW5kcU0ydHdlbGRoU1RCV05rTndWMGxrS3pWaWFsQnROSE5YVG5SRU9HcGtMM0EyTkRSeFF6WnRUV05EWkhKcVRHdEJURTVtVTNSNmN3cDNkR1JRT0V4UFFuaEdXVGRyVDJOVmFtdHFaMDk1VkVSNE9WZzVRazF4WVhoRVUyOVRhbEl5TlRSV1VTOURNbTVFVUU1SlYxZzVLMWxpTUU1Wk5IVm5Da2R4WW1WVlkyVmFTWFZpWjFOeFMybEpVMklyVUROMk9VRnZjbEZHUmtKVlVXUjRlR1JUT1VoTmNDOW5VMGRWVkdGclIwUk9kbEF2YjBsTGNreFJaVzRLVjAxUVEwWTBVVU5pYmxkaGNGcFBPRGQxYVRjMVJtVXZTVU55TjFOQ1NVNTVTemRUU1V4cWVuY3ZXbmhKWTJSNFlVSlNjRkkzWm0xRVRWbzFhVzlXU3dwUFpYRkNTMkZRVVVORlNta3ZlWGd4UjBoVGJHcFRRMFJhZVVSU1VFTlZXRkZOUlZJNGRGWnJTMnh1TkdJd2JGUlBkMk5wTjJJeGRrTkhOemx5Y0dGRENtdzJSbm8wTTFacWFFMWpaM1o1ZG1Fd1lVaHBlRVo1VG1wVmFXRTRlamt4Y3pWTVUwOVVkR3hVTTNkU1dVMVpWRFJvV1VOSk9GQTBWR3hMWTNKaFJqTUtOa1JaUlZKalp5ODVOR1l2YjJWaFVsUkpaM052Ym1OVVNFTlhiMUJxUkM5UlJqTmhaMU5VTTA1RWJHSjFUVE5YWkVOWGMxbG5TMUpOU2pCclVVaHpRUXB5Y2tOWE56QmlNMlZ4T0ZGeWRHZHBkV1ZCV2xaaGFEQnpjVFV2Tm1wVVRscFhVSGczWTJweU5EUTVVbGxPV0dJM2FqWk5jVFp4TjFOTlJWTlFZVzl6Q2xSb1dVc3JRM2RLVjNoYU5sVlJXVEZTV1ZwMGQyWTRVd290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MxRkpRa0ZCUzBOQlowVkJlRWR1ZDFNMWRITlZOR2R2WWxsWE5qSnZPRFJhZGxSUGJYTTBabFZOVDB4T1ZVaGFRbmR4ZEdaQ1p6ZHdRamxyQ2tGTmEySlljbEpVWm5vd1dGbEllRzVVY1VKd1JEUnRiSFJ5TTBoUVVHVnFVWHB6TW5oek1uUXlTek5ITVhWbWJXbzBaWEZHUjBGakszTnZkVWRUVUV3S1NHWlRXVEpPYjFSREwwNVRNRlU0WVdSaGNGRnVOekZtU1doMlNYUnhTbEUzU1hwQk1qQldkMk14VUV4dVNsVjZibFpxV2pKd01YSm9VbGRITUdaSmVBcDVNSFU1YVZSM1VtRndhVE5ZTTJOTVkzRTVVR05SVnpseVVVMDVTR1lyTmtsQ1JUUlNPV2w0Ylc5RmNVODBVMUZhYzJWT1ZGTlRlR3RGWkZSTUsxazFDa1o1Y0VaSlNXUjRLMk0zZWpkcGRsaEhNMnBCUVhrclZFTnFaWGQ0Tlc5QlVWUk9RbmQ0WjI1RmFsaEtNWGhvY2s0MFZpODRXbG92VjIxcGRHcDJVR1VLTnk5cVRFRTVWbVE1V2xZd0sweHNTWEZOVDBFdk1uWkxRMlk1UVZZMmMyYzBTbkZvYzJJd05FdFVXVk54ZWtWUFZHNHZWRXMxUkdkd2JrbzBSMnAyYWdwMFVuVnhRa1JJTlRZMlpYWXhka05xU1hoaFEyeFFVR2hwVlN0RmRYRnpSMVowZW1SUFVURXZMM2hwTkV3M0sxQTJUV1pGUlZsVk9UTmpSVWxOUzBOdENtSTBTbXBOTWsxSlJYTnVOeThyVEhGb2RFTkhZMmt5TUM5alNYVkdhVVJTU25oMFRubGFRbTQ1WWpWRVNXWk1la1p4YmpoMUsxUjVNRTUyUzFOUWVtd0thVVUwTDFZNGVXVnBUems0TDFWUU5EaEVZVzByTVVWVVVYUlpORE5vVkUxalpXdEhWVlJQZDBod1YwcHZVSFZ2V2xVM01YWnVlRGR6TDNveWRsUk5UQXBrUm5OUVRXdHVjR1l5YlVKc2NscEliR3hTUTI1T2JVTnBRVXAwVDIxc04yeEtSWEV6YlVwVE1Hb3diM28xVURCSE9IRkZTVXBtTlhWeWN6ZHdiVXA0Q2xWSVVXSnhkRnA2VUc0d01GTlhURVk0WW5sbk1HVnFSR3ROVTFFMFVUSkhjVXRvYkdKck5rNU1kbU5aTTJjME1XWkdlRGRVWlVaVVRGVTRRMEYzUlVFS1FWRkxRMEZuUWl0eWN6SmpSbTE2ZVVjMWJtNTFhRGxuY0VsMEsySkdkSFJ2V2tNeFMwMXdOakpVVHk5NFVGWk5WM1I2Y3paSmJ6VnlNM2xHZDNNd2Rnb3ZhR3MzTVVWR1ZtZ3dWRGhFYnpOb2NHUnZRbmx5T1RCME5XRkhPVEZaZG5OVVdGVnRkRWx6ZEZKWVVDdHZXREpuTjNwcU0ybEJPU3NyYzNoM2MxbFRDa3RUYVRkak9HWm1TMHhFUkhSM1RFeEllSGxCU0RSVlQySlhTbVZwZUZWVFlsaFBaMVpQVG5Kck1HeEJTbVJUV21rNU4yWlFkRlUzUTBkclFsRk5jME1LT0N0cmFVYzRaelJsYWxwRk9HRjZOMFZIUnpGSVlVaFJNbEZ3ZUROTFVVRjNWbkZhT1U1RGJWZG5UV0pTU2xZMlRqSmlRMDlFTWs5WlYyTm5jV1oxY2dwWlpqUllSMmhQZERGc05GTk1MMk52TW1VMlpHSjNha2hDVDFwbWFsRTFNbEZzWTJrNGN6aEZhVzlwVWtzM05rMWpORTkwT1d0R1QybHBkRE5HTkVZMENubHhUV1JaV0ZGd01WbzRORWg1S3pZM2RsWjZSbWc0YjJaMFVGZHBiSEJSVFRaTE5VczNaSEZ0U1N0a05tUm9OVzloWmxSclVEa3JTR2hLYXpKbE1FMEthVmRKY0RrMmFVMUdlRVpSYUZkalRuQnhUV2hDU21aaGJWY3lORTF1TTBkV1YwRXlVVTh4Vmxoa1ZtRnNXVE5LTlRSTlQxTlVRVTEwZGtaNFFWcDRXZ3BOYUhnMWMzWlNTbVE0U0hKWVNUbEhNV1ZJWTJzd2VHTjRLM1JGYUZWR1lYQjZaa0pZUkRKdVRGRkVja1ZrVVRGbVdXMDVialkyYlRCQldFVjVkSGhLQ2tFMlN5OXNOM0ZHUWxaSVZ6aGhRbVo1Y0hVMVpIWk1ja05GYTNaWGIxRjBRazF1WjFKNk5WbzRXRlYwU2toMlNGTlFka2xtVHpWTWJuQkxhbWhQTnpZS1NDOTRZelpwVkdoc09GSTBWMWRQY1c5Q2JFTkdTWGRVVGpSaE1YcGhlblZFUkU0dk5VWTNWVXRCZUhNMGVIZDJPWFJCVEdreVRUQjZiR1V2YzA5SVFncFlUV2MyVEROd2NGZDZXbTQxY2tWYU5HZE9TMHRRVXpCMVIzSTFkVVpRWjFrdmJUTmtaRGs1TTAxc1pXbHpNakJGVVV0RFFWRkZRWGhZTkhCYU5tY3pDakF4TlVZeFJqbFBRVEZXU2xKT2VUUlpOV041U1ZaUlV5dHNRa2N4UkdoU2NVMHZXVVpVUmk5clQyaFdUME5HVmxCaGQzUkxSbWhEVUd4eWMyVTBVVVFLVWs1TFJtUTVlV3RaZVRaVlUwMWpObkZsYlhGVVNYTXhVMnRpZDNaaU5XRjZNVXA2TkVwS1NrbE1NU3RYZFUxaFREa3lUVU14U3pKbVlUQTVZa1ZOUkFwT2VVbGFkR05HWkdrMGNWa3ZVME5WVlVvMmJtMDBXbk0xYVhJM01USklTR0ZuUTJsM1VVaGFNMDV4YUN0YWF6VXJNMFl6TlhNeFV6bEVORkZTZEVKRkNsUndkRk52UTFKR1N6TTBiM0ZoZDNaQldERTNMMmM0TWtRNFMyTTJlbXRtZFZWSFEwVkxMM0JaUW1GMVoyVlJSaXRxTVV4c2RYcFJka3B5TVhJMFdWb0tlbFpGZDAxTlZEZE5SSGt6V1hrckwwMXhZVXBMT0hkRE5sbHdNR1JDVmxwNmIycFJRMDByWVVKeVYxUjZaM0pSYm1WV2IxVnNNMWxJYVdKSVVuaHVkZ28xUms5bFpHVlNTbTh3ZDJsRVVVdERRVkZGUVM5d2JubEtPWGxvYm5oR2EzQkNUV2h0ZEZKbGNtVm5lRnB6T0RKVFNrWnNkMFIxYVZrMFpYVjVjVTUzQ2tKbmRGVlhlRVZHZVZkalQyRlhPQ3RhWkdsWVoxbEVVRUZpVEd3MmNXRlVMeko0YjJWbE9ETlZWRXB1UmxBMFpWWkVTbk01VVVJNVQyOHJOR3hOS3pZS2JHNUlPVEJXTlhaTVdIcEJhVXhHVkU1WE4wTmFiV1IyUzNwaGFYRm5jVUZzZDA1QlIxaHpjVzV5TDFWR1dqVmhTRWREU2k5MGIwMW1jbnByTlcxWFZBbzVPVUpzVFM5eWF6SkJlRWhVTDJkRlVtUjFkVUo0TDNaaGFEUk5Ua2xRUWpJd2JqWm9aM3BaUWpaa1ZWRlRMM055YmxOdVVXOUhkbmR2V0VZck9XRkVDblZIVERsSlkxazNNalVyWTNOR09IbFRkMG80TUVsVlRrRnJkRGhyWVVOVlZYVjFlalZ3YkhKamFIcGxOVXB5UjFweFdtVnpNakJsVFM5RUwzWlVUVEFLTVVwMVNGTlhSMXBHYm1jM1FtTkxjMEppTDBaTGJqTlVhekI2YmtWWE4zSmpMM2R6VkVSTGFIbDNTME5CVVVWQmJXcGhjekJGVGpjM1JFbFhTbmRMVVFwdlYzVnpabVpuTkdnMVVHUXdhMkZpVm5ocWRWcG1UR2RYVVdsTVpTdHJaRFp4U25oUlVscFBVVWt3T0Raa09GcFJlVmQxZFdKb1dUaFNiazl1VFRCUUNrWkdLMlkzVFVOa2JqSmFWakE1VmpCT1JqY3llRGhPYm13M1MxUjROREpVVTNSNVRsZFNNSHBMY1UwclNYVXhaMnRRZVVKR1VrOTVOVUU1WkhOb05tWUtSa1ZMVTNWcU5FSmpialpuT1VsSVoyTlZObkJRZDAxalQzcHljREl2Y1RsRE5HTjRjV1o1Y2xkU2RTdGxPWGhwTlZaUE9WVXZOVE5EUldGcVJ6SmxXQXBHTmtrME1FWXdhV2t6UWxsTVVXWnNkVU5NU1dNMmF6QnBNakpMZVdOelJGZHJVRGN5Yms5aE9EQTVMM2RuWlVRMk0wczFXRWRzUkhCd05qWkhZWE5JQ2xacFFtcE9la1p0YUVncmExcDVNakJNU0dOMkwybEdXamhxZGtVM2MzaHNVWE16ZHpjMWFHdFdTbVExWjJFdlJDOWhPV05PY205aVNqbHFabmxOUlU0S1pURlZUVEZSUzBOQlVVVkJlVTF5VlhCblpHeEdOMUkxT0UxU09YcHJVVXN6TlVOME1WY3dObGhKVkM5QlJuRklkVmxOTm05UGJrRTBZVTU0ZUdSb2J3b3ZaWFpsS3psM1YwVXZRamR1UmtSbU9GaEZUSHB6U0U1SGNsb3JkSGgxYjFCemRFaGlUa1F4VkcxWWRXUkdUVTFqU0VWRmJUWm5kMlZhU1hoSlZIZGxDalZ1Y25GNFYwNUZVVzVITVhNeGJVUXpWWEppWjNOMVFtMXdaV1p3TDJwNFNtWTBXRE15ZW1odFJuVjVkVmRHZVZaVmJsbEtURk5pZFN0bFNYbFVVRzRLTkRGUVluTm1MMmxNY3pSUlRTdEtSbmxUVld4aWR6QjVhVU5YVTBKTlMwRmFXbXBpTlVGV1RqTnNRakV3VVdaRFpTdEdVWGRWY25VeWVUWkhaMGR3T0FweWNuSXdjMnQ1UW5RMVMyZHhWSE5zYUZabVVGTklTMmxTTjNSSlUwZGtZWGs0V214TE1XMDVaWGgwWlhWS1kyOUxUVXMyYW5CaGFEVmpUVGROVHpWa0NqZzVRMmxwSzNBMlJFcGhkbWQwUmpGWFZXaG1UeXR4UlcxNFlWbFJVV1l4WmxGTFEwRlJRazgwZWtjd2NFcExUekZqVUZaWmFETkxRbmRKTW5KSFlWa0thMjFSUnpSWVZFd3lRVmxuYXk5MEwyOUZRV3RtYW1OaVQweFVkbE5FUTFWallVNTViRzEzY0hGWU5qRlhkV05QTm5KMGRsQldUV0pzTTNkdFNFeGxPUW8wZFc1VVIyUjNMMlJNYUVaaVduVXdPV3cxUVZoU1pUTmlhblZ4UzFselFsbzRUMWxMTVdOTFIxZDRiR3RJYTNwSmQzcE5OM2QwY1V0dFFtSlBRMWhIQ25OV2NFaEZWVFZJTDNCWlowVjVMM2RvVTJwVU5sSkpPVzFFVmxWclkxbE1PU3RuYjFkQ2IydHpSMGREZDBOdWVIVXZlRWRtVjJ0d01FZzNObFExYjBZS2JGWk1hWHBuYTFOUVVqUnRWVkZZWW1OTE0zcElaakIzYjBGSFdqbERhMFpLV25sQ2FYRkhRWGsxV21oUlZsWnNjVTh6ZEZWSU1WSTNLM0JQVHpScE5Bb3JSM2hhWkd4dU0xUlhSekZvWmpScllXOHlZeTlVVFc0emEwbExjSFo0V20xaFkwOWpaRXhNVUUxTVJuQnBja05FVGtkTVdqZDVWWFJxWXpBS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiBta3R5NjdhcWx1c2RobjU1N3B4a3cxaGhsZm1pajltb2ExN2xlYnY2ZWZzOTB1OW03c3YwaXd1cHkwOXhnMTRuNnpsMmU4NHY5OWhudHE3cDNzdXhxOHk5ZDY5cm9scG1zdThlMWZtMHhpbnp0ZGE4c2ZmcmE2ZDBkc2NvMDNvMwo=\"\n + \ }\n ]\n }" headers: cache-control: - no-cache @@ -1121,7 +1342,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 03:29:25 GMT + - Thu, 29 Jun 2023 10:19:36 GMT expires: - '-1' pragma: @@ -1155,60 +1376,58 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-iai5tdc4.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-iai5tdc4.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/2d9eaeff-91bc-4001-85e9-4d91789019da\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3642' + - '3313' content-type: - application/json date: - - Thu, 15 Jun 2023 03:29:26 GMT + - Thu, 29 Jun 2023 10:19:38 GMT expires: - '-1' pragma: @@ -1236,14 +1455,14 @@ interactions: {"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"}, + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_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/9511ca2e-62ac-4261-b4b5-a962dba4af44"}]}, + "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}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/2d9eaeff-91bc-4001-85e9-4d91789019da"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {}, "workloadAutoScalerProfile": {}}}' @@ -1257,68 +1476,66 @@ interactions: Connection: - keep-alive Content-Length: - - '2413' + - '2047' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-iai5tdc4.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-iai5tdc4.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/2d9eaeff-91bc-4001-85e9-4d91789019da\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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/f79d69ce-42d1-443e-a8ff-c186971ab754?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2ac1c5dc-d52a-4332-909d-3f881132ea5e?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3640' + - '3311' content-type: - application/json date: - - Thu, 15 Jun 2023 03:29:32 GMT + - Thu, 29 Jun 2023 10:19:42 GMT expires: - '-1' pragma: @@ -1334,7 +1551,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -1352,23 +1569,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2ac1c5dc-d52a-4332-909d-3f881132ea5e?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 }" + string: "{\n \"name\": \"dcc5c12a-2ad5-3243-909d-3f881132ea5e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:19:41.711753Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 03:29:32 GMT + - Thu, 29 Jun 2023 10:19:42 GMT expires: - '-1' pragma: @@ -1400,23 +1617,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2ac1c5dc-d52a-4332-909d-3f881132ea5e?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 }" + string: "{\n \"name\": \"dcc5c12a-2ad5-3243-909d-3f881132ea5e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:19:41.711753Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 03:30:02 GMT + - Thu, 29 Jun 2023 10:20:12 GMT expires: - '-1' pragma: @@ -1448,23 +1665,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2ac1c5dc-d52a-4332-909d-3f881132ea5e?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 }" + string: "{\n \"name\": \"dcc5c12a-2ad5-3243-909d-3f881132ea5e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:19:41.711753Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 03:30:32 GMT + - Thu, 29 Jun 2023 10:20:42 GMT expires: - '-1' pragma: @@ -1496,23 +1713,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2ac1c5dc-d52a-4332-909d-3f881132ea5e?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 }" + string: "{\n \"name\": \"dcc5c12a-2ad5-3243-909d-3f881132ea5e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:19:41.711753Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 03:31:03 GMT + - Thu, 29 Jun 2023 10:21:12 GMT expires: - '-1' pragma: @@ -1544,24 +1761,24 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2ac1c5dc-d52a-4332-909d-3f881132ea5e?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"dcc5c12a-2ad5-3243-909d-3f881132ea5e\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:19:41.711753Z\",\n \"endTime\": + \"2023-06-29T10:21:16.0023883Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '169' content-type: - application/json date: - - Thu, 15 Jun 2023 03:31:33 GMT + - Thu, 29 Jun 2023 10:21:42 GMT expires: - '-1' pragma: @@ -1593,61 +1810,59 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-iai5tdc4.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-iai5tdc4.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/2d9eaeff-91bc-4001-85e9-4d91789019da\"\n + \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/a5136215-d2be-442c-a8ec-ae8070150d5a\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3866' + - '3537' content-type: - application/json date: - - Thu, 15 Jun 2023 03:31:33 GMT + - Thu, 29 Jun 2023 10:21:43 GMT expires: - '-1' pragma: @@ -1679,61 +1894,59 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-iai5tdc4.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-iai5tdc4.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/2d9eaeff-91bc-4001-85e9-4d91789019da\"\n + \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/a5136215-d2be-442c-a8ec-ae8070150d5a\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3866' + - '3537' content-type: - application/json date: - - Thu, 15 Jun 2023 03:31:36 GMT + - Thu, 29 Jun 2023 10:21:44 GMT expires: - '-1' pragma: @@ -1765,61 +1978,59 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-iai5tdc4.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-iai5tdc4.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/2d9eaeff-91bc-4001-85e9-4d91789019da\"\n + \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/a5136215-d2be-442c-a8ec-ae8070150d5a\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3866' + - '3537' content-type: - application/json date: - - Thu, 15 Jun 2023 03:31:37 GMT + - Thu, 29 Jun 2023 10:21:46 GMT expires: - '-1' pragma: @@ -1847,14 +2058,15 @@ interactions: {"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_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"}]}, + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_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/2d9eaeff-91bc-4001-85e9-4d91789019da"}, + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/a5136215-d2be-442c-a8ec-ae8070150d5a"}]}, "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": @@ -1869,69 +2081,67 @@ interactions: Connection: - keep-alive Content-Length: - - '2631' + - '2302' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-iai5tdc4.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-iai5tdc4.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/2d9eaeff-91bc-4001-85e9-4d91789019da\"\n + \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/a5136215-d2be-442c-a8ec-ae8070150d5a\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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/2af28cc8-1451-4589-9e23-332555afe499?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c9df698b-bdc5-48ae-9cf2-012cdeb7b462?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3864' + - '3535' content-type: - application/json date: - - Thu, 15 Jun 2023 03:31:45 GMT + - Thu, 29 Jun 2023 10:21:51 GMT expires: - '-1' pragma: @@ -1947,7 +2157,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -1965,23 +2175,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c9df698b-bdc5-48ae-9cf2-012cdeb7b462?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c88cf22a-5114-8945-9e23-332555afe499\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T03:31:45.445156Z\"\n }" + string: "{\n \"name\": \"8b69dfc9-c5bd-ae48-9cf2-012cdeb7b462\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:21:50.8525658Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 03:31:46 GMT + - Thu, 29 Jun 2023 10:21:51 GMT expires: - '-1' pragma: @@ -2013,23 +2223,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c9df698b-bdc5-48ae-9cf2-012cdeb7b462?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c88cf22a-5114-8945-9e23-332555afe499\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T03:31:45.445156Z\"\n }" + string: "{\n \"name\": \"8b69dfc9-c5bd-ae48-9cf2-012cdeb7b462\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:21:50.8525658Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 03:32:16 GMT + - Thu, 29 Jun 2023 10:22:21 GMT expires: - '-1' pragma: @@ -2061,23 +2271,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c9df698b-bdc5-48ae-9cf2-012cdeb7b462?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c88cf22a-5114-8945-9e23-332555afe499\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T03:31:45.445156Z\"\n }" + string: "{\n \"name\": \"8b69dfc9-c5bd-ae48-9cf2-012cdeb7b462\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:21:50.8525658Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 03:32:47 GMT + - Thu, 29 Jun 2023 10:22:51 GMT expires: - '-1' pragma: @@ -2109,23 +2319,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c9df698b-bdc5-48ae-9cf2-012cdeb7b462?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c88cf22a-5114-8945-9e23-332555afe499\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T03:31:45.445156Z\"\n }" + string: "{\n \"name\": \"8b69dfc9-c5bd-ae48-9cf2-012cdeb7b462\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:21:50.8525658Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 03:33:17 GMT + - Thu, 29 Jun 2023 10:23:21 GMT expires: - '-1' pragma: @@ -2157,23 +2367,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c9df698b-bdc5-48ae-9cf2-012cdeb7b462?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c88cf22a-5114-8945-9e23-332555afe499\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T03:31:45.445156Z\"\n }" + string: "{\n \"name\": \"8b69dfc9-c5bd-ae48-9cf2-012cdeb7b462\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:21:50.8525658Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 03:33:47 GMT + - Thu, 29 Jun 2023 10:23:52 GMT expires: - '-1' pragma: @@ -2205,23 +2415,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c9df698b-bdc5-48ae-9cf2-012cdeb7b462?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c88cf22a-5114-8945-9e23-332555afe499\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T03:31:45.445156Z\"\n }" + string: "{\n \"name\": \"8b69dfc9-c5bd-ae48-9cf2-012cdeb7b462\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:21:50.8525658Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 03:34:16 GMT + - Thu, 29 Jun 2023 10:24:22 GMT expires: - '-1' pragma: @@ -2253,24 +2463,264 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c9df698b-bdc5-48ae-9cf2-012cdeb7b462?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 }" + string: "{\n \"name\": \"8b69dfc9-c5bd-ae48-9cf2-012cdeb7b462\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:21:50.8525658Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:24: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 scale + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c9df698b-bdc5-48ae-9cf2-012cdeb7b462?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"8b69dfc9-c5bd-ae48-9cf2-012cdeb7b462\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:21:50.8525658Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10: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 scale + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c9df698b-bdc5-48ae-9cf2-012cdeb7b462?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"8b69dfc9-c5bd-ae48-9cf2-012cdeb7b462\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:21:50.8525658Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:25: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 scale + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c9df698b-bdc5-48ae-9cf2-012cdeb7b462?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"8b69dfc9-c5bd-ae48-9cf2-012cdeb7b462\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:21:50.8525658Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10: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 scale + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c9df698b-bdc5-48ae-9cf2-012cdeb7b462?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"8b69dfc9-c5bd-ae48-9cf2-012cdeb7b462\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:21:50.8525658Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10: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 scale + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c9df698b-bdc5-48ae-9cf2-012cdeb7b462?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"8b69dfc9-c5bd-ae48-9cf2-012cdeb7b462\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:21:50.8525658Z\",\n \"endTime\": + \"2023-06-29T10:27:09.1794371Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' content-type: - application/json date: - - Thu, 15 Jun 2023 03:34:47 GMT + - Thu, 29 Jun 2023 10:27:23 GMT expires: - '-1' pragma: @@ -2302,61 +2752,59 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-iai5tdc4.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-iai5tdc4.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/2d9eaeff-91bc-4001-85e9-4d91789019da\"\n + \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/a5136215-d2be-442c-a8ec-ae8070150d5a\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3866' + - '3537' content-type: - application/json date: - - Thu, 15 Jun 2023 03:50:02 GMT + - Thu, 29 Jun 2023 10:27:23 GMT expires: - '-1' pragma: @@ -2388,61 +2836,59 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-iai5tdc4.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-iai5tdc4.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/2d9eaeff-91bc-4001-85e9-4d91789019da\"\n + \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/a5136215-d2be-442c-a8ec-ae8070150d5a\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3866' + - '3537' content-type: - application/json date: - - Thu, 15 Jun 2023 03:50:03 GMT + - Thu, 29 Jun 2023 10:27:24 GMT expires: - '-1' pragma: @@ -2476,8 +2922,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/cliakstest000001?api-version=2023-05-01 response: @@ -2485,17 +2931,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c74c0235-31d5-44d9-b68b-0624435699a8?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 15 Jun 2023 03:50:06 GMT + - Thu, 29 Jun 2023 10:27:25 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/c74c0235-31d5-44d9-b68b-0624435699a8?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_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 index af13bdb4b90..9535f676c8e 100644 --- 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 22:41:41 GMT + - Thu, 29 Jun 2023 10:27:29 GMT expires: - '-1' pragma: @@ -54,11 +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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {}}}' headers: Accept: - application/json @@ -69,69 +70,68 @@ interactions: Connection: - keep-alive Content-Length: - - '1732' + - '1403' 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-r5thm53g.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-r5thm53g.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/c8a03c56-13d4-44e2-a06e-84e5918326d6?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1247fe66-87d8-4a3e-840d-e666e8030d01?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3539' + - '3210' content-type: - application/json date: - - Thu, 15 Jun 2023 22:41:49 GMT + - Thu, 29 Jun 2023 10:27:35 GMT expires: - '-1' pragma: @@ -143,7 +143,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -161,60 +161,59 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-r5thm53g.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-r5thm53g.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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: - - '3539' + - '3210' content-type: - application/json date: - - Thu, 15 Jun 2023 22:41:51 GMT + - Thu, 29 Jun 2023 10:27:35 GMT expires: - '-1' pragma: @@ -246,62 +245,60 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-r5thm53g.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-r5thm53g.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/f6636820-5eef-4a84-85ae-8d97224ff67a\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": + {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": + false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": + {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3801' + - '3472' content-type: - application/json date: - - Thu, 15 Jun 2023 22:42:21 GMT + - Thu, 29 Jun 2023 10:28:06 GMT expires: - '-1' pragma: @@ -333,62 +330,60 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-r5thm53g.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-r5thm53g.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/f6636820-5eef-4a84-85ae-8d97224ff67a\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": + {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": + false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": + {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3801' + - '3472' content-type: - application/json date: - - Thu, 15 Jun 2023 22:42:52 GMT + - Thu, 29 Jun 2023 10:28:36 GMT expires: - '-1' pragma: @@ -420,65 +415,63 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-r5thm53g.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-r5thm53g.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/f6636820-5eef-4a84-85ae-8d97224ff67a\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4190' + - '3861' content-type: - application/json date: - - Thu, 15 Jun 2023 22:43:22 GMT + - Thu, 29 Jun 2023 10:29:07 GMT expires: - '-1' pragma: @@ -510,65 +503,63 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-r5thm53g.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-r5thm53g.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/f6636820-5eef-4a84-85ae-8d97224ff67a\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4190' + - '3861' content-type: - application/json date: - - Thu, 15 Jun 2023 22:43:53 GMT + - Thu, 29 Jun 2023 10:29:38 GMT expires: - '-1' pragma: @@ -600,65 +591,63 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-r5thm53g.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-r5thm53g.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/f6636820-5eef-4a84-85ae-8d97224ff67a\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4190' + - '3861' content-type: - application/json date: - - Thu, 15 Jun 2023 22:44:23 GMT + - Thu, 29 Jun 2023 10:30:08 GMT expires: - '-1' pragma: @@ -690,65 +679,63 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-r5thm53g.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-r5thm53g.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/f6636820-5eef-4a84-85ae-8d97224ff67a\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4190' + - '3861' content-type: - application/json date: - - Thu, 15 Jun 2023 22:44:55 GMT + - Thu, 29 Jun 2023 10:30:39 GMT expires: - '-1' pragma: @@ -780,65 +767,415 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-r5thm53g.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-r5thm53g.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/f6636820-5eef-4a84-85ae-8d97224ff67a\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4192' + - '3861' content-type: - application/json date: - - Thu, 15 Jun 2023 22:45:25 GMT + - Thu, 29 Jun 2023 10:31: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: + - 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-r5thm53g.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-r5thm53g.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/f6636820-5eef-4a84-85ae-8d97224ff67a\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: + - '3861' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:31: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: + - 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-r5thm53g.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-r5thm53g.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/f6636820-5eef-4a84-85ae-8d97224ff67a\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: + - '3861' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:32: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 wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-r5thm53g.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-r5thm53g.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/f6636820-5eef-4a84-85ae-8d97224ff67a\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: + - '3861' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:32: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 wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-r5thm53g.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-r5thm53g.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/f6636820-5eef-4a84-85ae-8d97224ff67a\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: + - '3863' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:33:12 GMT expires: - '-1' pragma: @@ -870,71 +1207,64 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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-r5thm53g.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-r5thm53g.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": + 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n + \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/f6636820-5eef-4a84-85ae-8d97224ff67a\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4459' + - '4130' content-type: - application/json date: - - Thu, 15 Jun 2023 22:45:27 GMT + - Thu, 29 Jun 2023 10:33:13 GMT expires: - '-1' pragma: @@ -966,71 +1296,64 @@ interactions: ParameterSetName: - -g -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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-r5thm53g.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-r5thm53g.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": + 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n + \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/f6636820-5eef-4a84-85ae-8d97224ff67a\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4459' + - '4130' content-type: - application/json date: - - Thu, 15 Jun 2023 22:45:28 GMT + - Thu, 29 Jun 2023 10:33:14 GMT expires: - '-1' pragma: @@ -1062,65 +1385,63 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-r5thm53g.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-r5thm53g.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/f6636820-5eef-4a84-85ae-8d97224ff67a\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4192' + - '3863' content-type: - application/json date: - - Thu, 15 Jun 2023 22:45:30 GMT + - Thu, 29 Jun 2023 10:33:16 GMT expires: - '-1' pragma: @@ -1154,24 +1475,24 @@ interactions: ParameterSetName: - -g -n --file User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ - \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVV0elVGRlRXR2MwYVRoeFpHOVhiWFJuVTBoalN6UjNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDA1cVJURk5ha2w2VFdwTmVWZG9aMUJOYWtFeFRYcEJNazFVVlhsTmFsRjVUWHBLWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNuUllUbVIyUW1weGR6QlJVMUZEWlVGV2VubGlZbFl5YjNSNFZuUkdRblJ1UkhWb1dUaEVibVJoZWtWWVdFSlNUMmszYlM5SGNsazVlVWx4TkhSUmFpOEtOR3RsTWpGR2QyMXJhRFpTVm10RU1GWmtUSEV5YlRGQmEyOXVNbmRCTkdjemRsaEhlVEpNZG1ad2FHczBXVFEyVmxWR2NuQkRUV1JHVW0xelVqSnZhd3BST0hSM1RXODRMME1yUWpOcFZua3pURVJLUVVRNUt6QlVjQ3RyTXpSUlRHMUpSR3RPVkZwV2RrRkVWMnBhV2xZMGNrOU1ORlZYUmtkQlNVOWxaamt6Q2toWVVubDBlazh3YWxCV1ptbFdTRmxOZVRRcksyVTFUMEZKYkVwb1UweEhlRWh3UVV4dVRTdFJhbE5HVjJ0TWRrTXZiSFpEUkU4ME5VdzNWVU00VVZvS1VISXpiamN5ZG5aMlNHcGpUM1pKUzFCcWEwbEtkbUZyVUZVd2FtSk1ZWEpsS3pOTVZHZHNPREJZZGtkM1ozVllRMU1yVEZKcFpuQkNTa2N3VlV0elF3cHRjVGRyYTFkSFduVnJaVkJoVWxRMFZ6VjZRamRFZURORlZFMHJaVGxyZVhVclRFNVVja1UzUkZKTWFUaHVVamRpTVRsYU5rMWtZVVZGY1ZOdlNrWmpDbHBLZVc4MVZqaExabk5TTmxwWlVrWnVORlY0YkU0eVFWcEhhV2w2TkRGb05qTjNOSFpYV0hGalIxbzRZM1pLWm1wNVFqZHhXWGwzV1hBMVYyMDBXVklLTkV0RU5WQlBTQ3RMVVdWblNXdEpjVFJUT0hsd2JHWmxVRUZQVEVKTGJIZEdURkpGWjBwcWFIRnlUMm8zV1VkR2MzcFRUMHN4ZDIweFJXOVJWMHBFZHdwREsyOUJRemR2UVhkVldXNDFPRUpvTnpNNGVETlBhR3RtU1VoTVQyY3lia1JOUlN0dVRFSlJPV051Ym05eWNtUnBXbE0wTUVsVlVUQkhaVGhOZEVkSENtMUlUa3N4V1VobllrOTRMM2RFVjNSQ09IaEhTRGhoYm1VMGFXaElSbkZVU21OS1EzbFNaMGhEZG1ab2NtMXZiazFpV1RZeVNWSXpVMmR2THpZdmFVc0tUMHRUYTJ0TVJ6bDJkRVppWkhBeFFYVXJTVmR2YmxVNFdGRm1jMjFSWWtOclN6aG5RalZFWnpGMU9FTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1JXdG5lVzU1TW1kNFRHUTVlREZPQ204ME4yeHVabWd2YjBWTVVVMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlFYY3piMU5yTjNKR2JFWkVaSFp3VXpCT1YyTXhkWE5RSzNrS2NsZ3JTQ3RCY21GVlVHcEZXR3NyTWxKNFREaFlXRUpSWW5KSFRHNDFSUzgzWmtZd2JtaHhXVGN6THpOUmRGaDZhVzlTZDNSRGRWbFNMMjl6VFU5eGVRb3JSM1U1U2paVWRXeHFjRWhyVTBkUFpXSlRjV1JyWlZwemEyMWpkalJaYW1oM0swTXdSekJXTkRKQ2JubHVNMkZwV1ZoemFrRldlVUZYYVdaUmRVaG5DblpRTDFrNFNIWXZNa1pMYkdzMllreDBNR1JTYm5Sdk5rZEZWbnBWZVN0NVFsUnNVazVOYnpjNWIyMXdRbXhSTXk5eVMzQTJMM2hIVUZnek5uSmFjRm9LTVdkdFNsSTNhVUkzV0dnMk1UWkxkRVowWTNwS00ybEhlRk5EVDJkQ2FFMUpka1J4VDNWNGVYSjNRMmxXWWk5Mk5HMVdZamcwVUdRNVNqa3ljbXR6VndweFluWnhXR1k0U2xWRGNuQjRTbFJGVTNBeVUybFJNR0prTDJOSlEwbHJSM2QyZDJwemNtZERTMDlKYWpaTFFVWTNjemhQUTFWRE4ydDRTRzEzUjBSYUNsTlJiM2gzZDJoT1dWWlliM294V25sYVVYbFFia3hVVm1ac1ZXZE5XSEp2TDFwcU5ISm9NRzVNZEc1R2VscFZheTlsTkhSa2VFTnFTVGN6V0RGdlJ6TUtkVnBqY1M4eE5HOUdkakp2TDBrelNrSlFTQ3R1VldSdGEyVjNXRXhzUVNzMk9FMHJUWFp4Y2xvelFVdFJjblZMWkVscVozaGlRV015T0hkWFFqVk9ZZ3BEVVZwc2RWUlpSbWMwTkM4NFkydFBVVkpXVW1wNVpGQlViWFpoVVZaaWNHZ3JVR0pJVmpCb2RFeEZNalk1UjI0eVRTOTJWQ3R0U0hkdlFUUjRhV0V3Q2k4elpFOXFVSE4wYjA4M1NEUTJTWFZ4T1V0VVFXZzFkRTFVVmxvclQxaDBOVU5PVTJvMU1qSnlRVEI1WVVvdlkzSmplRzEyWVdWRk5IQlpjRlZQYVhVS2NubHBRelpTVVZRM2MwZ3pMME53TTJ3d1RVWXphSEZ0VTA5M2RVcHNUelJRVGpKWGRWQmphekJxV0RWbmJrSlZjRlpaTkRadFlsRmxhMFpsU2sxVE1ncDZOMFoyVUdZemJGZGtWVTk0TDJKVVNVRTlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5zM3h5cWVuNi1weXB4czJxMS5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdHZ0NXA1bwpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdHZ0NXA1bwogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdGQ0djN6ZG1xcnhfY2xpYWtzdGVzdHZ0NXA1bwogIG5hbWU6IGNsaWFrc3Rlc3R2dDVwNW8KY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0dnQ1cDVvCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdGQ0djN6ZG1xcnhfY2xpYWtzdGVzdHZ0NXA1bwogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklha05EUVhkaFowRjNTVUpCWjBsU1FWQmplV2xDT1hCRVVVVlJhMUZCYUdkVFYwcDFhRWwzUkZGWlNrdHZXa2xvZG1OT1FWRkZURUpSUVhjS1JGUkZURTFCYTBkQk1WVkZRWGhOUTFreVJYZElhR05PVFdwTmQwNXFSVEZOYWtsNlRXcE5lVmRvWTA1TmFsVjNUbXBGTVUxcVNUQk5hazE1VjJwQmR3cE5VbU4zUmxGWlJGWlJVVXRGZHpWNlpWaE9NRnBYTURaaVYwWjZaRWRXZVdONlJWWk5RazFIUVRGVlJVRjRUVTFpVjBaNlpFZFdlVmt5ZUhCYVZ6VXdDazFKU1VOSmFrRk9RbWRyY1docmFVYzVkekJDUVZGRlJrRkJUME5CWnpoQlRVbEpRME5uUzBOQlowVkJPR1F4U0c1R2VFZEdVVmRTTTBodk1FazVVek1LV2pNMmRIWmphalZhUW5RNVVtRlFia2s1VWxnM1lqbDNVV2RNUXpObVRqVjRLMDlSZEdFM1lUZHpVelZGZWxNME4zTlpXazlDZWpoWlUwZFZhRE5yYmdwV1EwdHROMFJNY2xCVlVYUnhiRzh5UXpncmFEVmlRV0pRZGxGMGMzcHVjV0pCVkRkdGVGTTBTRmRYZFcxUEswWlZiREEzWXpGaVpYUnNTVTVzZVVabUNtaFROR1ZGU1hOMFREWTVlR3hRVDJOdEwzZ3ZTVVIxV0UwM2VHVnJZalZWTnpKVGJrbHpWbVZQZG14cU5rWjJPRll4TVdsd2N6WnZOR3gxVUN0VGJrc0tlbk5tV2tKd1VEYzBLM0YxVEU1RlFTOUtaVTlRTkVkVVoyVnpiRFJzY0VWdlZubEliMk5TWTNOb2FEUlBTMnM1VVhVMFYyWk1VVEozTDA1M1pEUkRPUXBLU25oWVNucERPRWxGYms5eGNXSkxTWGRCVFVkME1rbEhkbmxTY0U0cmNtbDRaVzltV1ZwSlRWcGhkM0ZwWWl0amFISTJSbk55VDIxaWQwUTRWR0ZqQ21NNE9HTlFMMnhEUjJoUlZ6ZFFjazFFUkhkWk5HZzBNMWMyZVRGV0swUmxTbXRuY21OR2MyMDNRVzVSWTJvMkswVlhlR1JSWVdaRk9URlpWRFppTkVJS1lsbGhaa3BYVGtWMVFWWkVkRFpRUldScll5dEdRM2xLYXpneFMyaENWV1ZsWVUxSE9FOU1kMHRxVDJ4cVVXb3JSMlI0ZERoaFZEYzFPV0ZOZUZwdmNBcEdNR1JoYlVrMGJtSm1ZbVEwWkVGUVRGaHphVTh3U2s5T2QwZE1hVzVRUjI1WmFFcFFObnBJYTFOU1ZEbEdSalo1UkZaTFlXWjJNakpYZVdsQ1JFWkxDbmxVWVZKWGFUYzVUbXRpUVdvclFVMWtaVXgzVW1WcWFFaGtSbU0yUlZGR2RtWk9XV2RUYnl0SGNuWmlURVl6U0daNVFYRjVSVFpMY2tJd2FrWXdLM0VLUlZGVWRWSjFZVmd4Y1M5QmJ6VlNWVkJ1WjFwdE5tMW9NSE5aY1RWTFl6aGFNbkoyWkZKVFNtbHZTMGsyTVRJd1FtNWxNek13Y214cGVGYzBLMEUzWmdwcmVrczVkbWxOZUdGdU9HSktSbUY0YnpGNFVITXdPRU5CZDBWQlFXRk9WMDFHVVhkRVoxbEVWbEl3VUVGUlNDOUNRVkZFUVdkWFowMUNUVWRCTVZWa0NrcFJVVTFOUVc5SFEwTnpSMEZSVlVaQ2QwMURUVUYzUjBFeFZXUkZkMFZDTDNkUlEwMUJRWGRJZDFsRVZsSXdha0pDWjNkR2IwRlZVMU5FUzJaTVlVUUtSWFF6TTBoVk1tcHFkVmRrSzBncloxRjBRWGRFVVZsS1MyOWFTV2gyWTA1QlVVVk1RbEZCUkdkblNVSkJTMHR5ZEc5WE5Ya3ZUM1ZMV2tOeFdYaFpWUXAwYW1kTE1pOVROMEV4YjFvMGNHOHJSVlo1TUVGbWVsaGxZM0IxU0hZMlJtSk1Za2x0ZDBsclVYWkZNRkpoYVhad2JVWnBSRVk1WmtOdFlreFBUblp4Q2xCSmFtSm1NM0oxZHpsaWVtVllWVEIyV1c1SGNXcGxNWFJqVnpOTUt6RkhkRVZqY21NM2FtZGtja3RCTTNGSVVrSnJiRVpQT1dGNkswOWtWRm8wVlc4S2VXMHpSRGt5VG1Wc2NFcEZkR1JvTjJWWVdHZzFNRkZRVlRsWVVYSXZPREZCYkhsRGFEaGxlRXd6YmxZelJ6aEpWbkpTYVZSd2VHVnFWRU5pYnpRNVVBcGhjSGhaWTJ4c1l6VlRhVEZUYXpCbFJsbEdZWHBzZUdScFZuQkhjRlJ0TlRVMWRrbE5RbFZSTTFKRmNGVlFlWEI0YTB0S2R6RXJjRnBWYUdSbVREZHJDa0ZsWVhRM1ZVUkpTV1kzVmpKVVJEWnpPV3h3VFZSMmFGRkRjWGRMV0hFd2FXOXNhR1ptYXpGeWVrTjNaMUIzVVdWMk9VcHhhbGRLZURGUWFXRkZkallLZWtOMlpsRldVV1Y1VFRWVVpWVTFaekk1WW5CME1VOWFOVWh0UTBVNVVWcDJSVWhaWmpoYWVuQlpSbUZ4YjFncmFtNDFZVlpXZVhVdmVEZHhRV2h2UXdwSVdEbDJZbXR2WW1STVkwczVNRGwyTjFWUk5qTklTRWhEVEdWSFMwOXRibXRrV0VwelNUQlhLMU5QYjJKdlJtVnNTbVl2UVdKNE1UaERjMVpCVGpWeENtWmlRVk41VWtwUVF5OXRUV0ZWV213d2JUWjJjRUptYUVwVFpXeHFVMmhSUjJkeGIxaG1VVmx3VkZsTWJrUlpNWGxpT1VKRU4wNUhRMnhMY25CdlF6UUtZMlJtWTJwTWFrTkZUbGxqUmxRMVV6TldVekpaTms1bWRVVXZZMmx1VUZsVE9WTTBTRXBhY2t4cFoyeEhiV2ROWWpoR2N6Z3ZaM0pRZWtKVmRIUTJkUXBTTjI5U2NrTk5LekJFUTNSa1FUUmpaMGRpVkNzM1FreE5PV1JoYWxoNmRGUllNU3QyTDFwelNHSklkbTVVWW5wVWNtTTVhMVJRU0dwWkx6Y3ZZVGxGQ21sSldYbEVPWGR4UTBaMk1FY3lORUpNVlV3NFEzSmtNd290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MxRkpRa0ZCUzBOQlowVkJPR1F4U0c1R2VFZEdVVmRTTTBodk1FazVVek5hTXpaMGRtTnFOVnBDZERsU1lWQnVTVGxTV0RkaU9YZFJaMHhEQ2pObVRqVjRLMDlSZEdFM1lUZHpVelZGZWxNME4zTlpXazlDZWpoWlUwZFZhRE5yYmxaRFMyMDNSRXh5VUZWUmRIRnNiekpET0N0b05XSkJZbEIyVVhRS2MzcHVjV0pCVkRkdGVGTTBTRmRYZFcxUEswWlZiREEzWXpGaVpYUnNTVTVzZVVabWFGTTBaVVZKYzNSTU5qbDRiRkJQWTIwdmVDOUpSSFZZVFRkNFpRcHJZalZWTnpKVGJrbHpWbVZQZG14cU5rWjJPRll4TVdsd2N6WnZOR3gxVUN0VGJrdDZjMlphUW5CUU56UXJjWFZNVGtWQkwwcGxUMUEwUjFSblpYTnNDalJzY0VWdlZubEliMk5TWTNOb2FEUlBTMnM1VVhVMFYyWk1VVEozTDA1M1pEUkRPVXBLZUZoS2VrTTRTVVZ1VDNGeFlrdEpkMEZOUjNReVNVZDJlVklLY0U0cmNtbDRaVzltV1ZwSlRWcGhkM0ZwWWl0amFISTJSbk55VDIxaWQwUTRWR0ZqWXpnNFkxQXZiRU5IYUZGWE4xQnlUVVJFZDFrMGFEUXpWelo1TVFwV0swUmxTbXRuY21OR2MyMDNRVzVSWTJvMkswVlhlR1JSWVdaRk9URlpWRFppTkVKaVdXRm1TbGRPUlhWQlZrUjBObEJGWkd0akswWkRlVXByT0RGTENtaENWV1ZsWVUxSE9FOU1kMHRxVDJ4cVVXb3JSMlI0ZERoaFZEYzFPV0ZOZUZwdmNFWXdaR0Z0U1RSdVltWmlaRFJrUVZCTVdITnBUekJLVDA1M1Iwd0thVzVRUjI1WmFFcFFObnBJYTFOU1ZEbEdSalo1UkZaTFlXWjJNakpYZVdsQ1JFWkxlVlJoVWxkcE56bE9hMkpCYWl0QlRXUmxUSGRTWldwb1NHUkdZd28yUlZGR2RtWk9XV2RUYnl0SGNuWmlURVl6U0daNVFYRjVSVFpMY2tJd2FrWXdLM0ZGVVZSMVVuVmhXREZ4TDBGdk5WSlZVRzVuV20wMmJXZ3djMWx4Q2pWTFl6aGFNbkoyWkZKVFNtbHZTMGsyTVRJd1FtNWxNek13Y214cGVGYzBLMEUzWm10NlN6bDJhVTE0WVc0NFlrcEdZWGh2TVhoUWN6QTRRMEYzUlVFS1FWRkxRMEZuUVVSMVJrOVNjRUp0ZGpKU1dWWlFaM1oyVVZOYVVrRlVTRXMyV0hoelptSXJMMmR1V0dKd2VtaDVMelkzUzFaVFEwdExWMU5IU0c5dWNncFJXRlU0YkhWdlFqQmFNMGRxYlZZd05UTXdObEZVYmpOdE0xWjJXbVJyVEdGUU1GWlNRMk4yY0RWUFRrOTJVbE5vUWt4dVRsQnZLemt6VlZSc1JVRkxDbU53WTJsWVNqUkRNME40UVhsQk5WTkNPVkZHUjJRek4zQlNaa1JDUzB0U2RuQktSRmRZT1RGMWQydzVia3hUV0RKc1RFcERUM2x5WTFSSU9WQktPRllLWldSUGNFNUpla1V4YVZaaVkzRlNRbnBKZG5OaU1YZFlhVkF3Um10VE1WWllTa1pVVVVKcVRuUTJhemhQVm1sSGQxbGtlbE5DY1dSRlMxcGtiRkEzUWdwRWFsRmxlVk5IVVZCWmIycHlWMWhNU2xSd2VXRlNkMmgxYld0MVZuWnNRVTFSSzNweU1qZDFWVkZLY1RVeVZrbFNTVUZFWVdvNFZFOW9NVFZXYWxCU0NrOXRLMEl3Tnl0RU0yNVhjbUUxTjA1SGRrWjVhU3RJUkhCQlRtb3ZVRkJPYkZnek9UTm1RVE50Wm1JelUwZEdOVTR6TTFGeU5ETXJXVTh6YjBnMWExSUtkMGxrUWxaTGEycHFUbHBwWTNGakwybHNibVUwVTFaNVFsWTVNR2h4TkZJNWFIWllUR2c1ZFM4NGRESkhjME5GZG5aRGJHWktVMEY0TUhKR2FGUjBLd3BKU1VoVmVuQXpRa2w2YWk4MlJWSkpVVk5zUjJwdFFreG5WemsxV1hBdllUaHhVbXBVV1RaQ1VWWktaV3hTU0RSbWJrbHRWV0pLV1c1dlFrTjNWSFUzQ2xkRWNYUkJOalpTV0ZWc1RtOXlTMjR3UTI5d1NIQkpaVEp1WkM5R2NETk9LMmdyY2xSSVdqZ3ZLMGhoUlVaSWJDdHVhRkZpWmtrNFJuZ3lPRzluVFVVS2MzWjBObUkzUjJwdGQyMVZOMnBXY0RRelIxRjFUemxGSzBKb2MyWm1PVkZaV0hkWU5XWXlSamxHYUV0aU5HTk1VRWx2Y2xsb01tOWtka3hLY2tSWGRncElLemhCTVcwek0zZFVjMlJhZFZGNFVXUjBkVEJ4U205bFVrcGFTSE5rUmxWdU5WQXdhVUZ6VEZkQmVsZERVV3RuVVV0RFFWRkZRVGxpYUVodFRVNDVDbXcwUW1SdU4yeHZNa2RtTjB0MVZsSnRTVlZCTHpWbVpIZG1Ubk5VYjA1eWEyOTJlRFZvVkhOS1NVdEphVFZTZEU5R1lUbHBSMjVxUlhCc05tSkVlV0lLZERCaGNrUkhUbmRNWm1GSE9EWnZNRFJPYm1GTE5sVlNTREp2VTJaaVdXTkNaMWh1ZDBoUmMzQlpSV1pvU1RoMlowMHpVbW9yUVU4MU5IRjZhRTVTWlFwdGNIZE9iWGhyTkZaalVqZzNObk53U0hOVU9YaFJiSGhITWpjck5GUjFOMUZ6UVV0TlIzcEtiVkF2WWt0aWRrMDBWeTkwVERkc1ZYUlZVRGsyTnpGRENuaG1jR0Z1UjI4M1EzVXZOalpJWml0NlJXeFBSa0p1V1Vwc2JHdDZaekp2ZVdSUGMzVTFhMFo0V214YWNpODJRVWxQVTFKNlpIUmFVVGx6ZG5Jck1YSUtjbkJCU1RremMxcFFhRTV4YVZWd1dHdG9kVVJEUW1wa1RHeDNhSHBOU1dGVEwxUkJLM1p3TVROMWJqRlFjak4wTmtwM01UaFpZemcxVGpobFJVMUpZUXAxZFVGcGQyNUhSRzlRVVdsTGQwdERRVkZGUVNzdmRURkJRbWR5ZG1oamRsUjZPRVpHUlV4SlQzRXhjMUpWYXl0NFkxbEZSa05PWWtGcWJHY3ZjMUo1Q204eFowOXhkbkZ6WnpOT1IxUlhZMGs1UkU5QmVFdElla01yYUV0cFZVeGpRbTlCU1d4YVJGTmpSMUpZWjBWRFUyMVdWMnhrZVc4NE0zbFNhbHBrZVhBS1IxVlJUbHB3T1RkaFV6TlBlR05wYVZaTVVDOTBkSGw2Ynl0bWJVOHdjRUk1ZUZvNVlXczBZbkpYVkd0U2FXMUZWbmxoUWxsUmRtbFdRekJNU0RaaWVncFVlSFExYUN0YVpGWTVUV0ZzU1dkVWVucEhVbUpqV1ZwUE4yZzJiRXRPVFVKMmExcDVUVmhPT1V0a1pXTm9NQ3RoYlVSS1lUUXJlRXd6U1dReGNGUnBDa0ZHYzNWUE16aG1TMlI0YVU1VFMyTkNTVUpaY1dOSk4yeFJWaXQ1ZG5wUE9YSkVVaXRMU0haTk1HeElWV3RYVmxKMlMyVjZkMXBLZFdkb1EwbHdRMUVLVEZOMWQyMUhXa0kyUjNsR1UxUTJRMUI1YzFaQlNrSm5iemgzZGtwalIwbFVRV05PVnk4M01XSlJTME5CVVVWQk9VUkRjbUpyVVhkb2NWQTFOWFZoVXdwTVExaENkRTVLY1UxWFJsVkxZVEZhYjNkd2RsRjFUbFoyZWtFeVQwVnViMng1ZG13eVNtbHljR2RoUm0xd1FtOUxhVFlyVHpsNFRHWXlja3RTTm1neUNtSnBZMFl6UW1JeFREbE5kaTl3YlhaR05FbEtWMFZpYms5S1JXSjVLMVp2UkZJemVVaFpSbE5YZGxkMldXZFVkbkYxYW5KSFNVVlpaSGgyU1ZwaE9Ea0thbVpoVkd4dVlVcHBaSFZKZFdkNE1VUkRaRlpSY1RWcGJtRmFUazlsZVZOMEszSnJaVmRtTlRWeWRXUm5aMVI2UTNGVVJVeHJaRXR0V1dOQlJERjBLd3A1TlV4TWVtTlRZVkZhYUVRNFRGQjVWemhKVVRkTWEydFhWbHA2TTFsaWJqbHZVVGhZYVhSVlZqbDJkV3BvTmtSaGJYcHFlV3BxZFM4eU5rTnBjbU5hQ2pCa1ptNHdkMGt2V0hGTVlYQXJlRloxYlVkNU9GWkxaMWxaVjJSV2J6UmlTREpzZGpSSFpFNXFRa2hhYUdWeE5DdEdXa2hCWVRVd1l5dDVWV1p3Ym1rS2FuTjVkazkzUzBOQlVVVkJkMHhRWVRGUGNXNU5VMVUzTm1WbGR6ZzNRM0YyWVhvMGJYWm5USGxIV0VwdmNtcDZSbGd4V2k5NGRYVTJPVzluZUZsTlZRcDNVMWs0UVd3cmEybHNVMFY1YkhSeWNYQlRTSGN2WW1OdGVDODBPRXREYWxCdk5rOUhRMlpLZEZCbE5YQmhjMjlwUTBkck0ycGFiRWd3ZUdGNmVuUjRDblp3Y205bldITlNTV0ZRVTBWRU9IbEthM1p1Vm5wd1VIWnBNVEV4WjBaTWVUQjJXVUYzZDI1RFFuTk1XVWhOWkV3dlEwOXFSRTAxTmxOeFEzY3pjRm9LYzJoMFoxQlhlbVpqVm14bU9WVndSVFk1V1VZNFNIWTVXRmQyVFRKNWVtbGtOVWw2WlZOUFEwbDNjRWh1ZW14NFkwYzFaVUZWWXpCdGNqaG5WMU5ITndwaVIwUTRkbVJRY3paemFGbG9aVXBxWmtoRFMyRmhVSGxvZEdaemFUWTRWRnBsTlVwWE9VdFpLMWgyT0VaVGFXazBNa1ZFWVhKdFVtVlBibkpyU0VSTUNsRkljMVphTVVWc1prUmtkbEpXU1d0b1lqbFdOSGhNYUV3dmRFbHlVekJMT1ZGTFEwRlJRbU55SzFRd1lVMVhPSGg0WWxGc2RFWjFhVTEzZVRKMVJYSUtNRkUxWTBoMk9FRXpka1o0VVZGc1UyY3JXVWhUYzJoblEwSkpSVzl2Y2xkd1ZVTnVTM0o0VFdSU1FqZEtZMlZJTkdaWWRtWm5SbUZUZG5GRE55dDJOd3BVYlRKa1dYWlpjV3RwVnpBNGNWWjRUakZWYTNsc1RuTXZiSEJCWW1sd2NtcE5RMVJpUW5sTGNqWlRUMEYwVldwNGJXSXJUa0l5Ym05d01tbEdRV295Q2tkNU1IbE1hemxDUVVKNFJWVlpOMGRWUkcxR05YQXZlVWhVT0VwYU1uZHVSRE5RTTNWWWJGUkdWbFE1YUhaVmVtbDJlRFZ1U3pKRk1VWnRTVlZOVG04S1ZGVjROVVpoTkVvNVpFZDJZVGRJY0RjeVZFZE5Xa1ppVlRkV1ZFWklTbXhIU3pCS1EwSktNRWhHV0haWGREYzBSWFJSY25JNWMwcHNjRVF6WVdvd1Z3cEtRM1Z2ZFhaTmNuZGhVbkF5Ynl0blNsaFhNR2xCU1NzclYzTnhRakE1SzNwUWFuaGhZa1JZYTBsR00xQnNiVFowV0M5Qk16SlRjbWMxUWtJS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiBqNXczODBlNnh6ODRsMm93OHptaDE2aHJ1dnRvbGRmMnpidGl6M3Jub2J2MThwdDQyY2ZzaGJlZ2ppc2djY2JwMzNoNHkyajNiOTdyYmE1OW9xNGZjcmM3ZHRxbnlobHFubGN6a3Vsd2Z5dW1iYnVxNXFjNGpzMzJvNGlvZnNrMAo=\"\ - \n }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": + \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSVTNONVptTXpjbGhuYVVSaWJVTXJXbmhHY0U1dlZFRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxcWEzaE5SRVUwVFZSU1lVZEJPSGxOUkZWNlRVUlplVTlVUlhkTmFtZDRUa1p2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVNNENqQlZjemhyVEhScGFrRndiV2s1WlRGWlluSklWVXhwUzJWRlEyWlJOQzluYWtVdmRYTmFWa3hTU1dVMVFYVldaV1JaUWpoWGNrbFlhV0p5Um0xcFNsZ0tkV0phU2toNk9XWndTVU5yTjB0WmJIQnVaR2RtU1Zob1VYVm5MMlVyWTJwNlRVSldPREo0VFdkNmJERlFjRkppSzFKa1dqTkJWMnczZVZKaFlXaHZTd3BVVkRKeldrUlZhbG8zYUdWaVprSkNlblpPWlVReGJWVm1aR2x4ZDNoR2RrbDJZemxpY2k5WVYzcDFMMjkwYkRoUGVVVklkbkJJZWtGSmQwOUJOMVIzQ2tWcVQweE9PRWR4VEdwSVZWSm1WRkJrZUUwM2JUWkhXVTlNYTNjeVZqUTJNbXRIYlZkTWVISkliekJVZFhJMGNtWTBVeTlEYUdSbGNtSnhlSFptVGpFS1pVNUpUamN6YWt4NlIwMUxjakE0U1ZsV1VVNXlaVUpHWjBOQlltd3JZV3g2YXpWRGEyTmhaa1V3ZDFab1VrUkNVMGw1S3pCeVp6TlRZekkzZEdkR1JncHpUbWxMWkhGRlZURkZiV1k1UkN0WVpYQkdVSFExVG1SUlFrWlNSVFI1TmtoV2JqUjZXR3RhTlM4eE1XeDJTMVV6UVRSSVoyWnFVR2R2U0hKcmFtWlNDbWxsT1RZMGNFWkRVVlpMVFVkVVJXUmpjME54YUhsTVJIWktPRVZ1WmxGbFlVeFhiRVpGT0hWcU5ETlVWVEJOZUdGaGVIUlNVMW9yVWpjMFNrdE1ObllLWTJweVFuaG1aMEZVVDJsWGJTdEtZMHBvYm1kdmMwbHhNaTlxUzBnck1FTjFSMWxGVEZwbFpUUkVORzFpTVdZclptMU1VVmhCUlVWaVdrVkVZVXh1YndwdVRFNHhiemw1ZUdsamJXTTRaMWxQV0ZGRGJrbFVURlZRVlhaR2IyaHZkR3h2TWpVME56VjRMMWhZTldwWFRuTTJUMWxxWXpOeGJuSjRPU3MzWmxRd0NrOUhlR05sYkVGcVpuRkpMM2RQYTJReFoyeFlVazlaUTIxeWMwRjNjV3M0YkZoYVMyeHZLeTlHU0dnNVFYWlNZWGx1TW1aUVRUY3pObUppYmt4WVFsUUtSWEZKVjI1TlNVdHVPRzFJVkd0amVXZEtUek5sVG5JMU5UbFNhelU1ZHpSRFRrcG9VRU0zWVM5UlNVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWNGF6UTNSWFJYVUhJdk5FWjNOVXhMQ20welNrdERjM2hxTmtscmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGSmVIaHBaemN4V1RsUlJVMHhiRzV2YzJ0WVprMU1NRWRxZVdJS05HSklaMjF2YWxWUlYwTmtaRTlPYUROeWVISm5lRFJFU2poek5HSjBSbEEyYkRoT2VIbHFaMVZGT0hwdFVVbE9aSFZZZUU5MVRWZDVNMlJ2WTBSb1JncG9WalJxUWxSdmFpczNXbXRtZURKcFMyOXFVVmR4UTJ4WGJHYzRaa1ZuUjJkaU1rRlJRMmN6ZVZaUmQzTk9OM3ByVFZwQ2NGSm1kM3B5VTB0bEsybFRDbFJZUTA0eE5HTjZWMEU1VTBwVE0zbFhiemR6WVRselRVcEJiRTlITUZkSE5GQnpMMGQyV1VreEswZEJUbnAyVlhac2RESnFZMWNyU1VsTllXOVJPVlVLTlRCcFRGaHNVR2RXVFU1MFN6aDVXbkF5UTBOV1UxWmxZVkExY0U1cWIxZGtVMFppVVZGYWNIZzRXbFZrU1hCYWRIUm1SekJYYWswM05XaHZha1UzYmdwM05VNDJlbkF6ZUdJd0wwRkZjazF1Y2toNmJVeFRRbEkxYzBFNVZteENUV2RLWVRCYU16RlJUU3RUYmpONlZVazNXWE5GZEROMGJrVnZhMjVLYjA1NENtbFhiRmgxT0dSYVNUWjZOVEJTV1dweFdXMUVaRE5TYjJKQ2MyRTVXVVZtV2xKUFRWbEdVa3hrVGpFNFFtTXJXakJvVTFaWVoyRjRSemhVZFd0SU1uQUtOWGM1UjFwWVdtdE5ibWc1V1djd01UWlNkRzl0UVVGRU5VTjZiaTluWmtodlptNW1ia2RwYWpWa2FXWkdWWHAzU0VkWVlqaHFSbkU0Um1kVU4xVnplZ28yTVZBMFJqaHdlbk55SzBOdVZFa3pOR0U0Wkdaek1FbEdaV2RRTURsc1MxQjRORFJNTTBRMVEwWjRTVlZWVURaUWJWVmFZVWt2V1VaUVYwcGlUVmRUQ25kU1JWaHlSall6VEU1NWRXUmhiRGhTVG5aamJrMWhXVXR1TmtRM2NYcFlNSEJpY1M4NWRXUlNTR3RHTTBRd09Yb3ZjeXRzY2pCc1NUUXJOall4YVdVS1ZFTnNjelJzYW1aUU5HaHBNMnBoYWtWdVZqZFFNazkyYm5WVFlrTjRja0pSYUVJNFlYbFBhVnBQUlVwT1VXUkZjeXMwVlVoVFRYVjJlbkJOZW5CWFdBcFdORkE0T1dOUkt6QlFabm94ZFRkaENpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2RuczNkcmtueWUtcjV0aG01M2cuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3Rhc2R2YngKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3Rhc2R2YngKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3RlY2ZrdGhmb3lyX2NsaWFrc3Rlc3Rhc2R2YngKICBuYW1lOiBjbGlha3N0ZXN0YXNkdmJ4CmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdGFzZHZieApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3RlY2ZrdGhmb3lyX2NsaWFrc3Rlc3Rhc2R2YngKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJVkVORFFYZFhaMEYzU1VKQlowbFJablV5Um1kSFMydE1XVEZxYlVVeVVHcEhialJPYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZ6UmtGRVFVNEtUVkZ6ZDBOUldVUldVVkZFUlhkS2FsbFVRV1ZHZHpCNVRYcEJNazFxYTNoTlJFVTBUVlJTWVVaM01IbE9WRUV5VFdwcmVFMUVTVFJOVkZKaFRVUkJlQXBHZWtGV1FtZE9Wa0pCYjFSRWJrNDFZek5TYkdKVWNIUlpXRTR3V2xoS2VrMVNWWGRGZDFsRVZsRlJSRVYzZUhSWldFNHdXbGhLYW1KSGJHeGlibEYzQ21kblNXbE5RVEJIUTFOeFIxTkpZak5FVVVWQ1FWRlZRVUUwU1VORWQwRjNaMmRKUzBGdlNVTkJVVVJITlRkWmNHNTBXbmg0UW1OcGRURmFTa3BDVTIwS1QwbHFSak5JUTFGcFVubFZlRkJST0ZKRGFYUXdUMEV6UVRKUVpVMWxiVmxYYjA5RE1FZE5keXRNVW1KNGJreFhWbEY1Tlc5YVR6WlFVMk40VGxKck1ncHZkRzR4VW1SaFlUaFZSVmhSVFhaVVEwaEpORlpsV2toRE5ubG1OMjlKTUZCWk5WQTNlRXcxZUhkeE9UQk1XRzFsV0hoVWJYSmpaemxuTTBSMFREbHRDbXAwVUhVd00xUm5RVGMwVFhreFRXWjZUV0ZUY21WNlpIVlFUbUoyV2pOTVJVRmxTVWx3TDJsclYwMXVOa0pFVmtWMWNHbzBLM05wVlVkUlVHcG1TMjBLWWpOWlZtRkpRbWx0UTFkcE9XeFJValZpTjFGbWJUUlliV1UyT1dOTWMxVkZXRm8xSzBweWFrcENlRWx1WkRoNGJEaEdOa0ZVTm5wTFVtbDZibmt6TndvM1dFVjNlVU5tVG10WFVXRXhhVWg2TW1OV1UyZ3hOa05PYlhGMk5ubEhNRGh0U3lzeGJERlBNelZaYUVaTlJETTJhbXBXWTNGSlFVY3ZVMVJWTjNsVENsZEROaXRRUmxaWFdGcGlaM014U1drd1UyZE9SVXhTYmxCdWFqWmtSR0k1Um1wcGJFWjBaV1Z4ZDBjdlZFbzVNVVJHWkZKNGJISk1VUzlUTDFWQ1pFVUtUSGRrTkhJeVNqSkpUMWxQZUZWMVRrUmtiVXhZZUhabmRVVXdaRWRhWlhFNWJUWndjbWhCTjFOTVNtZ3haalZTTTBwRmJtVlJVbU13WVU4MFlXSk5PQXBxUmpaMFUzcEZOR1JMY1hSS2FHb3ZTWGxYYUVsSWRuQnBlRFF2VWxNeU5IZHliUzl3UTJ4MlJHRnJiek5UTm5WdVRYUmlVM2RFYTA1WmJXUkpSekJJQ2paQ1dtMHZlSGR3T0c1aWJqVnpjRzlDYjNVNVRqZFdWVkpPTURBeVV6WlRORWhTWld0eGFtMXFWRWh6ZDNSUVJYTlNTVzVXZVVKRU1YcE9jREUzWmpJS2QwWTNTR1YzVkhaTE4xQlRSVTVEYVRZd1JrVjFkRWhsUjFWdVdqbEZZWEl6TlZkc1RtVm1iMEkwYjI1MFJERTBRa1ZyYUN0cWNXZzVOU3R6Uldab09BcGlWRlZyTHpaR1ZuaGFVWEZJTTBKNFRsZFJUV0pSU1VSQlVVRkNiekZaZDFaRVFVOUNaMDVXU0ZFNFFrRm1PRVZDUVUxRFFtRkJkMFYzV1VSV1VqQnNDa0pCZDNkRFoxbEpTM2RaUWtKUlZVaEJkMGwzUkVGWlJGWlNNRlJCVVVndlFrRkpkMEZFUVdaQ1owNVdTRk5OUlVkRVFWZG5RbFJIVkdwelV6RlpLM1lLTDJkWVJHdHpjV0pqYTI5TGVrZFFiMmxVUVU1Q1oydHhhR3RwUnpsM01FSkJVWE5HUVVGUFEwRm5SVUZhUjFSNlpsTTRlRUpRUzFCTVZGTkdhbll4V1Fwa1ZtbFRiRFJYVUVGRlpEUlFMMk5XTDNkeVRrcHJTRU5sWjA1NWRrOUxUWFZvVm1FNFkwdHJOMDVRU1ZCd1IwWjNPVVo1V1ZCQ2JIRm1Oa1JrYVVGMkNtRTBlbG81YWpCUE5UQjJiWFJSYjBkdU5qbDJXbVpMV2xaQk4wbGlUMkZvYkVzcksxUnZZbGhtV0VOc1R5dDFRM1JSY0ZwRVlWVmtjMjFSYjNKMk0wZ0thMnR4YjFSQ2VqaDZWbkJ0TmtSWGJEUXhkbTlNYjJkU01qRlRVazFYZFZOaE1GVk9TVnBJYWxVM1ZuTkdhWEpTVms5aEwxRkdhVGhsTmtoU2VtbDBVUXBTYlRONGFqRm9kRlV6V2xoaVRtOVpabEZPU0N0M1V6UnZRbFp4ZVVWT1ZFZzVhbnBKUzNCRGNXMUdVaTl4WldOQ1RXRnNTSFZ6VDJvd1ltTXJTR3hwQ2xkV1JIcFBiVGxLUVZKelZVTjFZM1JPU1hrNFJuWnNVbVJqWlZCVFJsTlNTMjE1WlRZeUwyVndjelZLZW01RlRFNWxaelZOYmtObGJFTk9iemRySzJRS2NIaE1jVFIwV1hCbFVtd3JiVkExWVdobU5uZzRObWQ1VDNoS1UzbG9WV2MxU2poR1NDdFlWRGhUYjA4M1kyOTJSMVJQWlc4clJIaG5XRm94ZHpodmRRcHNVV0U0YzJWWmVUWXhTbnBwYmk4clprSnNNRk15VnpGMmRVbExZVXBJZG1NMlJVcG9iRTlKSzB3cldtUlhRa0poVEZwU01ESnJSalJWYW1oaFJqVXdDbUpvVDBzM1VraGpSMlIzTVdOUVkyeFdlSGhOTnl0b1kyWlBibWRVWTNjM1pHMTVVSEEyTW5vdk5GWkZNbVpPTTFCSGJsSmlkREZhZFhocFdERnBSalFLUnpjeFNsRlJWalZIYW5Jckx6UkVWVXdyZVcxQ1MwOXFUbkl2TkdGTFZqWm9VVTFSYlVkbWMwOUdMMkphZW5WSFFsaHlNVGhpY0VkNGFFRkdiRFIzTndwVFZXRjJSMDVsSzFKeVVEbHBSak5JY0dKRVJsRjNMMXBEWWxwT1NqZGlRMmhXVGxjNU5sSXhOVUpGV1RGNVUxbGtLMXBvWkdrelVIbHNkVEJsVjBGc0NuWkZkMlpQTWtoRlFrZ3pjelJPU1ZCNWRWcGtMMFU0UFFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMEZKUWtGQlMwTkJaMFZCZUhWbE1rdGFOMWRqWTFGWVNYSjBWMU5UVVZWd2FtbEplR1I0ZDJ0SmEyTnNUVlF3VUVWUmIzSmtSR2RPZDA1cUNqTnFTSEJ0Um5GRVozUkNhazFRYVRCWE9GcDVNV3hWVFhWaFIxUjFhakJ1VFZSVldrNXhURm81VlZoWGJYWkdRa1l3UkV3d2QyaDVUMFpZYlZKM2RYTUtiaXMyUTA1RU1rOVVLemhUSzJOalMzWmtRekUxYm13NFZUVnhNMGxRV1U1M04xTXZXbTgzVkRkMFRqQTBRVThyUkUxMFZFZzRla2RyY1ROek0ySnFlZ3BYTnpKa2VYaEJTR2xEUzJZMGNFWnFTaXRuVVRGU1RIRlpLMUJ5U1d4Q2EwUTBNM2x3YlRreVJsZHBRVmx3WjJ4dmRscFZSV1ZYS3pCSU5YVkdOVzUxQ25aWVF6ZEdRa1l5WldacFlUUjVVV05UU2pObVRWcG1RbVZuUlN0emVXdFpjelU0ZENzck1YaE5UV2R1ZWxwR2EwZDBXV2c0T1c1R1ZXOWtaV2RxV25FS2NpdHphSFJRU21sMmRGcGtWSFFyVjBsU1ZFRTVLMjgwTVZoTGFVRkNkakJyTVU4NGEyeG5kWFpxZUZaV2JESlhORXhPVTBsMFJXOUVVa013V25vMU5Bb3JibEV5TDFKWk5IQlNZbGh1Y1hOQ2RqQjVabVJSZUZoVlkxcGhlVEJRTUhZeFFWaFNRemhJWlVzNWFXUnBSRzFFYzFaTWFsRXpXbWt4T0dJMFRHaE9Da2hTYlZoeGRscDFjV0UwVVU4d2FYbFpaRmdyVldSNVVrb3phMFZZVGtkcWRVZHRlbEJKZUdWeVZYTjRUMGhUY1hKVFdWa3ZlVTFzYjFOQ056WlpjMlVLVURCVmRIVk5TelYyTmxGd1luY3ljRXRPTUhWeWNIcE1WekJ6UVRWRVYwcHVVMEowUWl0blYxcDJPR05MWmtveU5TdGlTMkZCWVV4MlZHVXhWa1ZVWkFwT1RtdDFhM1ZDTUZod1MyODFiekI0TjAxTVZIaE1SVk5LTVdOblVUbGplbUZrWlRNNWMwSmxlRE56UlRkNWRYb3dhRVJSYjNWMFFsSk1jbEl6YUd4S0NqSm1Va2R4T1N0V2NGUllialpCWlV0S04xRTVaVUZTU2tsbWJ6WnZabVZtY2tKSU5HWkhNREZLVUN0b1ZtTlhWVXRvT1hkalZGWnJSRWN3UTBGM1JVRUtRVkZMUTBGblFreG9jVFV6ZWxaV1YwczBVWGhpZG5OTWJVMVRlV1pUVFV0S2JrMXFibko1V1dwT1ZFVnJXV293ZG5sNE1FWjZhSHB3V0ZsNWIwdFFlQXBLZUcxVEwyTjZWMVZHZEVsdlZrUk5jRGx5UmxNdlZUSjZVbVVyTVVWV05IbGpWRGhZYjBVNWVVSXZaRU5SWWprNWVtZFRXVUU1ZWxKM2FIWjBOMUI2Q2tSREsycFpiak5yY0RONE5tZEZWRU5LYVhoR1QzTnFkRTlDVHpWaFMwSXlkbWh3VWl0WWJsQjBLMFJtV1ZVeFFsbDNUbVpEV25neWFVZERSRTgxYm5jS2FXd3dNV3hqYTFZelVuVlFTRXhwWkhBeWVXZFJaa0pOY1RkVGIyMUJaelZvY3pOQ1NXczJaMDh6UzJWMlUwMW5XR1pIUm5seVEwcG9SMWN3T0VKRFVncHlaVVkyVVVSeWVFa3JhMlJHY1dWcWIxSmthWGhyWTFnMVYyZzNhMkZTTmxKdVdTdHhNbVJqWmxaVE1VZEZja0l4U2poQ1UwcEtiMHhDZEVoaWQxbHdDblZ3U1VKdlozRkxhM2wyVjNSNmVGQmhSa014VVN0bmVHcFJhemQ0SzBkbUx6VkJjWGRZV1haYWREZHFPQzl0VWxWTVQyVmFiWGd6Y2pZdldrRlFiVm9LWW1sR1FWQklkVXgzWmxOTVF6VnlXVmhhYW5RNVFrSTBObGx3ZFRaalUyRXpOMVYzYm5SUmVqSk1lR1psWTIxTVlXVjVMemgzWmpWalFuRkVjSEp1ZUFwUk0xcGlRak5JZUZCelRFNVJZMjAzTURobWFUUmxVVEJ2ZEdwM1RGZFNZM1k0YzFsQllXODFla0pGY0UxdVptTm1ZVFozUm1zNFUzZDRVR05qU0ZobUNrVTJTVkZCUm13MU1WcEZaMWRSYjJkNmFucFVOME5XUVhoMGVqQkdSbHBGYWpobE1UTnJSM1pHTmpGVWJERlNOMWtyYlVndlpFaExiRE1yVUdWaFl6Y0tkV2swVEZWd01UQmhVVzEyUlcxb01ITTFhSFpzUjJWd1VFNHJiazFCY25OTk5EQnVlRXhIWXpZeFYyZ3pObEZGTUVSTVRGQlFOMFZ0TjBjNGQyTmpUUW8xZEc1MlYwMVNiMjVpYXpkdmIwdDVOekZhU1djMVdqZGljRXByVEdOS2NFRllTRlpUV0d0MU9YQmxOV1JLU2xSblVVdERRVkZGUVhsRVduUTRLMDFEQ205UFUwZHRjVUpzV1V0Q1QwUnNXV3BDTUhSa1RXcFdTblIxU1VwYVNFeGFORFJNUzBsMVlrSkllbTVrUTFkQ1ZVNUhaSGcxZVVsRVZWcG5jRVp0TkVRS1VWZHhNR1ZPT0RFdmJ6Y3ljeXRIUzNGTlUzZG5VVmROS3pGalJGTTVNbTlVWkhoWlZITTBhVzFtWVd3NE1VVkdjbmR2YnpWTmNXMXNlbWR5TkZCYVpBcFFPRUpOTXpNdlpGSXlVM0p0T0hsNlRFY3dSalJFYWtSM1pVVXlOR2QzV1ZsS04zZHRVVTE2VnpGMWRHUk9Sa2MzVUdRelpsRldha1ZQTVdSVVZXdFhDalpoUTBSbE9FZHBNV28wTldwTE5saFlMMU5qTUhCNFpXUkJRWEZRUlZKNEwwNUtObU5HV1V4NVFYbFBVVEY2TVRCaU5ubzVTblkzWTA1RE0xWlNZVk1LYVRKRlpUbDRNblZwVUhoeU5HVnpSM05YTm5OalFXWnlPVVZCV0VWTU16bGtkV3BHVkcxcmJFcHFZa2hvV2taMloyZGhlVlJvVmt0bmRrMVVjbFZJU3dwaWNVbGFTa1Y2VkRab0sxWkpVVXREUVZGRlFTOXNVVVZIYm5OeWQxRjVRVk4xT0M4M1QwNXdNbEpwWlhsUFJDdFJWMHBJTDNOUVdWWXJhbVJUVmt3NENuVkNRbTByWWpCa2JFWmpiRGN4ZGt0TVMzVXpRbVZxTjJ4dllrUkVWbkpYWms1eFNrbDNUVTVEVkZsUE1WZEZhMk42S3pGUFVHMU5iMVpvVm1SeVV6a0thREJWYUVsVE5HTjRaa3RyVTBSWFlXaEJibUY2Y1dveFNsVTFNSEEyV0V4NVVuRkVXVVJGZGtWbU1DdG1TazVITjJ4RmNUQnpSbXRsZEN0aWNtUmFhQXBVVlRSMVpGbFJZMlUzZFRobldIRkNOekZzUVhCcVYzSTVNa3A2ZW5OVmIxTTFaVWRWVDNoVGJGVjZaM1ZMWldSaFkzQjJaMGRVVFRVMGVVTlVVa04yQ25jeWIwRkhVRzVYYjNSRmJWVjJNSE0zVkVWdVFWRXZRWFZoVTJoSFlXZzBSRGsxTVVsNE1qbG5kbTVNTlZoaVkwazFlbVJJY1U5YVNXYzRSRlJJY1RjS1NDdE5kbUZQUzI5SUsySkZja3RWYVd0M05IUnFPVFJpYzFkRVdETTRhR1ZEVVRCQmJsaFRRbnBSUzBOQlVVSnpLMlpPZGxKTGEzaHRha2xMUTBSUmJRcElRblJuWjJ4SlpYSnJOMVF2VmpGaFVtbzJSMmhzTVVSRlVGZHNaV0ZUTUhOdVNURnZSa1V4UmxCc1UzSmFhbEV5VG01Rll6WXdhRGxyY1RGWlFXMXlDblpZVm1KQkwwUk9XRUZKVjNWRllUaHdLMmRNWVRKTmIzWnFOM2sxYUVNdllsSnNNMFI1Y21jd09EZGxaV01yYW1vNVpWTlpOR0oxU2tkWGVsbFpNalFLVW01MVEwZHFSMDFvVDNOc01rd3ZNSG92Ykc1dlRqTkVLMkk1VFVObmJubFBSSGcxTUZVcmFIWkVSVEYzTjBSbmFtUkxlazV2TVdGTVVuaHJVMFZ0ZVFwQk4zbG1ZbTlxUjIxbllXbFFTM0pOZVZOdk1FVTJNVmg0T1d0T1VFVnBPVmwwWjNOdmJsUkxOMlJ3VmpCdVJsTlFjMnRNWWpOWWEydzRRMkpGV0ZSdENqWjZOWFJuWkdaeGVrTnlaamNyTDIxNWRIWkVTMU5pUm1sdU1tRTJTRUp2UmtoclZtOXpkbTVKYlRNM1VXMTFSVk16Y25sWE1WVnpWWFE0VFdWNVZEa0tNSEZOUWtGdlNVSkJVVVFyUlRORlIwRTBZbmxzVlhGV2EyVTJTeXRoV1VVdlJrOXJNbmxGYlhOTmFUY3JNblJ0V2pONWNXY3ZNVEExVHpNM1JVeE5PQXBRZEZCdVJFRjNkVVpHTkVSNVdESlBTVFZOTlVKRllrTTVTU3ROUzNOQllrMDJXV1ZDWVRSclpFMUVWelp1WkZSMVMzVnZjVEpsYzJVMlRtUlJibEE0Q2xSVGRGSXJSSE5zVEdKTmNWRnBRMncxU0hOdFFVeDRWbUVyWkZSall6bFZZVmR5UkdsV05sUk9kMDVTUTFkTldWaGpkSEJJTkV0V1pVVldlRzlWYmxRS1ZYWnZMMWdyVUhVcldIUmphMDFJTjI5d0sxQk5aV1pRYms1RVUyZ3dWRFZaY0ZGa05WWlhaRWRzTDB0S1QyMVFZVkV2UkdKaFozQXdVSFpJT1RsQk1RcFhSSGw0U3pkNE1rOVhVamsyZGpkbFpERnNOa05LVUhCU2NGRXZVVXhpVXpScWNWRlJkVFJ3Y0dONFFtbzJObk5HT1U1Nk1VTnBZemh3YlhGaWMxVklDa2RqVUdoMGFHVlZWV1JYZVhCSVIwZEJkbTF0TVhOVllYaGhTMWh4YnpCQ1FXOUpRa0ZGVGpNMVJVbDBNbGcwTW01blZUWlFZekUwYmxwQlpEY3hjREVLVGtjclkyWjRUWFUzUkVSYVVsQlBWbUZWVTFsMmFIbElZa2Q1T1hab1dqTndNa2t6UTNaRWQwWlpVREZhT0hNek0zbGlOMHBtUkhkWFFrNXhNa0psZGdwdmFrZFhUazlhZG5oWmIwODVNM0oxVHpaNFdtRkNXR1Y2Y1ZneU5tUlJRM2xIUTJSNldrcEdhM2hQYkRoMWNEQkdUbGxCU1dORlVVVjRielZFT1U4ckNrZFFaamRGYkZwa1EzRTRRek1yYVhKWGVsQlFaMHRJVlM5c2VtSkVVVUZKY21aVVlqWXJLemxDZDBGTFRXZElZakUyZHl0UVdDOU1ZM0puZUZsWWRGRUtVVFZGY25vMWNYRklNVmhFZUU1dFJGRlVOVkEyYjJGRlZqSldRbkpHVUdzeE1rTTFkR0V2Y1ZkcGFraGhWVXB6Y1dsR1RtWktPVzk2YzBsTGF6aFRkUXA2VWpoRWRETXpXV2c0YmxKa2MwSndMMUl3UmsxaGVXWnlkWEJsYTBORlIzTm9XVEZvT1dOTldYcHlTMDlLUW5Wa2RtOTVRVlYzU3k4MVVUMEtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogdWZqbGgwOXdoMzc3dGFqZnF0YzF4OTF0c3UwZjRyNXZ4ZXYyejY1OTd3azZ2ZGk1ZnI2ZjY0Y3dlNDN5dzJ4MTY4NnJnaGRoN2EyOHoxZGdveG83aWw1czdpenpmM2tzNXEzbjQ4dXQwdW15ODBxOXNiZHdsN3VyYzFvb280cWgK\"\n + \ }\n ]\n }" headers: cache-control: - no-cache content-length: - - '13084' + - '13072' content-type: - application/json date: - - Thu, 15 Jun 2023 22:45:30 GMT + - Thu, 29 Jun 2023 10:33:16 GMT expires: - '-1' pragma: @@ -1205,65 +1526,63 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-r5thm53g.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-r5thm53g.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/f6636820-5eef-4a84-85ae-8d97224ff67a\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4192' + - '3863' content-type: - application/json date: - - Thu, 15 Jun 2023 22:45:32 GMT + - Thu, 29 Jun 2023 10:33:17 GMT expires: - '-1' pragma: @@ -1291,14 +1610,14 @@ interactions: "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"}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_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"}]}, + "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}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/f6636820-5eef-4a84-85ae-8d97224ff67a"}]}, "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"}}, @@ -1314,73 +1633,71 @@ interactions: Connection: - keep-alive Content-Length: - - '2809' + - '2443' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-r5thm53g.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-r5thm53g.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/f6636820-5eef-4a84-85ae-8d97224ff67a\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7b77ca2a-6154-4972-aff2-5ec7d65fb37f?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4190' + - '3861' content-type: - application/json date: - - Thu, 15 Jun 2023 22:45:38 GMT + - Thu, 29 Jun 2023 10:33:22 GMT expires: - '-1' pragma: @@ -1396,7 +1713,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -1414,14 +1731,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7b77ca2a-6154-4972-aff2-5ec7d65fb37f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2de6de3a-bd4d-5c4c-83f7-c293c2f21851\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T22:45:38.2537417Z\"\n }" + string: "{\n \"name\": \"2aca777b-5461-7249-aff2-5ec7d65fb37f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:33:22.1045302Z\"\n }" headers: cache-control: - no-cache @@ -1430,7 +1747,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 22:45:39 GMT + - Thu, 29 Jun 2023 10:33:22 GMT expires: - '-1' pragma: @@ -1462,14 +1779,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7b77ca2a-6154-4972-aff2-5ec7d65fb37f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2de6de3a-bd4d-5c4c-83f7-c293c2f21851\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T22:45:38.2537417Z\"\n }" + string: "{\n \"name\": \"2aca777b-5461-7249-aff2-5ec7d65fb37f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:33:22.1045302Z\"\n }" headers: cache-control: - no-cache @@ -1478,7 +1795,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 22:46:10 GMT + - Thu, 29 Jun 2023 10:33:52 GMT expires: - '-1' pragma: @@ -1510,14 +1827,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7b77ca2a-6154-4972-aff2-5ec7d65fb37f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2de6de3a-bd4d-5c4c-83f7-c293c2f21851\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T22:45:38.2537417Z\"\n }" + string: "{\n \"name\": \"2aca777b-5461-7249-aff2-5ec7d65fb37f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:33:22.1045302Z\"\n }" headers: cache-control: - no-cache @@ -1526,7 +1843,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 22:46:40 GMT + - Thu, 29 Jun 2023 10:34:23 GMT expires: - '-1' pragma: @@ -1558,14 +1875,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7b77ca2a-6154-4972-aff2-5ec7d65fb37f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2de6de3a-bd4d-5c4c-83f7-c293c2f21851\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T22:45:38.2537417Z\"\n }" + string: "{\n \"name\": \"2aca777b-5461-7249-aff2-5ec7d65fb37f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:33:22.1045302Z\"\n }" headers: cache-control: - no-cache @@ -1574,7 +1891,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 22:47:10 GMT + - Thu, 29 Jun 2023 10:34:53 GMT expires: - '-1' pragma: @@ -1606,15 +1923,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7b77ca2a-6154-4972-aff2-5ec7d65fb37f?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"2aca777b-5461-7249-aff2-5ec7d65fb37f\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:33:22.1045302Z\",\n \"endTime\": + \"2023-06-29T10:35:20.6593052Z\"\n }" headers: cache-control: - no-cache @@ -1623,7 +1940,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 22:47:39 GMT + - Thu, 29 Jun 2023 10:35:23 GMT expires: - '-1' pragma: @@ -1655,66 +1972,64 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-r5thm53g.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-r5thm53g.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/f6636820-5eef-4a84-85ae-8d97224ff67a\"\n + \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/4101760d-4fac-43c1-aa2a-5a22b7a2e5ec\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4416' + - '4087' content-type: - application/json date: - - Thu, 15 Jun 2023 22:47:40 GMT + - Thu, 29 Jun 2023 10:35:24 GMT expires: - '-1' pragma: @@ -1746,66 +2061,64 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-r5thm53g.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-r5thm53g.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/f6636820-5eef-4a84-85ae-8d97224ff67a\"\n + \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/4101760d-4fac-43c1-aa2a-5a22b7a2e5ec\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4416' + - '4087' content-type: - application/json date: - - Thu, 15 Jun 2023 22:47:42 GMT + - Thu, 29 Jun 2023 10:35:25 GMT expires: - '-1' pragma: @@ -1837,66 +2150,64 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-r5thm53g.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-r5thm53g.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/f6636820-5eef-4a84-85ae-8d97224ff67a\"\n + \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/4101760d-4fac-43c1-aa2a-5a22b7a2e5ec\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4416' + - '4087' content-type: - application/json date: - - Thu, 15 Jun 2023 22:47:43 GMT + - Thu, 29 Jun 2023 10:35:26 GMT expires: - '-1' pragma: @@ -1924,14 +2235,15 @@ interactions: "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_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"}]}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_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/f6636820-5eef-4a84-85ae-8d97224ff67a"}, + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/4101760d-4fac-43c1-aa2a-5a22b7a2e5ec"}]}, "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"}}, @@ -1948,74 +2260,72 @@ interactions: Connection: - keep-alive Content-Length: - - '3027' + - '2698' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-r5thm53g.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-r5thm53g.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/f6636820-5eef-4a84-85ae-8d97224ff67a\"\n + \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/4101760d-4fac-43c1-aa2a-5a22b7a2e5ec\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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/a24ea88c-b26d-49b0-b34b-ccb1f3aa5eb2?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/52a709c6-10b0-4b22-ac00-a9eef227c84a?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4414' + - '4085' content-type: - application/json date: - - Thu, 15 Jun 2023 22:47:49 GMT + - Thu, 29 Jun 2023 10:35:31 GMT expires: - '-1' pragma: @@ -2031,7 +2341,151 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' + 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/52a709c6-10b0-4b22-ac00-a9eef227c84a?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"c609a752-b010-224b-ac00-a9eef227c84a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:35:31.5735166Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:35: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 scale + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/52a709c6-10b0-4b22-ac00-a9eef227c84a?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"c609a752-b010-224b-ac00-a9eef227c84a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:35:31.5735166Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10: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 scale + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/52a709c6-10b0-4b22-ac00-a9eef227c84a?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"c609a752-b010-224b-ac00-a9eef227c84a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:35:31.5735166Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:36: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 @@ -2049,14 +2503,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/52a709c6-10b0-4b22-ac00-a9eef227c84a?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 }" + string: "{\n \"name\": \"c609a752-b010-224b-ac00-a9eef227c84a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:35:31.5735166Z\"\n }" headers: cache-control: - no-cache @@ -2065,7 +2519,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 22:47:49 GMT + - Thu, 29 Jun 2023 10:37:02 GMT expires: - '-1' pragma: @@ -2097,14 +2551,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/52a709c6-10b0-4b22-ac00-a9eef227c84a?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 }" + string: "{\n \"name\": \"c609a752-b010-224b-ac00-a9eef227c84a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:35:31.5735166Z\"\n }" headers: cache-control: - no-cache @@ -2113,7 +2567,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 22:48:20 GMT + - Thu, 29 Jun 2023 10:37:32 GMT expires: - '-1' pragma: @@ -2145,14 +2599,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/52a709c6-10b0-4b22-ac00-a9eef227c84a?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 }" + string: "{\n \"name\": \"c609a752-b010-224b-ac00-a9eef227c84a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:35:31.5735166Z\"\n }" headers: cache-control: - no-cache @@ -2161,7 +2615,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 22:48:50 GMT + - Thu, 29 Jun 2023 10:38:03 GMT expires: - '-1' pragma: @@ -2193,14 +2647,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/52a709c6-10b0-4b22-ac00-a9eef227c84a?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 }" + string: "{\n \"name\": \"c609a752-b010-224b-ac00-a9eef227c84a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:35:31.5735166Z\"\n }" headers: cache-control: - no-cache @@ -2209,7 +2663,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 22:49:20 GMT + - Thu, 29 Jun 2023 10:38:32 GMT expires: - '-1' pragma: @@ -2241,14 +2695,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/52a709c6-10b0-4b22-ac00-a9eef227c84a?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 }" + string: "{\n \"name\": \"c609a752-b010-224b-ac00-a9eef227c84a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:35:31.5735166Z\"\n }" headers: cache-control: - no-cache @@ -2257,7 +2711,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 22:49:50 GMT + - Thu, 29 Jun 2023 10:39:02 GMT expires: - '-1' pragma: @@ -2289,14 +2743,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/52a709c6-10b0-4b22-ac00-a9eef227c84a?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 }" + string: "{\n \"name\": \"c609a752-b010-224b-ac00-a9eef227c84a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:35:31.5735166Z\"\n }" headers: cache-control: - no-cache @@ -2305,7 +2759,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 22:50:21 GMT + - Thu, 29 Jun 2023 10:39:33 GMT expires: - '-1' pragma: @@ -2337,15 +2791,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/52a709c6-10b0-4b22-ac00-a9eef227c84a?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"c609a752-b010-224b-ac00-a9eef227c84a\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:35:31.5735166Z\",\n \"endTime\": + \"2023-06-29T10:40:02.9799901Z\"\n }" headers: cache-control: - no-cache @@ -2354,7 +2808,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 22:50:50 GMT + - Thu, 29 Jun 2023 10:40:03 GMT expires: - '-1' pragma: @@ -2386,66 +2840,64 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-r5thm53g.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-r5thm53g.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/4101760d-4fac-43c1-aa2a-5a22b7a2e5ec\"\n + \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/f6636820-5eef-4a84-85ae-8d97224ff67a\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4416' + - '4087' content-type: - application/json date: - - Thu, 15 Jun 2023 22:50:51 GMT + - Thu, 29 Jun 2023 10:40:04 GMT expires: - '-1' pragma: @@ -2477,66 +2929,64 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-r5thm53g.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-r5thm53g.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/4101760d-4fac-43c1-aa2a-5a22b7a2e5ec\"\n + \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/f6636820-5eef-4a84-85ae-8d97224ff67a\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4416' + - '4087' content-type: - application/json date: - - Thu, 15 Jun 2023 22:50:53 GMT + - Thu, 29 Jun 2023 10:40:05 GMT expires: - '-1' pragma: @@ -2570,8 +3020,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/cliakstest000001?api-version=2023-05-01 response: @@ -2579,17 +3029,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3fa8b304-e673-4cf1-9ebd-4d3f89ffcdcf?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 15 Jun 2023 22:50:55 GMT + - Thu, 29 Jun 2023 10:40:06 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/3fa8b304-e673-4cf1-9ebd-4d3f89ffcdcf?api-version=2016-03-30 pragma: - no-cache server: @@ -2599,7 +3049,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_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 index a2e50947da5..1e00c8484c7 100644 --- 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.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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/\\\"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}" + 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/\\\"f5350a33-54b5-4f57-92c9-3931b49a7b04\\\"\",\r\n \"type\": + \"Microsoft.Network/publicIPPrefixes\",\r\n \"location\": \"westus2\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": + \"7e1ee292-9085-4a5f-bf7c-9ed14060df2d\",\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/d14c723a-4eff-4375-9078-7b1963678bb6?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/1feb888c-346a-4955-bf5a-f477e9c5bc6b?api-version=2022-09-01 cache-control: - no-cache content-length: @@ -43,7 +43,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 11:50:41 GMT + - Thu, 29 Jun 2023 10:40:11 GMT expires: - '-1' pragma: @@ -56,12 +56,61 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 41efb662-0f44-4630-a001-45382763a16d + - af45ac15-2b03-4712-a04c-6d6658d950c8 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 - message: Created + message: '' +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network public-ip prefix create + Connection: + - keep-alive + ParameterSetName: + - -g -n --location --length + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/1feb888c-346a-4955-bf5a-f477e9c5bc6b?api-version=2022-09-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: + - Thu, 29 Jun 2023 10:40:11 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: + - 8cd6f78f-63f6-4943-aec9-b51e53d9d16a + status: + code: 200 + message: '' - request: body: null headers: @@ -76,9 +125,9 @@ interactions: ParameterSetName: - -g -n --location --length User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/1feb888c-346a-4955-bf5a-f477e9c5bc6b?api-version=2022-09-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -90,7 +139,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 11:50:42 GMT + - Thu, 29 Jun 2023 10:40:21 GMT expires: - '-1' pragma: @@ -107,10 +156,10 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 583d69d1-08fb-4e11-a7bc-6d60ccc07f30 + - 296305cf-ac6b-4c0e-ad0f-5561d6dfa195 status: code: 200 - message: OK + message: '' - request: body: null headers: @@ -125,20 +174,19 @@ interactions: ParameterSetName: - -g -n --location --length User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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/\\\"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}" + 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/\\\"9a9f00bb-6b27-425d-9aac-b6a2ec2a2536\\\"\",\r\n \"type\": + \"Microsoft.Network/publicIPPrefixes\",\r\n \"location\": \"westus2\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": + \"7e1ee292-9085-4a5f-bf7c-9ed14060df2d\",\r\n \"prefixLength\": 29,\r\n + \ \"publicIPAddressVersion\": \"IPv4\",\r\n \"ipPrefix\": \"4.154.81.176/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 @@ -147,9 +195,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 11:50:42 GMT + - Thu, 29 Jun 2023 10:40:21 GMT etag: - - W/"e0f8c280-02bf-44c5-87c9-5214a2bbb479" + - W/"9a9f00bb-6b27-425d-9aac-b6a2ec2a2536" expires: - '-1' pragma: @@ -166,10 +214,10 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 478f164f-d2b5-4779-bd21-5ca6eaad19cc + - d9848a50-e777-4831-8ec7-d8cccadd2774 status: code: 200 - message: OK + message: '' - request: body: '{"location": "westus2", "properties": {"prefixLength": 29, "publicIPAddressVersion": "IPv4"}, "sku": {"name": "Standard"}}' @@ -189,24 +237,24 @@ interactions: ParameterSetName: - -g -n --location --length User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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/\\\"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}" + 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/\\\"f0207d37-54c1-4eb2-b484-1dadb8bca82b\\\"\",\r\n \"type\": + \"Microsoft.Network/publicIPPrefixes\",\r\n \"location\": \"westus2\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": + \"a6336872-d0c1-421b-baf7-c5d6feaeea84\",\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/2add75ae-b763-4e71-8e9f-e1cbee065c77?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/0a3d4c13-666e-4723-be86-84060c9109ac?api-version=2022-09-01 cache-control: - no-cache content-length: @@ -214,7 +262,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 11:50:46 GMT + - Thu, 29 Jun 2023 10:40:24 GMT expires: - '-1' pragma: @@ -227,7 +275,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 94dec611-337d-4f59-9173-17ca8208fb37 + - 7148dbb1-59c8-45d3-b116-6408f1ed2c0a x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -247,9 +295,58 @@ interactions: ParameterSetName: - -g -n --location --length User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/0a3d4c13-666e-4723-be86-84060c9109ac?api-version=2022-09-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: + - Thu, 29 Jun 2023 10:40:24 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: + - 9b1608b2-e7ad-448b-b4c1-d370fa2eb05a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network public-ip prefix create + Connection: + - keep-alive + ParameterSetName: + - -g -n --location --length + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/0a3d4c13-666e-4723-be86-84060c9109ac?api-version=2022-09-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -261,7 +358,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 11:50:46 GMT + - Thu, 29 Jun 2023 10:40:34 GMT expires: - '-1' pragma: @@ -278,7 +375,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0e145122-a931-4e21-b327-85fb9c2307c5 + - c0d4c3ff-85ae-4285-8227-14494a8a580f status: code: 200 message: OK @@ -296,31 +393,30 @@ interactions: ParameterSetName: - -g -n --location --length User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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/\\\"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}" + 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/\\\"a8b976a1-0adc-4954-bcd3-195f1107b58d\\\"\",\r\n \"type\": + \"Microsoft.Network/publicIPPrefixes\",\r\n \"location\": \"westus2\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": + \"a6336872-d0c1-421b-baf7-c5d6feaeea84\",\r\n \"prefixLength\": 29,\r\n + \ \"publicIPAddressVersion\": \"IPv4\",\r\n \"ipPrefix\": \"4.154.81.216/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: - - Thu, 15 Jun 2023 11:50:46 GMT + - Thu, 29 Jun 2023 10:40:34 GMT etag: - - W/"df2ed3c9-92d0-4830-89c9-72fd2f331545" + - W/"a8b976a1-0adc-4954-bcd3-195f1107b58d" expires: - '-1' pragma: @@ -337,7 +433,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - cea8cc8c-b7c7-4a0e-8876-1b8a3d54f18e + - 51962fc6-66dd-4e2b-bdb8-759ad324609a status: code: 200 message: OK @@ -356,8 +452,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -373,7 +469,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 11:50:48 GMT + - Thu, 29 Jun 2023 10:40:35 GMT expires: - '-1' pragma: @@ -395,8 +491,8 @@ 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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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", + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": @@ -414,69 +510,68 @@ interactions: Connection: - keep-alive Content-Length: - - '2081' + - '1752' 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-zfaw7aob.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000004-zfaw7aob.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/69a4d5ba-11f9-42b7-a6f1-470bc45294aa?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/26a2e519-7823-4829-8753-a7ba2d3a13bf?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3644' + - '3315' content-type: - application/json date: - - Thu, 15 Jun 2023 11:50:55 GMT + - Thu, 29 Jun 2023 10:40:46 GMT expires: - '-1' pragma: @@ -507,14 +602,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/26a2e519-7823-4829-8753-a7ba2d3a13bf?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bad5a469-f911-b742-a6f1-470bc45294aa\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T11:50:55.1899851Z\"\n }" + string: "{\n \"name\": \"19e5a226-2378-2948-8753-a7ba2d3a13bf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:40:46.9491139Z\"\n }" headers: cache-control: - no-cache @@ -523,7 +618,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 11:50:55 GMT + - Thu, 29 Jun 2023 10:40:46 GMT expires: - '-1' pragma: @@ -556,14 +651,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/26a2e519-7823-4829-8753-a7ba2d3a13bf?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bad5a469-f911-b742-a6f1-470bc45294aa\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T11:50:55.1899851Z\"\n }" + string: "{\n \"name\": \"19e5a226-2378-2948-8753-a7ba2d3a13bf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:40:46.9491139Z\"\n }" headers: cache-control: - no-cache @@ -572,7 +667,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 11:51:25 GMT + - Thu, 29 Jun 2023 10:41:17 GMT expires: - '-1' pragma: @@ -605,14 +700,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/26a2e519-7823-4829-8753-a7ba2d3a13bf?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bad5a469-f911-b742-a6f1-470bc45294aa\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T11:50:55.1899851Z\"\n }" + string: "{\n \"name\": \"19e5a226-2378-2948-8753-a7ba2d3a13bf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:40:46.9491139Z\"\n }" headers: cache-control: - no-cache @@ -621,7 +716,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 11:51:56 GMT + - Thu, 29 Jun 2023 10:41:47 GMT expires: - '-1' pragma: @@ -654,14 +749,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/26a2e519-7823-4829-8753-a7ba2d3a13bf?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bad5a469-f911-b742-a6f1-470bc45294aa\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T11:50:55.1899851Z\"\n }" + string: "{\n \"name\": \"19e5a226-2378-2948-8753-a7ba2d3a13bf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:40:46.9491139Z\"\n }" headers: cache-control: - no-cache @@ -670,7 +765,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 11:52:26 GMT + - Thu, 29 Jun 2023 10:42:17 GMT expires: - '-1' pragma: @@ -703,15 +798,309 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/26a2e519-7823-4829-8753-a7ba2d3a13bf?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"19e5a226-2378-2948-8753-a7ba2d3a13bf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:40:46.9491139Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:42: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 + --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ip-prefixes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/26a2e519-7823-4829-8753-a7ba2d3a13bf?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"19e5a226-2378-2948-8753-a7ba2d3a13bf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:40:46.9491139Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:43: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 + --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ip-prefixes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/26a2e519-7823-4829-8753-a7ba2d3a13bf?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"19e5a226-2378-2948-8753-a7ba2d3a13bf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:40:46.9491139Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:43: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 + --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ip-prefixes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/26a2e519-7823-4829-8753-a7ba2d3a13bf?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"19e5a226-2378-2948-8753-a7ba2d3a13bf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:40:46.9491139Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:44: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 + --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ip-prefixes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/26a2e519-7823-4829-8753-a7ba2d3a13bf?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"19e5a226-2378-2948-8753-a7ba2d3a13bf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:40:46.9491139Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:44: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 + --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ip-prefixes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/26a2e519-7823-4829-8753-a7ba2d3a13bf?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"19e5a226-2378-2948-8753-a7ba2d3a13bf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:40:46.9491139Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:45: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 + --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ip-prefixes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/26a2e519-7823-4829-8753-a7ba2d3a13bf?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"19e5a226-2378-2948-8753-a7ba2d3a13bf\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:40:46.9491139Z\",\n \"endTime\": + \"2023-06-29T10:45:37.6984974Z\"\n }" headers: cache-control: - no-cache @@ -720,7 +1109,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:20:58 GMT + - Thu, 29 Jun 2023 10:45:49 GMT expires: - '-1' pragma: @@ -753,62 +1142,61 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-zfaw7aob.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000004-zfaw7aob.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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: - - '3862' + - '3533' content-type: - application/json date: - - Thu, 15 Jun 2023 12:20:59 GMT + - Thu, 29 Jun 2023 10:45:49 GMT expires: - '-1' pragma: @@ -840,67 +1228,62 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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-zfaw7aob.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000004-zfaw7aob.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": + 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n + \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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: - - '4117' + - '3788' content-type: - application/json date: - - Thu, 15 Jun 2023 12:21:00 GMT + - Thu, 29 Jun 2023 10:45:50 GMT expires: - '-1' pragma: @@ -932,67 +1315,62 @@ interactions: ParameterSetName: - -g -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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-zfaw7aob.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000004-zfaw7aob.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": + 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n + \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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: - - '4117' + - '3788' content-type: - application/json date: - - Thu, 15 Jun 2023 12:21:02 GMT + - Thu, 29 Jun 2023 10:45:51 GMT expires: - '-1' pragma: @@ -1024,62 +1402,61 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-zfaw7aob.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000004-zfaw7aob.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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: - - '3862' + - '3533' content-type: - application/json date: - - Thu, 15 Jun 2023 12:21:04 GMT + - Thu, 29 Jun 2023 10:45:52 GMT expires: - '-1' pragma: @@ -1113,24 +1490,24 @@ interactions: ParameterSetName: - -g -n --file User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ - \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSUTFSelRHVXdRVkJrU1dSSlRGUlRUVXRJZWsxVlJFRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxVVZYaE5WRkY0VFZSc1lVZEJPSGxOUkZWNlRVUlplRTVVUlhoT1ZFVjRUMVp2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVNMkNsZG5SRTlEUVdVcmVtZDZkbmcwV25CeVExRmxZMlpIVUVaVU1FMVVaMVl6UXpKc1dUSnVjVmRMUWtKclYwOVVSME5SVVRSUlNsZHRTbFE1WmpJelVEa0tXbmhyVFRKaFJFYzBlamxQU21wbVNIRnViMDV1VkZGRE1HdFlSVUpqZFdWVVluRTVPRWRzVlcxMlIyNVNZelZFYVhkSVFVUlJSMjkwTVRNd1FTc3pVZ293TVRaTlVIWTVhM2R1UTNkdGJGSjJPVmt6ZUZNM1dtTm5UVXhTZVdGSWRIUk9USEJHY2toR1NtSkxSSEEwY0VKWGVHZ3ZVWGhGVTJrelVESXJNelJKQ2pGak9UVTBla0ZDVDBSRFlWVnpjVlFyYkRaTVVFUkhRUzlUYjJ0Nk5tdDRNMmt5UmtGdFJUSnBkRk5pUVVNMlptSTViMDVCYzBaQlZGVlJkSEF5YVZnS2JIZHVTSFpXY1RNM1NEUldXazFxVDFwWlkyaEZZMWh6TWtWQkwySm1ha2RMY3pSeldWUnFkMkl6Y2tWTlJtTnJiekZhYTBWeVUwMXBZekl6UW5rM2NBcElXazFrY2l0dGVIRm5iMkpRTWpVM05WaEtjUzgxTVhCeGF5dG9kME5TUlVaVmFqUm5aMWRzZERGUk9GQnphM0pYUWxjNFlVVk9TMWt6VFRkeFJXdFZDamhDSzFNMWRVSktOWFV4UlRORlJtMUpjRmhTWWpoamFqSXliVk0zY0U5UVJtRnRRbUZ4SzA5SFFURjJZVTFhUlRCdWFubDZXVmx2WkRGaWNYUkRNRTBLUjNOVGRYVlFTUzg0ZFRsMloxSnBiV2RYZEZsdWVrWnNkMmhYU0ZkTlRWaHRkM1Y0T1d4VVMydDJPVTlOUmxCR2NrdFVOSGRZWTJocFVuTkRWRGs0Y2dweWVETnRWVVZ5TlVwblpUQlFNSE5DTW1kMVpubHZTWGhoZWtKbVkyZFNhRUYwTldKd2NFUk9TbTVoVm1GV1kyUjBaa3MxWkhoTVFWSlRibWgyVjNkeUNuaEZMMjFxU1VoeE56UXZiVGRIU0VabGVWcFRha1ZWTjJKTldtMVlUR1F2VDBrdk9Hc3hZamhDUWtKV1pFeDBOSEY2V2xvM1pHeEJZMDAxUW05bU5FRUtjVmxUTTI5RmJEZEpiRXRQWm01a2VXdENXVWgyT0ZGSVZGbDVOVmQyVlZoNlR6QnlTa1JQUTJWUlNVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWQmJUTklXRGhoZEcwME1GRkxiMFJFQ21oNmVqTXJaRmhNTkVOSmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGRlExTTVLM1pDTDJnNWJYRndSV0pJVVVkbFNEUkZlSFJ0YzNrS05rY3hTekE1YW5WM01TOUJhWEJKZDA0NWRXUmhVVTVJV0hWWFpYcE5aekp0Y0ZKMFp6SllVVEpvWnl0Uk1FOUtkemd2T0RkM2NtSm9XRXhyUkdrMFJBcDVibGhNWVVka1EySlZibTRySzNsdE5ubFFiVU54VnpkNWIwVlZURTlUVEZSck5rWTBPRXhWVGxSb2FEQkRiekZGYjFWcGRFb3dRMkZOWVZSUmRERXlDamczWmpjd04ybEtNMDAwWldSbVRsaDVhRWxxWlhkV1lWb3JMM0JNYUd0SkwzZExUMkZQV0hOeFJ6azBhSFUxWlVad1kycFJjQzlUUkRGSVFsaFJVelFLTlhCM1RuTk9hbXhKVXpoRlppOUpkMGRWVUVrMWFXd3dTREpQVm5sM2JVSXJPRWd4UWl0TFJrbDZPRUpKZW5WdVQxVk5LME5GTUM5bmVEQjROMk5aUkFvdmFsZEhSMUUxYzFaMlduQTBjMmhUVjNsR2FXVnVhMVpGVDNkNlFXdFBaMHhxZW5vMVpVODNUemNyV1RNMGJrUTRVSFJTYkhac2NsTlpLM2RpUlhFMkNsSXJkalZPWjA5M2VITkxZVGh1ZFUxblJsVk1TSFZ3YTNWM2NHOTNZemx4V1dsTE9FRndTRXRJTlRGNk5VWjNaelkxT0Vvd1NqazJOMGhtWVZwVkwySUtTbGxLWldKSlZUbEhSREZUVWpaNmVrOUhUbWhTVVc5V05uTjFjSEZvZEhsYU1tdGFPR2xNY0hWUGNuVXpUbmhtVVRsNFMyNDRjWFJPVjFOVVoyRkJjd3BXY21Gd1FuVjNibko0YTNsVlNrVTNZazg1YVU5WmJUUTVVa1pGZVZob2NEaDNZbTl0YlU5SFZFaE1WM3B5TW1kcWEzaEhMMVpEYW5SSVMyWnFhbkp6Q25wNVUxa3llRWhMVW1jeWJubHFTV2N4TkhOUWVESlZTa1I2Y0U5V2FFdzRNa1JPWWtGalVtd3lNV1ZHWVdKYU9XaHNja3N3U2tGaU9GRkdNMWwyYm1jS01GVndibmRMVVhWMlJEQjFURXAzWjFWWk5WSlhhelUyZFc5dmIwdzFTRzlCTW1wSk9XcGhTRVJUUVRoSFVqUmhPVmxoTmt4MmRYTlhTRkY2WlhCeE13cHJPVUkxVjBobFZIbHlNMmRMUzNFekNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2RuczdlenR6cXAtNHhuYmV3YW4uaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3R2NG1jb3IKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3R2NG1jb3IKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3RrdTRnMjZ6dGphX2NsaWFrc3Rlc3R2NG1jb3IKICBuYW1lOiBjbGlha3N0ZXN0djRtY29yCmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdHY0bWNvcgpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3RrdTRnMjZ6dGphX2NsaWFrc3Rlc3R2NG1jb3IKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJVkVORFFYZFhaMEYzU1VKQlowbFJZMmg2ZUVVeVVqZEhVRWxDZEcxRFVESTNWV2N6UkVGT1FtZHJjV2hyYVVjNWR6QkNRVkZ6UmtGRVFVNEtUVkZ6ZDBOUldVUldVVkZFUlhkS2FsbFVRV1ZHZHpCNVRYcEJNazFVVlhoTlZGRjRUVlJzWVVaM01IbE9WRUV5VFZSVmVFMVVWWGhOVkd4aFRVUkJlQXBHZWtGV1FtZE9Wa0pCYjFSRWJrNDFZek5TYkdKVWNIUlpXRTR3V2xoS2VrMVNWWGRGZDFsRVZsRlJSRVYzZUhSWldFNHdXbGhLYW1KSGJHeGlibEYzQ21kblNXbE5RVEJIUTFOeFIxTkpZak5FVVVWQ1FWRlZRVUUwU1VORWQwRjNaMmRKUzBGdlNVTkJVVVJMY1ZwME5ITnNia0pxYUhaRGFtMW9Sa3RrWTBNS1kzbG1aMk5CWkhVd1dsQXlXSEl2VDBSVFpVRklTek54ZVUxMlJEZ3JZVFpsU0ZKdldXUnROek54T0ZSb0szWXdXRlZ1YVRNMmMyaG1ZelZhYURaM1V3cDJlak55ZEdaVVUweFNSa2hqUWt4UFZrdGlSWGRyZUVwRWRFazRUbk40YWtkVVNWSjRhbmRIY0VFelkwc3pkbEZ3VFVSWmVXUkxMekZOV0dSMlJWSkZDbXB1TXpsUE9EVm9ZWGQ2WWpGbmJtMUZVRzFKVlVKQ04yWndOMWhCUVd4MlpFMTZSR2RZT0hwU1ltbEVOVzFqT0cxeFJGTnBhVGRQUmpsbFkwTkxRMm9LUW1kdFRUSllSbTFaVVdWWFRqUm5PVGxYUVc5TlRUVkxVMWxHS3pBeE5reExSM0pKTUcxc1NuaFBkMmMxVjJWMVVYTlFNa1oxWjJ4cVQwVTJkVGRpVGdwNWIybzFiRlJUWjNWVVMzVldhamx5ZVhoM2NXaHlOMWhTZDNrck4ycEJTMnd6UWpsTU9HOWlTa2c0YnpoaU5XSXphWFZSY21kTFYwaDZlRkJtZG0xcENpOUNkRWRwU2xvdlYzRnRZa3M1UjI0clRuSkZhemswVFc1UlRVdzJiMVZhTldKcFZGQnFPWGhrVkRCcWQyNVRRbXRuTHpWM0wzaDFaV05FVDFaclVFZ0tkSG80VDJkYVpHbEVVSEpTVWlzemQyODRSRE5QWlhrNGRrVlVObE4wUkRoYVREUXJSMGR6YkdOeE1rWnhkVGhQV1d4U1NucHZTMGhhVTBSa1ptSTBVUXBPU3pZNVIwVkplVEZPTVZwUGN6Sk1VV2RQYldGT2RWUm5Nbkp3Uldwck5XZFdiV0YzU214R01GaFdNVmRIZDI1d1IwNXdZMXA1ZDJwUmREZHRUMGxYQ210VmVrczFWWEJrUW1aQ01HcFlNaXM1TkRob1IyNUxNbm94UzJseVVETnRaV1JFZVZOemFYRldNVXRyYzBWVFoySmFkMmxzZFU5RllWb3dURGxHUXk4S1luWkJUR2s0TkhjNU1VaEtaSEZtU1V4dk1VTlBkR2RUTVZCdk1WZDVOR2RRVjBkaGFFZHNRa3N6TTFObmMyWnJlR0ZRY0UwdksyMUtSR1pYV0dkV05BcGlkMUk0U2l0SksyVmFOV05vWjI5aVRXbE1WamRSU1VSQlVVRkNiekZaZDFaRVFVOUNaMDVXU0ZFNFFrRm1PRVZDUVUxRFFtRkJkMFYzV1VSV1VqQnNDa0pCZDNkRFoxbEpTM2RaUWtKUlZVaEJkMGwzUkVGWlJGWlNNRlJCVVVndlFrRkpkMEZFUVdaQ1owNVdTRk5OUlVkRVFWZG5RbEZEWW1Oa1puaHhNbUlLYWxKQmNXZE5UMGhRVUdZMU1XTjJaMGxxUVU1Q1oydHhhR3RwUnpsM01FSkJVWE5HUVVGUFEwRm5SVUZpZVhkNFNHRk9NR0pSUTIxWVIwdDFiVzEzYmdwbFRtOWhVMFk1UTBoSFlVVnJNVFp3VTJ4NFMwTXlhV1pOWTFWcVluRlFRM3B5U1hkQ1ZrMUJha0ZVWkZwRFlURlNiVzU1TWl0V2FVVmtOMW96ZWtGM0NqWXphVUo1Um1oM01YUktRblpOV1ZoVFExQTBaRFJOY2xKT2JVZHZOMVpTZVdONGRrdHBXRmRrTnpWM2RWZFpSakZsUTNZMVZuTnpOVE5ITTJkaGQySUtWSFl5U2pWWlRERnBkRGM0YW5ncmJrUktkM05PVUVNNGFsQnBiVTgzUTJSVWRrdzJXVzkyZDFJNFZqUlBRM05rT1ZabmJFNVFPRTl6YTBGWmNFcFVlZ3BhVTBwa2NDdHNaemxhZVVwRlRtOUhRbTlVZWtvNU5ITmpjRWxTTlhsUE1WZHFPVGhHZWs1WVIzTlhiM0ZETkVGUmQxQkhaV3N6T1RKMlRUTkZjV1pTQ2xSaVFUSTBXVWxGUzJOME5UUnRlRzFMV1d0eVpIUnNhVWN5Tm1KVk1EQk1jelZuTmpRMlUzcFlXbEJDVERCblNFRk9PV2c1TkV0M1FWUTRNazl1VEdvS2NIQlRLMnRsVjFGbVRqTkNaV015UXk5b1JIcFhaRXA2UmtwSE4wTmtWWGQ0U1VndmRHRmlabFlyVHpBeVV6TnlNekpEUjIxSlFVbFJjVTh4WTA5V01ncG5XSGxpWlc0M2NUTm5VbWxCUTFKdWNuUTRjM3BTZW10MlYyODJTMVpZWmtNeVYxbFpUR2M0YTFabFZqQkhNamgxWjJGSlNIUkVVRmtyWTJGSWJqRjJDazQzY2t0RllWZENaR3BCZFRFdk4wOUNVa1Z4TTNwQmRreE5jVTkzWWxrMVVFa3JTSGhMTDBaT2JqSkJjVFJPWVhKRlZXeG1VRzR3YWtGUmNVdFZVaklLWjBOd1YyNHlkSEY1YkhSS1VVWm5iSEp0ZFhCMk5sZHRSWGRKUlVGdWJqVm1TbmhtU0dSMWJFRnlaRmQyV1hSRGJVSklUWFV2UnpGMWIzVnlLM0oxU0FwcUwwOUhNRzkzSzFsWE0yTkhZMk42WWxSNWMzZDFSakpUZG5sbll6ZGpiVzlrUWtocGEySkZNRzltY1VOUGEzUkpZVUpCYkZacEwzWTRVRXRRV2xaeENucEpabTkwVTJwUE9YaHhWMlY0YUc5RVVrUlBkR2RqUFFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTbmRKUWtGQlMwTkJaMFZCZVhGdFltVk1TbHAzV1RSaWQyODFiMUpUYmxoQmJrMXVORWhCU0dKMFIxUTViRFl2ZW1jd2JtZENlWFEyYzJwTUNuY3ZVRzExYm1nd1lVZElXblU1Tm5aRk5HWnlPVVl4U2pSMEszSkpXRE5QVjFsbGMwVnlPRGsyTjFnd01Ha3dVbEl6UVZONmJGTnRlRTFLVFZOUk4xTUtVRVJpVFZsNGEzbEZZMWs0UW5GUlRqTkRkRGN3UzFSQk1rMXVVM1k1VkVZelluaEZVa2sxT1M5VWRrOVpWM05OTWpsWlNqVm9SRFZwUmtGUlpUTTJaUW94ZDBGS1lqTlVUWGMwUmk5Tk1GYzBaeXRhYmxCS2NXY3diMjkxZW1obVdHNUJhV2R2ZDFsS2FrNXNlRnB0UlVoc2FtVkpVR1pXWjB0RVJFOVRhMjFDQ21aMFRtVnBlV2h4ZVU1S2NGTmpWSE5KVDFadWNtdE1SRGxvWW05S1dYcG9UM0oxTW5wamNVa3JXbFV3YjB4cmVYSnNXUzloT0hOalMyOWhLekV3WTAwS2RuVTBkME53WkhkbVV5OUxSM2xTTDB0UVJ5dFhPVFJ5YTBzMFEyeG9PRGhVTXpjMWIzWjNZbEp2YVZkbU1YRndiWGwyVW5BdmFtRjRTbEJsUkVvd1JBcERLM0ZHUjJWWE5HdDZOQzlqV0ZVNVNUaEtNR2RhU1ZBclkxQTRZbTV1UVhwc1drUjROMk12Ukc5SFdGbG5lall3VldaME9FdFFRVGw2Ym5OMlRIaEZDaXRyY2xFdlIxTXJVR2hvY2twWVMzUm9ZWEoyUkcxS1ZWTmpOa05vTWxWbk0xZ3lLMFZFVTNWMlVtaERUWFJVWkZkVWNrNXBNRWxFY0cxcVltczBUbkVLTmxKSk5VOVpSbHB0YzBOYVVtUkdNV1JXYUhOS05sSnFZVmhIWTNOSk1FeGxOV3BwUm5CR1RYbDFWa3RZVVZoM1pFa3hPWFoyWlZCSlVuQjVkSE01VXdwdmNYbzVOVzV1VVRocmNrbHhiR1JUY0V4Q1JXOUhNbU5KY0dKcWFFZHRaRU12VWxGMk1qZDNRelIyVDAxUVpGSjVXR0Z1ZVVNMlRsRnFjbGxGZEZRMkNrNVdjM1ZKUkRGb2JXOVNjRkZUZERrd2IweElOVTFYYWpaVVVDOXdhVkV6TVd3MFJtVkhPRVZtUTJacFVHNXRaVmhKV1V0SGVrbHBNV1V3UTBGM1JVRUtRVkZMUTBGblFrVTVXV3gwWmtkTFIwNW1SRVZPZFdwTUx5OTViRmhOU0VrMFRsaHRiek5IVW1RMVVWVmlUekYyTjJ4S1VHWmFkVFJTV201U1FWbFBOZ3B6VUVWQ2RVUm5hV3RVUmpoeFVFZHVVRk40YURkUmFqRTVaa0ppVVVzck1VMVBhbkJUTWxOQ2VHMVVabmxJV1cxd1YyRkllRmc1VERsbGJDdElkV2x0Q20wMmJEVkxVVVlyVmxZeVFVWlZPVFZrVGswNVlYY3dXVGhwVEZsdlVsQkdkM292Y1dKb05td3ZlVXhJU1dsbFIyUndabXhNWVZOdGVTdENjVU5JYUZVS1dHaEJSMUpyWTA5MWNYVlBUalU1V21oTFQwRm9VMUpqWkRaTlVsWmtRMU5IVEhNMVpIWkxOVGR3VG5oWlltdHBZemxxT1Rsb01GZEtjRFJhUVRsMWVRcEZZMkUxZWpCUU5YWmFWMVlyYVc1eU5YTmtMMWd6ZVZWSE5rOU5VM053Y0VGd1ozaDVSa3Q1WkRZMlJUUXdkbTFRU1hSaVpsWlhZemhxWkhWdmVrVnVDbkE0WkVKcVVqSnVkRkJ3ZEVWRFFVdDZkWE5oV1dVMlNISnNSVXQ0U3paNE5IZFhhRGhpSzNVNWExUkdhWGxVZWtkUFFrVjJWbkpyVldZMFlYRXlZbE1LVFRKRGVIZHlRV3B4WkZsVmNsaEtjVzF2VWtoRVVHUjNkRlZMVDJOS2JteFVXRTB3V21Rd2JVTkxla0ZhTURKNk1TdFBhelZWYWtrclNXbGhlRmh0UndwbmVrWlJhekJhVEdobmJURnBkMjE0ZEVKNE9IRjRjMk5oTUZjMmF6QmpkR2xUTVVkblNIRldUVFJtU1hWdFZFZFBTVGhMTlZSMWQwbDBSemM1TkRoekNqRk9ibmRpTURobE1WTmpPVlJhYzIwMmNVeHpjMlZ3TmxBeFJqVlBXbmN3YzBaU1pXUXpTVlUyZGxvd1NtOVNOa05YZFZGaFpESkpWR1pWTkVrMFZEQUtPSHBVV1hVMlFWcHpaVTFpTkc1R1QxQnNNWEozTUVrcmRWZFdjbEp5V25OMVRsQnJVVGhUV1VwUlRtcGlZVXBrUWtwd1dUbHBXSE4xVGxSUmFrZzBZZ3BtVURBek5WcHBUekpVY1dNM1FYVnFWaTlUTVUwd015OU1ORVpJVG5GUVQySm1UMWxHVVhCblpuZGpkRWszZUVKRlVVdERRVkZGUVhwcVRrSjZSVU5aQ21wWVZWQlpSWFYxUzNkS04wSllSSEZ3UjI5RmRFUTFXVXhDU0doWWNHWjRVRzFRZEdsTFYwWldNSFZLYUhSRlNrdDJjRGhPUWk4NE5EQmtSbGRJWmxvS1FYRmpiMkZ5YVhOV1JtNXBTRm94UldjdlpFOXViRTFQVjNWVlJXUnRZekJpU0RJeGRrUnBVMk0xVkhkMU9VUmtNMFpzTHpGSk1tZHhhV3RHTkdRdlRRbzJkbEZsWkV4MlRFSkpkRVVyWmlzek1EVkhUbU14WTI5NGVVZExSR1puTnpNNE9ESXlUME5IU0RscWRDOTFUR1kzY2xoTU5sTXdlVVZCTTJaNlR6aDZDbU5QU0RNNFkyUmliRGRzU21KS09XaERNVmxuVlZJeFprMWlMM0Z2YTFOeWVHazJOMkZCTWxsMmVXaGFWbk5UVTJOM01HeDNZV1V2TTBKemRDOHZhamdLTm05V1pIbFVORXhWUmpsb2JEVlZOWGxLWjFjMFJ6QjBWRmQyV0hSMFkzcGhiMnN4YTFwS01VRk5WalZhTVhBeFpXbFRlbnBDYjJwVlVtWXJReTh4YUFwMGEwUnFURFpET0RrcldtSjNkMHREUVZGRlFTczFkV2RFTldVNVNGTXlUelZUV1RobGRHTlNWa2xsUldsdmFWSTBUWEo2V2tndmNuRlRhM0E0UjB4NENsVjJLMG92VDBSdldtbFNlSEJWTTFCT1dqUXpZamxDY0ZCcFdEbElTekF2TURKVmVIUnNVbUpqVFRkTVpHWXZibEYzYzAxUGNpOUtUblJrSzJsdFlTc0tNa3d2VUdZd1QybENTalJZWlVWQldERm9URmh5UzNGSmJXRjZkSGhOZFRZMlVVTnhabk4yVUVWeE9IWlhWVXd3TTNSUVFXOVNlSEV4YTJKTE4yRnFWd3BSYVVOdlNIUk5WRWRXYVVaQ2NGTTNVMGxrTkRSWE5HdHNTR0UyVlcxMmFEVlBiemwzVm5oV1ltZ3pObXBoTHpkc00xbzJSRVoyWm1Wb00xUkllbEkxQ2taQ1dtTmlhalZWUW1KamEzQnVVM2hPWnpVME5VRnpUMmRVWm5Fd1FXMVhRM1F3TkZCalRUUTRPQ3RUYW01NFEyeG9jV1JFWVU5dlZWZFhUVTl4VEhFS05VbFRja3RJV1dSbFNWWkVWSEpTWmk5cFZrMUlhRFZzUWtaQ2RHbG9UbGgwVjBKa2MwWTNZMnAzUzBOQlVVSjZUbmR4T1RSU05HTmtSbk54UjBRNWVRcFJjMjFSYVdJMWFVeGxZMEVyTlVSNU1YVTNVbXg0Tm5sSFRUTm9kVE5NWkVONFZVZEpiMm96TTJONFIzQTVWRFl2V21wUGVsQkRVak5sY210aWRHNUVDbkpDUmk5TlNpOVlRMUJ0UWpFM1F5dHplR0ZwVUdod05YZEhaM0ZwYjFkNVZsaGxTbmxxVVdSaGJHcFdORWRxTUdrd1YwSktlbUowTVZsbGNTOUVPVGtLUVRSRFFVaENWMUF2ZEZaR2NrWTNXbTVZUkhoVE1VaFNVbGw0UlRsSVpXUkdaVFIwY2tsRmNHUmhWa0pZWjB0TFJ5dGhRVTFQZGxOWFJVUmtaRTlLUmdwNllqaHpSbGxZTkN0d0wwZEZlRFZqZDNaeFRYWnpaMjlVV0ZwcWRIRXdlSEZ2TnpSMk5DdEJMemhwYjBFeE5XUXdNRmxLYzBGMFNqQXdiRXhMUVV4VkNsaDFZems1Y1VNMU5UbHNiMlo2YUM4clVrVnZWbVZwYUhvMVkwTkNkelptV25KbWJVOTRTa2hPU0dwUFVUVkRWMUZGZVhkVlJqQnVieXQzVG1OalowVUtNRVU1V0VGdlNVSkJRVEkzYXpoUWJVY3dkRkphYTBFMWEzZHNPVmhhVUVsb1kwcDBOamxDYVVreVEzb3pjUzkyT0VSelVHMHlOVlpTYW01SlMwMWpVd3BpUTFkRGJISkhkR1puWTJKVUwwMHhZbHBuTkVkSmFUUlBSSFJyV2xVeFJqZEVURE5yWVRkSFJuQm1TMU5tWnpGVlRraE1RVGxYWlhWdWRVOTJTRkZYQ2tWT0wyVldOall5Wm5CRlRrTmpSMmhtTmxSRVNHVlBSSGh6Y0NzME1FWTBNRVpRUmpWTmJWbHplVmhaUVVScVRIbHNNbTlZYmtacWFVOXRUbmxpWjFRS1ltTmtURXhQUjNKcGVuZzJialJLS3pkSVNqbE5kVzlyYjNSUkx6ZDFXRUYxZVVWeGJuTm1TV3B4WWtsRFR6SkpXRlJMVWpCYU16UkVibXg0TmpOSldRcGhaV0YyTjJSQmRXZEJhWEZXWkU1V2MzWndRakkySzJsSVYxTTFiVUV3ZFc5cFoyMTJhR1ZzVVdwamVGaEpiRGg1YldWVk5YTTRjMDF2T1ZaNWQzWTVDamhuZFVWeGMzbGlVMjlzUjFSWGMzSXpTalo0Y1ZwTVluWkxSbGwyUWpoRFoyZEZRVnB4YUdGWEsxcDFla3R3Y3psb01FVTJVMlZzZFdndlRtVnBMMllLUkdScmVYZEZZWEZ4Y1ZkTWIxcFZNR05VVGpOR2NXbFpPRGxsTlZoYVduUlhlSEoyV21kUmJrWmxkM1pOYVdad1EwZzJPRXB4TTNJeE5IZENRa3RRWWdveWVYTnRjaTl5VmxKVU1EZEVSRkV3UkUxQmNFSmFVRmx2TTFweFZXWlNiMmc1Um5wVFVUbFhTM281WmtFck5WTjVSVUZSTmxOd05VRjFNMUI2TVZWNENrNVRRV2hDVURSTUsxaGxWME5RZWxrMEsxYzJjblJQUm1kcGEwOWplbWh4VUhOeVFYUjZlREU1VmpGNFZURm1LM0ZYZFhWTE9IbHZLMkkyVEZadUszZ0tjVmxHTlRCaE5FSXpZbll3VVV4QlRXUkJRMWR1Uld4aU0yMXFVMWRIWkZsT1JHbHhSRlYxY214Q1ZtdHZSRVp6WjNWRFdIcHpPSGRrV0RJdmJHbERWUXBMVGxacFFXZzNUbHBLZGxwblFTdGxiVFE1VUZvM2VrNXlTRVF5ZUhReldWcGhPRFZCTUhZelZtaDBZa1JYUWxsSlYzZzJXVnBaTmtwQlBUMEtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogeHhjNzF6bmFmbGZxZTVqODJ4bDc5ZjZmNnVuNXNhdXc3dWZwdGVieWxpZHB1bnd3ZWwxcWd6M2ZlOGpjZHVlY2psMWRiNjRleWpyazRpamxnNnp5OTYxdWRxanFwMXU3dGt6dGQyYzNvdXdpdGZocjFkOGNwNmc5Mjgybmc4OHAK\"\ - \n }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": + \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVZCMk9XSnhRbGhLYm5sdlN6Qk5hVmRsTDFwMGRHZDNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDA1cVNUVk5WRUY2VFZSQk1WZG9aMUJOYWtFeFRYcEJNazFxYTNoTlJGRjRUVVJXWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNuaDZRMHRsZWsxRVNVNDNTemREV21KWVFXUXJXSE5HUTBSMWNHdHRhbXBhZWtRNVJXSkdZMkozSzJ0elNVRndNRXRQVVRjdk5WY3dWWEpaWW5WcFVFRUtTbGRrVVZCTVlsVmhUMEZHV0N0b2VGSkNUR3hLWW1kQ2FGbG1ZekIzVjFWWmNTczRWSGcyU0dGbmFVUnhNSEJ3YlVGMmFVbFBhMDF3VG5wRVlXMWpWUW80WkUxWVp5OHJjVlJhUW1OdWRXSjVkRFZpVDJ0TFIxRkZka3d2TkZwclZuSm5lWGxNUkhOWlZrSjJlWE51WjNWaFpWWndaRUYzYWtObmRYQk9ORWhTQ2tOcE5HVjNUV2hKZDJ0RWFUVXZWek5HVTBjdlowY3phMkpaTUV4emQyNW9UMGRCWms5dlpsQjJPRVZ4V2xOS2NUSXlaRkpNZVVFcll6Rk9lVEJXVTFZS1JtZ3lZa2xTVWpRNFNUQkNXVlkxTlhGa0swWnZaMVpUS3pGQ1VISmljVTg0TjFscFNFZFlSVk5DTTFSSFFpOVhla2x6Y2tkaVlqazBlbXRwY201b2RRb3dRM0ZNWjFWTFZYcHNWMlZEVTFKSVNuWnllSFZzUTFSNVNEVmhiRkZRWkRjd1dXcHBVR3BWUVdjdmRHYzRkblkyYUVoaE0xcG1VR0owVWpkVGJEWTJDbFF6VkRNeE4yOTRZbFpoU1hwelZrOVJZVE5HUzNjME9VZDBSRFZaTlcxYU5WcDFOSFZwUVhBM2NrZHdTV3RhYzNBemJWVjVhekZDTWtKSlduSmpZbFlLZDJWaU1qVlBSemcyU2xaSU56Wm9NbFpRU0hFd2FYcDJUbGM0TjNkYVRURnhiVVZuTUZVMlpGSTRObmczWVZaQ01HUkNaMGMzT1haRFVsRkllRkl5Y2dwQlRXc3JVbFJVY0hNclZVSkVNRzByTWt0bFdHUnFVa3hwWTJGUU5VaHphSGxLVEdGMlRFRlpUamhyZEZwemRUbHRiVTFCY0ZkVVVtcDZZVXhFUkhacENrSlpPR05DUldkc01raFJNSEZVTTBGSFVVTTRXbm8zZVdKblpXaEZiVll2VVRodU1XdHNVMjl2V0daV1QxSnRZazVMZVdwU1ZXdFVNMWRrTjJOUGEza0tSV1V2WXk5T1lVdG1LMnBqU0ROSFdGRTRkVFZqTmxFck1tczJiMUpTYldKeWFERlBkUzlOTDNkdlkwTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1FsVlRPRmhsYkVOaVpYRnFNRzlRQ2toTWRURklWM04wYWpGS1RrMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlFucGxXVFpMVlhsMVNHVlpkM0EzYTFGR2FtZHFTRmxEYzBVS1oyaERRVTVrY1RkSmN6UXhUMEZOUzNkeWFUUnVNVXBCYUdKUWRGUjZjRk40Vms5WmJIaDFWMmhvZEM4MVJWQjRURU0yWkRsaU5WZ3plWEZUWW05bE53bzJORTVOVkZnd2QxYzFhMUJMWmpKcFRqQjBkbE12V1dkU1pWRlFVWHAzVkhneFNFeEdibmxOVVhWVlVqWlFTamxhVlhRME9IUTRRa1ZSU1ZNMVJEaDZDbEpFVDBkUlluRnpTMFpOV2xaNU9UaHRLM1IyWkUxUE5HcHZVbWRKV0dvck5rUnZhbWQ2UjFRM00wTnBZa0V6UTBoVmNtRklaa0kxVGxKdGRHbFZMM2tLTlVKVmFVMTJTMWdyYzNjd04zUlZlVmh4VDJsRmVsTXZlVlZoV2k5Q2JtcGFjRGxwYmtKSFFsZEpRMGwxTVVod1IyMUJiMGRJYWxkaFZtRlNMMnBzTlFwNFEwRkVUVEpNTVZsUGQzcHpNVFl4Y3k5eGIyRTNRbG94Y2pWQ2FGRXJlR3RVSzB4cVRGcEVZa1ozVFhCaFdqSTJhbGtyYTFObFJrRklhVmRsZG5Ga0NqZENaVXd4WVdaalpUUnhaMDk1YWs1bmEybGtiVTU1WkhSb2NsTmxVVXQ1VjBkNVprWnlTME5PS3pWWlVIcFhiRGd2U3pOaWNWTnNTazFOUzJKb1pEZ0tiMEpsZUVGemNsaEtOMDAwTW5wU2JXMW5ZMHhrWWtzd2JGcEdhMlV4UTFoYVRIbEZObGRYWkdFME9Vc3ZNVzFKWWtvd1luVkhObmR2YzJNNGVuaHJSUXA0VERSWldtUmxXalphZDA5eWRtUXhNekZsTTJvMmFGUnFTMGt3V2pCU2RtTlFSVEY0UVVFcldscFFiVTFPVlM5UmFUaGtPRFZZWWlzd2MyaHdUV0kwQ2pCWlVEQnpjRFo0ZDJGbGVFNTFRVkF4ZERsRGEycGxjMk41UldZdk1UTm1OMkprYkdJclRqSkplVkl5TUdOMFUyUmpUVWwzUkRKNlNrdE5TWFZ6WW1FS2NVUm1iVkpJVUdGNmFVVkpPWEJhVUZveGFYaHJSREpSU1hkVFptWmpVRTV1YWtab09VTnhVREpVU0ZSV2VIcFhOM2RFVkVsQ1VIQnBSRzg1ZFRGV053cHFNREJSUTJWUWQxUmtjRzFyVmpRMmVGRTlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5zNW5nbnZ3di16ZmF3N2FvYi5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdDVtY3Nncwpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdDVtY3NncwogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdGVoaTRvNGlmdXFfY2xpYWtzdGVzdDVtY3NncwogIG5hbWU6IGNsaWFrc3Rlc3Q1bWNzZ3MKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0NW1jc2dzCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdGVoaTRvNGlmdXFfY2xpYWtzdGVzdDVtY3NncwogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklWRU5EUVhkWFowRjNTVUpCWjBsUlRrZFpWVEEzTDA0dmFVbFZlRzk1VG5FMVpWaDBSRUZPUW1kcmNXaHJhVWM1ZHpCQ1FWRnpSa0ZFUVU0S1RWRnpkME5SV1VSV1VWRkVSWGRLYWxsVVFXVkdkekI1VFhwQk1rMXFhM2hOUkUxNFRVUldZVVozTUhsT1ZFRXlUV3ByZUUxRVVYaE5SRlpoVFVSQmVBcEdla0ZXUW1kT1ZrSkJiMVJFYms0MVl6TlNiR0pVY0hSWldFNHdXbGhLZWsxU1ZYZEZkMWxFVmxGUlJFVjNlSFJaV0U0d1dsaEthbUpIYkd4aWJsRjNDbWRuU1dsTlFUQkhRMU54UjFOSllqTkVVVVZDUVZGVlFVRTBTVU5FZDBGM1oyZEpTMEZ2U1VOQlVVUkVXR1JNYUVJcldYWnFNemRaVjNNM1oybHNjSFVLVmpaR2VsaFRhRTQyY2pjMVFXMHlSelJPUTJ4MlJHdEdhRkU0YzFKNlIxTnpjekp6Vm1aMk9IVlVPRmMzTWxKSGREUlJlRFJMV2xOdGNYVlVZbWwzYmdvMFNTOHlSVnBtTjFCb1ZrWk5UVk0zVWs1VVoyOUhlSFJzSzBSSlJXeFhZVlJ5U1docE1YUXdaMWcwTVc5bWNuQjNSbFJ1V1hwbFExRkdaM0JpYlU5aENuSnpjVEpsUTA5VlNFOXRaa1IxY1hCNWNscFliRFl4V0dwemRFVlRZV0U0VFZoQlYzWkVaVmh3YkdsVFNVNVlLMWQ2UzNKVFNuWnFhVVZ4UjFJNVFVOEtSalp6U0VsNWJFVTFLME5yYVdkSFltWnZibVl2Y21sTFVEZDRlVWhrVmk4elVTdHVSalZvUTFWQ1QzVjVTakJzZUhSa1pWWmtibGxXTUZab1NFaFZTQXB6WmxCWEwzSmtZM1ZYT1c1dFprUnJUazFvUWtKM01VUm1jSGQzYjBaS2RHUTFkRTh5Vm1GeVYyNWpiWGN4Tm1OVUx6UTJlV05xU0dGelZFZHBLekpvQ2pGaVQyTTRTVWxNVFRSd1ZtZE5iemxZVEd4RlZYTlBWWG80TjBWSlQwTkljekI2YjNVNE4yd3ZTVzAyUVZjMFJYZFdlVlV5ZVZsSVkzQktaR1ExY2tnS01ERTNkbEJMVkdsNk1uZExNbTV6TVRscVFVWlJiRUp3TkRGRGEzaEtUMU5ST0ZKQ1ZqRlJjMVJFZUdSSVdqaHBaVTUzWlZKa1dGQkhkVXRvYmxST1JBcG1VM2RMTTNwMWRVMXdSa3BEY1dnNWRXZFRUMGxCVmpRMWNuVjJMMm93VEhaUU0wVnpPREZpZUhkWFJ6RktXVWNyTlZWSVlreGpRbnBPU0hFNVVWbEZDbUpHVkRKc2VIZzJWVlJ3VFhsUVRVRkllalZNWkRkaWVqWkZZalU1UlcxSGVpdG9RM1JaZUVaRlMwTldka2gzT0hwUVpHMWtWRWx2UlRaSFoyb3pWek1LWWpaTFNpOUdNbkJ2TkZWcVptWm9LM0JOTVVScVJUbG5iMlpxWTNCellWYzVMM1pYZGxGd1V6RjBNbEpGTUM5Tk5ucEtkMG96TlhkbFZFcFVhalpOS3dwd2RrODVlSFUyUVdGMllURTJUMjl5WkdJM1NsbFJTVVJCVVVGQ2J6RlpkMVpFUVU5Q1owNVdTRkU0UWtGbU9FVkNRVTFEUW1GQmQwVjNXVVJXVWpCc0NrSkJkM2REWjFsSlMzZFpRa0pSVlVoQmQwbDNSRUZaUkZaU01GUkJVVWd2UWtGSmQwRkVRV1pDWjA1V1NGTk5SVWRFUVZkblFsRldSWFpHTTNCUmJUTUtjVzg1UzBSNGVUZDBVakZ5VEZrNVUxUlVRVTVDWjJ0eGFHdHBSemwzTUVKQlVYTkdRVUZQUTBGblJVRnNlaTh4YUVkNWJqQTNiVkVyYzBOSGNIVnJTQXBzUkU1RmVHWkNTVFF5Y3lzNVdFd3ZiVmw2U0Zsc2R6aHpkbWwzVlhJeU1YaDZZVXhrVjBOU1duWTVNamhYVFZFNFZFaENlV0UwY1c5WmRXNUxaVUp5Q21WSWFrbDFTalJzU1ZOUFYzaHZlbkpXV2twaFJISnZUbk5SVDNrNFdEUktiamhqY0ZKSVRHa3lRbGxGWjJRMGNYTTViREY1Y2pReGVGQldMMnAwUm5FS2VrMUNWU3Q2V2s0MWRGRjBVRmRLZVRsRmNrVnRaV05LUTJkV1RXVnBZbFJ6VGtOWFp6Rm5ZVVZDWmpkWkswRjBRVXhGUmtFMFEyRlVkQzl3Tm5abWFncFhVeTkwTVM4MGRqZHhiVmt3U2s1blRHOXNTazlRUm00NFYxbFBRV1ZtZFVZeWR6UXdlR3h5Y1hCRmN5OVBkRVJQTHk5S09ESTVhME5LU21WQmVpdEhDakkwWkhGR1ZtNUdNeTlPYkhwTlRHTXdjWEJvV0RaaWNrNUdSa3h6V1V0a2RYSjZkell3V21vMU5HZE5jM0oxYmtsNVZVWmljRFZVZEhBMWVqbEtSR2tLT0VjcmMyTnFWSHBTU0d4M2FUZERUVUptYjFKMlREaFpZalJETXpGUFRYVlhSbEp3Y0RGd2REbFpZMHMwZG1OaU9WZHdZbmtyUVM5NmNuWjJiV2RZTWdwNmVqZDFiVlZNVUhrMVpFSXpUbGhtY2xGV2MzWlljVU0zZGtsTE1EZzBiaTlxVGs5Q1JsbzBjVU5zS3pCWldtbG5WbGd6ZVhaWWJsSnZURXhZWld0eUNqQk9TRFZ2Y1VaQk9YaG5RbTlLYUVGd2RtcGtXVVZCTUV0VlZrVkRTREYzT0RkRWVVMTJLMkZDVmtOSGFHb3JNVTAwT0c5NVlqUjFTRzUzWTAxUGQzVUtUREV5Ym5oek1HVTFhRlYxWVZkUGNDdDJUbVp2Y20xSmJIZGhaRTl6U1hZM1QyRmFRbEkxUmtWd05Tc3ZjVXAzYVdkaFkwY3JRelppVjJvd1ZIVlZhUXBrU2t4cVVISm5OMGRoVTBaT2NHTlpaRGM0Vkc1UUwyaG9Va0V6U1VNd2JqSjRVeXMwUTFaMFQxWkxNRTh3UmtSVWFtRTRWSGhQTXpoMVpHWlVWVXdyQ21OSVZpOVVRMVk0U25Cd1NHZDFkV1JEZHpWVFprTlJQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MwRkpRa0ZCUzBOQlowVkJkekV6VXpSUlptMU1ORGtyTWtaeVR6UkpjR0ZpYkdWb1l6RXdiMVJsY1NzclVVcDBhSFZFVVhCaWR6VkNXVlZRQ2t4RlkzaHJja3hPY2taWU55OU1heTlHZFRsclVuSmxSVTFsUTIxVmNIRnlhekkwYzBvclExQTVhRWRZSzNvMFZsSlVSRVYxTUZSVk5FdENjMkphWm1jS2VVSktWbTFyTm5sSldYUmlaRWxHSzA1aFNEWTJZMEpWTlRKTk0yZHJRbGxMVnpWcWJYRTNTM1J1WjJwc1FucHdibmMzY1hGamNUSldOV1YwVmpRM1RBcFNSVzF0ZGtSR2QwWnlkek5zTmxwWmEybEVWaTlzYzNseE1HbGlORFJvUzJoclpsRkVhR1Z5UW5sTmNGSlBabWR3U1c5Q2JUTTJTak12TmpScGFpczRDbU5vTTFabU9UQlFjSGhsV1ZGc1FWUnljMmxrU21OaVdGaHNXRm95Um1SR1dWSjRNVUkzU0hveGRqWXpXRXhzZGxvMWJuYzFSRlJKVVZGalRsRXpObU1LVFV0Q1UySllaV0pVZEd4WGNURndNMHB6VG1WdVJTOHJUM051U1hneWNrVjRiM1owYjJSWGVtNVFRME5EZWs5TFZsbEVTMUJXZVRWU1JreEViRTB2VHdwNFEwUm5hRGRPVFRaTWRrODFabmxLZFdkR2RVSk5SbU5zVG5OdFFqTkxVMWhZWldGNE9VNWxOM3A1YXpSek9YTkRkSEEzVG1aWmQwSlZTbEZoWlU1UkNuQk5VMVJyYTFCRlVWWmtWVXhGZHpoWVVqSm1TVzVxWTBocldGWjZlSEpwYjFvd2VsRXpNSE5EZERnM2NtcExVbE5SY1c5bVltOUZhbWxCUm1WUFlUY0tjaTgwT1VNM2VqbDRURkJPVnpoalJtaDBVMWRDZG5WV1FqSjVNMEZqZWxJMmRsVkhRa2Q0VlRsd1kyTmxiRVUyVkUxcWVrRkNPQ3RUTTJVeU9DdG9Sd29yWmxKS2FITXZiMUZ5VjAxU1VrTm5iR0o0T0ZCTmVqTmFibFY1UzBKUGFHOUpPVEYwTWl0cGFXWjRaSEZoVDBaSk16TTBabkZVVGxFMGVGQlpTMGcwQ2pOTFlrZHNkbVkzTVhJd1MxVjBZbVJyVWs1UWVrOXplV05EWkN0alNHdDVWVFFyYWxCeFlucDJZMkoxWjBkeU1uUmxhbkZMTTFjcmVWZEZRMEYzUlVFS1FWRkxRMEZuUVhaTk5HNTRjVXBFY1hsTllXbDVlak5WWW14cWRUZ3JhMnRGUlhabGJESnlVV2x6SzJadFRUSlJXRmQxUW1NcldqUnJha3hrSzB0c1RRcHBMMGN6TWpaSWMycHhXWGhzT0VWMWN6bEpOMloyWTFwU1lrMVNXakpaWnpBMWRHVnliRGxDVDJ0cmRETmlSalZJUVd4WFlWTXhOelpWU1ZwaFFUUk9DbTlNWmxZM1JIUnpRbVJwZW1oVE5TdFJWRUl5U0dOdGRrdFBZVlI0YzNSbVZIRk9OVGcwY0ZkVVlYQlJialZPZVd0cmFteE5URVJZY2s1MlJpdEZVRmNLYld3M2MwZDBjVzVaTlhWUlQzTlRRazFoWmtsVU0wOURRV1pQTkdzcmRGVmlRMEpoWWpWUFRUZFlURFVyU21GcVRXTXlkMU5VYm10alIxUlhOR0puV1FwaVRrUjVjRXB2T0hwdFpEVmhlRTAxZWxwQk1tWnpPV0ZoVWlzeFdHbzVSbTlKUkRSMlEzazBXVk00WTFVNGVGZFBZbVozY1V4U1pqUjZlRWhEYmtSU0NtMW9NR2RvVm1wdlYzRmxVRXRLZVVvME5YSkpORE5xY2xvek9XZEJSV2xYVUhaS2JIcExTamMzSzBFNGFIcE1lbFJGVkZKWFJqWkVObTFwVDJ0a2NGVUtiR1I1SzBkd01uZGhjMDFwU210aFIyMWFTM2RwZEdJNVVVaHNSM0JoTldGamNtTjVNVTA0VDJwVVpIbzFWVlZ1UlcxdU1VRldVRlppZGxoaVpVNDVhQXBGUjFKWFZVdzNkRVpXWm1KS1NqaHViM3BLTVhGSGFqaGpWbTV3T1hKNFYwdHNjbmhhTHpOM2JGSlpZbTk0T1dNNVJESk5kbTVuTjJ4WlYwSXdRVGxMQ21KNk5qWjNhMFF3U21WbFdHTlZhMHh0Ukc5UGJtdEZMME01Y0ZoS05EYzNNV2xPVFRWS1MydG5NVWhaTkRsSGVuTkhVbGhZUm5sdldtMXhRa3hvZVU4S1dEQXJlRUowVkdSV1VtUXJUSE5MYTNsWlVtVnBNRVJ4WVhwS2NVWjFaVXBHTHpOdFdtUjFXbkpKUldwTVdXZ3dVa0V4UzBkS1JXWTNZemw1Y2k5QlJRb3ZiRXRwWm1FNFZqQXpWRGxWYkhaSFJUTkxTRk13Vm01RFIzSlVPRXRqYTBkb2JtRTVlRUV5TmtGemVsRnhhbFEwVVV0RFFWRkZRVE5MVjFoSWRuZ3ZDbTlZTjI1VE5HRkJVMHN5TVZCQ01YUmhjRXBEVVZoWE5UZ3paRkJDVTBVeUwxWTRiVVZHYWxoYVVqaElWMGxyTkhSbEsyTkRjVTFvZUdkRFJrNUplRVVLVVZGMlEyOTZkbXR0U0hVMU5YaFFlakZpWW5Vd2FVaDJkVFJrV0U4eFRVTXZZVXRWWlhsdFJsSnZRVU5MU0ZCbFFYRnVkVEJWT1ZoMWFtWklNa0pwUlFwWFFtSTNOWFpSVDNneFZ6QXdOaTlZZVdSVWRqQnZWbk5UU0ZsWE4yc3ZWbTlwUzA1bWFVSnhPVFZRY2paeFZGVnJMME5vYVV0T1NTOXliMFV3Y1ROdUNuTjFaQzlXZEhOaVlpOUtZMmc0YTNoRVIyRkNlVEUwVWpCMVUzZDRjallyTjJRNFoweGtORE0xYkM5Q2RtbEdNVkZsYzJ4b2IwRlBPVlZNZVVZM1ZFUUtkbHBTY0ZSSmFVODNRMHhPUkd4SFFUQlNXbEJ1ZUhsTWMwbEJNMjlVTlVvMU1VWnVjRTVrZUdOQ1ZUSlBkakptWkV0NFpYVjJieTlMWmpCR05saDNRZ3BaZG5Bd2JVUjFSbmd6ZW5Cd1VVdERRVkZGUVRSeGRFeFJRa1F5ZEhFd1dsRmpZVkIxU1UxSWVucG1WVEo1Y1VkTlRsTlBjQzh3VkUxbFRYcERSM0p2Q25Bd1UyaG9UbVpJV1RVeFEwcHNhMWxDTVhoaVFreG5WVVZST0U5TVdtdExha1JHVFdOSWJHNDJiV0Z5UjBWdk0zZDBkVWQ2ZUVrM2ExQkNNaTlrT0UwS2ExTXhWMGhhYURVeVdVcEVZMGRRVWpsc0sxWlBTMkZFVWtjeGVFa3hZMVZLWkZCeGJrZzBiV1pWYUVOU1kyODJNbmRZU2pKeFEzRm9NM2RDUlZaUlRBcGliMVoxYldwdmFVUlVaRnBUYkdadWJIb3hNMGw1U205VmMyeHBOMUJwU2xsVk5IVlpabXRSZDJwVE1XcHpSMnRNZGs5MFVHWnlkSFpGVEhSMWRUSm5DbVEwZURWQk1uZFpValF6Um1GM05YZFBOalF4VkRFclVHNHpjR3R6U1ZkelJEVkhhV3g1VUZOUFJVSlRVVTlvWXk5NVRrUkJUa2RHYkhsR2NtUlFRWFVLT0RjMWNXSnFTRkpKZUhWdmRYaDRTR015VjNwMlFXaHJkbWxYZFhCWlJUUkhSM0YzWXpFNU9FUlJTME5CVVVWQmJVbzRhSHBTYTNrek1qVTRXbk14S3dwYWMyUm9SMVptZUcwd2JsZzRjR1ZSVEVWNFYzRkhSekZQT0ZaWkszVXlORGhCVm5GbE1UbFFhblZzVTNOcWFuTXpOWG93YUhOcFVGaGlOMWwyZW1oeENtZDBOM2xXUm1sRmVsVjBaMGh3U0VNeFlVSnJVVzVFUmtoT1VXTnBTMVJNZGpGNFJVbGtPR3B5WjNkR1YxWnlZMlkzTm1SNVYyZE5RWHBNUTNjMWIwWUtjblpSYkhoR1pGcHRRVFZ0V2s5U1RscHJTRzh3Y1dJclUzTjRSSFYyTmtwbWRqaGxja2wxWmxRd1YyWk9ibWhpZDFoaVExb3dhRXhuU1VOSmIwaGxiUXB1ZFZONVFrZHhlVTV5VjJoRGFEZHFhbFpGUzNocE5tbDFjamhtTjNod1N6WkdkRTFHUlhadldUbFNXR1pLVjFCM2VUWjJZbkExYlRGMlpWWmliemN5Q2pkWVpWWkNNVnA0UjBNcmNXMDFRMUJRTWsxNFJqWlBVMVY1VFVnMFoyNHdUMWRqZVhZNVRUTlFUMnRQUkZvclZHMVhUMlprTUZkRVdVRmxSMHAwWW13S1ZHNTFhekJSUzBOQlVVRlZUM05rZG1jeFVWSm1ObVJ0WVVkMFFsRXlhRFpDVUdsYVUzUldTa2hHT1ZNdlRrbDFka3RGT0Zkb1drUm1NblZQTmtwamFBb3JPVWxCYWtOclNqRjVUa1ZoTkRGWE4wZHZUMmhpT0dOUVpsbGtaalpvV0d0cGQyODRZemREVGtWa01ubGhSRXBWWW5rNE9HRkJNR2ROUWxSNVpIcDFDa2hoVFZwTU56azBXbkJXZUhobFMyNVJPRVUyVEhwYVkwaGxjWFJhZEVSWGF6VkdaVzE1Y21acE1HVXhia2R6TjNoclVuVkpTSE5aZEZFemJUZzVUa0VLVEV4V2NWaHBaMDFLYlRoM2EyOTVUeTkxZHpKVVFWRjFla0ZTTVhRdk0xZzFNRFZuTTBWV2FqY3hiVUl3TldoUFIyZGpVR3BOSzNGbE56TTVTVlJQVmdwb01FTmpVMjFEV0RSMlpHUkRlVVpPVlZkWlZraDNhalZLY2pGR1JXVjRZMGQwYkRoak5FTkNVVTEwYkVWck5FTTJMMlZyUzNnNU1XNDBVSFZMT0VsSUNtbFNkRzh2TmtGak1qTklUVVZWS3pCaVRHRkhhazQzVG5oM0wxTmlRelIwUVc5SlFrRkRkaTlSTkZaSFJWSk9RM0ppVXpRM1l6ZGFZbEJsZW1SclZUZ0tSa295WjBoaVNIbExaSE5zTUVabFJ6VlBNR1IxYnk4dmVFY3hjbTlpTjJWVlJsQjZkMXBTUnpOemNqVTVRa1JSVVRGa1JteFljME5zUVc1aVdVWlJVUW8wYUhSdFFXZHlaa2c1YlRaWFpIaHRZbFJFU1RWRmVYSmFOazV4VXpCQ1pXcHlZMUpPTWxwSlFVMXdZVzlzUkhwM2VrdzNha2N6YmtkUFVITkRNRGhtQ2s5UFp6ZDFNMDgzZWxVNFJsVTJLM2dyTlhKMFZEQkNZM2RTYmxGMVVXbG9XaXRHTTFwdFVrUmhha3RaYWxwdmRIY3dZM0JrWjFsekwzSkpka2R4WXpFS05YUkxRakEyYWpadFZHcHJVQ3RsYUZWTVdFdFpiVFIxY1VWdldGbDFjWHBaZDJWMk1VZDFlblp5TVZaelVUSktPVGRJYVRkbGQxVktZM2szWkRGNk1RcFhNM1JJT1RCRGFUWnBjemxxYTBreGIyOHdjVFJ4YkdRNVlUYzJVRXBNWjNoalRVcFdhbVZMUm5CbU9XOVhURkpXYjJ4NFUwaG1NalpvU1QwS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiBud2NpY3lnMDFjZGY5MWUxcXh6aHhkNTkxZ3R2d2JuaXNrdWZ5bTl1bTIxenVmdHNrNmh1Y2Q5Ym5vYmFjYzRhdTQ2bzQzY3Q5ZTM3bXZ3NHlrNm1zbzk4NHNiMjRrNTM4cDViMmFmbjI4Z294eHRoNGMxM2RxODdxajFhb2xueAo=\"\n + \ }\n ]\n }" headers: cache-control: - no-cache content-length: - - '13072' + - '13084' content-type: - application/json date: - - Thu, 15 Jun 2023 12:21:06 GMT + - Thu, 29 Jun 2023 10:45:53 GMT expires: - '-1' pragma: @@ -1164,62 +1541,61 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-zfaw7aob.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000004-zfaw7aob.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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: - - '3862' + - '3533' content-type: - application/json date: - - Thu, 15 Jun 2023 12:21:08 GMT + - Thu, 29 Jun 2023 10:45:53 GMT expires: - '-1' pragma: @@ -1247,13 +1623,13 @@ interactions: {"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"}, + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_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": {"outboundIPPrefixes": {"publicIPPrefixes": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002"}, + "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": + {"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"}], "allocatedOutboundPorts": 0, "idleTimeoutInMinutes": 30}, "podCidrs": ["10.244.0.0/16"], @@ -1270,71 +1646,70 @@ interactions: Connection: - keep-alive Content-Length: - - '2732' + - '2366' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-zfaw7aob.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000004-zfaw7aob.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/ae6c6767-2b19-4941-85b7-15f5dde973d7?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a37f4cbb-9d1e-4e1e-96ac-fa748e687afe?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4041' + - '3712' content-type: - application/json date: - - Thu, 15 Jun 2023 12:21:15 GMT + - Thu, 29 Jun 2023 10:46:05 GMT expires: - '-1' pragma: @@ -1350,7 +1725,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -1368,14 +1743,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a37f4cbb-9d1e-4e1e-96ac-fa748e687afe?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 }" + string: "{\n \"name\": \"bb4c7fa3-1e9d-1e4e-96ac-fa748e687afe\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:45:58.6685596Z\"\n }" headers: cache-control: - no-cache @@ -1384,7 +1759,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:21:16 GMT + - Thu, 29 Jun 2023 10:46:05 GMT expires: - '-1' pragma: @@ -1416,14 +1791,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a37f4cbb-9d1e-4e1e-96ac-fa748e687afe?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 }" + string: "{\n \"name\": \"bb4c7fa3-1e9d-1e4e-96ac-fa748e687afe\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:45:58.6685596Z\"\n }" headers: cache-control: - no-cache @@ -1432,7 +1807,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:21:46 GMT + - Thu, 29 Jun 2023 10:46:35 GMT expires: - '-1' pragma: @@ -1464,14 +1839,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a37f4cbb-9d1e-4e1e-96ac-fa748e687afe?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 }" + string: "{\n \"name\": \"bb4c7fa3-1e9d-1e4e-96ac-fa748e687afe\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:45:58.6685596Z\"\n }" headers: cache-control: - no-cache @@ -1480,7 +1855,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:22:15 GMT + - Thu, 29 Jun 2023 10:47:05 GMT expires: - '-1' pragma: @@ -1512,15 +1887,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a37f4cbb-9d1e-4e1e-96ac-fa748e687afe?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"bb4c7fa3-1e9d-1e4e-96ac-fa748e687afe\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:45:58.6685596Z\",\n \"endTime\": + \"2023-06-29T10:47:27.9242502Z\"\n }" headers: cache-control: - no-cache @@ -1529,7 +1904,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:22:46 GMT + - Thu, 29 Jun 2023 10:47:36 GMT expires: - '-1' pragma: @@ -1561,64 +1936,63 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-zfaw7aob.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000004-zfaw7aob.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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: - - '4221' + - '3892' content-type: - application/json date: - - Thu, 15 Jun 2023 12:22:47 GMT + - Thu, 29 Jun 2023 10:47:36 GMT expires: - '-1' pragma: @@ -1650,64 +2024,63 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-zfaw7aob.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000004-zfaw7aob.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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: - - '4221' + - '3892' content-type: - application/json date: - - Thu, 15 Jun 2023 12:22:49 GMT + - Thu, 29 Jun 2023 10:47:38 GMT expires: - '-1' pragma: @@ -1741,8 +2114,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/cliakstest000001?api-version=2023-05-01 response: @@ -1750,17 +2123,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/66132471-9e63-4307-bcdc-39591564e12c?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 15 Jun 2023 12:22:51 GMT + - Thu, 29 Jun 2023 10:47:39 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/66132471-9e63-4307-bcdc-39591564e12c?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 index 92dc73162aa..f3a860670ec 100644 --- 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.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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/\\\"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}" + 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/\\\"bfb0220c-957a-4ad7-84cb-0c83aae8f3d7\\\"\",\r\n \"type\": + \"Microsoft.Network/publicIPPrefixes\",\r\n \"location\": \"westus2\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": + \"4beac9d7-ed70-4e0d-963a-bc96b5bcfda7\",\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/5d460f13-f530-4344-86cb-b1fd7f428f68?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/f0fd4d7b-9e9e-4a46-a649-0884e1e7f836?api-version=2022-09-01 cache-control: - no-cache content-length: @@ -43,7 +43,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 12:22:59 GMT + - Thu, 29 Jun 2023 09:42:03 GMT expires: - '-1' pragma: @@ -56,12 +56,61 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 05411ae5-e9e2-4ef4-bca0-20ad036b9f5b + - db7a2dd7-6d9f-4aaa-bdae-dafab310bcb1 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 - message: Created + message: '' +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network public-ip prefix create + Connection: + - keep-alive + ParameterSetName: + - -g -n --location --length + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/f0fd4d7b-9e9e-4a46-a649-0884e1e7f836?api-version=2022-09-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: + - Thu, 29 Jun 2023 09:42:04 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: + - 202237a5-b718-4324-a74a-17f6f07ca913 + status: + code: 200 + message: '' - request: body: null headers: @@ -76,9 +125,9 @@ interactions: ParameterSetName: - -g -n --location --length User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/f0fd4d7b-9e9e-4a46-a649-0884e1e7f836?api-version=2022-09-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -90,7 +139,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 12:22:59 GMT + - Thu, 29 Jun 2023 09:42:14 GMT expires: - '-1' pragma: @@ -107,10 +156,10 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c4919099-d5a8-45b1-9504-f683d8c8f3e1 + - 05f1b15c-abc2-45f0-ad6c-fa8c6c460a14 status: code: 200 - message: OK + message: '' - request: body: null headers: @@ -125,20 +174,19 @@ interactions: ParameterSetName: - -g -n --location --length User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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/\\\"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}" + 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/\\\"a0d33d2f-1560-4d6a-b94c-c9d824cc3172\\\"\",\r\n \"type\": + \"Microsoft.Network/publicIPPrefixes\",\r\n \"location\": \"westus2\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": + \"4beac9d7-ed70-4e0d-963a-bc96b5bcfda7\",\r\n \"prefixLength\": 29,\r\n + \ \"publicIPAddressVersion\": \"IPv4\",\r\n \"ipPrefix\": \"4.154.81.176/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 @@ -147,9 +195,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 12:22:59 GMT + - Thu, 29 Jun 2023 09:42:14 GMT etag: - - W/"2a6f769b-7368-480a-a3ed-604900a17318" + - W/"a0d33d2f-1560-4d6a-b94c-c9d824cc3172" expires: - '-1' pragma: @@ -166,10 +214,10 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 24d6b522-2668-4990-83ca-4ef378f7a875 + - d20bbbb6-f2fe-4241-8dcd-26fb70675186 status: code: 200 - message: OK + message: '' - request: body: '{"location": "westus2", "properties": {"prefixLength": 29, "publicIPAddressVersion": "IPv4"}, "sku": {"name": "Standard"}}' @@ -189,24 +237,24 @@ interactions: ParameterSetName: - -g -n --location --length User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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/\\\"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}" + 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/\\\"fe4cf866-f656-4914-b147-13082b030b0c\\\"\",\r\n \"type\": + \"Microsoft.Network/publicIPPrefixes\",\r\n \"location\": \"westus2\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": + \"8bf9f335-e440-49f0-aea3-f2a470ab8321\",\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/d793245e-9126-44f3-be20-701955df793f?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/f7ec64e2-3ff8-4b98-a86a-2cbd9dd088f5?api-version=2022-09-01 cache-control: - no-cache content-length: @@ -214,7 +262,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 12:23:05 GMT + - Thu, 29 Jun 2023 09:42:17 GMT expires: - '-1' pragma: @@ -227,7 +275,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 106c6c9a-92dd-4cad-8353-9db5d43fd266 + - 9679c0d1-c882-4aff-991e-ae86240cd051 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -247,9 +295,58 @@ interactions: ParameterSetName: - -g -n --location --length User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/f7ec64e2-3ff8-4b98-a86a-2cbd9dd088f5?api-version=2022-09-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: + - Thu, 29 Jun 2023 09:42:17 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: + - 8bc86d71-7f0e-4066-ab25-540ea8f7e14b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network public-ip prefix create + Connection: + - keep-alive + ParameterSetName: + - -g -n --location --length + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/f7ec64e2-3ff8-4b98-a86a-2cbd9dd088f5?api-version=2022-09-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -261,7 +358,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 12:23:05 GMT + - Thu, 29 Jun 2023 09:42:27 GMT expires: - '-1' pragma: @@ -278,7 +375,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a37fab36-0d67-4856-bebf-955fda0f5e73 + - a9d7c331-0612-4ca8-b604-c0411796408e status: code: 200 message: OK @@ -296,20 +393,19 @@ interactions: ParameterSetName: - -g -n --location --length User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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/\\\"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}" + 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/\\\"60cac8cf-7d58-471f-b8ff-137ccb8bc8c7\\\"\",\r\n \"type\": + \"Microsoft.Network/publicIPPrefixes\",\r\n \"location\": \"westus2\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": + \"8bf9f335-e440-49f0-aea3-f2a470ab8321\",\r\n \"prefixLength\": 29,\r\n + \ \"publicIPAddressVersion\": \"IPv4\",\r\n \"ipPrefix\": \"4.154.81.216/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 @@ -318,9 +414,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 12:23:05 GMT + - Thu, 29 Jun 2023 09:42:27 GMT etag: - - W/"7ebc644f-42b0-4a6a-a205-215f8d7acc54" + - W/"60cac8cf-7d58-471f-b8ff-137ccb8bc8c7" expires: - '-1' pragma: @@ -337,7 +433,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 063e4af2-079d-4ba3-acae-dfbeed66fd85 + - f93e30ff-99a6-4130-b3ed-e540c1e0eccc status: code: 200 message: OK @@ -356,8 +452,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -373,7 +469,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 12:23:05 GMT + - Thu, 29 Jun 2023 09:42:27 GMT expires: - '-1' pragma: @@ -396,12 +492,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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": {"outboundIPPrefixes": {"publicIPPrefixes": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002"}]}, + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "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: @@ -414,71 +510,70 @@ interactions: Connection: - keep-alive Content-Length: - - '2017' + - '1688' 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-civxyb4z.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000004-civxyb4z.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/07765cee-87a2-42a6-87d2-242f8646ebcb?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6f7685a4-17a5-4882-9a5f-1011fcd741ba?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3805' + - '3476' content-type: - application/json date: - - Thu, 15 Jun 2023 12:23:14 GMT + - Thu, 29 Jun 2023 09:42:33 GMT expires: - '-1' pragma: @@ -490,7 +585,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -509,14 +604,112 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6f7685a4-17a5-4882-9a5f-1011fcd741ba?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"a485766f-a517-8248-9a5f-1011fcd741ba\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:42:33.5497793Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:42: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 + --load-balancer-sku --vm-set-type --load-balancer-outbound-ip-prefixes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6f7685a4-17a5-4882-9a5f-1011fcd741ba?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"a485766f-a517-8248-9a5f-1011fcd741ba\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:42:33.5497793Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:43: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 + --load-balancer-sku --vm-set-type --load-balancer-outbound-ip-prefixes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6f7685a4-17a5-4882-9a5f-1011fcd741ba?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ee5c7607-a287-a642-87d2-242f8646ebcb\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T12:23:13.5698704Z\"\n }" + string: "{\n \"name\": \"a485766f-a517-8248-9a5f-1011fcd741ba\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:42:33.5497793Z\"\n }" headers: cache-control: - no-cache @@ -525,7 +718,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:23:14 GMT + - Thu, 29 Jun 2023 09:43:34 GMT expires: - '-1' pragma: @@ -558,14 +751,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6f7685a4-17a5-4882-9a5f-1011fcd741ba?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ee5c7607-a287-a642-87d2-242f8646ebcb\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T12:23:13.5698704Z\"\n }" + string: "{\n \"name\": \"a485766f-a517-8248-9a5f-1011fcd741ba\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:42:33.5497793Z\"\n }" headers: cache-control: - no-cache @@ -574,7 +767,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:23:44 GMT + - Thu, 29 Jun 2023 09:44:04 GMT expires: - '-1' pragma: @@ -607,14 +800,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6f7685a4-17a5-4882-9a5f-1011fcd741ba?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ee5c7607-a287-a642-87d2-242f8646ebcb\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T12:23:13.5698704Z\"\n }" + string: "{\n \"name\": \"a485766f-a517-8248-9a5f-1011fcd741ba\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:42:33.5497793Z\"\n }" headers: cache-control: - no-cache @@ -623,7 +816,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:24:14 GMT + - Thu, 29 Jun 2023 09:44:34 GMT expires: - '-1' pragma: @@ -656,14 +849,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6f7685a4-17a5-4882-9a5f-1011fcd741ba?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ee5c7607-a287-a642-87d2-242f8646ebcb\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T12:23:13.5698704Z\"\n }" + string: "{\n \"name\": \"a485766f-a517-8248-9a5f-1011fcd741ba\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:42:33.5497793Z\"\n }" headers: cache-control: - no-cache @@ -672,7 +865,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:24:45 GMT + - Thu, 29 Jun 2023 09:45:04 GMT expires: - '-1' pragma: @@ -705,14 +898,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6f7685a4-17a5-4882-9a5f-1011fcd741ba?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ee5c7607-a287-a642-87d2-242f8646ebcb\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T12:23:13.5698704Z\"\n }" + string: "{\n \"name\": \"a485766f-a517-8248-9a5f-1011fcd741ba\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:42:33.5497793Z\"\n }" headers: cache-control: - no-cache @@ -721,7 +914,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:25:15 GMT + - Thu, 29 Jun 2023 09:45:34 GMT expires: - '-1' pragma: @@ -754,14 +947,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6f7685a4-17a5-4882-9a5f-1011fcd741ba?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ee5c7607-a287-a642-87d2-242f8646ebcb\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T12:23:13.5698704Z\"\n }" + string: "{\n \"name\": \"a485766f-a517-8248-9a5f-1011fcd741ba\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:42:33.5497793Z\"\n }" headers: cache-control: - no-cache @@ -770,7 +963,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:25:44 GMT + - Thu, 29 Jun 2023 09:46:05 GMT expires: - '-1' pragma: @@ -803,14 +996,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6f7685a4-17a5-4882-9a5f-1011fcd741ba?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ee5c7607-a287-a642-87d2-242f8646ebcb\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T12:23:13.5698704Z\"\n }" + string: "{\n \"name\": \"a485766f-a517-8248-9a5f-1011fcd741ba\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:42:33.5497793Z\"\n }" headers: cache-control: - no-cache @@ -819,7 +1012,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:26:14 GMT + - Thu, 29 Jun 2023 09:46:35 GMT expires: - '-1' pragma: @@ -852,15 +1045,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6f7685a4-17a5-4882-9a5f-1011fcd741ba?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"a485766f-a517-8248-9a5f-1011fcd741ba\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:42:33.5497793Z\",\n \"endTime\": + \"2023-06-29T09:47:00.0023632Z\"\n }" headers: cache-control: - no-cache @@ -869,7 +1062,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:26:45 GMT + - Thu, 29 Jun 2023 09:47:04 GMT expires: - '-1' pragma: @@ -902,67 +1095,66 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-civxyb4z.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000004-civxyb4z.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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: - - '4412' + - '4083' content-type: - application/json date: - - Thu, 15 Jun 2023 12:26:46 GMT + - Thu, 29 Jun 2023 09:47:05 GMT expires: - '-1' pragma: @@ -994,74 +1186,66 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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-civxyb4z.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000004-civxyb4z.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": + 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n + \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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: - - '4691' + - '4362' content-type: - application/json date: - - Thu, 15 Jun 2023 12:26:47 GMT + - Thu, 29 Jun 2023 09:47:07 GMT expires: - '-1' pragma: @@ -1093,74 +1277,66 @@ interactions: ParameterSetName: - -g -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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-civxyb4z.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000004-civxyb4z.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": + 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n + \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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: - - '4691' + - '4362' content-type: - application/json date: - - Thu, 15 Jun 2023 12:26:49 GMT + - Thu, 29 Jun 2023 09:47:07 GMT expires: - '-1' pragma: @@ -1192,67 +1368,66 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-civxyb4z.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000004-civxyb4z.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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: - - '4412' + - '4083' content-type: - application/json date: - - Thu, 15 Jun 2023 12:26:51 GMT + - Thu, 29 Jun 2023 09:47:08 GMT expires: - '-1' pragma: @@ -1286,24 +1461,24 @@ interactions: ParameterSetName: - -g -n --file User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ - \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSVUZWd1JHdEdlVkpoTWtSV1VYUnZaRkpMVEhaa2VrRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxVVZYaE5ha1Y2VGxSb1lVZEJPSGxOUkZWNlRVUlplRTVVUlhsTmFrMHhUMFp2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVNdkNrUTNMMW95ZFZjeFdsa3hNbE5ITTJoVU5YZFZWRWRFUmpkMlFtWkJSRTVQUW1aVFZWQjZRM052ZEc5Q00ydHplbU55YjBJek1GZDJlSEFyY0hwM1ZtTUtTRGRYU1U5UlZqUm5OVk0zWWtobmNrczJNRFJZWmpBNE1XdzJZVnBCVGxCS1oyWnNNRlZ4ZFRoUVJsaG1VMGRFZEZGUWExcFJSbHB5ZWpCVlJpdG9jQXBGVlVOaWEybGhZazg1WjFRNWNXOVZNWEZUT1hGbU5Fd3pOVWxxUjFZMVkySTNlVkp3V1U5T2NtVjNaM2d6Y1ZOUGVrdE1ObTQ0UmpsR2FuWXlVbHAzQ2tWMGQzaGtNRzQwUVVoRWNEWjRhekJoVVV4bVpUZHJSRTFhYVZwQ05taElVVU41ZG05c1JuTk5WMUpXVlhCdllUaHBTM05PVG1SeU16UlhVSFpOV2prS1JEbHBWa2hvTTB0emVqRldXRU55VEdOMlFua3pTblZtVjNaMU1FSTJVek00ZVVWTmFqWjNjSEZLTkVaUmVtdFNjR2xaZUdaMWNUVkRRVGtyT1VwNlN3cEdlRUpaTlRreGNUSTJiM0ZTVTNCSE1YWnBWa28xV2tkbE4ydDVRaXRGUkdkVU5tODJaM2xYUjBSb01VNWxiemhXTUM5UVlYWnFWRnBCWTFGak9VVjVDakUxVG1KWEswVlZSSFZLYzFOTFVIZHlPSFZEZFVObVJFRXdkR2RJZGpGc2FXTXdiR3AzTlhneUwydHVRbVpZWmpKQ2JERXlTekJKY0ZkWVNWUlNNVkFLYWpKcmFubzFVMVZ5WkVvMmNHMHJhRE54T0hkWVpXeEdXRE00T0ZsdmJtRjJiemR3U1dzd0wwc3ZjamRtVm05WFlVTlZTbWhLWkd4cFIwSmhWMDFpUlFwUE9ISnlUMDl0WmtOb2RDdHlXSGRaU1ZaT1MzSkVSRlpOUjNNeWRXSkZhRXhxWlZKd2VGTXlhRXhCT1ZkUVVITkdiMDFNTDFaMlNGSlhaVmMwZW5Od0NtWnhVMVIxTTNBMk0zSmpWelJ0T0RSQ2FVbHZUVXBGWkVwSGNUQnhUR2tyUTFaWk9YRndNREJzUkdSbWQwYzNZbnBuZG14c09VVlRZM1ZLZEU5NU9GTUtSbG96WTJOTVpuVkdMMjlzWkc0eVpEQTNRa05tU0VwUlRuTnZlamRXV0UwNVNscFdaakU1ZG5SM1NVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWUFUwSlZjR3R4YlhJcldHMTNaVGRsQ25jM1NEWnNRamhsYzJ0UmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGQ1JsVlhWVE5rVEV0NFdWa3pVV29yZEZkc2FURnRNM05vU1VzS1VqQlZNM2h1UmtZeVJWTXhkbXQ2V0hWU1dXUm5UWFl5VG5GcVEzUkpNMjh3VVdVMVlXWTFUVEZ6WjBaSVdFbFBRa05PWWxjMmVtWjRSWFZaWWpsTGJncEhUMjRyZUZSQ1UxQTJLMnBuTUhseVJYUm5MMWQzTW14UFdXdEZVRWxJVUdGWWQwTm5TV2RvWkM4MGJVTnJSa3B3TWt4WEwwdEpjak5RZUhseWFsTXZDa0pzZVZSTmVrbHNSRUZWYWtWT1dXZDNXR0V4UVdRemVtOWtUMnBhYVdaT1ZtVlJSVTFhU3poT1IxUXhUMnhzVjFaM1ZVTm9lRmxWVG5OME5VcHZLMVlLTmt4cGJHaGxkV2t3YVRoTFVIYzRXbUZXYXl0S1FtNWpORXRTSzNBeWJTOUxVRFJsU0cxU2MwRnpTbTF6Y1ZSM1VDODVaSGhtUkhkVlNqRjZVRWxJZWdveFRsSnJlRkJuYlV4dE9XVTNOelpCVDJGa2NuWktaVnBQZWtwYVVrZEZSMDlPU21rNWJteFVjVkZWTjBnMFRHOU1ZMHR1ZWxGUVIxbFhPVTFaTUhCWUNteHFPREp0VlVNdk1VdHlUV2xNWTFGSU9GbDRNbGhqYTJ4RlpYcGFUWFExUlZCTVZFMVRWalZoWTFsUGNVeE9ZMnQxY1RWa05ERnJUMWRQWVhsR1EwRUtNamt3ZUc1YWRrdFpPVUp4V0VNM1FWcDZVVFJVT0UxR01IVlZjRm94VEVvM2JuZzFUWGxPTlVsdVRDOWpWR1ZEUmk4MmJEUnZkRXRyTkZsSFNuWjZUUXBzT1N0blJXMVJTVEV5U21kM2NXRTJTMVo0WVdaV01FeDVjVGw1YVRsdE5ESkJUV2hWY0c0d1pGbHhaamd4Yml0cUwyRm9NSFp5V0VKRlRVTXlZVXQ1Q2xOQ1dIVnNVM2x2U0ZOc05qaE9hRVZDYjBsVlVVVnhNRzFFU0RsRVdIbDJaakZDV1dsSmIzSjBZMGx6YW1sT1NubHJOeXRPYUhKYVZ6bEpXVGRzV0hnS2NqSlBhRlJVYjNoUlFsZHZlbFZuVjIxVlYxaFVNakZ2WVVWTlVsY3lkVGR2YkZGNGNtTlpSV2RWTjAxMlFXVkxSMUVyYWk5eU5tNHJObkZCYlcxc2FRcEhiaTl3ZGtWa1QzRXhUaXRLUlhwaUNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc3pwYmY1dDYtcDFnajI5aXIuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3R0Nmt5cmsKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3R0Nmt5cmsKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3RxNW82bHNoM2RjX2NsaWFrc3Rlc3R0Nmt5cmsKICBuYW1lOiBjbGlha3N0ZXN0dDZreXJrCmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdHQ2a3lyawpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3RxNW82bHNoM2RjX2NsaWFrc3Rlc3R0Nmt5cmsKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJVkVORFFYZFhaMEYzU1VKQlowbFJSVEp5UWtkeUx6QjRZM0JrSzB0VVkzRmFkSE14YWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZ6UmtGRVFVNEtUVkZ6ZDBOUldVUldVVkZFUlhkS2FsbFVRV1ZHZHpCNVRYcEJNazFVVlhoTmFrVjZUbFJvWVVaM01IbE9WRUV5VFZSVmVFMXFTWHBPVkdoaFRVUkJlQXBHZWtGV1FtZE9Wa0pCYjFSRWJrNDFZek5TYkdKVWNIUlpXRTR3V2xoS2VrMVNWWGRGZDFsRVZsRlJSRVYzZUhSWldFNHdXbGhLYW1KSGJHeGlibEYzQ21kblNXbE5RVEJIUTFOeFIxTkpZak5FVVVWQ1FWRlZRVUUwU1VORWQwRjNaMmRKUzBGdlNVTkJVVVJ2VjBoTE9FSlRWRU01UWxsalZGZzBSVk5RVkVVS2FHOTBRbUZsYURVck5rZGFRbVZrZDFnM09FOVBMM05SVVVFeGJWVkNUVUpyUkdST2JuUTRSMUZIWXpScWNWcHlaR2RTYXpsbVlqbGpWRkpyTDFSdGRBb3hSU3RUWW5aYVRVbDVRVXBrU21KUFFYZzBOV2RsV1ZoS2FWaFFWVzVtT0dGcGJ6aGthRlpWY0VoaVVGWkxWRGh6UVN0emVUQlBiVkpzWkhkWVlWWmpDbWh5VUd0U2RIVlpVREExVUZwVGVXSlRPV0lyYldwTU9VRTFhRlJOVDFKQ2JYVnBVbTVtVDB0UlJuVXhNRGhCZVV4NVdFTXZWbGMxUjA5dlQyNUNaalVLWXpGVmEzbDVaVXg2YVdveE5YWnhNMjVKZWpkaFpIRnlOa2MyTjBkdE9XZEVVMHcxTVdjNFJIRXljR2xhTmxsalkwUkdRUzlXVlc1SFZEUmlRWGRRU1FvNFNVaENXWEExY0VoVU1VVlhXbUpNVVVKbWFHTTRWV1ZEUkhvd1QwWmxTVzVpY1dkQ1NYVkVNREphYTB0Q1NIWlFjbFJLWldGd1pXcHliWEV2Y1V3NUNpOU9aWFF5VEZWcEsyZ3ZUR05qUm1OeVJIWldTSGxqUzA1NVUyVXlhRW95YVVadGRsZGpVV1ZuTDBkR2VuVTJkalZuVEV3dlNsVjNUa1JDUjBGS1Iyb0tNMnc1Y3k5bFYzaGplREZRYms1TmFHVkVaMEUxYVM5MEt6WTRlVlpIV2xsTlJIQkRNRE00U1RWVmFGbEdlbk56VWxwWmMwSm5VWFJ4VkVSRGMxSjNPUXBUZEdKQ1dVazVlWFZMWkZrME1WZFpZVGs1Ym1rMGFrNDViMHN2TVRWUU5GUkdiVE5HZFVweldWbFdUMGhHWkZScWVrZDBkVXhsVm1OSFdIbEZLMVV6Q2xWSFVsbExSRzV6WVhCTVNEQTNNV3RLUTJJMUsxaDFUVmw0V0V3M1JsVlFUM3BFWVZwNVJ6VlpkREV6V25aSFYwcGpjVWhZTmsxdVVETXlZeloxYTJjS05WaDVTbWhrY0ROdmFHbEVSREp2TldSME5VWmhNM2gyUjJwSE1rSnhkMjB4V0ZwSE4yMVdWbGhSWlhkbldFOW9hVTEyUjJGaVNuSnBjVkZSUTBwM1dBcFNSSEExYlVOcVdYSnhVRGRqWW5Kb1V6WjVORWRSU1VSQlVVRkNiekZaZDFaRVFVOUNaMDVXU0ZFNFFrRm1PRVZDUVUxRFFtRkJkMFYzV1VSV1VqQnNDa0pCZDNkRFoxbEpTM2RaUWtKUlZVaEJkMGwzUkVGWlJGWlNNRlJCVVVndlFrRkpkMEZFUVdaQ1owNVdTRk5OUlVkRVFWZG5RbEUxU1VaVGJWTnhZWFlLTldWaVFqZDBOMFJ6Wm5GVlNIZzJlVkpFUVU1Q1oydHhhR3RwUnpsM01FSkJVWE5HUVVGUFEwRm5SVUZtYzFKTFZsbFJOM2hsYVhkMU5IaFFSREpCWXdwSWIwY3dSMEZWUVU1aU5GWkNURE5HZUdoTE9VVkpURUZ5Y3pVeVVtOXhWV1p4YkhwQ09WcHpXVmx1U1hFemFVZEVWbk5KV1RGWU9YUlRjSFIxYjJVMENsSTRPVWRNVnpKclJGVmFSSHBOT1hVMFRWSmlSa1F4Ulc1Q2NGWTBWMU5DTlVwNk1YWkNXRlpwTXpFM1RUWmhhR2xGWVRKalJsTkpOamxtY2xsM1JXWUtjRWhRVm1OM1RtOVFhRUZHTVcxTWIybEplRkl6VTNCc1FsQXpja1EyUzBKa01ISklZa1JNSzI1aWNIUnBPRWRqSzNSeFJWQjNOM0JPWTFGNFNXdGtXUXBNTVdkWWVtZ3lVazFrVEhNdmIzbDBiMlpIY21WNGVTczNXVGg0VlhWQ2QyaHdiV1JoZGxwMlJrVkNkWGh2U1RSMVFXdDVUVFprUW05aWNtMVhaMmR6Q21vemVuUk1TbTFJZGpGTWVtbFZaR1JNTlhOSmJEaHhjMmwwV0U0dldrOUtPSEpuYURaTFFVNXVaVkZ4TVUxQk5rbzVVSEZCWlRCMVpFUk5ZVFprZG5JS1ZrWnJkM0pXVWxSaWJqQkpSRXRWVEM4MU5GTkpiMVozUW5KVVpUQjZSalEzUjJwWFFtOUtVVzlCVWxwM1NUWlVNbFpEVGxrM1JYcFpjUzl3YkVwaU1BcFdRbUp2UTJSRFRrazJaRkpXYkRZMFRTdG9hRVZ0ZEdaSlowWk9aRUl6Y0RNd1NsTXZOVFJIVEdscWRHNXlTRnBXZG1rNFVtVlVOV3BEWmtwNldFRkdDa1l4VkdVeU1FMHdWa0V4WjJOVWNIaERURE0zT1hwbUwxUkhWVmxTYjA5U2RESlpSakJETjBOcllqQTBaeTlEUW1KcFJrSlBWbkZTYkZGNGFHOU1hR1FLWTJkTWFFZFNVSGRKWVdJeGQwWTFRVTFTUzFkaldFZEVZVFJ3TVc1WWRHVkRkVTEyYW1aemNYVTFZbWhSYUhOclZWZHVla3czTUZoQ2FucGxkVFZrTkFwMVZUVTBMM0J1Um01RU4zaEphemRxYldGWFVrMVpabXgwWW1GWFlsWTRURGx3Wm5SNGRtZExabE14Ums1a1VucExSblJWVkV0ME0ybFFVMkpzY1daNkNuRkhkVGhLWjFST2VGUmtSRTFIYmxOTWFXSjRTVzAwUFFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMUZKUWtGQlMwTkJaMFZCTmtab2VYWkJWV3QzZGxGWFNFVXhLMEpGYWpCNFNXRk1VVmR1YjJWbWRXaHRVVmh1WTBZckwwUnFkamRGUlVGT0NscHNRVlJCV2tFelZGbzNaa0pyUW01UFNUWnRZVE5aUlZwUVdESXZXRVV3V2xBd05YSmtVbEJyYlRjeVZFTk5aME5ZVTFkNlowMWxUMWxJYlVaNVdXd0tlakZLTXk5SGIzRlFTRmxXVmt0U01ub3hVMnN2VEVGUWNrMTBSSEJyV2xoalJqSnNXRWxoZWpWRlltSnRSRGxQVkRKVmMyMHdkbGN2Y0c5NUwxRlBXUXBWZWtSclVWcHliMnRhTTNwcGEwSmlkR1JRUVUxcE9HeDNkakZXZFZKcWNVUndkMWdyV0U1V1NrMXpibWs0Tkc4NVpXSTJkRFY1VFNzeWJtRnhLMmgxQ25WNGNIWlpRVEJwSzJSWlVFRTJkSEZaYldWdFNFaEJlRkZRTVZaS2VHc3JSM2ROUkhsUVEwSjNWMHRsWVZJd09WSkdiVmQ1TUVGWU5GaFFSa2huWnpnS09VUm9XR2xLTWpadlFWTk1aemxPYlZwRFoxSTNlall3ZVZodGNWaHZOalZ4ZGpacEwyWjZXSEprYVRGSmRtOW1lVE5JUWxoTGR6Y3hVamh1UTJwamF3cHVkRzlUWkc5b1duSXhia1ZJYjFCNGFHTTNkWElyV1VONUwzbFdUVVJSZDFKblExSnZPVFZtWWxBemJITllUV1JVTlhwVVNWaG5ORUZQV1hZM1puVjJDazFzVW0xWFJFRTJVWFJPTDBOUFZrbFhRbU0zVEVWWFYweEJXVVZNWVd0M2QzSkZZMUJWY2xkM1YwTlFZM0pwYmxkUFRsWnRSM1ptV2pSMVNYcG1ZVU1LZGpsbFZDdEZlRnAwZUdKcFlrZEhSbFJvZUZoVk5EaDRjbUpwTTJ4WVFtdzRhRkJzVGpGQ2ExZERaelUzUjNGVGVEbFBPVnBEVVcwclptdzNha2ROVmdwNUszaFdSSHB6ZHpKdFkyaDFWMHhrWkRKaWVHeHBXRXRvTVN0cVNubzVPVzVQY25CSlQxWTRhVmxZWVdRMlNWbG5kemx4VDFoaVpWSlhkRGhpZUc5NENuUm5ZWE5LZEZZeVVuVTFiRlpXTUVoelNVWjZiMWxxVEhodGJYbGhOSEZyUlVGcFkwWXdVVFpsV21kdk1rczJhaXN6UnpZMFZYVnpkVUpyUTBGM1JVRUtRVkZMUTBGblJVRnhhRk5GSzBsdGVsaFdjV05FVGk5V1JGbEllVmQ1U1RaTloyODJLMWxDZG5wTWNEZHlkRVZJTlVneVdIcFZPVEV2TlRGRFRFaFVUQXBhZGtOVVVtUndSRTVUTWtoUFZXSk5PVXhNZDNWS2JucDRja1oyVmxsWlJFMWhaekJrTkhWSE1tbFZWV1F6TTJzeFEyWTBja294Y1U1Q1pXdGhXWFV4Q20wd2FUbFhTbUZFZFd0WE1TdEtkRkV2YVZwV1VWSlNaekJaY0dKclFqSjVPV0p1UVRabVVEbGxWRlZSYzBOWFYwaG5Nekp2VTNaUGFEWmtWV28wYlRnS1JWVjRWV2xNUjFBNFRYZDFPWGN4TkZWUlNuUnBLemx0T1c5aWFFeGxUakZSYkdaTlpsSlVUeXQ1U3pSRFZYZzJSREZvZG10RlR6TlBlRTluZWl0clRnb3pNa1ZKTkV0RVRWbFlhVXRMYlhObFVYWnhka3ROTTJKdWNEVlpWMUJHYkhGd1FuTmpXRzVNTjFseEwxUmpNUzlNWWxFellWVkxVMnBDZG5GU09FWmxDbUZsUTNBeVJHZGFlbVIwWms1WmFuSm5hMmxxY0VaQ1MweGFaakEyZURkalMydHlXRVVyWW05WGNFbE1VWGQ2V1cxck1uRTNhMFJSYmtwRVVXVk1ZWFFLV1dGeVl6UTBkMkZvU1hSQmJuSkdSR0Z4TkVKcGRISnJiRVozTWxZMkwyWm9SMlJYSzFab1dGSXZjQzl6V21Kc05raHpaV2hhY1RoU1VuaDBlbUk0TUFwUGRrMWFOM0ZsV2tWVFRrMHpieTl1YVZwMlYwcFRXbVpwWXpaMVdXcDBWV1ZxWmpCM0wyOVRWbTR3U1haMEwySllkSEZHUlVSWk0wRnRVbTA0TDBGWENuVnpkMVZrVVV0VVpXVk5kRmRHSzJKWVkydzFWR3hTZUUxWVJEWjVNMHQwU0ZWbGQwOUxaa2hPWkhKaVFrbGhjV3hVZDBacFkyWXdaMjFJUkN0MFJtZ0tNa296TWpOVWFqSjRPVWxZTmxKa1JITnRNRGR0VFZJM2RGa3JUMFpHV1ZaRGNtRTFVMFpZVW1SdlQzQlhWVE5vVjB0a01YTlJNMko2VmpkRGJEQlpSQXBVWjJaVFpXUlpURXhPVFhaTWRWQldUbXd4T1VVNGNVVnRWWGRQTlhWUlVXaEphQ3N3ZGt4TVZWbDNNREZqUjBwSGQwVkRaMmRGUWtGUEwwWkxjU3RrQ2xSNFVGTkhiM05XTjFKd1UwVmpMemhpVUcxaVZrVjRXRWc0YW1obWVUZFFRbkphTW0wd1dUZ3Zka3hLVkVWVGFVd3liMFV5Um5oVVJVWXZXVmRwY0hBS2FHTkpiRVZTTUhoUlNHSjBRV2xYV0RCRWNGTXJLMUpOY0N0Nk1VSldNR0ZpZDFwYWNsVTNLMDVGY0VwSWFHMXpWMm8yTXpjdllYVm9hbXhtWlVFeVR3cDBOWEptTWpSQlNIZENXSEl3YWt3eVNqQjNiVEJxZDBWbFIxQmlObWd2TDJkNk56ZENTSE5GUkRoNU1WTnZMMWhFVVVwU2F6TnFWMFEzUTA5aWVXWlVDa05vU1dsWFRrWktUemRxUTBNNVJqRmpNalJsUm5nMUsycElVbWMzU0ZWUmVEQm5UR1U1UlVsaWNtOXBObWROVTJnNVZXaFNaWEJsVW5aWFNVRTVhRzhLV21OeFQxcDNPSGc1UjBNNFNXaG1lWE5HVEdNNGNFVTNUbVYwTjJSV2NWSllOM0JJVmpkQ1NIVlRWSGhIVkhaNkszcEthRk5RUlVnMWRXZEdUWEZzU2dwSU4yMU1lakIxUlc1Q2VYQldOVVZEWjJkRlFrRlFaMU51TmxCU2NFVnZNM054YW5WTmJVcGxhR2xsV1ROSGQzaEVaMDFOWVUxak5sWkRlbWt5WjBRckNqVm9jM0V3UTJkMVVYUnBVek41ZEZGTmRXZHZMM3AwUVhSWFpsWXlOMk41T1d4VmIxbHBRelV5YldjM1ZHZFZhMUF3Vm1NM1NYWkxUbEpGWWxVd2EyOEtSMnBEWkZkcE9UQTJlV1prVmk5U1N6QjFORXRJVnpObUsxcEZWVk5KUVdSRWRteG1iWE5EYTJoTFNYVlpVMWxyWWxveU4wSlRUWFp6WldaS09GTmxlZ29yTXpWcVVUbDVRblF4VVhKWE9HTm1WV1pLTDFSNWMzQlZUV3gxVWpCRWFYaFFPVVY1VlZGQ2VUSklaRkp6VVVsaGRVdGtaMXBYZFRnMU1GbFVZVzlxQ2l0YWFVcHZVbVJCZFZOcFNsbEZiV0YxZUVsdVdXNXlVbFpNVUhnNE4xVjJiWFpIVWs5RVZqaFRPRlpHZDJzeVRucFNjVWxyWkdONFl6SkNZekl4YWtRS2RXSnBVMVJKUXpkMVlUZGpkR0pLVGxoaFNsaFRWemwxY214V1EwWlRORmxOSzBSMldXeEdSVnBCYTBOblowVkJVME5JUlhsaWFFWm9aWG8zVmpCU2RBcGFSRWN3WTJsSE5teDNNRWgxZWl0eGNrVkNTMmh6V2pWbGIwMU5RelJHYlVsYWR6RmxZVUpvUzNvdmVEVjZVMGRDU1N0T09FcDRNbEpSV0hCMFEwdFNDa0pxV1daSmVtZGplVXM0VjFsSlVTOU5TMWt4ZVhWRFl6ZG5aMnRtTVUxNVdDOWlTRTh5YjBOaVJWQm9lVkpEVVVOTmNWUjZNa0pWUmtJcmMxcFZVSFlLYjJGcGExQXZhVlp6WlRoeU5rTndaMGhaY1ZoVlRFVktlSFpUTVZWR2VsVmpMekZIVWxObGNFaHFNVEJhUkVob00yNWxOMDFRZG05V04xSkdha0pFUVFwRGMwVXhNVkJ1Uld4RFozaFNSbVJHTkdVd1YzUmtSWEZaY0RSNGVscDZMekJ5WlZkT2RqVnZTblJKZG5WdFdrdGhjWFJWYms1SmNtSldhVkkwU25ocENuSkpaSE54YXlzd1p5OXJPR05FZVdvMlFXWnZUV2x5ZURWYVVqUTJUM1J4TkRWWk1IaFVhVTVLV1dKdE4zSjNNVEY1T1ZwSmJIbENWWE41WjNaR1RsVUtjemR4ZFZGUlMwTkJVVVZCZEdaVVJFUXhMMGg0TkVKUVJsVlhVbmN3Um1ReVZrWjJOMEpQV0VkWWJGTnhWRGhLVjNSelVqSkZWV1U1Y2twVFpVRmFiUXBzV1VFeFNGRnVORXhRTVZaTFJuSjNUa1JrVTNJeU9EYzJNelY0WVRGMWJUZFhhME5qZUdOQ1MxcHNaRVEzVUVSa1RXRTRUV2cyZFVKNFlVUm1aV1ZsQ2xSSFJUUkZSVWRLYzFoMlRqRnFaa0ZWUkNzeVdtWkljV1E1VFN0TFUzTkRPV2R3WVhrMlZsRnRZVGhDZERaMFYweEtUMk40VDJod1FWY3hRall3TVdnS09FOVVWWEp3Y3pCbGJFRlRLellyVlZOQmMxSlVTRU5KTW10MlZEZEpVRGhpT0ROclEwRnRPR3BJWmtoQmMyMVBaWEF6UnpaYVRERnJiMHgzYlRaUGJncHlRMjlJWWtSWFNVaFhjWGdyZVM5eWJIZHNWRWh2VkV0bE5FWjFNM2g0UzFneWIzQmxUVlZZZFdWNVQxQkhPVlJHTURGRmRtcHFhREJ3V0Uxak1tY3JDbUpDYjB4Vk4zTllaMDl1VWxCWFJFeHJiRWRyVVRKclVrNUdNbWh0WTFreVRWRkxRMEZSUWtzMGVUUnROalpFZG1KaFNXaFRXV3N6UkVGRE1qSlpjVTBLYkdaS1pGQXhkV2xYZWxseFFYZFdSVXhuUzBVeWJ6RkZMMUZwUjBSbVMycGtVR0ZTZGt4blNuQlhTazUxY2lzNVdHWlVNSGxwVEhoUlQybG9kVEkwU1FveWRFOXBUM0JDVnpCMVNXRTJkWEJ0Y1RadE1IWk9lbGQwV25vMWFrNWlTblpyTkROVmRtTjZaVWQxSzNweU9EVnpTaTlpZGpKcWVFWkVjbEZKZUd3eENuUnlhU3RZTVVwUkswd3ZVemM1T0M5QmEwVjZNbVpWUVZwaWVUSjBTVmhZYVRFMmNXVmpLMVpVU0RGelZrUjJVVWxvUmxkU1EwcEJWamR5Y1Znckx6RUtiMmhZYjFkNWEzbFJNRmRuY0VkeGRHcEpMM1p2TDFWMlJtOVFWbkJrZVhRM1NIWk1TekpJU20xTlpsVm5Oa3ByYjBWR2EwNDRabWRGYzAxMVMwVkNjZ3B2U21sTU9WcGlWeXRQWmtSb1ZWRXdlRGR0VEhsMmNVWjNjVEpHZEdReVoza3hTSEZYTVV4cmVWRnBialpSY214Qk9EVmljR1JFU0UxNk0xVUtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogMGdoemZvYXUxcDRsZDlrcTRvNHJuazg1NnFvcmtjZWV2NTd3bDg4Y25hMjd2djIzeDZ4emlvYzlucW82dnR3c2ZuYzJ3bjZieHAwcndqemxtbWM0amIxNmJlZnVqMGFmejZhcG0xZzF5Mnc2Z29od3loaXF5OHQ1enk1cTI5Z2oK\"\ - \n }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": + \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVU5MmJYSnZWbFpWWlZsSUsyVXdTbmhRVFhseFlrVjNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDA1cVNUVk5SR3Q2VFhwRmQxZG9aMUJOYWtFeFRYcEJNazFxYTNkUFZGRjZUVlJDWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNqQlplWEU1WTI5UVlrZElNVVppVmxGamRWbEpiaXQyYnprM1JISkRiRkpuZUZrd2JGQnJWaTgyVkhWM01uVnNTM1prZFVKWkwyOXJNR1p6ZG1sb0szSUtOR0kxTUhOeU1rdERRWEJDWTJkUmJuWnFVV1ZDYXpJeVZHSkRhMk5wYWpWWVJEQkVVRlE0VkhkRGVETnJPRmxCZEU1Q2NsVTVZVzF1V0ZGWVdUTTNid3BsY0d0SGJFbEhaRlI2VG1ORk1WY3JkbTAzWW5Vd2NuaEthblpWYlVKU05HNW5WRFJ0VUhObU9GZDZUakYwVDBoUVJrRjNNV3ByVlRVNVJuRnBaWGhRQ2xKR1VFZHVMMHREUTJab2MyeEZVSEI2Vm5RNFZtUnBkSEl3ZVRSV1ZrVlZLM2R4THpCeEwwcGlkelZWTjBveU1uSTRVWHBvZDJsYVpucERZblYyV25JS2NtRTJLMDlTSzJwelJuZEZVbTFKYlRWbmQzWldiMlZYY1V4M1VHY3JNRmhaYldSWGEzSXhNaTlyVDJ0eVUwRkRXalZFVFU5ckx6RlJaR2hLUTNsT2NRcDFWMHRMWWpreFQzSTBXbFpJZVhwSmVFcDNZa2xxTjA1a01uZE5PWFJZUmk5RlNFNTFRMHhRYVdGTWNIQkJaakoyU2pGQ1FVaFBiVTFYWmxJMlFqRTJDazlITWs5cmJWUkNWbmhSU0hkNlNIRTRZMWRCWm01a05FcEViMHRHU1RZeGRuUmxVbkZxY2pSNGQwNTNVVkl3Y1U5Q2NFODNUelZ4V0dOalowMVRlRmNLY2sxcFlsUXJjMDlKZEN0NVNrTkZLMkV2VFhSVlRVd3labTF5Tkc4eVFrVjNXa2N2V0dOdFlsQm5TbFpaVWtGcU1FeENhSGhMVG1jclZITnFOVkl5V1FwUEsyOVVLMjVsUm1kS09VWnpRa00zU2xrdloyZG5NMkZHZW5oTFNtOHJXa0ZXTjFoclpqVm5LMXBJTmpSMWFIRTRUMGRqWkhwbU1WQXJiV2N3Wm5kbkNsQlFMMUYyTWtvM2RYQnBhVGRtT1hwbU5HMHlZVVF5VW5ObFNHSkpMekZIYVVoNlVYQkRhbHBuV25GaWNrbE9SRGxDV2pKck0yaEhWV1E0YjJ4ek0wWUtNVkZZYWl0M1NETmxZaTlDVW1WdlVqVkZRVXhSWVhCTlJGQktVMGxYTkU1clQzWnlNVzVoZHpoM1JVTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1F6SlpNRWRsU0doa2NIRldlbGw0Q2poSlRqUXJZWEZaVGpKek9FMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlFuVnBaV2RNV1RoUlRtcGlkbFZNTjNwbFpWb3JVall5VlVVS2EyY3JWbEZOWkdOTmJHaGxaQzlhUW5KNE9DdEJiVE5OWWpkamVtUmxaVE54TldJcmVYVkdRVmcxWmtkQ1FVZFhURTlRWVVscGVHUmpZVXd6ZFROTUx3cFpibkpJYlVkUU0waHpkekpCVUZCRU9FZENTMHR2UzNwUGEyY3JOa1F2WmpoTlNIWnBlblJPWjBWU1JsQm1ZV3htUWpGV1ZYUXhjbmxrY1V4QmRqaENDbWszWjFKS1YwaFlkMHg2WmxoWVRVbHhNV2RSZDNCSE9EaDJUWEJKY21aaVNDOXZPRFpITVhkR1EzRk9ORTByU25Sb01IcHhkVFpQTWk5T2JtdDFaa1VLY0ZoRVpqVnJTR015WjI1dE9VTjVTWGRKY25aRVJETkpaMElyUkVwek4zVlpaamhzUVV4ck5UTk1XVmx0ZWpsdk5td3lPV2xDVFdkMWRFSmxVV2hCTndwMlNXWmxUR0YwWVdkcE5FSnVOalZtS3pReWNrSjZURUpwUVZkcmVIcEdXVVJ0ZW5sYVpWTnFha0ZCTkVsSlFXRTNSV2t4VFVkWE1pOHhlRUZEZWsxMUNtZFdSM0ZOZDNwV1drdEROQ3R0ZDJwSGFqWTFjRUV2VkZKaVFXUlZUMVJIU1dFd1ZucE1ZM0JaWW5FME5tSkJLMVZDVmxKMGF6bHRjMXBrV0M5UGNrNEtRMXB2TDBOQ0szUmtRVzVXZWpkU1lVeG1hSFJNYlRkaVZuZE1WRTVxWTNWaFlVNDFkVVV3Tkc5dmVUbFJjekV5U0dSSWFFaE5lV1ZFWmpCV09VOUJhd3AxT0VoYVZtOVlSbHBVVVRKd1JrSkRkME5HSzNKVldqQmlXVlJxVkRkU1JYbHhhbVV6TTJ4S01rNDJTRVpuZUdZNFdFTjBlRFZaYkcxVVNGSklWVzFyQ25SSGEwSTNjVmxTVUN0eWQyTk1kV1U0TjBjNWJWQklVbXRUUVc4ck1rUkdTWEZaVG00MFRDdHFSbkZhSzJwWmNsTm1Oa3g0V1ZZMloweHZkR1k1ZEdjS2NHSk9PSFV5U21WQlZHZGtlWEJvWTFsSFFXaDZXVTg0U0N0NVNEZDJNbHBKV1VsMU5sTjNjM0EyVm1wM055OUdhMlpyU0ZWdVJEaFlOMWh4U0VaMVN3cFlNVkpTVW1RMVprbFBNbTFrWlVOd01IYzlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5za2l2eGs3cy1jaXZ4eWI0ei5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdHVpeG0yegpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdHVpeG0yegogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdDRpcGRkMnY2Y3FfY2xpYWtzdGVzdHVpeG0yegogIG5hbWU6IGNsaWFrc3Rlc3R1aXhtMnoKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0dWl4bTJ6CmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdDRpcGRkMnY2Y3FfY2xpYWtzdGVzdHVpeG0yegogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklWRU5EUVhkWFowRjNTVUpCWjBsUlEzTm1hWFIxYkRSQ1JtVXpaelJSUzNGdFREWlhWRUZPUW1kcmNXaHJhVWM1ZHpCQ1FWRnpSa0ZFUVU0S1RWRnpkME5SV1VSV1VWRkVSWGRLYWxsVVFXVkdkekI1VFhwQk1rMXFhM2RQVkUxNlRWUkNZVVozTUhsT1ZFRXlUV3ByZDA5VVVYcE5WRUpoVFVSQmVBcEdla0ZXUW1kT1ZrSkJiMVJFYms0MVl6TlNiR0pVY0hSWldFNHdXbGhLZWsxU1ZYZEZkMWxFVmxGUlJFVjNlSFJaV0U0d1dsaEthbUpIYkd4aWJsRjNDbWRuU1dsTlFUQkhRMU54UjFOSllqTkVVVVZDUVZGVlFVRTBTVU5FZDBGM1oyZEpTMEZ2U1VOQlVVTTFOWEpZY0VzNE9TdDNjMGxWTlRkbVRuSlBSMkVLT1hsSU1EQkRhekZDY0ZCRFMxcFFaVFlyVXlzMkwxWTFUMlJsVkdWRVYyaDJNM1l5VWxWalZuQnpVR2xrT1RoRVZsUktZMWxsTXpkd2EwUklNMjVsTndvMUwyTjNhM1ozVEhKTU4yODBja1Z2U3pSME1rRmFia2w1VFhaQ1kwZEZLM1l5YVZreldIbDNNVmRRWlhOMVRuSkVja3RETW5JcmJFeGFkWGh4WTJVMENrMDNRV0ZCZEdkWU9DOUVOMGc1UjBSTFMzbHVWV0Z2U1hCelZqbHljVWQzZVdWWVRVWlNNaTl0YzI1ME1XSjNLMFZEVTJsd2JXeEZTWEZuYTA1NVJ6QUtjSGhUWVRoMlJUUkZOa2g2Umt4eksyUmFkbEZDUlZCTWJrd3pNRlpWVG1nclYwdHlTVVVyTlUxU1QwOXZXbVY0VG5aNFIwUk1PVEkzTlM5UGIwTkdNQXBKVjB0Qk4xWTNiVWRuV0RZM1RYRlZjV2xTVUdGalp6VkhTVEZZVEZkbWJtdHlMMk5QYlZWVlVXUmllQ3Q1T0ZnM1dHSmhkbTV3VFd0S2FHRkJPVnB0Q25KalUwSXZhMlpPTjJKWVMwdDRkbE5XWkdsaVRtdFhUVFJ3TVRSbGNrRTJiVTVFTVdJcmJEWnRWRmxMVFdFMWIxVjRPRFZ0TmpKSmFEUlVSa1prYlZBS1RVTXhPWEZKUVcxbFVUVjBUVlZ6ZWtsMFJVdGlhSFY1YTBONmVsTmtTeXROYWpSdFRqWkJXazV5UzI5WUwwVkdhMUpNVXl0WlYweG1XalJUUW5CQlNBcFlkQzl3WjNORU5YVmxjVGRpWnpkalNYVkVUMDlWS3pST2NsZHpWbGhuV21sWFJtRXJhMWR3WkZKd04wTnhkamhWVG1GS1FXdGpUSEJYUlU5dU5tNU5DbEZOYWtjMGFtRjVMeTkzV2k5Q1NtSlFlR1Y2Vm1KVk1YUk5ORVZIUjJ0NVVHbEdWbEJ1YW1WeFZYZHRWeTl1WVhKT1lVdzVOMUp2WjNWblVrUkxRekFLVTFka2QwSkZTRFpTZG05VGRGUjBSVFpDVjBaUVRHWlVOeXRyWmtjM05WTnlRbTFGYUU5blQyOUJaekE1VHpSUVpUQmxhMjVFZWtabGQweDRjbmt3T0FwalduTnhja2x4V1ZOSVlXNUxNRlYyZGpGSU4zbDNTVVJCVVVGQ2J6RlpkMVpFUVU5Q1owNVdTRkU0UWtGbU9FVkNRVTFEUW1GQmQwVjNXVVJXVWpCc0NrSkJkM2REWjFsSlMzZFpRa0pSVlVoQmQwbDNSRUZaUkZaU01GUkJVVWd2UWtGSmQwRkVRV1pDWjA1V1NGTk5SVWRFUVZkblFsRjBiVTVDYm1nMFdHRUtZV3hqTWsxbVEwUmxVRzF4YlVSa2NsQkVRVTVDWjJ0eGFHdHBSemwzTUVKQlVYTkdRVUZQUTBGblJVRjRRbTVuWlhSalVGQjVXWFY0Wm1KQmNtOTVZd3BtVkhSWmNHTnhTVTlaVlhnMllWTTRZVmhGVTJ4V01ISTVlRTVzTW1FdmJEVndMMDlSYUhKamNYcG5hWHB2Y0c5TGNGZEZVemhMYjNkU1JWSjRRbU42Q21wTFprbE9RbTlKY1Vock5IaDJMMDQxVkd4aWNsazRlRmMyWlRsd1pqbGxValJ2T1VaWGVsbDVjVnBYVm5oS1ZHMXFURzFOZEhCM1lVSlViSGhSTkdZS1ZsWmFVMlpLVTB0M05rVXdVa1ZHUTFGblRVMWxabWhJTTNaUVMxRmtOM0ZQU1hFeU4zSTJRWEZuWXpKVFVqTmFjWFZNY0hKall6RnlValp6VDFac1VncFJNMHB6WTJnMWIwUlZiR05RVTNvM1ZGRXJNR3R0WVZnemNsbFNTVko2YUZocWVWRkNVRnBpWm13M01tcFBVVWhEV2t0cE5TdFpaRUpsWnpBMlZVb3JDbkpPWWprNVpqZEdVRTFQSzNkMlJqZFhaM1ZHWVUxck1qRkNSVGM0YUcxMFIzSTNTM2hLYVRsQlFVNVdhakJoTldsYWVuVlNRblJ3YkRCblUydEdaMHNLZVZsdFZpOTFOM2xOYjBRMGRIYzFNMUpuVlVrM2NGQTNlRXhIVjJWRVNFbHJOSFk1ZWxNclVqZDRjekE0UjBSa2RFcHVVMUJUU0ZKa0wwWm1OMDQwTndwUFJWcE5SbEJVY3psRWFEZFBSelIxY2t0MlRERk1PRVoxYkRab055OXlObm8yTm1wSmFIbG5iVEpVVW1JMWNFSjJNMFYxVVU0MGFFazVNVW93TTNvekNrbzFlQzlMTDBNeVNFbEJVMVJsTUN0MFUyd3pPVzVMWmpoeE5sSlplRlZRTVdWRmNtVmhNVmhPVm5sUWJUVldXRkZrZDFjeVFtVnVVbkpyVTBKbk5ub0tWbEYyZGxoeFdFeEtaMWQzUTI5RFoyeDVkREJMU0VJdlRtSm1PR3R5WkdwTVEwbGFOSGwzVEdKSWVITmhiMHRRZDNwYVZXOUlUMGd3T1RSNWRUUnVSQXBLYjNkb1RsSlVUV2hJUzI5VGJVdFdPRkp1TXpkNmNVWjRLMDQwVDBkWVZtMW5hQzl6WVZaVGNYTm9SSGRSU25KS1JqUjFNbHBPZEhwaWJUUjZNRlZsQ205VE5HUnBXbWhEYWt4bE9WcDFkMHhrVVVaS2MyTk5QUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1NtZEpRa0ZCUzBOQlowVkJkV1ZoTVRaVGRsQm1jMHhEUms5bE0zcGhlbWh0ZG1Ob09VNUJjRTVSWVZSM2FXMVVNM1YyYTNaMWRqRmxWRzVZQ21zelp6RnZZamszT1d0V1NFWmhZa1EwYm1abVFURlZlVmhIU0hRck5scEJlRGsxTTNVclpqTk5Ta3c0UXpaNUt6WlBTM2hMUTNWTVpHZEhXbmxOYWt3S2QxaENhRkJ5T1c5dFRqRTRjMDVXYWpOeVRHcGhkelo1WjNSeEwzQlRNbUp6WVc1SWRVUlBkMGRuVEZsR0wxQjNLM2d2VW1kNWFYTndNVWR4UTB0aVJncG1ZVFpvYzAxdWJIcENWV1IyTlhKS04yUlhPRkJvUVd0dmNWcHdVa05MYjBwRVkyaDBTMk5WYlhaTWVFOUNUMmc0ZUZNM1VHNVhZakJCVWtSNU5YazVDamxHVmtSWlpteHBjWGxDVUhWVVJWUnFjVWRZYzFSaU9GSm5lUzlrZFN0bWVuRkJhR1JEUm1sblR6RmxOV2h2Uml0MWVrdHNTMjlyVkRKdVNVOVNhVTRLVm5reGJqVTFTeTh6UkhCc1JrVklWemhtYzNaR0t6RXlNbkkxTmxSS1ExbFhaMUJYV25FelJXZG1OVWg2WlRJeGVXbHpZakJzV0ZsdGVscEdhazlMWkFwbFNIRjNUM0JxVVRsWEwzQmxjR3N5UTJwSGRXRkdUV1pQV25WMGFVbGxSWGhTV0ZwcWVrRjBabUZwUVVwdWEwOWlWRVpNVFhsTVVrTnROR0p6Y0VGekNqZ3dibE4yYWtrclNtcGxaMGRVWVhseFJpOTRRbHBGVXpCMmJVWnBNekpsUldkaFVVSXhOMlkyV1V4QksySnVjWFV5TkU4elEweG5lbXBzVUhWRVlURUtja1pXTkVkWmJHaFhkbkJHY1ZoVllXVjNjWEl2UmtSWGFWRktTRU0yVm1oRWNDdHdla1ZFU1hoMVNUSnpkaTg0UjJaM1UxZDZPRmh6TVZjeFRtSlVUd3BDUW1od1RXbzBhRlpVTlRRemNXeE5TbXgyTlRKeGVsZHBMMlV3WVVsTWIwVlJlV2QwUld4dVkwRlNRaXRyWWpaRmNsVTNVazluVm1oVWVUTXdLeTl3Q2toNGRTdFZjWGRhYUVsVWIwUnhRVWxPVUZSMVJETjBTSEJLZHpoNFdITkRPR0U0ZEZCSVIySkxjWGxMYlVWb01uQjVkRVpNTnpsU0t6aHpRMEYzUlVFS1FWRkxRMEZuUVROcmQyb3JNQ3RKVEN0NE1HRk5jM1F6TmxJM2IzWk5hV2czZW1wcFlWUjZlVFZ2YzFkTlZqaEpNVWhHYkRsRGVrZEpWVWR1VVZJNVJnb3lRMEZSUlZCTGRWZFVaVXRRTkZneWNVUkJSVGgzWVdGMVdqaENlR0UzV1VSd2FtRjRTMGQwTjFaaldYTjVkbFk0TVZOT0sySnJkamgyUTJaWFdXeHFDbUZhVGtaTFoxaGFTbHBHYmtJNVdFWXlTemxEUzJkb1NtSkpRVkZUVTA0d1NYcFhSM00xTlhVNVIzZHNNRnB6VEhsb1dWTXdRV2h4VFdwTFZVd3daRXdLV1RKVGNGTjRWR2w2VDNGb1ozbElkMjVrT0V0U00wbE5iMWsyY0N0MWFtMURXWEZxVVZCMFFrOUJiR2dyY21KQ01GRlRWR05wUVROVmRWZzFMMEoyVEFwSVRGYzBibnAwUW1kSU1XZDBVbVJzZFZwdWFtSkhPVko2WmpCNVVXMXBORTFxTkZWbEswMWtlVWgzYmxKV1dHeG9OMGxpYmpST2FHUkhiVVJwVWs1cENrOTJURTEzTkVsSGFGSnFia0pyTlhCNGJHVTFWeXREZG5sRldHNXRVR1JYVkVzclFWQnVUamxtTVd4d1Z6bHRhMmxWWjBwc1pIazJkbTlSZFhGT1NFNEtSVXcwVGxGelZEWjBSbGhUZUUwNFN6UjZjVFpwU1U5SVRtOVNRMjE1YVRaNGQwWkVhblF6WjJVeWJuTlFjRE5KVDJSUVQzRlpjRnBZWVd4QmQwSjNRd3BETWtjd2MzZEVNMVZ3ZUdVMFdGaDBUbUpZY0hoRmIyaE1WVXRzWjFWMGJXVmFkbTVhZFVwaU9EZDVNWEIxYlVSdlJEZEtTRmd4VUdsbllXNDNRMlZhQ25CTVZreHBjemxhYkZrd1pVMTNjakl5YzNOQ2VWZ3djVGhMYzJWS2QxZzRla2RwVVVaSVkwcGtkWGMwY2tZeVIwSm9XalZMZG1wVWRVRlBNbXRwYm1jS1prSXlMMU5GVFZaclp6WkRWRzFGVDIxNVREaEVMMk0xT0U1bFEycGlWalZ2VldjNVZubFlkRGR2UWtwUmVHMWlUM1l4Wm5Kak0wSlVhVUZZY0ZGS1pBbzVNV0U1UmxFemExY3pNVGxOWkZaa1QweDJNVmhqWm5salREVnFUVXB2WjFRM2IwZElXbGx4SzJVeVpURTRaa2wzVVV0RFFWRkZRVGxFVVhFdmQwMDVDbmQ0VERscmRuUkJOVVJ1U2xwV1VpOXJXRGhxV2k5UUt6bHdiV1J0Umk5V2NVWXplR05IYjJZMVlVdHFWMWgzYmxoaU1HVnBhRlYzVlZOb01qZEdkbWtLYlVJeGIyRkpSV3BYWkdZclRTOURXbkZJYnpObmJpOW9XREZwYTFFMmFFdEhjakZhU0V4amNHVm5ZVWN5TWt4NVZsWmFTVUpQZEVVM1ZIY3JaWEJrUndwWGMybEdObVY1ZVU0d2NtUkZRa0pWTW5wWlUxVlJPSFIzVUNzMldXMXNORTkyYjIwNFdqbDFZVVIyVUc5QlYxb3hVMFZ0V2xWa1QwWk9UMWRpVWpOQkNpdHBkalpTVFZkc1RESTNhUzgyZEhSRVVuTXpRMnBFYWxReldWRkVjM0ZrT1ROMVZWTlphMkYxVUZSUVVsVndXWFkzYmtkTU0xcDFhMll5WVdwUVVYUUtlR3A2Um1vck5GQldiM0JzYkhwdlVuRnRaV0pOY0haSVNUaFdOVGQwUlZreFJWVllSQ3M1U3pkTWFYaGliSGRGUjJzeE5uUlFMMlJyV1VKWFYybFdaUXBxT0hGblNGSlZXRzlqWmtkT1VVdERRVkZGUVhkMVIxTk9kV2h1TWtGSGNIWXpTVmxJWnpsTGJtaFJPVGczUWtGalFtcElPVXBVZEZwUmFYUmFZVFpvQ2xoS2FGZDBkR2hGUlZBd0wxRktabWd2TkhOMFQyUkRWRGxxVmpaM1lYSnBlVEU0UjFoeU0weEJVWEEyUkU5WlJsaHZlRVpxUTNWbE5uQXlXWE5PWms0S1JYRjVOSEp2Tm5GeVFYbHVVRmt6WWpRM1MwWnFabE4yUTNjNFNVaEhjemxtUldwMFYxVkNUQ3RvU25Jek5ITnFiSHBLZGtwTVExUXZhbGxYVVZveGJBcG1ZVUpSWTFGRlNsbFhWV2xvVDFVMFQxVkxaMDlMWjFwVmR6TndURk5FTUZoS2FVRnZlVEpyYzNWcGIwbEhhRXBXVjI0MmVqZHBOR0ZGUml0dGNGQmtDbXhRU3pkTU1VVmhaM2xWVlc5M2RtZFhRelZQUVhObWNqbFBNWGRIY1hoTkt6ZHBVazEzU1RGUFdVSlhWMnA1YWpKTk9VUkNiRFF2U2s1SVQyTlVTemtLVEhoWGJYaHBUR2RNWkhwUE1YWm9ZekZqYjBSaVJHRm1aMm95YVhsQ1dUVndaSFJQTjB0TU5TOTNTME5CVVVGbGNrazNZVU5YV1hkdmNXOUlWa1puU3dwVmRHWm9VMjlRWW0xelUzWjNaelE0YlRNNFdVeE1SMEoyU1hObVR6ZFdWaXQwTDFveFlWbzRUamd3YlU5NFRXVnVjRFpTWjJScmMydHJWVlJITWxZNUNsYzBkM0Z4WjFscVF6TmlPV2hYUzJoMk1XbHBlSFpxU0RoNFJFZGpjSFJpU1VsaEx6a3JXRWx2YkZoYWFVWlFXVWROUldkV1VFRmFXbmxoY2tFelp5OEtVMk5CUzNwSlNtTktjV0ZYVmk5dEwxUkdMekZFU25BeGFtZGFiVkV3YUhrdk1VSk9TVmRpTlZKdWFUQk5RV2t5ZUZBd1dVbzJlV1IyTDJodWRYZDJUUXB6V0d0Q09VWTFNbFIyZWxNMGRVVnhhMmRJYVZkalJVNHpVUzgzVkV0V01uQm5iVVJCY0hWNlQxaHhWR0UyVkc0MFduTlJTMWgxTW1OMGRTdEJTVVZqQ25SaVYyUkZWVmt5ZVZaNlRrNXdVVVpCYTBWWGNHd3daMFJMTW1jMmMxaFhhR3A1UkZORWRXSnphU3N2YmtsUlVWTnlZVTlFUkU5amFrTTRaMlZCTTBnS00waG5hRUZ2U0M5WWVXWkdVRkZ2T1hGcWMyeHdNVlZQWTFvNFJqQkRiMU5HWlhJMWFUaExUak01TjFsRE16QjRURmhWV0ZaU09FNVBSSEJvUVdWeGJBbzVLMUY0WkZwV0wyWTNkRmxuT1N0YVJWQmtabmhsTW1kTWNVbzVabEZUWjJzMmRUZzRNakpMYUN0aVJYTmpjRUo0UW1WaVEyOU9USEZsTHk5YVoweElDbkJyWVdWR05VRlVjR3A2VkU4MVRXSlpjMVEyVVV4V1lreDZhekV6SzFWbGVIZG5jRmRMY0VodGNVdGtiMGxNU1Zjd1JpOVVUbVkyWW5wTlUxbFlkMEVLV0hWUFRtdEhaak13TjBwQmNUQXdabXBsYlVwYU5qQlFTWEEwYlhwVVZFMDBkMWxKZVV0Mk1ua3pXbTFzU1VadFZVSlFha2hrWkc1cWNrMU1VSFl6WXdwR1kwTXllV3htVW5ZMGJtVnlUR3hFUVRoTlpEQTRkRXhIY0hvMVdVSndTMFE0VjAxUE1VUTBZVk5QWW5OV04wRmliMVpZTW5GWE0zbFJZeXRpZVZwb0NqSktWbk4yZG1KcmRGQklNamhMUlc0eWIzSXZiWFo0Tm1wU1JVaEJiMGxDUVZGRGRqVjBha3hqT0VSclJuVnRTRTVGUTFKc2NrRTBRVnAwT0U5RFEzTUtabFo2TkRreVYwcFZNbVJIVWtJd2JrRnBiSG80VWsxd09EWTJjMG93ZDBWVlVrVnpjbWREUzBWc1R6ZGtRWGx4T1ZWM0wxaG9WQzh2ZGxORGMxVktaUXBwTWxVNFdETjBOMFpNZFZkelduVXJlalF4TUVvNWNWWkxhWFIxYUV0emRqVm5UR3hZUW5vM2RIaE1hRWxHZVVZeEsyaGFSbmRxU1RCNWNteERLMnMxQ2tZck5FbGxaRnB2T0hjNFUyUlRaR1F3UTBaQ1oyMXdSVmhrVDBkYVVFTm1VM2wxVkV4WVEwZE1WbmxsVERsVU1WZzRNalV2TTFwdE9WSnJabU53YUd3S1RFMDRNalJyYVdJNWRUWjFhMlZPZG14bVJsbHFWVXNyU25WVFJUTkJkelZsT0VkQ1JqaFBTREpJY0ROSlJHb3dZMGRPZHpOUU5tTTFSamgxWWt4T2RncGhXR2hpVWtWQ1lWaFhiRGhKWkhReVRXOTVWbWRzV2twQk5XWlVlRzUzUXpJMU5IVlZhV0ZJU1RoVVZFdHVPVVJ1ZFc5eFkyRnhSZ290TFMwdExVVk9SQ0JTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFvPQogICAgdG9rZW46IHZuZXN5d3I5YmNlaG14eTI3b25vdGh3NmVsd2F6c3VvZ2kzYXRtNjRub3dnYmIxY251ZTZ4ZGYxMWZ4emtzYnI3OHdpbnkzcXVkOXFiZ29iNXFoZ2Q3bWdsdzYyYTBvYmRhdjVmbXJyYnA4eHZyNzVhanJibnV5dnFvd2loMm9xCg==\"\n + \ }\n ]\n }" headers: cache-control: - no-cache content-length: - - '13072' + - '13080' content-type: - application/json date: - - Thu, 15 Jun 2023 12:26:52 GMT + - Thu, 29 Jun 2023 09:47:09 GMT expires: - '-1' pragma: @@ -1337,67 +1512,66 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-civxyb4z.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000004-civxyb4z.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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: - - '4412' + - '4083' content-type: - application/json date: - - Thu, 15 Jun 2023 12:26:54 GMT + - Thu, 29 Jun 2023 09:47:10 GMT expires: - '-1' pragma: @@ -1425,13 +1599,13 @@ interactions: "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"}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_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": {"outboundIPPrefixes": {"publicIPPrefixes": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002"}, + "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": + {"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"}], "allocatedOutboundPorts": 0, "idleTimeoutInMinutes": 30}, "podCidrs": ["10.244.0.0/16"], @@ -1450,76 +1624,75 @@ interactions: Connection: - keep-alive Content-Length: - - '3128' + - '2762' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-civxyb4z.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000004-civxyb4z.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/1b379fd4-2f6d-47df-8cb4-c6a17b5f9bbc?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/44bec0bd-abb2-4f3d-8ea4-11cffd02ba8f?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4591' + - '4262' content-type: - application/json date: - - Thu, 15 Jun 2023 12:27:00 GMT + - Thu, 29 Jun 2023 09:47:15 GMT expires: - '-1' pragma: @@ -1553,14 +1726,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/44bec0bd-abb2-4f3d-8ea4-11cffd02ba8f?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 }" + string: "{\n \"name\": \"bdc0be44-b2ab-3d4f-8ea4-11cffd02ba8f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:47:14.5816616Z\"\n }" headers: cache-control: - no-cache @@ -1569,7 +1742,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:27:00 GMT + - Thu, 29 Jun 2023 09:47:15 GMT expires: - '-1' pragma: @@ -1601,14 +1774,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/44bec0bd-abb2-4f3d-8ea4-11cffd02ba8f?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 }" + string: "{\n \"name\": \"bdc0be44-b2ab-3d4f-8ea4-11cffd02ba8f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:47:14.5816616Z\"\n }" headers: cache-control: - no-cache @@ -1617,7 +1790,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:27:31 GMT + - Thu, 29 Jun 2023 09:47:45 GMT expires: - '-1' pragma: @@ -1649,14 +1822,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/44bec0bd-abb2-4f3d-8ea4-11cffd02ba8f?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 }" + string: "{\n \"name\": \"bdc0be44-b2ab-3d4f-8ea4-11cffd02ba8f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:47:14.5816616Z\"\n }" headers: cache-control: - no-cache @@ -1665,7 +1838,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:28:01 GMT + - Thu, 29 Jun 2023 09:48:15 GMT expires: - '-1' pragma: @@ -1697,14 +1870,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/44bec0bd-abb2-4f3d-8ea4-11cffd02ba8f?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 }" + string: "{\n \"name\": \"bdc0be44-b2ab-3d4f-8ea4-11cffd02ba8f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:47:14.5816616Z\"\n }" headers: cache-control: - no-cache @@ -1713,7 +1886,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:28:31 GMT + - Thu, 29 Jun 2023 09:48:45 GMT expires: - '-1' pragma: @@ -1745,15 +1918,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/44bec0bd-abb2-4f3d-8ea4-11cffd02ba8f?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"bdc0be44-b2ab-3d4f-8ea4-11cffd02ba8f\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:47:14.5816616Z\",\n \"endTime\": + \"2023-06-29T09:49:06.8647028Z\"\n }" headers: cache-control: - no-cache @@ -1762,7 +1935,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:29:01 GMT + - Thu, 29 Jun 2023 09:49:15 GMT expires: - '-1' pragma: @@ -1794,69 +1967,68 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-civxyb4z.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000004-civxyb4z.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/cliaksslbipp2000003\"\n + \ },\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: - - '4771' + - '4442' content-type: - application/json date: - - Thu, 15 Jun 2023 12:29:01 GMT + - Thu, 29 Jun 2023 09:49:15 GMT expires: - '-1' pragma: @@ -1888,69 +2060,68 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-civxyb4z.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000004-civxyb4z.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/cliaksslbipp2000003\"\n + \ },\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: - - '4771' + - '4442' content-type: - application/json date: - - Thu, 15 Jun 2023 12:29:04 GMT + - Thu, 29 Jun 2023 09:49:17 GMT expires: - '-1' pragma: @@ -1984,8 +2155,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/cliakstest000001?api-version=2023-05-01 response: @@ -1993,17 +2164,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0a9cf411-ae03-40c6-955f-cf41d870b647?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 15 Jun 2023 12:29:06 GMT + - Thu, 29 Jun 2023 09:49:18 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/0a9cf411-ae03-40c6-955f-cf41d870b647?api-version=2016-03-30 pragma: - no-cache server: @@ -2013,7 +2184,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_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 index 39c4f0f2818..df04c65dcf6 100644 --- 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,26 +18,25 @@ interactions: ParameterSetName: - -g -n --location --sku User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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/\\\"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}" + 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/\\\"5c597115-4e7a-48a7-a9b4-262d699fbcfd\\\"\",\r\n \"location\": + \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"5db6c4aa-b4a1-454b-8ce2-f4fbbe1809c9\",\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/3bee0820-62ef-4375-8ab8-2a9f219e4ebc?api-version=2022-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/20b1f7c8-722f-43d8-b330-4028f0b94218?api-version=2022-05-01 cache-control: - no-cache content-length: @@ -45,7 +44,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 12:29:19 GMT + - Thu, 29 Jun 2023 09:49:23 GMT expires: - '-1' pragma: @@ -58,9 +57,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a45a757b-73c5-42e6-ab53-71a18d17f90e + - 4840ec35-ab6c-495f-a94d-2f4a2ed13982 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -78,9 +77,54 @@ interactions: ParameterSetName: - -g -n --location --sku User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/20b1f7c8-722f-43d8-b330-4028f0b94218?api-version=2022-05-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: + - Thu, 29 Jun 2023 09:49:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 38aaff00-900c-43ae-a55a-35592581d0ec + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network public-ip create + Connection: + - keep-alive + ParameterSetName: + - -g -n --location --sku + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/20b1f7c8-722f-43d8-b330-4028f0b94218?api-version=2022-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -92,7 +136,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 12:29:19 GMT + - Thu, 29 Jun 2023 09:49:25 GMT expires: - '-1' pragma: @@ -102,14 +146,10 @@ interactions: - 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: - - e0184ec0-81d1-4815-a30b-e6c549b7cf8b + - 8c050442-9d71-47d7-bb82-e0ccf6e93805 status: code: 200 message: OK @@ -127,32 +167,32 @@ interactions: ParameterSetName: - -g -n --location --sku User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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/\\\"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}" + 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/\\\"6f5596b9-0571-4a45-84d5-8d6723046aa1\\\"\",\r\n \"location\": + \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"5db6c4aa-b4a1-454b-8ce2-f4fbbe1809c9\",\r\n \"ipAddress\": + \"4.154.83.129\",\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: - - Thu, 15 Jun 2023 12:29:20 GMT + - Thu, 29 Jun 2023 09:49:25 GMT etag: - - W/"f4dae6fe-3366-4515-9c88-1fc1e61bd9d7" + - W/"6f5596b9-0571-4a45-84d5-8d6723046aa1" expires: - '-1' pragma: @@ -162,14 +202,10 @@ interactions: - 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: - - 22702f89-84f1-40a9-a15f-5a49d6f44a41 + - e975c17f-0206-4d79-8499-438c72614272 status: code: 200 message: OK @@ -192,26 +228,25 @@ interactions: ParameterSetName: - -g -n --location --sku User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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/\\\"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}" + 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/\\\"cae31294-acb5-46a7-ba8f-18a92c80d91c\\\"\",\r\n \"location\": + \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"b6e84c37-b5c8-43aa-b626-79de8f66b6b3\",\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/cdc3ac84-de69-43b5-9aad-8c6daa09dbbb?api-version=2022-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/50965796-dfc2-4a70-ab46-e90759bbd380?api-version=2022-05-01 cache-control: - no-cache content-length: @@ -219,7 +254,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 12:29:22 GMT + - Thu, 29 Jun 2023 09:49:28 GMT expires: - '-1' pragma: @@ -232,9 +267,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 52eb34ce-2866-4a20-9eb1-530c1e0cf29b + - aaa12fd6-2831-418e-835b-1b978a890ccd x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -252,9 +287,58 @@ interactions: ParameterSetName: - -g -n --location --sku User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/50965796-dfc2-4a70-ab46-e90759bbd380?api-version=2022-05-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: + - Thu, 29 Jun 2023 09:49:28 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: + - 618f91c7-7a96-4b12-9e9c-744d7876d0de + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network public-ip create + Connection: + - keep-alive + ParameterSetName: + - -g -n --location --sku + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/50965796-dfc2-4a70-ab46-e90759bbd380?api-version=2022-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -266,7 +350,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 12:29:22 GMT + - Thu, 29 Jun 2023 09:49:30 GMT expires: - '-1' pragma: @@ -283,7 +367,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0e862abd-39b7-4b00-bf80-c4594b38887b + - d4861883-0f84-4479-8e99-96f969d75932 status: code: 200 message: OK @@ -301,21 +385,21 @@ interactions: ParameterSetName: - -g -n --location --sku User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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/\\\"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}" + 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/\\\"aea1a416-23bc-478f-a900-3467f18fd6f4\\\"\",\r\n \"location\": + \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"b6e84c37-b5c8-43aa-b626-79de8f66b6b3\",\r\n \"ipAddress\": + \"4.154.82.108\",\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 @@ -324,9 +408,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 12:29:23 GMT + - Thu, 29 Jun 2023 09:49:30 GMT etag: - - W/"ab076aaa-bdda-4b82-b134-28a9b3e27a9c" + - W/"aea1a416-23bc-478f-a900-3467f18fd6f4" expires: - '-1' pragma: @@ -343,7 +427,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e155cc56-bf35-4309-9d5b-25e307a1381f + - 98862f25-6bb3-4501-8af7-34e471f61018 status: code: 200 message: OK @@ -362,8 +446,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -379,7 +463,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 12:29:23 GMT + - Thu, 29 Jun 2023 09:49:30 GMT expires: - '-1' pragma: @@ -401,8 +485,8 @@ 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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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", + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": @@ -419,69 +503,68 @@ interactions: Connection: - keep-alive Content-Length: - - '2067' + - '1738' 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-yr2o8wy2.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000004-yr2o8wy2.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/1ddb9d92-0e36-4a30-886a-42eb32f6a4ef?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f15603e7-5c40-4712-9083-9485172d2114?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3630' + - '3301' content-type: - application/json date: - - Thu, 15 Jun 2023 12:29:31 GMT + - Thu, 29 Jun 2023 09:49:36 GMT expires: - '-1' pragma: @@ -493,7 +576,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -512,14 +595,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f15603e7-5c40-4712-9083-9485172d2114?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 }" + string: "{\n \"name\": \"e70356f1-405c-1247-9083-9485172d2114\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:49:36.8475568Z\"\n }" headers: cache-control: - no-cache @@ -528,7 +611,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:29:31 GMT + - Thu, 29 Jun 2023 09:49:36 GMT expires: - '-1' pragma: @@ -561,14 +644,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f15603e7-5c40-4712-9083-9485172d2114?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 }" + string: "{\n \"name\": \"e70356f1-405c-1247-9083-9485172d2114\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:49:36.8475568Z\"\n }" headers: cache-control: - no-cache @@ -577,7 +660,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:30:01 GMT + - Thu, 29 Jun 2023 09:50:07 GMT expires: - '-1' pragma: @@ -610,14 +693,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f15603e7-5c40-4712-9083-9485172d2114?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 }" + string: "{\n \"name\": \"e70356f1-405c-1247-9083-9485172d2114\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:49:36.8475568Z\"\n }" headers: cache-control: - no-cache @@ -626,7 +709,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:30:32 GMT + - Thu, 29 Jun 2023 09:50:37 GMT expires: - '-1' pragma: @@ -659,14 +742,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f15603e7-5c40-4712-9083-9485172d2114?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 }" + string: "{\n \"name\": \"e70356f1-405c-1247-9083-9485172d2114\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:49:36.8475568Z\"\n }" headers: cache-control: - no-cache @@ -675,7 +758,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:31:02 GMT + - Thu, 29 Jun 2023 09:51:07 GMT expires: - '-1' pragma: @@ -708,14 +791,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f15603e7-5c40-4712-9083-9485172d2114?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 }" + string: "{\n \"name\": \"e70356f1-405c-1247-9083-9485172d2114\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:49:36.8475568Z\"\n }" headers: cache-control: - no-cache @@ -724,7 +807,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:31:32 GMT + - Thu, 29 Jun 2023 09:51:37 GMT expires: - '-1' pragma: @@ -757,14 +840,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f15603e7-5c40-4712-9083-9485172d2114?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 }" + string: "{\n \"name\": \"e70356f1-405c-1247-9083-9485172d2114\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:49:36.8475568Z\"\n }" headers: cache-control: - no-cache @@ -773,7 +856,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:32:01 GMT + - Thu, 29 Jun 2023 09:52:07 GMT expires: - '-1' pragma: @@ -806,14 +889,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f15603e7-5c40-4712-9083-9485172d2114?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 }" + string: "{\n \"name\": \"e70356f1-405c-1247-9083-9485172d2114\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:49:36.8475568Z\"\n }" headers: cache-control: - no-cache @@ -822,7 +905,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:32:32 GMT + - Thu, 29 Jun 2023 09:52:37 GMT expires: - '-1' pragma: @@ -855,24 +938,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f15603e7-5c40-4712-9083-9485172d2114?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 }" + string: "{\n \"name\": \"e70356f1-405c-1247-9083-9485172d2114\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:49:36.8475568Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 12:33:03 GMT + - Thu, 29 Jun 2023 09:53:07 GMT expires: - '-1' pragma: @@ -905,62 +987,160 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f15603e7-5c40-4712-9083-9485172d2114?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"e70356f1-405c-1247-9083-9485172d2114\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:49:36.8475568Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:53: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 --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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f15603e7-5c40-4712-9083-9485172d2114?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"e70356f1-405c-1247-9083-9485172d2114\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:49:36.8475568Z\",\n \"endTime\": + \"2023-06-29T09:54:00.4215858Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:54: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 --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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-yr2o8wy2.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000004-yr2o8wy2.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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: - - '3848' + - '3519' content-type: - application/json date: - - Thu, 15 Jun 2023 12:33:03 GMT + - Thu, 29 Jun 2023 09:54:09 GMT expires: - '-1' pragma: @@ -992,67 +1172,62 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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-yr2o8wy2.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000004-yr2o8wy2.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": + 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n + \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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: - - '4103' + - '3774' content-type: - application/json date: - - Thu, 15 Jun 2023 12:33:04 GMT + - Thu, 29 Jun 2023 09:54:09 GMT expires: - '-1' pragma: @@ -1084,67 +1259,62 @@ interactions: ParameterSetName: - -g -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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-yr2o8wy2.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000004-yr2o8wy2.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": + 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n + \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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: - - '4103' + - '3774' content-type: - application/json date: - - Thu, 15 Jun 2023 12:33:06 GMT + - Thu, 29 Jun 2023 09:54:11 GMT expires: - '-1' pragma: @@ -1176,62 +1346,61 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-yr2o8wy2.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000004-yr2o8wy2.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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: - - '3848' + - '3519' content-type: - application/json date: - - Thu, 15 Jun 2023 12:33:07 GMT + - Thu, 29 Jun 2023 09:54:12 GMT expires: - '-1' pragma: @@ -1265,24 +1434,24 @@ interactions: ParameterSetName: - -g -n --file User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ - \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSVDFCWVZVWk1RVGRET1ZOdVpqRkplazE0YUVGaGFrRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxVVZYaE5ha1UxVGxSV1lVZEJPSGxOUkZWNlRVUlplRTVVUlhsTmFtc3hUbFp2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVST0NqVjZiRGRtZUc0M1lVUXJXWFYxT1hGMllYWjBibk4wVUVoVE4zVkZjM1pSYkRkSGJXRk9abmNyVkZkdWFEZHBURmREUzJGSkszTjZOMlpIT0ZGTGN6a0tUM1ZOZGxkdU5YY3hVWHBUTldKdFlWaGlSbVJ5VVc4M04xVkpNR2t6ZHpoYU1HTkRTbEJFTmk5bFdIcDRRMUpRZFVjeU5reDJkbVJ6YURCamVIZFlVQXB3UmtSck9FWlRWaXRZU2pkMWVXZzRjamRMVFRSdlpHcE5Vak4yTDI5dFNEaHBhMnRJU2twTmFsUk1ZMUZuZFRaSVdURjZZVFJvUVdwRlZVeDBRa2xJQ2xkTloyMXZXRFJNTlRKRE1sQXhOWGczWTBrdmJGcGhXWFZMY0U1aWRFMUdiM1pqTld0SlpIQmtURXRWVjFCU04xRkNNVFpSVVUwdmFYWnZORUpIYVhFS2QwcG5aMDlOTW5kbFpVTnhiV2czVEZOSmFVSkpSMVpTVmxKUlpHWmxTVmN3V0dsV0sxTlJUMHMzSzB0S2RUZGtibU5tV2k5c0t6SllTbWRTUzB0VGN3bzBZak4yTUVseVFWaHBRWFpHWWs1WFdYbFZNRFprTWtWb1dVNXVWbVpYT1VvNWFUVTBVRGRyUkcxd2QyOWhXbmRWTVVoVVMwTjVSR2xtVkVwelRrcE1DbWxITkZkVVlYUlhOMUpqVWtrNGN6WmlOMUppVEZCbVUwSlVNRTVrVmtSVFdXNXNhWEJGZDNWNWQwaFFTM0JRVDBVNGVXdHNVVEUwTkZKRmJVUjFaRVFLUzFCcmIxVmFSVGs1VWs4d2VWb3pZVlJRUTBRcldXMTRVR0pUTHpGTVR6Y3lTM0I0WTJscFdHRTVjVmRDZFVoWWEyZDVLMmRET0ZkblltVnVkak5xUWdwSFZqRktXRk42UWpOcEwzcHZVMUJ6Ym5wMWJTdHdWRVVyVkU1NVlTOVBNa2hOTTJ4aFNVczFWRzkyZDFjMmFrWnBiak5KVnpodlQxVm5hR0ZJVlhWSUNrdGhlVmhVU0U5clRuSnJRa2x2TW1jek9XVk5XRk5ZU1hORmRuVjJhMDVhU3k5NmFUWnBNWHBZWVd4RVZrTmpUblJQT0ZCb1JWSTNieko1UjBGS2JUQUtUazU0WTI4MlFtaElUMHRpV1ZwM2VHY3lhMHM1VDBSV2NHRTRXVFZCWTFwRmQxcFdWRGhNUmxkM1NVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWVFoyMUpWV3NySzFoNGRuQTFRbTFGQ2xseWQzSXljbTFaYlZKcmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGRWNIWjNPVzk1U21kd2VGWkZRWHA2VEhGalFsQjViMW93ZVdrS2QzUXplbnBrY2t4WWJYcHpSbkZpVEVoVmFWUXlZM0pUZURSaFNqbHhiRlIzUkRBNVVWQk1lVTl4UzAxbmRpOTJTME5ZUjJOTGIydHdhRzVvVDNwT1dRcFZUVXAwZERKNmRWUjFlakY0YXpjNGJYUlRaWEp6TVhwaU5tdE1LM0I0VnpZNE9YWjRUVmcxWjJJNE4zRXJNR3RVU21GaE4zbHhWbkpwYjNCaFRYb3hDalJuZUZsNVduVkZhMlZ0ZWtoWU5qTmtOR0ZtUXpSMFJYSXhVeTh6TldGaWVrcG9Wa2RWTUVrM2VrSnhiekpRVXpkV1RqSkVSM2x0U2pKbVZuVk1ZME1LUVRoQmR6UmFhRlU0UzNWVWFERTNhbUZNTmk5VVowNXlkVnBRTTBob2QySjBRbVJUWTNneU0wOVFWa0ZpWVZSSFNWbFZTa1pQVnpCaGEyTmFPV0ZpU1FwMlZWVllXbnA2T0ZsQ2FGQlhUMEp3TlZsU2JtdHZhREF4VG0xUE9GUnJkalZxWTNoWUwyNUJWVlUyWTJsaWIzaHJWa0ozYm5kdWNHOXhaMVI0UjA1ckNqYzVjRkoxSzNSUWNIbE1TM0JQTHprelVXbGpUVGhUYW5WNGNGSjZLMFp0YTBaQlp5OUxPRmg0ZFV0RGRDOWpjbnBEUlVWTUx5OW5Ra1JqYVcxWVJtRUtjVUZQTmxoaFRYZHBRbXhTYXpadmNXY3dTbHBaYVZObkswa3dNM0ZVWm5OblVsaHJWalZVWmtoR1ZrVm5SV3BtWWpWclJERnVXWFJGU0VWNEx6aDZkZ296V1V4Vk9EWjFXWE5GUW04MVRtUnViME5HUW1Od1RHTkxNU3RNZVUxR2NWWlJRMDl4V2pOVWVDOUJiMjFZZUdkWlYwSkdhRFZVYWtwM2JWazRXR2hMQ2pJMGFEWlRWMko1YkVKMVJVWnplV2R3V2pod1NFSjZka055Ums1NlIwNTZhRUpGUVRKbVYzVXlWVGxNV0dVMFJFSkRVbXhaVUdRMlZsVkdUMHBRVTNVS05GRmxUblpCWjFadlYwcDFMMlZIVFhNMU1qZEtOMDlxUm1SSFQyaG5UMmQ0VFZSVFpIWm5RVWhzV0cxMFdDdEVVa2xST0U5M2FXZHVWMlJqVW13MFRBb3piVEkwY1ZaUVpIUkZWRmRSY2tsVUNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc2w0dGllemUtNTQ5dnB4Z3AuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3QzNTdlaWEKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3QzNTdlaWEKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3RjZDd5bDRremVnX2NsaWFrc3Rlc3QzNTdlaWEKICBuYW1lOiBjbGlha3N0ZXN0MzU3ZWlhCmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdDM1N2VpYQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3RjZDd5bDRremVnX2NsaWFrc3Rlc3QzNTdlaWEKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJYWtORFFYZGhaMEYzU1VKQlowbFNRVXB4WTI1VFZsWTFNMnhTYlVsVVNVdHJjRkU0ZVUxM1JGRlpTa3R2V2tsb2RtTk9RVkZGVEVKUlFYY0tSRlJGVEUxQmEwZEJNVlZGUVhoTlExa3lSWGRJYUdOT1RXcE5kMDVxUlRGTlZFbDRUMVJWTVZkb1kwNU5hbFYzVG1wRk1VMVVTWGxQVkZVeFYycEJkd3BOVW1OM1JsRlpSRlpSVVV0RmR6VjZaVmhPTUZwWE1EWmlWMFo2WkVkV2VXTjZSVlpOUWsxSFFURlZSVUY0VFUxaVYwWjZaRWRXZVZreWVIQmFWelV3Q2sxSlNVTkpha0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRkZSa0ZCVDBOQlp6aEJUVWxKUTBOblMwTkJaMFZCZDIxNFNTc3pTVmxpVVVsdk5uQkxOVzF1VUZjS2RubDFSa1ZSVTJSUFUzaENVRlJ4U21WeVUxWkRkMjVsTWpNeFV5OU1XRWRRTWk5YWIwdG5NVXhtWlM5MmVHaEtiakk1Ym01SFYycEpOMlo1UkdrMWVBcGtTamhZVkZReGIxSmFOMnBWTUVsQlEzaFpha3BzTm5GdWJtdzJaRWx2TW01UFpIRnJjV3QyZFZjM2MxSTFTbEJ4V2tSV1ZYbEZiV1phZHpKS01YbGtDbWRwUzNWaFMwRTJhR2h6WW14UFlWUnZlVzFvWWxsdFNGUjNMMHRtUTNSSk9DOWFkMWczTlhaSkswOVNWVXRRYUVKV1kxSXhNMEpWTmtwcVMzaHBNU3NLY0dFNFNrRk9XQ3RYVW1aaVJVMUJXRkZaVldsTVMxaFFZMVJ4ZVU1dlZqTkRZMUZIUkVzeFZVRmlWRUpTY25vNVdTOUlXRlJ2YkZOSFJEUmtMMnBKZGdwUE5VOUVNVWRQU0RkTFkybDNNWHBTWjBaNGFtSnNkMHRNUVV4UGNFUkNSemhoVlRORGQzTlliWEoyZWpKMGVEVlVUVlJhTDFWR1VsbEplbFV2UzBSM0NsbFJSVWRSUVZKTlNVWXdUbEZ3UjJJdk4wOURNVFJHVVROQ2FHOWtka2RSTUhvcllsWlNaRVZtTnpKclUwRkhNRGxMTlVOemNUZEZTVzUzYUUxck9WZ0tXV2xYYTBOUFRWSTJiazl6UzNWSE9GUm1iWEF2WTBOQ09FZENSM1V2UWpKMmRGUlNVV2R1U3pSeFFrUk1RbXg2S3pBeE9HZE9PRWhZTldkNVpsSklkd3BST0hWNFdVcDFVMjF4YW05WFpuRjNaelZHZFVGTGIzWjVMekZ6Uld0ME4yODJkamRSWlRFd2RtbFJPR1l2WW1VemN6ZG5aMWg1YlhGWVVFcDRTekJCQ2sxMWRteDRZbVp5UWpaRFdHODNPWE5SZVVobloxWkhVbEV5VDA5eE0ybFhORXdyZVZZMkwydElNek5xY1VwTFpGcFVSVEprWlhKWFFVMURSMDB4Y2xZS1dscFpjbTh2TUROV00yWjRaVU0xVGtoWGJYSklhVEE0UjNGUlNEQkpXRkpLWW1FNGJGUllLMVZEYzI5UE5ISnZSbGc1TDJGUmRGWnpjbVpYYTFsTGRBcE1XR0Z1UzBkSmNqaHVjekJIYzFCVmJXcEhLMVZuYzBOQmQwVkJRV0ZPVjAxR1VYZEVaMWxFVmxJd1VFRlJTQzlDUVZGRVFXZFhaMDFDVFVkQk1WVmtDa3BSVVUxTlFXOUhRME56UjBGUlZVWkNkMDFEVFVGM1IwRXhWV1JGZDBWQ0wzZFJRMDFCUVhkSWQxbEVWbEl3YWtKQ1ozZEdiMEZWVTJkdFNWVnJLeXNLV0hoMmNEVkNiVVZaY25keU1uSnRXVzFTYTNkRVVWbEtTMjlhU1doMlkwNUJVVVZNUWxGQlJHZG5TVUpCUzJwWk5tVmFjM0pUTjJGUVZFdFplRzFpUkFwcE1VcHJhMnhEVlhBMlZpdGtlRkpxV0hwbllrRm5OM0ZZVW5FNFQwOVhjVk5rTUhCM1FuVk9OWE5QZDFVdk1uQTFkV0ptUTJaVmJISTFZakJNWlVjMUNpOU9aM2R1WTBKYVlVeEdRak4yVjFSRFIwZFJUM0ZqWWtRclNYcFdlVWs0UzJOTk1UaFdUamxOYlN0dU5IcEdLMmsyTlUxd1pHa3dUVGxLYkVKUGVGQUtlR2RyT0dOU1prWnlXRVV4T0U4MFJHZFlLMmxoU1hCWFNUQXJhSGcyYkdzdk9Fd3hiRXB4UW01Q1QxUldPVmc1VG5ac1pWbzBlR2hHVldoSldHbDFUUXAyVUZjM1QzTndOVk4xVWxGaVptRXlOa1V5Vm5FMVdXNHZaek5GUW00d1IzWkVVMmRvY0dzMmNuWlhhV2x3U1d0eU9UUkRjWEV5YkVOWlRIQm5aRFJEQ2pKV1UwRjVOblZ2TkV4TmJFOUVSMFJUT1Rrd1dXZGxka3RTWWxKWGRqVk5jVFpGTVhKVVEwUm9VSEZwYmtoMk0xWm5LMUV6YTBGTFIycFRRamw0UVZRS09GUm1kMnA0TjFSSloxaHFkRzFYVlV0RVYxTlpaemhKVkZCd2EwSndaV1YwTW1GSlR6UjRPVVJCY1hkalIwZzNiSFpRVjNsRWFHWjJZVUpSZDJ0dVpncGFNRmxXZVVkRU0yMU9TVzlJYUVsWmVXZFJUalE1YTFaR00zQjROR05NVDNkUWRHOWtUekp3V1VaQ00wdHNOREJDZG5nNVFrOVZielUyV25Ga1dIQjZDa1lyU0RnMFRIUlBPRlkyTUdkME9YTkhWWGxvVEZoV1ZtVlJabWhVTVRBMmNqZDFlSFV5UkU5Qk1URXpTRVZyWW5ZclRGVjFVeXQzU0hkeFNrRklablFLWTBvd1NFMTZSMkl6Y2xCbVdDdE5lamRvTm5WV1ZHUlZWVEk1YjFKa1ExSlZjMUY1TVVSM2VVTmxXbmhtZUUxNllrUm1LMHhFZVZKSU1HRjFRa3hVWVFwbGIxcHlUalpXYXpNNVR5OUxSMDl5U1c1SWRVWlZVa0owUlc1YWNqTk9XamdyTTB4Q00waE9OVkJOYm1scFRFeFliVXBVVWs1dWRFWXpSREJtVkRadkNrMWlOa2RFUkN0Q1FWVlZUMUpOY0RodWRITjFjVEZSYVFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMmRKUWtGQlMwTkJaMFZCZDIxNFNTc3pTVmxpVVVsdk5uQkxOVzF1VUZkMmVYVkdSVkZUWkU5VGVFSlFWSEZLWlhKVFZrTjNibVV5TXpGVENpOU1XRWRRTWk5YWIwdG5NVXhtWlM5MmVHaEtiakk1Ym01SFYycEpOMlo1UkdrMWVHUktPRmhVVkRGdlVsbzNhbFV3U1VGRGVGbHFTbXcyY1c1dWJEWUtaRWx2TW01UFpIRnJjV3QyZFZjM2MxSTFTbEJ4V2tSV1ZYbEZiV1phZHpKS01YbGtaMmxMZFdGTFFUWm9hSE5pYkU5aFZHOTViV2hpV1cxSVZIY3ZTd3BtUTNSSk9DOWFkMWczTlhaSkswOVNWVXRRYUVKV1kxSXhNMEpWTmtwcVMzaHBNU3R3WVRoS1FVNVlLMWRTWm1KRlRVRllVVmxWYVV4TFdGQmpWSEY1Q2s1dlZqTkRZMUZIUkVzeFZVRmlWRUpTY25vNVdTOUlXRlJ2YkZOSFJEUmtMMnBKZGs4MVQwUXhSMDlJTjB0amFYY3hlbEpuUm5ocVlteDNTMHhCVEU4S2NFUkNSemhoVlRORGQzTlliWEoyZWpKMGVEVlVUVlJhTDFWR1VsbEplbFV2UzBSM1dWRkZSMUZCVWsxSlJqQk9VWEJIWWk4M1QwTXhORVpSTTBKb2J3cGtka2RSTUhvcllsWlNaRVZtTnpKclUwRkhNRGxMTlVOemNUZEZTVzUzYUUxck9WaFphVmRyUTA5TlVqWnVUM05MZFVjNFZHWnRjQzlqUTBJNFIwSkhDblV2UWpKMmRGUlNVV2R1U3pSeFFrUk1RbXg2S3pBeE9HZE9PRWhZTldkNVpsSklkMUU0ZFhoWlNuVlRiWEZxYjFkbWNYZG5OVVoxUVV0dmRua3ZNWE1LUld0ME4yODJkamRSWlRFd2RtbFJPR1l2WW1VemN6ZG5aMWg1YlhGWVVFcDRTekJCVFhWMmJIaGlabkpDTmtOWWJ6YzVjMUY1U0dkblZrZFNVVEpQVHdweE0ybFhORXdyZVZZMkwydElNek5xY1VwTFpGcFVSVEprWlhKWFFVMURSMDB4Y2xaYVdsbHlieTh3TTFZelpuaGxRelZPU0ZkdGNraHBNRGhIY1ZGSUNqQkpXRkpLWW1FNGJGUllLMVZEYzI5UE5ISnZSbGc1TDJGUmRGWnpjbVpYYTFsTGRFeFlZVzVMUjBseU9HNXpNRWR6VUZWdGFrY3JWV2R6UTBGM1JVRUtRVkZMUTBGblFVSmxURUpWZEhSb1dXVjBkVEJoYzJaak1ESlBZM0p6WldwRFZsaHVVMDQxTVdsRGRtbE5aSFYxTm1KUk1rWlJlVGQyVDFKNlRtNVdMd3BOWTJFeFVXeHlRa296TTI1S2QwTjRkbXhOZEhkbllXazVUbU5ISzNVeFEwOUhWRUp2YVVreVZIaHRVU3NyYm05TlJ6ZzJTVGxGTldOS1NscFFZV05uQ2pGUllqTmpSVGsxWlhwSUwwcHZiREo0Tld4NUsyVjFka0ZLVW5kc04wdGhUMEozTlZJMWN6a3hWVVJ2ZVhwbVpHcEdlbkI2UlZSTlF6aG1VbXRPZG04S00xcG5XblpYT0hOSVVrWnRObEJJU200MlFVVTBjVTF0VUU1SWIycDRjVk5XZDNoR2QwWm9ORVl2ZDFaRmRIcG1WMkZJYjFOWWJIWXdSRXhIWTBOV1lncHJlbEV2YW5jMmJtRnRZa0ZwZFZGSFVrTlFTelo1TVhVM2VFcE5ZMU5HWlZOcFMwNU9MMkZpV1N0b2VVRkZSVUZhVGtoMU5ERmhUa0kxUTBJME5qUXlDamw1TmtkcVZWZGlUVzB2Tkd4TlZGSnNaSG96ZW1oclQydEhiRUpVTURWMmFXWkpNMkpIVEV4eGEzaE5kVVp4YkV0eGNXNVNRekJKWXpJd1FsWlNhV2tLVVhsaGN5dHplbWQ1T1U0M2MzUmFWaTlqWlhkdmFEVmthblJHWm5sUmFqbGxSWGxVWWxWM05IbG9VMmN3TVVaQk5rRnlORWszVTJOSWJ6TkhNazkyUXdwWFREWm5iSE5MZGtWWmFGcE1jQ3RvUTFOSk16QnFZalJVT1RKaGRWbFBkVGhzYjJ4M1JtNXRVMWR5V0c1U1dFRlVNVE5zYjBGM2RtcHBiRU5yV1ZSQkNuUkZlbkZpU2pGNmNHRk1aV3BGV2xSUE5IQlllRWt4ZUZKUFYwMVZUek5ITUd4UlRpOHlNWFJyYlRKYVlpODRUa041WlRGdWJDc3llSFpSYXpaNVZsWUtZMEkxYjFkVWNuWXJjamRWTjFOVVlXTnVabFJYWW5OcE5HMUVUbFpwV1c5T1EwdHBPVEZGY2tOaVRqVnBjbWRJYkZkV1pVVlhRVXQ1TVVKTlNHeE5XZ294U1RCblNHZFZNMGxKV21wUVRteFJlRUkxZGpsdFNVRlhRVWhUTm1sVloxSnVjRFF4WjI5a2RsRnpVMmRUYTNKblVVdERRVkZGUVRCWFVVSXJOWGRsQ2s0eVpsRlpLM1ozTkZGMmFWVm9XR3hzU1V4SlJISjBkMkV5UWpWcU9VRXdkRWRwYURCTmFHbFVMMnBhU1M5c1MzZFhjSFE1T0dkVmNsYzVjazV1TmpZS1pFWjFVVk40U210VWNubGFkbkJMWkRGaGRGTlBTbmh2VUVoM1JrWlZXbTlwYlU5S0syVnhhalJSWkhOa1RrZGthRXN4WVU4MlJYcGxOelJXVDNGV1NBb3pSR3BIV25aRk5XOXFOWFphWlcwMk5rYzFjM042TlVGVE5IRlhUR0ZWVkhaS1ZUWmxWVVJNYjJrMFYxTjFSM1JNTjBOVVozcEVTSEpOUkhCM1ZrTXlDbmQwVkVsb05HcHZLemxUY21zMVRteGhhbHBHUjJJNFdUaG1VMmRuYm5BeVJDdHdUVlkwYmtsM2NIQkRSRkYwVDFGaU5UZGFTbXQwYjFweFNVOHZRbFlLZDJabE1XOWFaeTl3TW5reVpqZEZVVzFJUms4NVVYaFBTblk0UjFWdFVITkVaWEpVYTBsalRsTldMMDExWkVocWJYbFZVR0UzZVZSTVYxRk1SVEp2VndwM1ptRktWbmxRVWs5eldsbFdkMHREUVZGRlFUZGlUbUYyV0ZZcmRsVmFlbkppVTNoc1RuUldhV2xzZVM5WmVWWTBRVkkyYUUxT2VWZFplaTg0TmtWRkNuazFOV1JxYzJ4elJVSTBLMEpaTW10M00yTXZNWE5ZYmxaTk9IcExUV3hXVWxkd05rNXFNMHRyU0U1aVpUaFVURXh3TWl0bWFtRnNMMFZZWVZwelVGb0tkMDQyYlZvcmFtVlhRVTh6YURoSVJXVkhjV2hUU1U5VGJHZHZjMWRWUkV4eEwwSlBSMlJaVTNkU1NIaElSa0oxZEV4cWFEaFZOVGw1VlhkNE16TlhWd3BsYTBWVWJtTjBlV1pXWm5OVlpYcHNiMmx0YUhSak5VaFJOVWhxZEhSVWNucDNZVVZ5WnpGak0wcEpZelZvVDNSUlJ6WlBXRkpvUVhkQ1N6SkJUM2hhQ2xSRVZGRkVjbXhTU0hFM2NtWTBLMjkxYjJGM1VGSlpWMk5XZDJSdGVFWlNiR0owZWxab1VIUkpjbkpOZDJveWF5OXhaemRZY0doU1NXaFFZVTgwVlZNS1lqQmFVVE5TUWxSVlpUQlBjMFpOZVcxbVRUVlNVbmt3VDB4SGVVc3hVbXRqUjJGNVNXNHpWR0pSUzBOQlVVVkJja3BEY1VoaE1teE1WelZQVkZCek1nbzRjRVo2ZGsxcE1VRjZZbWhJTVhOVmNFUnVTRVpYUnpJdlprODFXVVJMTURZd2JXWXdjMnA0T1dkTU4ycENhVWREWjFadlN6SnZNM2xuZEc5SFMyRlpDbkZzWXl0elpFNTBXbkJ0YURCdGRqaGlPVk5hTnpsWGREbEdaR2xpSzJkVWJGUkphMFJSV25aMFpHVlZTazAyVDJWdE0wZFhlVmMxTW0xSGEwTldWRWNLWkdSTVZYaG1NMmhtZDNJMldrdEtjVXBLWldKbGVGTjJPV3g0V2pZelNXVkpTazkzTlZwbGJIWnJZbU15TWt4S1VFeE9hMDF0UTA1eWJsaHJjV1ZoU1Fwa1NISndlVVkzVTFaeU1WSktORE5hVW1oaFoySmpaakZKZEhGeFptWTFZM2xTZVU5VlQyVXZXQ3RzV0VWcGJ6TmtRbUpEVEdaMU9VRllWbVpoUlZSekNrOU9VV05rTlVnMmNHeG1SR2hoY2xablkyWjBZM1IwVFhkSkswZFBibVJETWxCVGREWlljREJDVUd3dlFYZENVRzU2Ym5rNGRGbGpNbFVyVVVWd1R5OEtURXAzYjFWM1MwTkJVVVZCYTJ4a1JtMXFZbTlJUjJSMlpVcFplV0pyTjB0NmVFUk9kSE5SUXpCaVVuZExZVk5oYkdZNU1EVlBNVkpKYm5OU1dtOU5hZ3BuU21wa00yeFdhVUoxVlRNM1IxcFVSV0ZsZFNzMFJsbGxha0ZtY0ZveFRsSk1iVUZ5VTFwMldWQm1SU3MzWkhoWlYzTjNSblY1YXpreFZXTmFaMU00Q2xCeWRYSkdiVEUxU2tKdGFIbG9PRmM1UlVNelNsRjJOMWRLVUU1M1lVcEhWVms1VjFCbVVsYzRMMU5RVW1oNmJ6TkVSMGt3ZFZveVEycGFaV1ZXZEhvS01WTTVORlZ6Wm1saFNDOTRRM2hzUVZSd01WYzRTVEJPTUVwMFYzWkZSMFl4YkZsMVlrbG1XWFJxTldGaU16UnhMM2hYUmpjdlQxTXhjRkE1VFRsT2Nnb3laRkZtVFVveWJGbzFSR05zTHpoMFQyZFdXVkpOZGxsNWNrcHdVVFpzYnpaWFZGRkJlRmx2Y1c4cmQxaFpRM2hGY1ZobFUxbzJXSGgxU1c1cWNrbHhDbGRrYmpCdVUwaGliVmRTWnpobFprZElUa1p3ZFRkMGRGTnlXWFpJV1ZWU01GRkxRMEZSUlVGMVVUTktRbHBWVEc1Sll6UjFTazFXZDNGaE9WTnliRm9LT0doSlZrWjNkMlZXZG1sVWJVVnFUV2h1Y3pBclpFWm5UMGRuUzBSM1EwVk5jbEZrVlZGQ2NYaDJVbVpXWlVaRlJqSkxSRWhEWnpsWFNrNDJiVVJWWndwVlZqZG1OMnByUTJjMGVYRllSVnBVYkhoWWQweHpkalZHVldWTGRHdHNLell5ZGpOcllUaG1jVEZ5UlU1NmVXNHhSMGxqYlZWVVlWSlBTa2hHYWtFMUNtNUdhbmxDTW5KTlpuTXdSRk5pVUhFMWRXcFBaMmRQV0doR2IzRmFXRGMxYWtSTWRFcElSWFVyVjFkR2FESlNOVFJ4Y21aeFpGZFBlR04yYVd0d01rTUtUbThyUjJKcllWRm9jRWhhVnpOeWR5OXVkbFZIU2xCaWMwUTJhQzlxZWt0WVRFRXhXa0ZGTW1GWVNHbEpSM05EVEUxVFJWbFFNazAwUzIxdlZFVmljZ3A2TmpKU1pGQXhZbVZUWVVwQmNHZGxiMEZGT0VKR1MyRTBOMWN6YVZKcVlXMUxUbEpCWm5WMloxb3pZV1JGUlRsTFNsVTRjazVYTkRKa2VHTnNVVDA5Q2kwdExTMHRSVTVFSUZKVFFTQlFVa2xXUVZSRklFdEZXUzB0TFMwdENnPT0KICAgIHRva2VuOiBmOWs4c3UxbnFxZjdwN3ZranE1bmJ1ejZxMXRudXZzYXhjcTR2ajE2eWMwb3hxdmVoaWd1eXY0Y2I4NjJ1dXpzNTg4aXMzdzRmbjBnano2M21td3M5M2w5eGlia251ZnUxMnJhZHR0a3Fqc3BpYTRmYThmdW91czl6NWxtemFoZwo=\"\ - \n }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": + \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSVVRnelJrMUlhVTFwVTFKdE1ERnBWalJRTm1WeVZFRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxcWEzZFBWRTAxVGxSYVlVZEJPSGxOUkZWNlRVUlplVTlVUVRWT1JHc3hUbXh2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVSWENuTnNiakJ4VWxSMFZrSlhUR3BUZVU0ck9HcG9PRUo1ZGt0bU9UVlRlVkJFZDBsNmJGWkVZMGs1YVVoS1dsaENZMVpLVFd0bWNXaExkWEF3WVcwcmEzRUtjRmh6TlV0SVNrVnhaVlpoVG5kalUwaERjVzlOZFdOWVUwTkpkRGt3ZWlzMWNYTmlOVWd4WkhaellsVkJWMlZtT1VKSlptbHNSR2RhYUVWa1pIQk5hQXBZTURRMFVtRkVMeTlpZUV4NlIxRk9ObWhEYVVSd1ZtOVpZMmxuZVdGdlMyVkZXRzFMVkZJeWFrVnRiMWQzT0dGSFprOVhNekJRTUdaaWJGVmpRMmR0Q2tKdVNYWkJNRzFhU1ZOb2VuRTBhWGxXV0ZsRFdsY3hSblF6WjJzMFpFWndRWEZtY2tOeFRtZG5SVTFGVTBWblkwcHFWR0pTV2xCVVNEbFZkbmRNYVZFS2IyUlNNVGhrUzNGcVpYSkZlbXhrTUdkYU5ISXZNMkpKZVhSMGMxQnNlVXAxZDNod1lUYzVaVFJSVWs1d1JuWnNaamwyZUhsd1YyUlFVbU5hVVdONWFncHZWRGhoUW5sSlVVMWlMMWQyVFhsYWJIbFpiVmxaU1dZeGQzbG5hM1ZtYkhKbFVGbHdPWEZuWlVodGNXcDBWMUJ0SzI5MVVHc3ZjVEV5TDI0d2JXUXlDbmhvU0dGeU9YUXhSbVp5YzBka2QwUlhSbVIxTW5GUVVIVllkME5SZEhZeU56ZDVOblV3U2tGS1owNTFSV2N5UldaeWNUZG9Sa013ZEhwTWNuRjRaVlVLVWpGdmRITkVkbEpDYzI1dFFVUnpObVFyWTJWU2JETk5UMkpSUVhSQ2JsZ3ZlSE5HWkd0cFZrRlVkWGh2WjJaVlRFVkRUbVpMTjFaSmRqZFZUVVZWVWdwbGNrNUdlVFpZWjI1eE9XbEJOVXhHWldSVU0yUmhZVmxEVEU5cWRYVkhaVWxsTW5wUWFFdzRhRVZZV1djeWRXUjZTSEZ3UXpocVYzVkZWRXM0VUhKSENrRnhja2d5WlhaRlNtMVlPU3RTWlRGcE4yTjFjVzluTmk4MGVHNUxaR0V6TUVOMVpVUnRUMjlVWjJWelRXWjBNRE51TDJKQ2MwazVRbFZwYm1kVWMxUUtObmhUVlV0WmRqRjFhR3hxUlN0RksybGhXRGt4UzNScVVWVnpSSHBGWlhOTFFuRk5URU16VVRWM1NVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWYWFYcFVSRWt4VDJvMFVVUldaazlJQ21wa1ptVlJWWGhaYUhadmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGSU5rRlBLell2Umt4YVkzcFdNVlZ2ZGtWMWEyeENWREZHU2pBS1dFdDFabTFzUWk4d1dYQnBXVm8yUkVnMVVVYzRLelZ1YW01TE5HdzJVbXh6ZEhSMFUyZFpXR3BsVFhGTFkyTnpPRkZNWW5sNlQydzFkbWwwY1hObU1RcDBNVzR4VmtSQ1JpODNhMkZzUmt0Q1QwcHFNbVJzVG1VMllqQndjVVZxUTFGSVVFbFZZME55V1RaTVZYZzRZVUV2ZFhkT01VWlVjbGRGVjB0SFNHNXZDbkIzYzNkQ00yTk1Nemh2ZFU5alVrbGhSbmQxTlhkdk0xSk9XVUpLSzA5Ukx6WTRiV2xYVmpkWmJGRlZlR2RTYlc5elpYSXlhR2h3VjNWd1VqRkVlRlFLYkVObVRYRnFVVmRZT0ZSSFRrRnlaMjVZTTI5WVkzZFBUVkJaZG1WR1FuTlliV3BUZWxwWlMyZFdaM28yYUVkWFkxaHdOM2xCVVVaSVRFUkpOamxsTVFwWFEzWXZNWE5OY0RKcFpuazNhM2RaVFd4VVJHRklSbmxGVkVGM1pVdHphRXhZVUcxTVJqaFZRekYzVUhOc2VsQndOa3B3WkZCSlUzSlhjR1V4UkZKRUNtRnJWME1yUmpkeFRtYzJOa05zWkZnelJsbDRXV3BaTUdzeWJGVmFhRTlTT1ZaNE56Z3pSa2xyZFd0V2JsazFTRXhHVm5kcGF6aEJLemR1SzFCVVkwSUtZVXhhVlZKQk1XaExhWGxCVFRCMlQzQTBVRFpIVkRObU9HdHBjbmhOYTBSa0wzcHBTazA0VTJaTldYWnFUMDl6TDNSQ2REUkpPVXh3WVdvM01GcFBjd28yYkV0b1NqTXJSbEJKZVRZNWEzTlhWMGx5WjNKbFRsTmplWHBwT0dSdlZtaG9URWhqVEdkWFQyZFdSbmt5UVVOdlRGbGFibU5IZVdOa01XaEVkVTVuQ25kQ2VrcFhja2x6YW1wRkt6QlBZMG93TjNReWRUbHpWa2xuYzNNMk5VSXJhemRKVVdsWlZHcDZhV0kyT0d4UlUyUjZOVWxRVml0Q1RGQkJSMnRvY0UwS1FrNWhiazAyYlZoU05DdGxWSGw0SzBSTWNFZFdNMUY0U0RGTmNFUkVlR0ozUmtKWVdFVktZbXhrTUVWVFkycHJSRkZ1ZHpsTFNtMXdTSGhrYms5UFJBcHpNblZMYURsU1dEVm1SWEZ3TjFKaENpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2RuczdldWYzZ2EteXIybzh3eTIuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3RsYnhocnIKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3RsYnhocnIKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3Q3aHVnN25zdDVkX2NsaWFrc3Rlc3RsYnhocnIKICBuYW1lOiBjbGlha3N0ZXN0bGJ4aHJyCmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdGxieGhycgpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3Q3aHVnN25zdDVkX2NsaWFrc3Rlc3RsYnhocnIKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJVkVORFFYZFhaMEYzU1VKQlowbFJUMWxTU1RWbVYwaFFNUzk2U0ZCUVkybEhTWEJyZWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZ6UmtGRVFVNEtUVkZ6ZDBOUldVUldVVkZFUlhkS2FsbFVRV1ZHZHpCNVRYcEJNazFxYTNkUFZFMDFUbFJhWVVaM01IbE9WRUV5VFdwcmQwOVVVVFZPVkZwaFRVUkJlQXBHZWtGV1FtZE9Wa0pCYjFSRWJrNDFZek5TYkdKVWNIUlpXRTR3V2xoS2VrMVNWWGRGZDFsRVZsRlJSRVYzZUhSWldFNHdXbGhLYW1KSGJHeGlibEYzQ21kblNXbE5RVEJIUTFOeFIxTkpZak5FVVVWQ1FWRlZRVUUwU1VORWQwRjNaMmRKUzBGdlNVTkJVVVJCUVU1SGRrbHhRVkpaWjIxRFJGb3hTa1ZYYjJRS05VcDVRVlVyU2pWME5HTmxNWFZUTmxoTVlrcFpUMjF5VlVZeGVuTmthRUo1YjFCbVdTOW9lblZ4UlZZMGNYZFNlbE1yUVdaNWJEUnRUSGhwV1hwVlNncElTR1JQWkU1d1V6aFFNR3MyWTJGcVNEQnJTVXdyY1VwbVJXOU9VVk41Vm5OQ1ExVkdNVVJVT1hOSWJtaEZUMjl1WjJsb1dtWnljVlp5TVdoV05FdFhDbU5oVEZwbGREVlhVMmxGUkRKRVkyMXVLelJyZVhOT2JEaFhaRkJaTW1WVGVFWkpWQzlQWmxwNEsydGtaemxPZFZSSlFtUjJUVFZ0UVdGSWRHbHdVeThLY0RWQmQzTlNNbEZDVTI0MU1FOW5TU3RFWldFNVJVZDNSWEJTYzNkU1RtaFVhM0pKU1V0cmJqaHBZWHBhT0VWd00zY3hWekJwUjB4UFJVRnFVV0ZhY2dwaE4xbFJhbVp1YmpJdldFRnFlRUpzZUhselVWRlpVakJNUkZKWk1HeENhVWxJVDFGdlJYUktXbVZvUmtGc09HWm5kVGx3VkRkUVJVTnhNVGwwTTAxWENqQlZOazV5VkZWUE4yRlRVazlRTDFSS1lsSTBhR0pTTVc0MVltWnNPVkJQTm1waVVGTnlWVVZqVWtOc1ZXRkZVMmxVUjNrclYybE1NR2RGZG5weE0yUUtXa2h6TVV4WU1Ib3lPRUpLSzJwTVUwNTFUVEJOWmxsTWRHWmFVSFZMS3pGeFEyUmhibWs0Y1ZoeVVEWlRVMnh2VmxaNFNuQXpkVEV3T0hCbVZucEdaZ3BCTDJWTWFHRnBWbGhSWlZBdlptNVROVVZJY2xkemRYZEphRGw2UkU0MFYxUmFWbEZXUVVGdGJUQlZkMFI1YWtoeFFtNWFWMVZaU2pWdFkwSnBUM04yQ2xSWVVFUjRWMlJLUnk5bWFrSktRaTlCT1M4d1pWaHdLMWRqVTFkYVQyTkJUM0EyTUU5bVRIVndVVWxKWTB3d01VdEdZbkowUVhaT1NpOUhkV2d3Wm5FS01EUmpabmxWYWl0elJVbHRMMmxYYTFkT1ZVcDBkelJZY2tvNGRVbHdVVFJqVUZoUWFXaE1aVVZUY210RVRFcERSa05NWWtKdGRuTTBVMWMzZFZvNVJBcHljR05aZFZOT2FVZDRRbGhCYTA1Tk1rcDVUbWRSU1VSQlVVRkNiekZaZDFaRVFVOUNaMDVXU0ZFNFFrRm1PRVZDUVUxRFFtRkJkMFYzV1VSV1VqQnNDa0pCZDNkRFoxbEpTM2RaUWtKUlZVaEJkMGwzUkVGWlJGWlNNRlJCVVVndlFrRkpkMEZFUVdaQ1owNVdTRk5OUlVkRVFWZG5RbEp0VEU1TlRXcFZObEFLYUVGT1ZqZzBaVTR4T1RWQ1ZFWnBSeXRxUVU1Q1oydHhhR3RwUnpsM01FSkJVWE5HUVVGUFEwRm5SVUZIVjJSdFFTOWFWazlaSzJjNWVGQktXVEV3V0FwV1JFbERkVFZOZUcxdU5HNDNVV1pIUWtFdldrMDVkR3hXVlhVcldYVXhiV2xPU1dkRVlXUXpXVm9yUkdkRWNHRlhUM2xYT0VndmF6YzBWSHB1YkRCMkNuVmtWVnBNVVVZelkyVjJWRWR1U1U5WGNUWm9VMGd6YUVZdk4xcFRXR0YyVUhkMVRFMDVXR2QzT0U5NlRrVXZWVTB3TjFrdmRVSnhibXhZSzNCMGFtZ0tPV2c1WjFGVGVtWTBOR055UzFobGFuUkZRWGN3ZGpBNVZISkVaMnR1VkROUGMxRnRVSEZOY2tFMVlWRlpSV0pRUTNGRE5rRjFWV2RZWjB4T2JYZHdZd3BNYnpKeE9UbDBiVVl6VjAxSGVHeDBka2wwZEV4bmNVVnRkMmRDWkZOc05uZEhjalJMZFVkNFkwdEhSbk5wUTAxcVozaEViSHBpZVROdVR6WnNVbGhhQ213dmRVUkRVRTB2UjA1VE5VY3ljbkZvWW5wYVRVZHhTMkZ2SzBGM1NXMXNkak5HYWtScmVtOUlURTVTYWl0NFlscGpaRlJXTXpaeWJtcGFlSEZ5Um1rS1ZXSkNSVFZoTkVrMk9FVnVNVloxV0VKTWNFTm9SbHBuUlhaMmFWWkRhRGs1UVdGcVkyNU1UbGgyY0RkaVdEaFZVbEV6ZWxwUFNYWnJlRk5PUmxrcll3cHlLMWN5YVZaUlRreFZlR3N2V20xV1JqUlNNbTR4V0VsVFdWQlNUVW8xVmpoWmRYQlRWM1p5UjJONVZVVnVka0pKTTJGamNXdGxNMHRwY0RSelRqTmtDak5VVTBsblJYTXphVXg2TmxSVWFqWklSVGRYY2xOS2NXVmFTRUZRTjFwaFJIZzJNR0p2Y1V4MGVVTk5XWFZJVWxkWk1WTm5kMHc0UldjNFFqY3hOMkVLV210RksyRlRjekJ0SzNCUFEzUkRZbHBCYjJSb2RHbHZNbkJFTUhOYVUyOU1WV05NYjNRMFV6Tm1SbFJHYlUxQlNqUXhNalp2Y1dweU1UUXhWVmQyUWdvd09GTmhiWFpxUVhVNGN6VjVjek42TUhWSFUwZzRjREY0UjFCYU5tOVJORVpaTWpOaU1EQXhTaTk1ZEZWcFZrRkJWRUpNZDJONVQycHZVMWxEUzJKakNreDNjRUoyU1V4V2RqQlRSbEZyZDNsaU1rUnlOelJCUFFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTbmRKUWtGQlMwTkJaMFZCZDBGRVVuSjVTMmRGVjBsS1oyY3laRk5TUm5GSVpWTmpaMFpRYVdWaVpVaElkR0pyZFd4NU1ubFhSSEJ4TVVKa0NtTTNTRmxSWTNGRU16SlFOR00zY1doR1pVdHpSV013ZG1kSU9IQmxTbWs0V1cxTk1VTlNlRE5VYmxSaFZYWkVPVXBQYmtkdmVEbEtRME12Y1dsWWVFc0tSRlZGYzJ4aVFWRnNRbVJSTUM5aVFqVTBVa1J4U2pSSmIxZFlOalpzWVRsWlZtVkRiRzVIYVRKWWNtVldhMjlvUVRsbk0wcHdMM1ZLVFhKRVdtWkdiZ3BVTWs1dWEzTlNVMFV2ZW00eVkyWndTRmxRVkdKcmVVRllZbnBQV21kSGFEZFpjVlYyTm1WUlRVeEZaR3RCVlhBclpFUnZRMUJuTTIxMlVrSnpRa3RWQ21KTlJWUlpWVFZMZVVORGNFb3ZTVzF6TW1aQ1MyUTRUbFowU1docGVtaEJTVEJIYldFeWRUSkZTVE0xTlRsMk1YZEpPRkZhWTJOeVJVVkhSV1JEZHpBS1YwNUtVVmxwUW5wclMwSk1VMWRZYjFKUlNtWklORXgyWVZVcmVuaEJjWFJtWW1SNlJuUkdUMnBoTURGRWRUSnJhMVJxTHpCNVZ6QmxTVmN3WkZvclZ3b3pOV1pVZW5Wdk1ub3djVEZDU0VWUmNGWkhhRVZ2YTNoemRteHZhVGxKUWt3NE5uUXpWMUkzVGxNeE9VMDVka0ZUWm05NU1HcGlhazVFU0RKRE4xZ3lDbFEzYVhaMFlXZHVWM0EwZGt0c05ub3JhMnR3WVVaV1kxTmhaRGQwWkZCTFdERmplRmgzVUROcE5GZHZiRll3U0dvdk16VXdkVkpDTmpGeVRITkRTV1lLWTNkNlpVWnJNbFpWUmxGQlNuQjBSazFCT0c5NE5tZGFNbFpzUjBObFdtNUJXV3B5VERBeGVuYzRWbTVUVW5Zek5IZFRVV1ozVUdZNVNHdzJabXh1UlFwc2JWUnVRVVJ4WlhSRWJuazNjVlZEUTBoRE9VNVRhRmMyTjFGTWVsTm1lSEp2WkVnMmRFOUlTRGhzU1M5eVFrTktkalJzY0VacVZrTmlZMDlHTm5sbUNreHBTMVZQU0VReGVqUnZVek5vUlhFMVFYbDVVV2hSYVRKM1duSTNUMFZzZFRkdFpsRTJObGhIVEd0cVdXaHpVVlozU2tSVVRtbGphbGxGUTBGM1JVRUtRVkZMUTBGblFXVkljMHhIVERZNVpYRnlkVVpJUnl0c1N6aGplVFF3T0hSNmJuTkVlbmxsZVZSa1NGbzNiblEyVVdWeVIxSnFaM2t3ZURWNWVUZHpLd3BUZVdWS2RVTm9XRVExVldkM1kybEhOWFYyZUd0RWVGWlVkWHBrTDJkdk1WVTFNa0ZVTWk5WE16VnRZWE15YVRSclVsQkJPVFlyUTFCemQyOTFNVTFQQ21WRk0ydDNjSGRQYm5KQmFXWndRWEZEV2paQlRIQldUVGxRV2pKa1YwMTJjazVsSzFBMmFrbFBjRFJGVVVOcFUzVjNRa2RQVFZkV1RHRnVjekl3Um5BS1FUQTJNekp0VjFkcVRIbGFXRUZVZWt3MVFrNWlhMjlvZDNCRGRFNUVUWEJuUlRrM04xZE9NVmhxUmxsWWRVRlRVR1ZyYTBoMldVeDZXVzlzZUV0ME1BcHJOMDFXYjJsWmVVWk1Lek4xZEdOVU0wdHJTV1IzTWxGMWJHSkxSMVEyV21kRWVFcENSR1ZqVDNCVkt6aHBlWFZSZVdwMFRrcFpUbkpSYVZKTVJHZFZDalI1UTAxYWFVVXlNbXBXYWpoNE1YUnlkVkZ5YUN0V1NtbEpURlZPYlZkUlVqQTNiMFJJTlRnNVlUTkJWMDVVWkRKYVltSnRRblpvWW5sU1NVRk5jVU1LT0djM2NHTlBSMjh2YUd0cWRqZHlXbXhVVDJwT2FIbHFOVU41U1RsQ2NDdFVVbGh6UWpSVE5ta3pOMDR4VXpCalRURmthMmhZYVRnNGNrVXhVV1Z2UVFwU1owUjVaMU5UYnl0VGJrWjNObGRSUlVKUkx6RkpXVmREWlhWUFdscEZZV3RZVUZsRk1FaGlUMVZST1Zrd2IwRlVZVXA1ZFRnd2NGcEpUVVJrZURkdENpOUVlbGh6ZFU0ek5IWTRNa1ZPVTJGWFJEUjNVRTl3UldsdVQycDZhV1JtTUVKM1NEVXpNM2RIZWxGR2FtWnlXazl2Y21ONE16UkJVemg0VnpGc2FGSUtWa0kzVDNFM1lTdEdRMVYxYlM5dFZ6bG9NM281YlVSeWNrTmtURU01V0VsbU1XRmpiMDB2VWtrMU0wUXdaMjh3WmxOeVIyNTFTalpOT0V4aldqSk9TZ3B5TDFaVldsUk9hM0J6Y0RnelpqZFpRbUpNVm5jNE1WWlpja1ZsYmtWbFJIQjNSRE4wUWxBNU4zVTJhSGxxY1ZnMVVVdERRVkZGUVM5QmNtOWlTa04yQ25oa2RrUjZRV2w1YTJoR1EwZENTM1IyVW1sWEsyOUxRVTlaZG1sblIwNTRaMFZqU0V0WmMyZGhUREZGYjJoTGNETm1WVTFwVkRaV01XcEZXR2RUTkZRS09HVnZUMmRoYTNJMFdsRlFVRzF6UzI1VFJ6QktTemxyVWs4emVVWk1ieXN2ZEZWS2NHdHhRekZQYlRCT1ZtSnJibmh0V0hORmRVd3lNa2hTUWsxUlZ3cE5aRmRzV1dKTGNVVXlkVVppTm13NVlsTjZRWGxNU0hCbFZHUjFiVlZTYmtSd1oxZElhV1JYUjJoelUwVlVVVlJTV1dOSVYybzRkVmhzZFZwNmFtWnFDa1JQTlhoaGJGbDVUMVV3TDI5V2EwVjRUak53VjJsQmMwSkZWV0ZYUm5OaFVtRllOMU5NT0VKa05FOW1SWGRTZG1KcFUyUnNaMHBUUXpaTlRIaHdjR01LVW1WNGRtczFlWG8xV0haelprOWxWa1JYYUhOTFFrOU5ZME5GTUVoM1VIRjZZa0pMY0RVMlpUYzJNa2M0Y2xKSU5HaElaRkZ0UmtwVU9YbFlUV1ptYXdwMVdVazVaVVIxVm1aVWNESjRkMHREUVZGRlFYZDNVMVY0V1RSdE1rbHVURWQ0VGxGVmFYUmFkV0ozVEhsbFpXdzRUR01yTkVkdWExWmlNSFZRTjJkUkNqZ3ZaRk5tYjA1cVlVcDRaR1IzTURGWGJqRmxjMjUyUW5wVGQwUkxkVWh2YzJ4cU1razJTblJNVVZoclFrVTFhV1ZLVlVkR1oySm9hSGRNVVZJNWVtd0tURGQ2ZGt4WVNtUTNWbVU1YkhkNEwyODVOalJoV25selNEQllja2xyYUV0TmVIcEtjVXBpUkZkdU5YaDZSV2N2ZFRacGVuWkhNbkZsVDBKaFlqWk9iQXBWTDFRNU5uRm9VaXQxVVZCYWRFaFpPRzlvT1ZOdmVEVllSVGhzWW1VclZrWlFWa2xUVFdoalp6RTBjMmRoU1RZNVJFOUJkMUl5VkVkUVJuUkZjbFJIQ25aaEwyeG9iR056VWtKUU9VWkdaSEJPYkVrNWRtWjNabTl6YmxScWRHODRjMnh0VEVOV2FrNVlUbEkwUlhCc01USnFVMU5xU1dScWNqSnFTVWcwUkZRS09VdDRZaTlZT0dSSmFXNUJVbGhIUkhKaWVEbExWa0l4UlV0RlIzZzJSVWRGWVhoRWNraE1lR1IzUzBOQlVVRlRZWFZYYWtWVmRWYzFUVVpDUW5BeWRBbzJUVGQzYmxkVVQzWmFOVU4yWjJsTGNTOXpiMDFLZDFweFNtTlJXbEprUVUxQ2VEQjZNMHBWVVhSVVozSnZPR0ZqVFc1eU5tRmpVbVJYTkV3NFdWaEJDbGhUV210Q1JWSndVMUUwTVRWQk9IRnlhM2xVVlZONlRGTkdkMFpLT0hFMWNtbzBOVFkxYVZoUE4wdEhPRzAxVFRSTEx6WmlhVE5HUWtoNWNWUXZhak1LY0VaTVF6TjRja2xSU1RONE0waGFXVWxyU0ZaME1XSnJhbEkyU1c4ME1EWkxVMGt2TWxwT1V6aEdVVTFPZWs4elRqTkNZM3BzTm5ORmFuZzVZbU5GVEFwNVQxcFBZbmRtV0V4MlVXWllkSGcwYWpKbmJXSnlibFIyZUZwSGMxcGFNREpyZUd0bmJERXlTMlo2VGl0dGRIVmhSVXQ2UWpWTFdXeFlaSFI2VUZOckNsZ3hUR1p4WW1sT2JUQlVWVUpQUjNSVEt5OVpSMFozZGtoaFVFYzNaVTVzVm10UVdFNXRPVTlUVFc1dVZVNDJabXhHYjBWRU56VkxRa0ZrYWpSek4wRUtjMDlZTDBGdlNVSkJRVmRKU2t4M2VESjRTVGRZYlV0SVQzSnJTams0UzFndlprZGtUelI2U0dSbFdXaDFkRTVtZVZkalVGUndVRTVEVXpoRWFGSmtZZ3ByUWpodVdtTk5TMWRXZUZGMlJpdFphSGRLTlZwQlRtcEhTMEpOU2tSTGNIWjRNRTFMUTJwd1pWVkhOSE5xT0VaTGJXeFFZamhVV2pWRFRIazBiekIyQ2psMldFazJabTQxUVVaM2JXdEpPVmRwVjFCM2FuZEtRMG80Ynpka1NrVnNhM2MzVEZsa2RIUXpjVTVUY2xGdkszVjJTRGwyV1hOVVNWQjVLMEkwTVVvS1YwNUtLekF4ZFZZeVdTODJlV2h3TDA5RU1sWkdWRXRDTDNGdWNETlJNM2MxZFhoTFkwMWxjV2xzVm5kQ1JrMXdlbWRHUVRGWU5XUTVaa2hKYlZReldncElNREp5WVZKWFkxbGFialZCSzBNelVIVlJTR1J5T1UxWlVFSkVOelZrV21jMGNISm9abVJLYkVoeFpVRkpjbWxQZDAxQ2QxbEdiMUJxWmtSdGEzb3dDbmxFY0hkRVRqaHdkMHBqYVdKQ0szSnZZV2xhTDJKVlZXOU9jazFoSzAxRFoyZEZRVlJ6V21Gc2FVUnNRV0kwTVRKS1ExUjNkbk52ZGxNeVdrNUJaV2dLVWxsbE5FdHZNVzl4V1ZsUkwzcGlTMFZ3VVdOV1RHeFFOMmhvTUZKSFV6RjZWamMxTUhRdldsbERZME5rVFhkb1lqVnNhRXRLWjA1a2FrMDBXazE0ZEFwTFpsYzJaelpuVnpCcmFtWm9hMlpFVkRNM2RVNXpMM1pKTlRBM2VXVnZTVkIyUWpSVWJWbDBZMWgzWTBkc1dWSklibVJYYkdjMWRVNHZiRVl6YldoQ0NrUm9jSGRKZDBGSWIzcE5Ta2xsYzJkV2FUUmFhMlJGYmpaSVdqYzFNbVZMTUM5MVJYTXlSbVIwTkVkeFpXeExXa3MwYTJSWWJGVjZhMFJEVVdGclRWSUtaRFZYYVhsa0wzQjNWalpyWlROSlNYUXlibXg1V0haRVMzZFlZMnBLVkZsWlZqRnJRVk00TWtWek1pOTJNazVyWlRKbFEzTlNTRFJqTlZZNWNEVlVhUXAzZEZGSVZESkRTV2xLYjNweGQwbzFUWGx3VkhOa1JWcElPSEI0VWtsbVZXTjBhRU01VjNSWllsbE9SR280VWxWSVRHOW1jV2RGY2pkblBUMEtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogaXBpdXZnanU0NjhiNnRxajZ5dm82cTYxOHlhaTlpMDRmZWxna3llbTMzMzZ1aHB4dzJjcnBkbTNndWQwNTl4dzc3bWdxZmQyYzlhZ21md2t2aDkxeTR1cHZrY3NmcnJxbXgwa3BvOWlnOHBlcnV1c2VheDU4ZmpxenhlNWl6cnYK\"\n + \ }\n ]\n }" headers: cache-control: - no-cache content-length: - - '13084' + - '13072' content-type: - application/json date: - - Thu, 15 Jun 2023 12:33:08 GMT + - Thu, 29 Jun 2023 09:54:12 GMT expires: - '-1' pragma: @@ -1316,62 +1485,61 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-yr2o8wy2.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000004-yr2o8wy2.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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: - - '3848' + - '3519' content-type: - application/json date: - - Thu, 15 Jun 2023 12:33:10 GMT + - Thu, 29 Jun 2023 09:54:13 GMT expires: - '-1' pragma: @@ -1399,13 +1567,13 @@ interactions: {"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"}, + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_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": {"outboundIPs": {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}, + "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"}, {"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"], @@ -1422,71 +1590,70 @@ interactions: Connection: - keep-alive Content-Length: - - '2718' + - '2352' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-yr2o8wy2.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000004-yr2o8wy2.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/a66acad1-ec86-413c-9949-19439e1c4592?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/099c1759-467e-4c2e-b137-72380549445c?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4027' + - '3698' content-type: - application/json date: - - Thu, 15 Jun 2023 12:33:17 GMT + - Thu, 29 Jun 2023 09:54:18 GMT expires: - '-1' pragma: @@ -1502,7 +1669,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 200 message: OK @@ -1520,14 +1687,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/099c1759-467e-4c2e-b137-72380549445c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d1ca6aa6-86ec-3c41-9949-19439e1c4592\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T12:33:16.1026588Z\"\n }" + string: "{\n \"name\": \"59179c09-7e46-2e4c-b137-72380549445c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:54:17.8952771Z\"\n }" headers: cache-control: - no-cache @@ -1536,7 +1703,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:33:17 GMT + - Thu, 29 Jun 2023 09:54:18 GMT expires: - '-1' pragma: @@ -1568,14 +1735,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/099c1759-467e-4c2e-b137-72380549445c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d1ca6aa6-86ec-3c41-9949-19439e1c4592\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T12:33:16.1026588Z\"\n }" + string: "{\n \"name\": \"59179c09-7e46-2e4c-b137-72380549445c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:54:17.8952771Z\"\n }" headers: cache-control: - no-cache @@ -1584,7 +1751,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:33:47 GMT + - Thu, 29 Jun 2023 09:54:48 GMT expires: - '-1' pragma: @@ -1616,14 +1783,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/099c1759-467e-4c2e-b137-72380549445c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d1ca6aa6-86ec-3c41-9949-19439e1c4592\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T12:33:16.1026588Z\"\n }" + string: "{\n \"name\": \"59179c09-7e46-2e4c-b137-72380549445c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:54:17.8952771Z\"\n }" headers: cache-control: - no-cache @@ -1632,7 +1799,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:34:17 GMT + - Thu, 29 Jun 2023 09:55:19 GMT expires: - '-1' pragma: @@ -1664,15 +1831,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/099c1759-467e-4c2e-b137-72380549445c?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"59179c09-7e46-2e4c-b137-72380549445c\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:54:17.8952771Z\",\n \"endTime\": + \"2023-06-29T09:55:47.7835874Z\"\n }" headers: cache-control: - no-cache @@ -1681,7 +1848,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:34:48 GMT + - Thu, 29 Jun 2023 09:55:49 GMT expires: - '-1' pragma: @@ -1713,64 +1880,63 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-yr2o8wy2.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000004-yr2o8wy2.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/cliaksslbip2000003\"\n + \ },\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: - - '4207' + - '3878' content-type: - application/json date: - - Thu, 15 Jun 2023 12:34:49 GMT + - Thu, 29 Jun 2023 09:55:49 GMT expires: - '-1' pragma: @@ -1802,64 +1968,63 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-yr2o8wy2.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000004-yr2o8wy2.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/cliaksslbip2000003\"\n + \ },\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: - - '4207' + - '3878' content-type: - application/json date: - - Thu, 15 Jun 2023 12:34:51 GMT + - Thu, 29 Jun 2023 09:55:51 GMT expires: - '-1' pragma: @@ -1893,8 +2058,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/cliakstest000001?api-version=2023-05-01 response: @@ -1902,17 +2067,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f9074642-2459-49f4-a257-b5a250ba327a?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 15 Jun 2023 12:34:53 GMT + - Thu, 29 Jun 2023 09:55:53 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/f9074642-2459-49f4-a257-b5a250ba327a?api-version=2016-03-30 pragma: - no-cache server: @@ -1922,7 +2087,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_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 index 35a977c0466..40d66a42da7 100644 --- 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,26 +18,25 @@ interactions: ParameterSetName: - -g -n --location --sku User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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/\\\"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}" + 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/\\\"072fc0c0-c4b2-42c9-85eb-9e3c0be1bcb8\\\"\",\r\n \"location\": + \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"e58556be-b775-4c2b-bb1d-4e9fa9834b82\",\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/0f62fae3-b28d-4949-903c-258c2bafa828?api-version=2022-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/dff99ae8-6baa-4cac-a699-caae65e7eb34?api-version=2022-05-01 cache-control: - no-cache content-length: @@ -45,7 +44,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 12:35:00 GMT + - Thu, 29 Jun 2023 09:55:58 GMT expires: - '-1' pragma: @@ -58,12 +57,61 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 07bac6b1-8bcd-48ca-809c-8360c91b8c7c + - 04ee1f7b-2c95-46f6-a87b-13b43cff6295 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 - message: Created + message: '' +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network public-ip create + Connection: + - keep-alive + ParameterSetName: + - -g -n --location --sku + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/dff99ae8-6baa-4cac-a699-caae65e7eb34?api-version=2022-05-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: + - Thu, 29 Jun 2023 09:55:58 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: + - 50e44f8a-98d6-420e-b0cb-b2823c1ac7f7 + status: + code: 200 + message: '' - request: body: null headers: @@ -78,9 +126,9 @@ interactions: ParameterSetName: - -g -n --location --sku User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/dff99ae8-6baa-4cac-a699-caae65e7eb34?api-version=2022-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -92,7 +140,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 12:35:00 GMT + - Thu, 29 Jun 2023 09:56:00 GMT expires: - '-1' pragma: @@ -109,10 +157,10 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7ad46d00-3fe0-4be1-9dd7-c66db14e9314 + - b4b5b0ab-e5b3-4610-8313-7e8ec99284cd status: code: 200 - message: OK + message: '' - request: body: null headers: @@ -127,32 +175,32 @@ interactions: ParameterSetName: - -g -n --location --sku User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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/\\\"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}" + 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/\\\"e068a436-f1f6-4b9a-bc6a-d3df0fd2e3fe\\\"\",\r\n \"location\": + \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"e58556be-b775-4c2b-bb1d-4e9fa9834b82\",\r\n \"ipAddress\": + \"20.230.222.173\",\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' + - '769' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 12:35:00 GMT + - Thu, 29 Jun 2023 09:56:00 GMT etag: - - W/"bcd6fb00-f870-4474-a06d-e75889870192" + - W/"e068a436-f1f6-4b9a-bc6a-d3df0fd2e3fe" expires: - '-1' pragma: @@ -169,10 +217,10 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - dc341beb-9cfd-4f1b-8145-10a13c174a85 + - 19d568d3-b2c3-45f0-a603-aebfd46f8844 status: code: 200 - message: OK + message: '' - request: body: '{"location": "westus2", "properties": {"idleTimeoutInMinutes": 4, "publicIPAllocationMethod": "Static"}, "sku": {"name": "Standard"}}' @@ -192,26 +240,25 @@ interactions: ParameterSetName: - -g -n --location --sku User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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/\\\"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}" + 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/\\\"4d135a18-f912-41c5-9215-f9567bc4d291\\\"\",\r\n \"location\": + \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"da190e74-a8ad-4d46-a356-a2314142d4f9\",\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/6a32d9ec-1366-42ef-af53-dbe2a068fcf5?api-version=2022-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/71930236-cf0b-4253-b2f9-dad9a65e7882?api-version=2022-05-01 cache-control: - no-cache content-length: @@ -219,7 +266,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 12:35:04 GMT + - Thu, 29 Jun 2023 09:56:02 GMT expires: - '-1' pragma: @@ -232,9 +279,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fe0ea4c1-cade-41b6-ac88-32aac56639f7 + - 6c7ae77d-cab5-43a2-989a-98e9b061c74c x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -252,9 +299,58 @@ interactions: ParameterSetName: - -g -n --location --sku User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/71930236-cf0b-4253-b2f9-dad9a65e7882?api-version=2022-05-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: + - Thu, 29 Jun 2023 09:56:03 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: + - a7417b68-ce06-46a5-8319-d25e6fb57caf + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network public-ip create + Connection: + - keep-alive + ParameterSetName: + - -g -n --location --sku + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/71930236-cf0b-4253-b2f9-dad9a65e7882?api-version=2022-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -266,7 +362,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 12:35:04 GMT + - Thu, 29 Jun 2023 09:56:05 GMT expires: - '-1' pragma: @@ -283,7 +379,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4ca7eb83-159f-4245-ad9a-22dff1ca0502 + - 6ead3b1a-d7ab-4244-ac5c-5fda146ee681 status: code: 200 message: OK @@ -301,32 +397,32 @@ interactions: ParameterSetName: - -g -n --location --sku User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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/\\\"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}" + 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/\\\"2113a089-60d8-401b-adb0-9576b5f3ffe7\\\"\",\r\n \"location\": + \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"da190e74-a8ad-4d46-a356-a2314142d4f9\",\r\n \"ipAddress\": + \"20.230.223.165\",\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' + - '769' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 12:35:05 GMT + - Thu, 29 Jun 2023 09:56:05 GMT etag: - - W/"ef4a10c2-51d2-4879-be81-1bad7a5fd3ec" + - W/"2113a089-60d8-401b-adb0-9576b5f3ffe7" expires: - '-1' pragma: @@ -343,7 +439,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 092bc2d1-bcea-4de5-9fe1-819b5fb6cee0 + - dee4033f-c422-45ca-bb2a-171d74b90e14 status: code: 200 message: OK @@ -362,8 +458,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -379,7 +475,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 12:35:05 GMT + - Thu, 29 Jun 2023 09:56:04 GMT expires: - '-1' pragma: @@ -402,11 +498,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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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"}]}, + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "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: @@ -419,71 +516,70 @@ interactions: Connection: - keep-alive Content-Length: - - '2003' + - '1674' 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-itiir6au.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000004-itiir6au.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/01714d43-1a4a-420a-a3ab-0adf029dd196?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bd3a152d-27fa-458c-a1c1-c5be20b1cf7c?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3791' + - '3462' content-type: - application/json date: - - Thu, 15 Jun 2023 12:35:13 GMT + - Thu, 29 Jun 2023 09:56:13 GMT expires: - '-1' pragma: @@ -514,14 +610,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bd3a152d-27fa-458c-a1c1-c5be20b1cf7c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"434d7101-4a1a-0a42-a3ab-0adf029dd196\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T12:35:13.5716063Z\"\n }" + string: "{\n \"name\": \"2d153abd-fa27-8c45-a1c1-c5be20b1cf7c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:56:11.9737656Z\"\n }" headers: cache-control: - no-cache @@ -530,7 +626,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:35:13 GMT + - Thu, 29 Jun 2023 09:56:13 GMT expires: - '-1' pragma: @@ -563,14 +659,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bd3a152d-27fa-458c-a1c1-c5be20b1cf7c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"434d7101-4a1a-0a42-a3ab-0adf029dd196\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T12:35:13.5716063Z\"\n }" + string: "{\n \"name\": \"2d153abd-fa27-8c45-a1c1-c5be20b1cf7c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:56:11.9737656Z\"\n }" headers: cache-control: - no-cache @@ -579,7 +675,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:35:43 GMT + - Thu, 29 Jun 2023 09:56:43 GMT expires: - '-1' pragma: @@ -612,14 +708,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bd3a152d-27fa-458c-a1c1-c5be20b1cf7c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"434d7101-4a1a-0a42-a3ab-0adf029dd196\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T12:35:13.5716063Z\"\n }" + string: "{\n \"name\": \"2d153abd-fa27-8c45-a1c1-c5be20b1cf7c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:56:11.9737656Z\"\n }" headers: cache-control: - no-cache @@ -628,7 +724,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:36:14 GMT + - Thu, 29 Jun 2023 09:57:14 GMT expires: - '-1' pragma: @@ -661,14 +757,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bd3a152d-27fa-458c-a1c1-c5be20b1cf7c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"434d7101-4a1a-0a42-a3ab-0adf029dd196\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T12:35:13.5716063Z\"\n }" + string: "{\n \"name\": \"2d153abd-fa27-8c45-a1c1-c5be20b1cf7c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:56:11.9737656Z\"\n }" headers: cache-control: - no-cache @@ -677,7 +773,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:36:44 GMT + - Thu, 29 Jun 2023 09:57:43 GMT expires: - '-1' pragma: @@ -710,14 +806,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bd3a152d-27fa-458c-a1c1-c5be20b1cf7c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"434d7101-4a1a-0a42-a3ab-0adf029dd196\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T12:35:13.5716063Z\"\n }" + string: "{\n \"name\": \"2d153abd-fa27-8c45-a1c1-c5be20b1cf7c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:56:11.9737656Z\"\n }" headers: cache-control: - no-cache @@ -726,7 +822,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:37:14 GMT + - Thu, 29 Jun 2023 09:58:13 GMT expires: - '-1' pragma: @@ -759,14 +855,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bd3a152d-27fa-458c-a1c1-c5be20b1cf7c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"434d7101-4a1a-0a42-a3ab-0adf029dd196\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T12:35:13.5716063Z\"\n }" + string: "{\n \"name\": \"2d153abd-fa27-8c45-a1c1-c5be20b1cf7c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:56:11.9737656Z\"\n }" headers: cache-control: - no-cache @@ -775,7 +871,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:37:44 GMT + - Thu, 29 Jun 2023 09:58:44 GMT expires: - '-1' pragma: @@ -808,15 +904,211 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bd3a152d-27fa-458c-a1c1-c5be20b1cf7c?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"2d153abd-fa27-8c45-a1c1-c5be20b1cf7c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:56:11.9737656Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:59: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 --vm-set-type --load-balancer-outbound-ips + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bd3a152d-27fa-458c-a1c1-c5be20b1cf7c?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"2d153abd-fa27-8c45-a1c1-c5be20b1cf7c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:56:11.9737656Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 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: + - '*/*' + 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-ips + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bd3a152d-27fa-458c-a1c1-c5be20b1cf7c?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"2d153abd-fa27-8c45-a1c1-c5be20b1cf7c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:56:11.9737656Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:00: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 --vm-set-type --load-balancer-outbound-ips + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bd3a152d-27fa-458c-a1c1-c5be20b1cf7c?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"2d153abd-fa27-8c45-a1c1-c5be20b1cf7c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:56:11.9737656Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:00: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 --vm-set-type --load-balancer-outbound-ips + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bd3a152d-27fa-458c-a1c1-c5be20b1cf7c?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"2d153abd-fa27-8c45-a1c1-c5be20b1cf7c\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:56:11.9737656Z\",\n \"endTime\": + \"2023-06-29T10:01:05.8869188Z\"\n }" headers: cache-control: - no-cache @@ -825,7 +1117,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:38:14 GMT + - Thu, 29 Jun 2023 10:01:15 GMT expires: - '-1' pragma: @@ -858,67 +1150,66 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-itiir6au.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000004-itiir6au.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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: - - '4398' + - '4069' content-type: - application/json date: - - Thu, 15 Jun 2023 12:38:15 GMT + - Thu, 29 Jun 2023 10:01:16 GMT expires: - '-1' pragma: @@ -950,74 +1241,66 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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-itiir6au.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000004-itiir6au.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": + 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n + \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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: - - '4677' + - '4348' content-type: - application/json date: - - Thu, 15 Jun 2023 12:38:17 GMT + - Thu, 29 Jun 2023 10:01:16 GMT expires: - '-1' pragma: @@ -1049,74 +1332,66 @@ interactions: ParameterSetName: - -g -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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-itiir6au.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000004-itiir6au.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": + 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n + \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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: - - '4677' + - '4348' content-type: - application/json date: - - Thu, 15 Jun 2023 12:38:19 GMT + - Thu, 29 Jun 2023 10:01:18 GMT expires: - '-1' pragma: @@ -1148,67 +1423,66 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-itiir6au.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000004-itiir6au.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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: - - '4398' + - '4069' content-type: - application/json date: - - Thu, 15 Jun 2023 12:38:21 GMT + - Thu, 29 Jun 2023 10:01:18 GMT expires: - '-1' pragma: @@ -1242,15 +1516,15 @@ interactions: ParameterSetName: - -g -n --file User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ - \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSWlRKUVFraEdiRVYxWm1GaUszbHFkek5KZUdScFJFRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxVVZYaE5ha2t4VGxSV1lVZEJPSGxOUkZWNlRVUlplRTVVUlhsTmVsVXhUbFp2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVOekNsSnFORTh3TXpJeWVXc3hVWEVyWW05U2NXazVXVVZqVFhKUk5GUTRSRUUzWlcwMlFsSndiR2xhYW0wNVVrbFlWRW80TTJ4V1JHbzNUR3BEVVZGWE9EVUtRamxyVkc5YVVFeEVlSGhDWW0xelduaEJjRVY0YUV4RVdqZ3hNR041ZGs1TFZUZHhkbFJyWVhoWUwwUkdMeTkzVnpsWFJGQjRMMlpKVG1kWmVERjBhQXBRYUU1bloyNVpiVmxCWjBwMlMwdEVLMGR4YW1SV1NuSm1TVUZTVDBSVlltdEhObGRSV1hOQlNUaGhWalZ3ZGs1WUwyOWtUMUJ0WWtORlJuRjZaamt3Q201UWVsZ3JWMk5LVkVVeU1rcHFObFpXV21SU1RYSnlXV0psYm00eU0xVnlRamt5ZVhKM2FERjBOVGsxVUZsNVp6ZFdhV1p2WWxWeWVXVkNVbVJ0UW1NS1p6TlRkRGxFYzNsRFJYbGhPVmhFU0ZSYWN6WlplVUZUTjJkRFJGTjFlV0Z0Y0ZaalFrUnRTMmhtZW1jM1owcFZZa3QzWldORVFYTTBVakJEZEVGRVZBb3ZURU5YUVVkeWQyUkNUVWRWUjNKemJWUnpPRE5tV0VVNU1GSllWVzlTWnpabFlWRjNORlpLVGtzck0wNDJTVkUyWWtkYVRETlJkM0ZxUjFSbFFWcHNDazVOWWs0d1dtUjJUa2xIVUZKcVQzZHNjbmxyVUU4ck1FVjJhVEJyYjNSaWMyaExXR3BMTVZOTk1XbFFWMVE1VFN0blJqaEljMmxtY1ZWMGIyUlJLMGtLUW5kMk1GaENWVzQzTUd4MFRUZERZelV4YjNWcFNEbGhaMmsyVEdONE9WRTBPSFZDVWxCTU5GVjROVXBZYlVsdFVESmtUVkZyVmtGTVYwTjVXR2RwVFFwT1pWUlVSalphY0dJcmRITlJlQzlhVTFaaFZtSnJOakZxTUVjd2NuZFljVXhHTVRsUGJsWlBlV0o0Ym1WYVNHTmlVM04wVWtock56TjFTazFTV2xnM0NsRXZlbE5QV0dGVWR6UkpNakprTDJKQk9WWkZkMVV5UmxaRlQxTkhWemRGUW5RNFMyazViVk0zTmtOcmNWcEpZVUpSUmtwNmQybzFSVU56WVhSNGJXb0tjVmd4ZGxwRVZuZExZMnB3VGtGV1dYQkZSVTg0UjFVNU9GQXpZbGRSUzNoR1RXMTJUM014WkVaUlNVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZVMVNtdENjalJtU0RoMlJHVTVaVFp6Q2xGNmNIcHVZWGx2YkRCQmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGSllVWnROVWRqU0daMlowbEVaREJrWmtoaFprMVZlVXh1ZWtvS09URlpZMWwzTmxkb05YcGlNM0JOWnpoMkwxcEtSVFEyTlZkVVkwbFJia3hqVVZkeFdqaEpUR1ZET1d4SWFUSjZSREpMWkdabWJHTkNWbFJsUzFWek5BcG1WbEpoVmtZNGVGcERZVmQxVTFSbWQwZ3ZRblpIYmtrek1WQldiQzlyUjNOYU9WZHFjbkEwWkdGT1IwcEhjQzlzVWtGbmNrcHpValE1U0RoNlJXMTBDbTE2WVdSMmNXbEhWSFJOYlM5SFJtSnNVMU5yYUVob2IxUjNZV1Z2YWxjMFZtaHhWR3N2VVZNdlFqRXdaekJtUlVkSGEwbGFPRGhoZUhabWJVbzRPSGdLVVVkc1UzVjVTR0ZLUlRrMFJFOXhlR2RpVTBaWVJsa3ZTRk4zVjFoblIzVkpWVkZtV1VSaFozQmhWWHBOUkZKSFZXbDBURFF4TW1jMVZYbEphRUpsZHdwd09HaFhOVmxKYlhGTGJXNHJkMVV6ZEdobVFUbEVTSEV4T1c1S0wybGhXREJ3WTJNNWVscDJkRGt6UzJSbE5EQkVNV0pDTkVSNloyVTJTSGxSYVRSeENuTm1iVXhhYjJRd1EwaDRTM3BPVmxkMlVtaEVSM1o2V21GemNGbEVTSGxwZEN0eloyTmFaR2xQTVdoVlRHWmtZbFExY0VKb2VscG1iMVZRYUV4alZEQUtka3RrYkhsVVIzVmhjblZsUmtwT1RrdG5jRXBZVDB0WWRtdHVhREkwTHpKS01HNUZlRU51TUVwMFNXTnVVRFJPWlc1a1F6RlBVME5VYjBoRmExbDBlZ3A0ZERKaVJYVkVZak5YZWtaWEsxVXJUemw1VkcxclowVTRVVmxoZUcxcWEweFFkMUl6TnpaWWVqTm1RbFZ6V0U0MFRuVTBTekp0ZVZabVJsZEZOMmhaQ2pVeU1XVnhUMUV3U0RkdVJHWkZOMngzYWt4dmFqRjNjRVZuWjFScEwwRk1RV2QwUW0xT1lrdFhTVUZQZUVwTlZqWlNUVFpaUmt0V04xTk5hV2xEWkVZS1JXSnlWV0o2YWxka2NFSllRVk5rYkVnMVNVOXdTakJ2Y1VaYWR6bDJjMjFSV1dwVVN6RkNPV3hsVW0wd2IzTmphVXhpTm05VFpXbzJLMHBqWmpZMmNRcFBkVlpDVGxkSVIxbFRZamhhYURWa0NpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc3FndzVoYnctcm9kbm16aW8uaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3R5cXdpNWkKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3R5cXdpNWkKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3RhenBudzM3emJzX2NsaWFrc3Rlc3R5cXdpNWkKICBuYW1lOiBjbGlha3N0ZXN0eXF3aTVpCmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdHlxd2k1aQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3RhenBudzM3emJzX2NsaWFrc3Rlc3R5cXdpNWkKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJVkVORFFYZFhaMEYzU1VKQlowbFJZMjB2TjJaaVl6TjNRbVZYVjNoamQxTjFZMFExZWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZ6UmtGRVFVNEtUVkZ6ZDBOUldVUldVVkZFUlhkS2FsbFVRV1ZHZHpCNVRYcEJNazFVVlhoTmFra3hUbFJXWVVaM01IbE9WRUV5VFZSVmVFMXFUVEZPVkZaaFRVUkJlQXBHZWtGV1FtZE9Wa0pCYjFSRWJrNDFZek5TYkdKVWNIUlpXRTR3V2xoS2VrMVNWWGRGZDFsRVZsRlJSRVYzZUhSWldFNHdXbGhLYW1KSGJHeGlibEYzQ21kblNXbE5RVEJIUTFOeFIxTkpZak5FVVVWQ1FWRlZRVUUwU1VORWQwRjNaMmRKUzBGdlNVTkJVVU0xUjA0NVprbFdjekJvZVdOSlZHdDVNVkl6WlRnS1owdEljWEJNZDBGRVVUWlZhekZVTlcwclRERXJNVVZGVVVFd2EyOHdRMlkxVURaUWFYa3lXVlJuUld4d09FbG5kek5ZUm1NME1tVnVTbTVLTjFab1RBcDZTSFpzZFdGVGIxTkRkMjFrVmxSQ1l6QXdZbGxaZFRORFdYQm1kMWhaWjB3MllVbDVNekV5SzI0MlJIQkRWbmxYWmk5RWNHRnRNSGgzVGpadVZHaHdDbHBHYVRNMU9DOVlNaTl2U210TFNYUjZNMVl2YkVsWE1tdFZUWGx2VEc0eFJuZExVbkpKZWxZNVpqaHJlaXR3UTFWaVpsUXhaR05wWVRjek1YSm9iWElLUVZwcmNFVmlSamRJU2pJMllrazNhMUJtV0c5UFdXRmhRbmg1WWxaRU0yc3pUSFJIZUhObWJWUnlZMU5sVkdkTVZFcFNkbE50UkdGbk0wUkNZMnA0ZWdvNWJUVjNabEl6T1ZSUFMxWTJPWHA1U1RSek9EZ3ZhVUpyTUVkRGVHaFpVamxVWVU5b1pGWkJNMjlwTWpZclYwY3lNR2RyV0RFeVFWaFlSeXMxTjJGUUNqTnFSRVZvU0dsNk1FVnpNRFZqVmxwbmJXUnJkMWhsYjFjM2FGZDBaMjlQWlRremJGaFpkWGxNTWtsWWJtRkdOM28yUTFwbmRTc3hNV0ZyWVdJd2JYZ0thVGh5VTBzd2NHWk5abnByTm1WelFYaHBaVlYyVnpGbVVFcFRSREpaYkhCQ1QzaHlkbEpCVWs5a1YybG5WMWR1WTJRclJHeFVZM3BpTVM5T1lXdE1TUXBpVDBGQmMzSXdVSGRrWnpCc01tMTFNbmN5Y0RjcmJ6UkRXRU5TYlZkNk1FWXJURkk1S3pOV1pXMXNRV1pKVFdGdWJUbFlVV0owUTNWRksxTnJjV2xOQ2poa09EZENVRGR5VFhCNlRWQkphalk0VGtKNWRtMXlVbnBJVlc4dlNrYzJhUzlCYm5SNU4yTmhSV3d6TWk5TVZERndZME16Tld4UU5ua3pWMk5WU0dJS1dGTTBNVXBaVDBSbVVGUkpOVk5hY1VoSFRFOXNabVJyTVVaWGFtUTJRVmRwUjNkWWVGbHNXbTFYVERCM1kyZG9Uamh1V0M5WlVGUXhWMUZSZEdKWGVBbzFkSEZ0UWtWc1RHTnRkVXhoY0drMlJGTmpVRUozU1VSQlVVRkNiekZaZDFaRVFVOUNaMDVXU0ZFNFFrRm1PRVZDUVUxRFFtRkJkMFYzV1VSV1VqQnNDa0pCZDNkRFoxbEpTM2RaUWtKUlZVaEJkMGwzUkVGWlJGWlNNRlJCVVVndlFrRkpkMEZFUVdaQ1owNVdTRk5OUlVkRVFWZG5RbFJyYlZGSGRtZzRabmtLT0U0M01UZHhlRVJQYms5a2NrdHBXRkZFUVU1Q1oydHhhR3RwUnpsM01FSkJVWE5HUVVGUFEwRm5SVUZaVkN0elVXdFVNbmdyWXpoa2RYVnlhbmw1ZEFwYWRFbzFVMk5XZUM5TlVXRkRha3RHVG1oemQwMXZOVzEzV1ZWdGEwSjZLMFpOUjBaMGVUaHVVR1ZSUldwMFNrNVJXSEpUZFRKQmEwTkJVMVZMYkZaTUNsRktkSGhQWlcxSU5YWnphMEpCYzNCeFFXRldabEJrY2xOdmFtWk9OVTVpUlVablR6ZEtPVEJ6VmtOYWJqTmpXVU0zUVZSb2MwZ3dXRGt6U0ZwdWJETUtWMWM1VTI4MlNEbFNkMjU2VFd4T1NXZFBhSFY2WnpZeFowbHRhVUUyU2t0Q1RFeEZSbWM1WmtJcmVXWkxTRU5SZEhKbGJIRkNPVloyYmt0aGVrdEVWZ3B1U0hKYVJFdDZjWE5CTkRsaVMyZG5NRmxHSzFnMlFYWk1UelJtVVdwaFExWTBOVmhhZEhGVlZWcHViMkpESzFwWFJXSlZNVXh2T0VweFVEVk1OMnd5Q2sxM1EwVmhNbXBNUmpGc1dVSklXbVJoYWs5SFFuVkpkRk1yUkVsUVVVaEllSEZDUmtvMlNqRkplVTlNVUc1V1JrdHZhSE41YkUxUGFVbHVhM0JFUW1rS1lUQkhTekp4VjNOR2N6bENXalpGYzA1Wk1ETXhSM2hGVkZWSGRWZ3ZSazU2ZDFOa1REVkVOR0pSWkhsaVdVcDVLMDVyZGpoVk5qWnljMUJITVhGalJ3b3JURm92UVVoblQwcG1SSEZwT1cxbmJVSlBabGRCZEdweFkzUTRiMUJuVjFkV2RWcG9OVGRGWWs5eWJWTjNkSEkxYTJ4RFdUQkZPVU52TmpaNlRURmlDalZuYW1WRVVDOW9jWEJxZEdGblUybHZTM2RJVUVGRFdVeHpXSGQyVFZwdlIwNVBkV054ZWpOdlIyRjBTMEozWnpGTldHNWpaVTE1T1Vkd1kwcFFlVVFLWkVWTE9WWXlkRnBWVTB4d2VEQXlWVlJ0TDFSblRGVjZkbWxzV21Nd1IzTkhPRk0wVTNOUloxQjROVE53V2xOT01FWkVURzAzYlhkR1kybzROMU5TWlFwb1pYQXdla3hqYkdsSWFreHJaMk0wTm5NMFpIWXZhbkZVYjI1U2RsUmlhbXBuVlZWS05FUmxUelppVVVaalZUVklOa3B3ZFVObk4ydHpXaTluWkhsT0NsWllNblJVVlZwdVVUTlJjMmcyZUhWR2IwaEhUVFZKUFFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTbmRKUWtGQlMwTkJaMFZCZFZKcVpsaDVSbUpPU1dOdVEwVTFUWFJWWkROMlNVTm9ObkZUT0VGQk1FOXNTazVWSzFwMmFUbG1kRkpDUlVGT0NrcExUa0Z1SzFRcmFqUnpkRzFGTkVKS1lXWkRTVTFPTVhoWVQwNXVjSGxhZVdVeFdWTTRlRGMxWW0xcmNVVm5jMHB1VmxWM1dFNU9SekpIVEhSM2JVc0tXRGhHTWtsREsyMXBUWFE1Wkhad0syYzJVV3hqYkc0dmR6WlhjSFJOWTBSbGNEQTBZVmRTV1hRclpsQXhPWFkyUTFwRGFVeGpPVEZtTlZOR2RIQkdSQXBOY1VNMU9WSmpRMnRoZVUweFpsZ3ZTazB2Y1ZGc1J6TXdPVmhZU1cxMU9UbGhORnB4ZDBkYVMxSkhlR1Y0ZVdSMWJYbFBOVVF6TVRaRWJVZHRaMk5qQ20weFVUazFUbmszVW5OaVNEVnJOak5GYm1zMFF6QjVWV0l3Y0djeWIwNTNkMWhKT0dNdlduVmpTREJrTDFWNmFXeGxkbU00YVU5TVVGQlFOR2RhVGtJS1ozTlpWMFZtVlRKcWIxaFdVVTQyU1hSMWRteG9kSFJKU2tZNVpHZEdNWGgyZFdVeWFqazBkM2hKVWpSek9VSk1UazlZUmxkWlNtNWFUVVl6Y1VaMU5BcFdjbGxMUkc1MlpEVldNa3h6YVRscFJqVXlhR1U0SzJkdFdVeDJkR1JYY0VkdE9VcHpXWFpMTUdsMFMxaDZTRGcxVDI1eVFVMVpibXhNTVhSWWVubFZDbWM1YlVwaFVWUnpZVGN3VVVWVWJsWnZiMFpzY0ROSVptYzFWVE5OTWpsbWVsZHdRM2xIZW1kQlRFczVSRGhJV1U1S1pIQnlkSE5PY1dVdmNVOUJiSGNLYTFwc2N6bENabWt3Wm1aME1WaHdjRkZJZVVSSGNEVjJWakJITjFGeWFGQnJjRXR2YWxCSVprOTNWQ3MyZWt0amVrUjVTU3QyUkZGamNqVnhNR040TVFwTFVIbFNkVzkyZDBvM1kzVXpSMmhLWkRsMmVUQTVZVmhCZEN0YVZDdHpkREZ1UmtJeU1UQjFUbE5YUkdjemVqQjVUMVZ0WVdoNGFYcHdXRE5hVGxKV0NtOHpaV2RHYjJoelJqaFhTbGRhYkdrNVRVaEpTVlJtU2pFdk1rUXdPVlpyUlV4WE1YTmxZbUZ3WjFKS1V6TktjbWt5Y1ZsMVp6QnVSSGRqUTBGM1JVRUtRVkZMUTBGblFsbEhNM0paWTJGNFZXbE1SVkI0ZUZoRmFFMTRLMDFyZW1kM1MwZHpPVWx2YjA1NWJWQXhOa0pzY25ObFZqSnNaRzVTVkRaU00yaE5Ld3BwVDFkbVVtbEtUbkJzYkVZNU1GTnpVa3RFTlVNeGJ6VlJTREY2VGpGalUzUjRaV3c0ZUZSNFExcEVZWFJQVUZSVlRTdE5lRlZJVlRaMVdYSXhRVXhXQ25kMVpIRktlbkp3ZEhNd1RXSmpURTVuY1VsU2NERnZSV3cyYjNWdlRrZExWMUpKWVd0c0syNUNaVE4wUjBnck5YaDRNRkJHYmpaRFRIWm1Wbkp4Y0U4S1dsaENNSFZNUWtjcllVWjBRMFJGVlRaUmJVeElVRnBFWVVOb1dIVnNPRXB4V2pWMVJpdFZUWGhJWjFGT1ZqVkZkVWd4Vmk5SFUyeHRObWRMZEZCbFFRcGlWV0pwV0dvelR6QldlbGxLUVM5VlIyWmxXV3BHUXpCQ1NXazJUMjFsTDNKQk9FZGlMelkzYkhCaFNuWkdiV1pJYUUxQmRYWlFTVXRFY1VKUFpGSkxDbUV6U21wbGIzQm9ZVVpFVG5KTWRtVmtTR0Y0YWpodFFrMW9UVFJCVkVwMFpVcFZiemhqUW1salNHVTRNbE5sVVRGYVoxbHRSVkJ3TTBSQlVUQlBXazhLVlZaYU1rUnZlamh3Y0ZVdmVYQTRiV0ZuWTJaUk1XOW1WelpHZDJ4bE9EVldPRWx6VEc4NWJqRmhUREZPWjFNMWFsWTBibFprYkhsYVUwTldNVkpHVHdwQ1VHNHlVbkJFZEZZMk4yUnlaWEp0YW13elJWSXpXRXhPYTJ0V05VOWlNbVJ5V0ZaU1YwWTFMMjA0YVdaaVNGY3liVWRRYUZKRldVZzJZa3hoUzFoTENrWjFlWGN2VnpKamNEQXdjMncyV1VkSk9HNVNZbXcxVVV4U056Y3dXVzkyTUVWUlFtVnRaMHBpV0RsWlYzYzRWbEZ0VFRGV1pYTTJXSEJHWjBaeVVVSUtRazFTWmtaemNtUkllRlUzYmsxcGRYUkVhRE5tU2tSUVFuRnBTVFpDY21rNGRrNUNjbTV6WVhRd05IQmtVaTh5V25nM1RVbHZURlZIYjFoSlZWTkxXZ3AwYkhkV1ZIZGxha1V4WVVZNGNrTnFjRE5sTVhWdlJuTjZaUzlEUjNaT1p6bHZNVUpRV21wVU1YTlJWRll6YUdodlVVdERRVkZGUVRKek0ybEJiWGxTQ2tkSllUSk5SRWx3Ukd0MFQxSlBSMGxLZEdKTFowbDVRMlo0VmpGYU0zWkZabUU1WjNOeVlXdFJRek00ZVhGbFkxSkVZMFU0TlVWNUx6QndjVFJoV1dNS2NWbzNaelprZGxaNFJtYzVZbEJaTTJsUlMwTnpNMU4zZGtkaVRUVjBabVZ0UWxOSFdrb3hWRkpMWVhSTlVsaHRSSGQ0UnpkSlpEWnJWVEpJVVhOd2RBcElhV2hUY2xWWVVHWkhOVmhGZWtGQ09FVkpORlpRV0RoRlZWVnJSRkpGU0dKYVIyVm9jMnRSZUc5S1QxSmhWVzlxY0VoQ1VqaExhMHhzWTNob1dubElDa3RoZFdGaWRVWldSRWxpY2xST09WUlJVa2QyV1U1WWJYTmFjMnhTVFcwM2JYWm1aR2QxTWpGc0sxaHFWa0ZuYTNWUUszVk5UMXBKY0VGRk1ERjBSbG9LYVZkdVUzaElSMk5SV2xkU1ozQlBZMGhCVlZGQmQwVlBLM2RqYmpoTksxSndTR05uV25aUE0wdFRWbFJIYUdWTWVuTXdNRGRCZVc5M1JYSTVOR1o0VmdwV1NXZElWSFpzYUVKTVFtVTNVVXREUVZGRlFUSktRVmxoYUVKVVNFVlJWbEpQT1RkVFZqVlpUMW96U2poTVRYVm9jaXRzZURVd01uSXhiakJDVjBKTkNsWjBlVGx2VkRsVk1qRjJVa2wyU1N0QlpXSlBOa3Q2U2pGbWFXNUhaMDlSVjJGWVdIbGtVSGR3TTNnemFDOXJRbkI0SzFCblJqQnVjMjVyTm5wUldXSUtjbXRMVDJ0TU0yNXlaWEppWW00eFUyUndjM3BQU0ZkSVRtSTVSSGxGZDBGblozTjFVbWRDU1dwaE5tSjZVRlFyWjBRNVYzTnRhMnBMVm1GR1FqbFVhd3BKU1ZCbk5UTTRSMWRCWkdGdFRFUjBOalV4YTFJeVpWbFlVVEJhUTNsRlJtZHdlRFEzTVhGUUx6WjNVRUkxWlRaNVNrMUtiR2hoTVRWTE0yMHhlVnAzQ21GcFMyRXZjamd4YTBOMFdsUnRaelpRYlZKUE0zQkRXbGwzWkRSWGRtVlNhMDU0ZWs4d1RVMDFXVmxZYW1WSFEweGllVEpoZVVwWlZHUXpNRFZ4Y21rS2FYbEtNUzkwVlhSNllrc3ZRall6ZDI5MmVqTXpUazFqZG04cldUVXljR2hwTDNSMmVVMXJlbEYzUzBOQlVVRjJPV0ZNVG1aNmFVdHNURk5KWldWWmRnbzBUMlpIUWpFeFRtcG9WVk1yYW13NFZ6VnlRbFpSY1hKMFpUVlFTR1ZQUVhka1VFRkpPVGhJZDB4MVVVYzRjQ3N4VEZBMmR5dDBVMkp4V0VRdlRrTjBDbGRrTkZVM1VqaGtTUzlUT0VkNE4wZElVVFZoY0hkU0syUjZiRU5CYnpSSE5WUllaa3BZY1c4ek4zTkpRekpaWkZKVk5GcHZURGh6VG1oQ2VFNUlWVmdLVWtOU1NEWXlWSGhaWTBwNFRsQXpUVll3YUdkeFRsQnJLekU0ZUVWbk9XZFJOVEpsWmtkWldWbG1RbTl3TUhoUVkwRk9SakI0Y0RWVmMycHNPWFpSY1FwaE9GSldkRVJ1VDJOSE4zUnVaRlZWU25aeFZGTnNhVnA2YVhrMmFuaHZXSE50WTFOMWVtODFXbkZ0Y1hoRU9ERXlOa2hYVjBWeU1EWk5TWFpHZFhZeUNrbERLMnd6UnpoRFdWVlhlVTExUVhsMU9ETlJXbVEzTlcxeVlqWmxaamg1ZDB0RGJtWnVVRUp1TkRoNlJXczVSek4xYTNCVFMwd3phRll4T0haUlN6Z0tRVmRET1VGdlNVSkJRMWhPWjFoWFExRXZLemRKY25SV01HNHJUVXRJY0cxUlRXNTZabFIxYjFkS1puWnhXWGRUWkRkWk5HbFNjbWRxV0cxSlVrcG1SZ292TUhaTFdGZHBXR3RoWVhOQmN5dElRME5TVTFkMlFreE5jeTlaV0hwdVpGVkZRVGhDZWpOV1JrbGxhblY2YnpoVWVtUmhlVnB2ZUhCQ1JrRkdVMFZYQ25wb1kweGhWVzF4TjJSWU9VeG5NRVI0YVVaQmIzaFpVVkJhVDJGdFVTdHBWM2t2TnpGRVJYVXpWVTV1WkhWMlVWaHZhSFpqVTB3M05HeGhSM0JsVkZnS05EaHBhbTFsVWpOS1VHOVNOakZpVXpSdWR5c3hNbVJzVTFCaUwwdEJVRXBXVWxwUFRtaDVkRVJuT1ZaQ05IUlVhaXRuWlc1aFJIQlRXVlZQWlRWelpRbzVaMlp3ZVdORU5sbFpiMWxWTmpSc2NqWjVlR0Z2WlU4NE9EVXdaR1IyWVM5SFIxZzJPVVozUkRabVJEVjNXWGR4U0RsaVpGSkJNR2M0VW05RloySkhDa2hRUzB0UGJXTTFTVlZ6Tm5wMGJUQXhNSGRQUm1SclNtMTNia0pzVjBWRFoyZEZRVUphVHpKRFJHaENkVTVtYjFGTU5FczNPV0ptYVdGWGNtbE5UVWdLYWpkSGFpOHZSM1pXV1VaNmRFeHBjazQzVG1OQlpFTXlRWFIxWmpWUWRYbEJhUzlUTUdWRU4yRXZkMjQzTmxGS1VYUjVZbmgyWm5KdE4wMHZNMEZRTVFwcFVWWlFZWE5QVlRkNVNtUjVUbXRCTW5ZdmMwSXhiak4zVUdKWlYyUTVlalpKVTFJMFIwSldjalJRT0N0YVZGQm9WV3RXZDBWeE0wdFZXalZ3UldjekNqUlhjM2t4YW05dU1Fd3pZbTFvUXpsUlluWlBaakZaYWsxWVprRjFZVE55ZVROaGN6ZGtVRzFxU21wMmIzUTVlR2RsZFRSSldXa3lkR2s0T0hGRGRrOEtNMk5WZDBaS0syZ3pTV3gwUTNOb0swVjVjSGxMYUVGSlNtZGhSMVZsY3psSlZYSmFaV1ZKVlVGaE1XRk5lQ3RxYWtKdFlUaHJTMXBJWkRsUWNuaDRRd294ZGxkeFoyeHVZVTVzVFdsMGVXTkNhRFpDV1dWR2VUTldRbVZ4UTA1bGNDczNTMGxLT1RsaVpsQjBNR1ZPTHk4eE1rSnVhMHRzUlhaM1BUMEtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjoganFybDVsbmVxNmZ5YmlieG05Zndkbm53NGlneGl4d2xtM3lza2ozYnRjZnNqZ2xiZnh1OGl5NGdnbHBndGd4aXpzZzd4eWY4dXl4bGV1cTB3bGIwNndxNTB5NGY0MnZyc3RpN2F4ZnVwaXRvZzE3YWcyZ2wzcmpzemphdnBvaDEK\"\ - \n }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": + \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSV25nMlZsYzNOV3BVZGt0NmRuZFdVelpxU0VsNWFrRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxcWEzZFBWRkV5VGxSV1lVZEJPSGxOUkZWNlRVUlplVTlVUVRWT1ZGa3hUbFp2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVSRkNreEVlV2wwZFdZeFZFSkxXV0p1T1UxMVlXOUdjRkJpZVZwVU1uSlBSazVFTkdkQmJ6WlVOWFUyWldKeGJWWmhXRVZPWW5KTmRYRjRabEZyWjIxNE5XWUtaemRYWTJSNVUwMXdUMFZUUlZaMk5qZExhRFZIT0c1WmQzbHNRMncxYjJGaFpXdzVhSHBhVDAwelRGTkpjbTE0VTFCV1NsSlZXRVJtZHlzeU9HRlFhQXA0VVRCVVdtWjNVRE5sVmxKNFRVMXhaRmxVY2pKT1VVbFVTMlpTYkVkcVVUazRhekJpZFZkMkwyaDZTVFZ6WlZrclFuQllSMDlSY0N0SlJuQmFhVEkwQ2pBNVZrSlpSVkJ0UlU0MFlVZDRVRWh3ZDFVM1JFdG9hazFXVUhSd1ptNUJkRFJaTW5Bd2RVWktSbHBHZG14dFpqbE9VbXhIU1c5MlFWRkpVRGxxYlRnS0swUkpRM0IyYmpSd05GRXZVRkE1VDBsaU4zaHlTakpEV25OSlpYWlFOREV5Y0RNMFNucElXalJXWkZoUlMwUlJaVTQ0VlRKMk0waElaV3N3YkdaeFlRcEtWV0ZzT0ZVM1IwWXlOamR3TlRSQlZYUlNOSFE1T0dsSFkxUkNUbWRMTkVWUVJFRTNTblpGUkRKTGNtaGlZV2xHTkU5S1dXSmlXVFExY0ZFNVlTdHNDbXRVZDNVNFIxUjZja1poVFVsSU9HVmhTRlprZWxKWWJuaG9WMVY0Y1dGcFlrRkNhRUZEVURKUGJVeHlSMElyUjBJMFUxZzJNMEZDTUhsbVREWlNlSGNLY1hWbmNsTjRUVUpXV0hGRFVsUXlhbFJMV2xwa2JIbExVWGQ0VkhaaWJVaENhSEZRZG1WM09WZFZRelZJTVhaeFFYZERUM1ZNYVVzMGVVTlRaMFJIVXdwVFkyZEZaMmRFWkRodmVtOVZSWEJTVDJ0VFZYRlhWRzFIYUU5RmNIWnlUa1ZYUTNka1NGSjVTMlpVTW5keFprZDJhVE5WUTBsUFRFOHhiR2t4ZUdWbkNrTm9ibTh5VFRKTGVtSlZZM2xZT1hNdmJrNDBXVk5JUjFKVmRUaEdOVmRqTUdSTlpGZGhTRTF1YkZOT1IzWlhMMkZqTDFkQldsSldVMk5OV1ZOa2VsVUtXazUwV25CUWVuWTBRMGgwYTJOTE1sVmtNRVUwYUZKYVUxSnpNelZvWTJGWWJHOVJZak5MYjI5UlNVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZVd1EwcG5aVUZ3Vld4eFZsZENUVzlNQ2taelJUVkVZWFkzY21oamQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGR1FWSktTM2MyZDIxNEsxRjVUVmx2ZEVGQmFteHhOVXMyWVdRS1NHODFOazQ1UVVnNU5FeGhkVXhxYTNvNWIzTnFOVVZYS3pGemQzbFlha3RWYVZwT05WZDNNRVpITVdWSE5GbG9MMFFyU1d0bWIzSjJVMHByU3l0dFRncDJkRFpMWVZWbU1HNDRiaXRDVXpORGExZHJOMkZGYnpseWRHZ3dka05WZDJWU2VqRk1kbFZPWm1jdlJuSklUbmhUV1c1NVMwTlNWbFJZVlU5aGJVTTRDamhCY0hob0swdDFhRnBUVlRNdlRrSllRU3RPUlRkRVNrdGxaa0ZHT0dSbk5XZDJhVEF4TTJGWVRYb3JkRXBXVVRaTGNuQjFPSGxRUW5wQ0t6UjJMemtLV0drd1NWRkJVMGhVTWs1d1J6UndTVVJxVkdweVN6SjVUV3gyWmt4TGJtTmhNM2RwVm5WRWJWUlVXVmx2WXpnemFITXpkalpaTVU1cU5GVmtTMFZ1ZWdwNldYQnpXRFJ3UTJsMk4yeFVVVUptTTJ4cWN6aE1iM0pJSzNsdU1tWnZTWEUxZURkTk0wSlNNSE5uY1ZwYVdFZFBVRzV2UmxSNmF6aGtjWEEyWTFOQkNtWllTSEJRV21kc1JFWnVSalpCYjFWUFdGRlFXVEp3TUVGME1tZzViamswU25KbGREUlhSVlI0Y2k5ME9FcGxSRFpZVVhwYVVsRlhWbUpCYkVadlJXTUtjemhKUTNkeGNETlNNaTlLVWtOS2MwOUNkM2hpY1RSclJGVmtka3hPTTJOMWFIRjBkV3hDVTJOUlFWTnBORFJhT1RWT01rRXhhMW93WlM5U2VHb3lZUXBTV1VsaE5VTXJNMnhMVXpKdlNqUTBZak5FTmk5d09HaDFOUzlPUzBGVlRHUlNaV2RLV0dadmFreFpjbFY1VjNsMlRIbHdUV2t4Y3pGUEwyMVFlRkJsQ2t0NGRUSnNibUl6Y2tzNU1HbGphWGx5U0hCTVMwTlBjRFZCU1hKV1VqTlNhek0zTTNWV0wzVlZkV0pJZGpSaU1qVTVLMnhHT0ZaTksxWXpWbGhTUmtJS2JrRnZVRmhyUVRkS1dpOTZaRUl3Y2tneVdrbHlTM050Ym1OeFYxWnFRMDFNTm5ZNFNXUjZSVGhzVUdsclEwaFVNMlJyYTNGRFZWTnlWakJJY0ZOcU5ncFdSU3RoU21kMlIxWmpZM2xXV2xsRkNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc2t0c3NndGItaXRpaXI2YXUuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3RwYml0djQKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3RwYml0djQKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3Q0b29xZnl6ZnljX2NsaWFrc3Rlc3RwYml0djQKICBuYW1lOiBjbGlha3N0ZXN0cGJpdHY0CmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdHBiaXR2NApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3Q0b29xZnl6ZnljX2NsaWFrc3Rlc3RwYml0djQKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJVkVORFFYZFhaMEYzU1VKQlowbFJWRlI0V0c1c1ZIYzVSV1F4YVU1NVNHOXRaWEY1UkVGT1FtZHJjV2hyYVVjNWR6QkNRVkZ6UmtGRVFVNEtUVkZ6ZDBOUldVUldVVkZFUlhkS2FsbFVRV1ZHZHpCNVRYcEJNazFxYTNkUFZGRXlUbFJXWVVaM01IbE9WRUV5VFdwcmQwOVVWVEpPVkZaaFRVUkJlQXBHZWtGV1FtZE9Wa0pCYjFSRWJrNDFZek5TYkdKVWNIUlpXRTR3V2xoS2VrMVNWWGRGZDFsRVZsRlJSRVYzZUhSWldFNHdXbGhLYW1KSGJHeGlibEYzQ21kblNXbE5RVEJIUTFOeFIxTkpZak5FVVVWQ1FWRlZRVUUwU1VORWQwRjNaMmRKUzBGdlNVTkJVVVJsV2psU1MwOXJVSGRpTWxoemFrRm5UVVJvVVhRS1EweE5UWFZ0U1VZMlRuUjROQ3RrYWpWTVMzWnBTMjl2TW10MlRGbGpaM2t5V2pCUmIyWTNTRmhJWmxkSlRWUm5hWE5rT1dsMFJWaG9VVFZzTW1JMk53b3ZPRlppZVRGNlIzWTRaakZ2TWxZelNtdGhSR016Um5WcGIwaEZVa28wZEdJeWMzQk1XREJ5VjBGWlFrbHBWMXBJYlVaeVdVOTNWbFJXWWtORGRHMWpDbEJYVG1OR1RYWnRaWFExY2sxRlYzUkRkbm8xVWpRemFIUnROalZLUkRCTWJIZzJVbEowV2s1cFkyUm9PRmhwTmtoVmRWaHdlVTB3Y1RORE4wZE5TRzRLVWprNGFtMWhUMkZ1WVVOeFpucFpRMmQ1Y1RWYWVsQjRTellyUm1oWVZHUlRMMnQwVTJwMk9WaDBSVGhMWm5NMFRUZHRVVEl6TlNzM2FHcDVZV3AzWndvdlVqbEpiV2xVYTJaVVltSnpNbVZPZG5vd1JXMDRTVkJ3WkhOb01YaGhOVGMwU25wcFluSXJTM2RvSzFCdWFtTmFLMmcwTDFSQ1ZYRjVlSFpGTWtOS0NtaFpkM0JzYVhkMWNGRjNWMDE0YkdSUVVUSjVTR2RHTldsVVlteFdRV2hQWkROdWIxbFRZbVV4UzJsdEsxaGtUa0ZxZVVsWVp5OURVR1pVVDBoaVlWa0tPR3hLTTNGVVUwaE1iRGxxTW5Sd2R5OWpiRGhGZUdWT1ozWjRRbEJUZGpSdVJqUjNMMjlHTjNwRlVVbEJZMlJWVlVoc1RFSXZUMWRHZFZOWFMzWjZWZ3BVWlN0RFNDOW5OelZFV0hkNVRtRkhZbEJ0VVZFeVpVNUdUWEJQVWtOVFZrWlJNVmxNVGxwV1JHdENha1pJY1ZFMFdtdEJZVmw2YkU5VmVUazJhM2xMQ2tGWVN6Y3ZabWhRWVZKRFZGVnFZMmM1WlVOckwyeFBValkwZHpBeE5HeEpZbk5rUWtKSlNFNUxaUzlxYWxOalkxTlZRelp5T1hsVFFtZERWMGRtVDFRS2NtNHJaRTR5WldKU1pXeDVhREpWV1dJelRYbERXbW94TWtoNmFFRndVRGhWUzBSeVpEZFFiV3AyUlhkVFdDdExkVmw2WnpodWVWUXZkRFE1UVdWc1pBcG9SbE40UVdWR1lscFlZblkyU0ZWVFNFbDJNV2QzU1VSQlVVRkNiekZaZDFaRVFVOUNaMDVXU0ZFNFFrRm1PRVZDUVUxRFFtRkJkMFYzV1VSV1VqQnNDa0pCZDNkRFoxbEpTM2RaUWtKUlZVaEJkMGwzUkVGWlJGWlNNRlJCVVVndlFrRkpkMEZFUVdaQ1owNVdTRk5OUlVkRVFWZG5RbFJSU1cxQ05FTnNVMWNLY0ZaWlJYbG5jMWQzVkd0T2NTOTFkVVo2UVU1Q1oydHhhR3RwUnpsM01FSkJVWE5HUVVGUFEwRm5SVUZJVTFKSmFqZFJWekJyZFRGRGRHUkdWV3BZYXdwVVVqZDNVM2RwTkdwdVFWVTRUVTE1U2xCaGNVSjJjR0ZtWm1KSGIzaHNVbWhHU1RZNE1EYzFaV2gyWWtwcWRVbHVSa2g2TjNOcmJGaEpaM0JFY25BM0NqUXdiM1YxVVVsMlVXOUhNU3RuV2pKNGFGcHRUamRrVFZCWWVWZ3JWMUJ2Y2xSdU9FOWhORkZNVWtsaVpFbERkVkpJV1Roc01WWnljM0l2T1ZodE5IZ0taRmN2YXpOWlJGVmxTRGhEVm5aMk0xQXlSRTlUTkhSb1MwdE5aak5MZVVadmVsTnRlWE5xWVVOaFdFRmlOV1pKTUZWd2NWZHJUVkZXWjJOQ2FtdE9aUW93VUhOcGVucDBPRGx4THpaM01uSmFZbGhUWkdOeGMyeGlkV1phVVdsMGRHaEphRlV6V0dWWVMybFdZbWxuYjI1cFRHb3dRbkJNVVdSMFNHMXVhMjlDQ2xrMUsxZGFSVmhIVjNORVYwTjZTVE5GUjFRNFZXbFNPWHBWV1RRMWRFSmtOREF2VFVGREsxRXJiVmxuTUZneE9HRm5NRTlqY1hkWGJtWlJMMU5QZEhZS2NuWXhUa04yYUc5SldYRmhOVmxIUjBkWlRITmhUbmd3UjBRMlJGbHlTR1ZVVUhKQlNFOW5XbEp3WVhrM04wZGFhbTVzVWs1aWJHWkxlRU0xUm1kMldnb3JUaXRSVTFnMmVESTViRUZsV1ZWT1IwNXNVVFpuWVhoeVQwUjZjMUpoWVRsdllUUkhVSEU0Y2tkSVUzcEZMMmx0TmpGTVQwMVFkeXQwTDJkRmVtZG1DbXdyYTB0dmMzUldkVTVCUzI5dFVXTkthRVZrUkdGcWJYTkZUMkY2UWs5bWVTdE9MMUIxUWs5RE1Ua3pkbXBsTm1oS1ZXczVSRU55UW5WU1FXRnRSbFFLYjBwa1IzSmxXV28yVlhCMU1qWkpVRVZEZUcxSlYwZzBNRk5EVG1wVWJsVlViRzA1UWpoUWN5dEVSbFpsTDFSdFVVcFpSM3BZUlhaSFRYZFhjMHAzTXdwVFZrOUVZalE1YjJablJpdFhiSFJ6TjA0emNraEVhamhrWmk5U2MybE1TV0pSUjIxb2FXSjVhbEJJTmtoQlREaE1la3B5U21sV1RYbHdWMG8wTkZwSUNta3lVRzFTUTJ4aFdWVnVXa2RRTlhSaFJFdFRPR2RKUFFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMUZKUWtGQlMwTkJaMFZCTTIxbVZWTnFjRVE0Unpsc04wbDNTVVJCTkZWTVVXbDZSRXh3YVVKbGFtSmpaVkJ1V1N0VGVYSTBhWEZMVG5CTUNua3lTRWxOZEcxa1JVdElLM2d4ZURNeGFVUkZORWx5U0daWmNsSkdORlZQV21SdEszVXZMMFpYT0hSamVISXZTRGxoVG14a2VWcEhaek5PZUdKdmNVSUtlRVZUWlV4WE9YSkxVekU1U3pGblIwRlRTV3h0VWpWb1lUSkVjMFpWTVZkM1ozSmFia1F4YWxoQ1ZFdzFibkpsWVhwQ1JuSlJjamdyVldWT05HSmFkUXAxVTFFNVF6VmpaV3RWWWxkVVdXNUlXV1pHTkhWb01VeHNObU5xVGt0MGQzVjRha0kxTUdabVNUVnRhbTF3TW1keGJqZ3lRVzlOY1hWWFkzbzRVM1YyQ21oWlZqQXpWWFkxVEZWdk55OVdOMUpRUTI0M1QwUlBOV3RPZEN0bWRUUlpPRzF2T0VsUU1HWlRTbTlyTlVnd01qSTNUbTVxWWpnNVFrcDJRMFEyV0dJS1NXUmpWM1ZsSzBOak5HMDJMMmx6U1dacU5UUXpSMlp2WlZBd2QxWkxjM05pZUU1bmFWbFhUVXRhV1hOTWNWVk5SbXBOV2xoVU1FNXphRFJDWlZsck1nbzFWbEZKVkc1a05UWkhSVzB6ZEZOdmNIWnNNMVJSU1RocFJqUlFkMm96TUhwb01qSnRVRXBUWkRack1HaDVOV1paT1hKaFkxQXpTbVpDVFZocVdVdzRDbEZVTUhJclNuaGxUVkEyUW1VNGVFVkRRVWhJVmtaQ05WTjNabnBzYUdKcmJHbHlPREZWTTNabmFDODBUeXRSTVRoTmFsZG9iWG8xYTBWT2JtcFNWRXNLVkd0UmEyeFNWVTVYUTNwWFZsRTFRVmw0VWpaclQwZGFRVWR0VFRWVWJFMTJaWEJOYVdkR2VYVXZNelJVTW10UmF6RkpNMGxRV0dkd1VEVlVhMlYxVFFwT1RtVktVMGMzU0ZGUlUwSjZVMjUyTkRRd2JraEZiRUYxY1M5amEyZFpRV3hvYm5wck5qVXZibFJrYm0wd1dIQmpiMlJzUjBjNWVrMW5iVms1WkdnNENqUlJTMVF2UmtObk5qTmxlalZ2TjNoTlJXd3ZhWEp0VFRSUVNqaHJMemRsVUZGSWNGaFpVbFZ6VVVob1Z6SldNamNyYURGRmFIbE1PVmxOUTBGM1JVRUtRVkZMUTBGblFrMUtka1ZvYlZkSE5UWmxjbFZYTHpWR1dXMTVNa2h6ZUhkQ01FZGFSa2R3VUZSUFNHdzJiVVJyYVdJM05YcG5WVEV4YmpGbFN5OVZSQXA0VUZGbUwzbEdjRk5FT0doUk1rOWlUVkJVTTFGTEx6RllLMFpZVEdaVE9YZGFkell3Vmk4clZUZDRhVlk1UXpsSlkwbDBVRElyTDJKR09XTXpNVWR3Q2k4NVJtdEVabVpCVnpWcVZVaFFjblZqV0d4cmMyUTJURUZ1ZDFGaE1WTnBTM1I2UjFKcWRubEtPREI2ZFhoa2VtOHpVMHBZU2xnNEwzUlBTVXhITldvS1FVRmFVVGx0VVRKMlVpOUNWMnhoVUhwelRGaFFabmxVYXpVMlVrOXhURVUxWXpaSVIyOUlkek41TXpOSWEwbzJlVlZQV0hsSlYwcERia1pDWkUxdlZncElPVE0yYlRSVE5WQlJZWFkzT0ZsVFR6VllUV3RIYjNGV2QxaFFjR1IzV1ZZck9WbzNVMWhxYUVWS2J6TndjR1ZCV21Od1JraHJOekZTU1V4RFJqazJDbWREV25VNFVEQjJaazlUVmxVeE4yVlVjRTVHTm01aFJXTm1XVlJtVUZaTFNqWmhTMlJHV2tGQ2VWZFNORUpRUTNOSlNUQTJXWEJhTml0Q2F6WnZOek1LU2pGSmNsSktPSGxRVlZGTlJtTnpSVGRoY1VKQ1ZISnliVzgyVFdwMFUycDVOSFFyZVdaR2MybGxhelZXZDFWNVpUUTRjREU1UVhKWVdIVXZOa1JpVVFwc1MxVndNVmtyVVU1YUsxTnFXbWg0Um05bFRuUkdjVk5TWkRsM01GWlZSMFJIZEdGaU4waFZVU3R4VFU0Mk5WSkZlSEJqTlZSQ05FTlRiRkYwZVdvdkNtbDJXREJ4VDNOWFFtOUVhM2dyUm01alp6UndNbXgzU3pKdFYzUnRkSGx5YjFCM1dGWjRZbEZCVXpKd1JYTTRhM2xxTDBKT2NuY3haazQ1TTBkNFFrSUthbU5KTDFKU2FFWTFVV3RtWTJac1VHZFFhRFZIUWpaV1FrVjRUMHN6WkZKYVpURmxjMEpvU1RaUWFFcFpXbkZUTWxKVU5HdGpUMk5KWmtkclpuZzRSZ292UTNkTlpXWndVR2h3YjBKM1l6SkhZbkJ3VkRjNE1VdG9LekZNVEVsSFJEbElNbHBOUmxCRmNrTlRUVE0zVHpaUlVVdERRVkZGUVRRd1ExWjBNbmRrQ2s1Qk1tUm1lWE4xUldkcmNuVlJNRzFXWnl0WGFEQjVkVUUzY0haeU9FOUJXR1owZVc5Q2JURXJhVlF4TlcxSUswTmtNVFJOY2pkWVUzVjZWMVZwZEVNS2VITndjbTh4YkZReUsydDJjemRaUXpaQ1RucDRVa3RvV1ZWS1lscHViM1ZOZGxGcGFEZFplRWxIY0daWUsxcFRUalUzU1V0SmFXbHdiemQ2VlZOdmR3bzVTM1EzTlVWalFsaFBNRTQwTTJ4cFVIZ3hielp6VVZveVUwOVFSMjVVVDFKbVJtOHphbTFJVVRnMVJXaHZWVTR6TDJnNE1IaEtiell5ZWk4elVrZFBDbTVNWjBwSWVVdFRRakpIVDBwd1dtcDRNelZKU1haSmFEbGpaMDVRUlVwUGFFMUhiMFJKUW5KUVFUUnZOM1JSUkUxaE5tNUJNVzlSZFdNeFUyd3lWSG9LZUhwUWNHc3dkVWRPWlc5MFExTlpkVzFzV1ZodmR6Wm1UVkYwZFVOS2Ntd3ZTVWx2VTFsbk1Dc3pWRFp2TmxaUGRHWXZPVFJsVHpWRlpFdHpOVXhWZGdweGRsUmhhRTF1WVdkTmVEZHFkMHREUVZGRlFTdHZjRXBvWjJjNFRtc3haSHA1WlhKbU5saGFNbTl2TW1GSk1Xc3ZNWFpvVkhWNGVVcERPVzk1YkdKS0NpdFZhRkJTY0RaR00xaEtSM1F5UTJONFRYUlNLMWxYTlhwQmRqWm5hbkZwVkVRNVIwMTJWMnBMUmxFdlJFbE5XWE4xU2xkWVZVZDZWa2N3YzFGWUsyNEtWekprTlVGdWRVdHdlVWhCV2pkWmNrZEhNM0ZZVGxvMk5WUXhPWFJ2Y21WS1pGRTVkMnRNT0dWTk5TOXBUVk12WkVrNFFsazFaMlZHWnpsclZFRklNZ3BHYW5SMU1HcE1NMmxRY1ZGS0swMWtORlZvTVU5bmRtUTNSekZIV0M5SFF6Vm1lazUwTkRGVmVUbExWMnRPT1ZWMlIwZzVRV3gyWjBoVlQybHpLMFZ5Q21vNEx6Y3ljVU14ZUhsWlJGaHRhVnAxVG5KVldHZDFkRWxqTTFwdlVFbEpWMHBJVmtka1NYQTNSRU5CUzFWMVdFNUlaMDlwVUZObVMyNUdXRUpsV1VjS1VWZE1XR1Z3UTJ0TU1FVmpSMWg1TDJ0VmFtVndNM0pPUVhsVWJGbDFNa3ByYTNGc2FWQkRPSHBSUzBOQlVVVkJiMFF6TWxaRVVrVkZNbEpYV0d0dFVRcFlkRGxuYlZWblVXUkVZbWh4WkRSRlFteFVPRlpETDBNMFNVcG9kbFZ5YWpaMFRVNUpZbkZRWVRFeGFsZEZWVUpuY1N0dFNVdExiMjQwZHpCbmFXRkhDak14V2paalNHOTZZVzV1Y3psR1dFTjJaRmxSY0ZJMFlWaFpkVkZ1WVd3eU1IRnBkbEFyZDJ0d1ZuVjBVVUZsTkhsVlIySnBUM1kzVVZWME5sQlBiR3NLY1V0WWRsZFRkRXRtTnpZMVRVaEhLekpGU1dWemExVlRMMjVpVUhZMFRrcFJhVXM0V25rMlJFeG9PRVo0WTBGQ1p6WkRSV1YwYm1GbFpDczNZblI2ZEFwdk5EZERjMkZ5ZVVOTlYyWkZRMVV3YkZJM1VGWnRTbUpCTTIxaGFXUlplbmd4Uld0M0swNTZjbE5ESzFjM2NYbGxTa2Q2V0RGWGMwbENZMWMyVDI5ckNscFFaMUJqV21kbE0wY3hRV3hhV0VZMGMzUjNaREZxYVU5Nk9UaE5VREVyWm5GR2NEWjFTM2h6WkhkcmNGcG1lRGxCVG1WTWNHTnJWMkZRTWxGb1VXb0tiM2hoVGs5UlMwTkJVVUpLVldGNloybzBjRzVpWXpZeFRDdDJUbUZHUkZBeGMwUkVZV2hYVkdOWFZVaFFjMVJOWlVJNVdHb3plRGtyYWpWUk9GWldSZ3ByUVhKSU5GaHpabFZGTUVkRk5qbHBNbTFMVDA0dlEwWkdZMDVMWVVnME9UaERSMlpZVFVsbGJqUlJZM1ZJZUhScFlVWTBOMWt5YUdaNU9UTnVXVmhtQ2tWVk5rbFRNVkpxVTNNNVlVdGtOQzlPWm1GVVRrTktPSFZhWWpGUlluTXlPREU1TlU4dlN6Tm1jRFIxWTJwaWFuZzRPVmhQZGlzd1ZTdEtSRzB5ZVRjS1dtNUNTR0V2ZVhwclFYWlhWaXREZWt4MWREUmhiVzltVDJoT1RqQjNkSE4wYnpCbWFXMTJNakJWY0VWd1dGSTFkUzlDYVdGa1VHZDFNRWdyU1dsbWR3cFNkSGxZYUZVM2RsQlJUVWhJY1RKc1FtVlFXbUZPYzNWaFJXTlFlbTFST0ZoYWEzb3ZTVFJqWVdOSUwweEhPV280VmxaQ1VXRmhNQzlsVFVoWFJYSnJDa1pWTjA4eWNWbEtUVEpWVG1GREsxVTJkbWhEVFdwbFpsZDZPRVZUTUdSR1FXOUpRa0ZSUTI5S2QxWlpWVTlxYzFaQkt6azRla1F4V1c0MldFaENNVFVLYmxoMk5EaGpRVlZNTUZSQlpIUk9WRWx0TVZKaWFTOU5abFZDUldwaFptVjBZVkV5TmpacmVEbENXa1puTlVRelRHVXlLMFl2Y2xCMU1uRk5kbWxGWndwU1VYUXdOVGQwTDFadWRGTkhSWG81WVhsTmFqSk5ZamxNUW1oWFUzRXhSSFpyVVhod2EzTlljRmsxWmxVd2JWRTBlSGRHTUROTlRUUlVWRk5DVGtKbUNsVlhUMkV5VjJNNFRYTmFabkpJUWtKSE4yZEdaM2RxWms5V01rdGxhVTFWVFRGa1dYSlZXbWhWWVd0VE5qTjNVVkZGVlRjME5tVnFZeXN6YkVSb1prY0tPRlF2VWt0UFMxSnJla0pwV2pCSWFuZEtSbTFNSzBGQmJrOUplbmhrVkVKMVEwaFhVR2R6U25kc1drdHJhekY0V1ZSeWFpODBMMWRYTUdGeE0weFFWQXBIU2xkc05FaDZWbVo2YjBSNVNHTnlWbGRrYW1OS1NrcEdhVWRIVkdsNlRUYzRlSGt3V1hJMlYzZGpMekJCTUdGcFZHNUNiSGc1V2l0QmNITUtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogaW40ZnIyMG81b3NlenEyMTI2dnhuemF0aTJ6ZTVxYnEzcnAyN3UyMzB5djhpN3NjdXQ3MmF5M3dmeHAxZ29sazduNGR3OGRlaXluYXM2aDZ2dWU5eGIyZmpqem4xZmp4ODU5aGUxYm9vY3d0Y2Zycjg3cDF6OWlnNHdpZ3R3ZjYK\"\n + \ }\n ]\n }" headers: cache-control: - no-cache @@ -1259,7 +1533,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:38:21 GMT + - Thu, 29 Jun 2023 10:01:19 GMT expires: - '-1' pragma: @@ -1293,67 +1567,66 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-itiir6au.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000004-itiir6au.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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: - - '4398' + - '4069' content-type: - application/json date: - - Thu, 15 Jun 2023 12:38:22 GMT + - Thu, 29 Jun 2023 10:01:20 GMT expires: - '-1' pragma: @@ -1381,13 +1654,13 @@ interactions: "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"}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_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": {"outboundIPs": {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}, + "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"}, {"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"], @@ -1406,76 +1679,75 @@ interactions: Connection: - keep-alive Content-Length: - - '3114' + - '2748' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-itiir6au.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000004-itiir6au.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/d329ca4b-6ff6-46d3-bc2e-6020aff0b077?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2a3c0c94-6599-46ab-bdfd-dd5fc9104ddf?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4577' + - '4248' content-type: - application/json date: - - Thu, 15 Jun 2023 12:38:29 GMT + - Thu, 29 Jun 2023 10:01:24 GMT expires: - '-1' pragma: @@ -1491,7 +1763,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 200 message: OK @@ -1509,14 +1781,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2a3c0c94-6599-46ab-bdfd-dd5fc9104ddf?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 }" + string: "{\n \"name\": \"940c3c2a-9965-ab46-bdfd-dd5fc9104ddf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:01:24.3495546Z\"\n }" headers: cache-control: - no-cache @@ -1525,7 +1797,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:38:29 GMT + - Thu, 29 Jun 2023 10:01:25 GMT expires: - '-1' pragma: @@ -1557,14 +1829,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2a3c0c94-6599-46ab-bdfd-dd5fc9104ddf?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 }" + string: "{\n \"name\": \"940c3c2a-9965-ab46-bdfd-dd5fc9104ddf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:01:24.3495546Z\"\n }" headers: cache-control: - no-cache @@ -1573,7 +1845,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:38:59 GMT + - Thu, 29 Jun 2023 10:01:54 GMT expires: - '-1' pragma: @@ -1605,14 +1877,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2a3c0c94-6599-46ab-bdfd-dd5fc9104ddf?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 }" + string: "{\n \"name\": \"940c3c2a-9965-ab46-bdfd-dd5fc9104ddf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:01:24.3495546Z\"\n }" headers: cache-control: - no-cache @@ -1621,7 +1893,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:39:29 GMT + - Thu, 29 Jun 2023 10:02:24 GMT expires: - '-1' pragma: @@ -1653,14 +1925,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2a3c0c94-6599-46ab-bdfd-dd5fc9104ddf?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 }" + string: "{\n \"name\": \"940c3c2a-9965-ab46-bdfd-dd5fc9104ddf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:01:24.3495546Z\"\n }" headers: cache-control: - no-cache @@ -1669,7 +1941,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:39:59 GMT + - Thu, 29 Jun 2023 10:02:55 GMT expires: - '-1' pragma: @@ -1701,15 +1973,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2a3c0c94-6599-46ab-bdfd-dd5fc9104ddf?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"940c3c2a-9965-ab46-bdfd-dd5fc9104ddf\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:01:24.3495546Z\",\n \"endTime\": + \"2023-06-29T10:03:15.8509485Z\"\n }" headers: cache-control: - no-cache @@ -1718,7 +1990,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:40:30 GMT + - Thu, 29 Jun 2023 10:03:25 GMT expires: - '-1' pragma: @@ -1750,69 +2022,68 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-itiir6au.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000004-itiir6au.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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: - - '4757' + - '4428' content-type: - application/json date: - - Thu, 15 Jun 2023 12:40:31 GMT + - Thu, 29 Jun 2023 10:03:25 GMT expires: - '-1' pragma: @@ -1844,69 +2115,68 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-itiir6au.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000004-itiir6au.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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: - - '4757' + - '4428' content-type: - application/json date: - - Thu, 15 Jun 2023 12:40:33 GMT + - Thu, 29 Jun 2023 10:03:27 GMT expires: - '-1' pragma: @@ -1940,8 +2210,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/cliakstest000001?api-version=2023-05-01 response: @@ -1949,17 +2219,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fb8540a4-5f58-4827-a3b3-0324f7c9bda7?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 15 Jun 2023 12:40:35 GMT + - Thu, 29 Jun 2023 10:03:28 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/fb8540a4-5f58-4827-a3b3-0324f7c9bda7?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_spot_node_pool.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_spot_node_pool.yaml index bf21484ae31..781a8083077 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 12:40:40 GMT + - Thu, 29 Jun 2023 10:03:31 GMT expires: - '-1' pragma: @@ -58,12 +58,12 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1039-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_spot_node_pool","date":"2023-06-15T12:40:38Z","module":"acs"},"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-29T10:03:31Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -72,7 +72,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 12:40:40 GMT + - Thu, 29 Jun 2023 10:03:32 GMT expires: - '-1' pragma: @@ -88,18 +88,19 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestnezs3nufw-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestb5eofac6w-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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {}}}' headers: Accept: - application/json @@ -110,69 +111,67 @@ interactions: Connection: - keep-alive Content-Length: - - '1751' + - '1422' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestb5eofac6w-79a739\",\n \"fqdn\": \"cliakstest-clitestb5eofac6w-79a739-iccjsm9r.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestb5eofac6w-79a739-iccjsm9r.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/3772c478-9596-43b3-8376-f052eed6c63e?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9e0f8ac2-5623-4050-a356-424298c7029f?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3596' + - '3267' content-type: - application/json date: - - Thu, 15 Jun 2023 12:40:48 GMT + - Thu, 29 Jun 2023 10:03:37 GMT expires: - '-1' pragma: @@ -184,7 +183,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -202,14 +201,110 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9e0f8ac2-5623-4050-a356-424298c7029f?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"c28a0f9e-2356-5040-a356-424298c7029f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:03:37.9591482Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:03: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 --vm-set-type --node-count --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9e0f8ac2-5623-4050-a356-424298c7029f?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"c28a0f9e-2356-5040-a356-424298c7029f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:03:37.9591482Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:04: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 --vm-set-type --node-count --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9e0f8ac2-5623-4050-a356-424298c7029f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"78c47237-9695-b343-8376-f052eed6c63e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T12:40:48.7286092Z\"\n }" + string: "{\n \"name\": \"c28a0f9e-2356-5040-a356-424298c7029f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:03:37.9591482Z\"\n }" headers: cache-control: - no-cache @@ -218,7 +313,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:40:49 GMT + - Thu, 29 Jun 2023 10:04:38 GMT expires: - '-1' pragma: @@ -250,14 +345,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9e0f8ac2-5623-4050-a356-424298c7029f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"78c47237-9695-b343-8376-f052eed6c63e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T12:40:48.7286092Z\"\n }" + string: "{\n \"name\": \"c28a0f9e-2356-5040-a356-424298c7029f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:03:37.9591482Z\"\n }" headers: cache-control: - no-cache @@ -266,7 +361,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:41:19 GMT + - Thu, 29 Jun 2023 10:05:08 GMT expires: - '-1' pragma: @@ -298,14 +393,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9e0f8ac2-5623-4050-a356-424298c7029f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"78c47237-9695-b343-8376-f052eed6c63e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T12:40:48.7286092Z\"\n }" + string: "{\n \"name\": \"c28a0f9e-2356-5040-a356-424298c7029f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:03:37.9591482Z\"\n }" headers: cache-control: - no-cache @@ -314,7 +409,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:41:49 GMT + - Thu, 29 Jun 2023 10:05:38 GMT expires: - '-1' pragma: @@ -346,14 +441,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9e0f8ac2-5623-4050-a356-424298c7029f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"78c47237-9695-b343-8376-f052eed6c63e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T12:40:48.7286092Z\"\n }" + string: "{\n \"name\": \"c28a0f9e-2356-5040-a356-424298c7029f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:03:37.9591482Z\"\n }" headers: cache-control: - no-cache @@ -362,7 +457,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:42:19 GMT + - Thu, 29 Jun 2023 10:06:08 GMT expires: - '-1' pragma: @@ -394,14 +489,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9e0f8ac2-5623-4050-a356-424298c7029f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"78c47237-9695-b343-8376-f052eed6c63e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T12:40:48.7286092Z\"\n }" + string: "{\n \"name\": \"c28a0f9e-2356-5040-a356-424298c7029f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:03:37.9591482Z\"\n }" headers: cache-control: - no-cache @@ -410,7 +505,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:42:49 GMT + - Thu, 29 Jun 2023 10:06:38 GMT expires: - '-1' pragma: @@ -442,14 +537,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9e0f8ac2-5623-4050-a356-424298c7029f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"78c47237-9695-b343-8376-f052eed6c63e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T12:40:48.7286092Z\"\n }" + string: "{\n \"name\": \"c28a0f9e-2356-5040-a356-424298c7029f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:03:37.9591482Z\"\n }" headers: cache-control: - no-cache @@ -458,7 +553,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:43:19 GMT + - Thu, 29 Jun 2023 10:07:08 GMT expires: - '-1' pragma: @@ -490,14 +585,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9e0f8ac2-5623-4050-a356-424298c7029f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"78c47237-9695-b343-8376-f052eed6c63e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T12:40:48.7286092Z\"\n }" + string: "{\n \"name\": \"c28a0f9e-2356-5040-a356-424298c7029f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:03:37.9591482Z\"\n }" headers: cache-control: - no-cache @@ -506,7 +601,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:43:49 GMT + - Thu, 29 Jun 2023 10:07:38 GMT expires: - '-1' pragma: @@ -538,15 +633,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9e0f8ac2-5623-4050-a356-424298c7029f?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"c28a0f9e-2356-5040-a356-424298c7029f\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:03:37.9591482Z\",\n \"endTime\": + \"2023-06-29T10:07:54.5584678Z\"\n }" headers: cache-control: - no-cache @@ -555,7 +650,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:44:20 GMT + - Thu, 29 Jun 2023 10:08:09 GMT expires: - '-1' pragma: @@ -587,66 +682,63 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-clitestb5eofac6w-79a739\",\n \"fqdn\": \"cliakstest-clitestb5eofac6w-79a739-iccjsm9r.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestb5eofac6w-79a739-iccjsm9r.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/573ad58e-c5e0-47ac-af35-099805b6b9ef\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4249' + - '3920' content-type: - application/json date: - - Thu, 15 Jun 2023 12:44:21 GMT + - Thu, 29 Jun 2023 10:08:10 GMT expires: - '-1' pragma: @@ -678,25 +770,25 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --priority --spot-max-price -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-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.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ - : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\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 }" + 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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n + }" headers: cache-control: - no-cache @@ -705,7 +797,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:44:23 GMT + - Thu, 29 Jun 2023 10:08:11 GMT expires: - '-1' pragma: @@ -746,31 +838,30 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --priority --spot-max-price -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/s000002?api-version=2023-05-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.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 }" + 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.19.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/549fb866-853d-41de-82e0-b84f3a87cbf8?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/154339f1-7070-4644-8c1a-b8f45d7743a0?api-version=2016-03-30 cache-control: - no-cache content-length: @@ -778,7 +869,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:44:27 GMT + - Thu, 29 Jun 2023 10:08:15 GMT expires: - '-1' pragma: @@ -808,14 +899,158 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --priority --spot-max-price -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/154339f1-7070-4644-8c1a-b8f45d7743a0?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f1394315-7070-4446-8c1a-b8f45d7743a0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:08:15.8345567Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:08: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 -n --priority --spot-max-price -c + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/154339f1-7070-4644-8c1a-b8f45d7743a0?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f1394315-7070-4446-8c1a-b8f45d7743a0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:08:15.8345567Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:08: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.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/154339f1-7070-4644-8c1a-b8f45d7743a0?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f1394315-7070-4446-8c1a-b8f45d7743a0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:08:15.8345567Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:09: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 -n --priority --spot-max-price -c + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/154339f1-7070-4644-8c1a-b8f45d7743a0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"66b89f54-3d85-de41-82e0-b84f3a87cbf8\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T12:44:28.7916341Z\"\n }" + string: "{\n \"name\": \"f1394315-7070-4446-8c1a-b8f45d7743a0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:08:15.8345567Z\"\n }" headers: cache-control: - no-cache @@ -824,7 +1059,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:44:28 GMT + - Thu, 29 Jun 2023 10:09:45 GMT expires: - '-1' pragma: @@ -856,14 +1091,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --priority --spot-max-price -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/154339f1-7070-4644-8c1a-b8f45d7743a0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"66b89f54-3d85-de41-82e0-b84f3a87cbf8\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T12:44:28.7916341Z\"\n }" + string: "{\n \"name\": \"f1394315-7070-4446-8c1a-b8f45d7743a0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:08:15.8345567Z\"\n }" headers: cache-control: - no-cache @@ -872,7 +1107,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:44:59 GMT + - Thu, 29 Jun 2023 10:10:16 GMT expires: - '-1' pragma: @@ -904,14 +1139,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --priority --spot-max-price -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/154339f1-7070-4644-8c1a-b8f45d7743a0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"66b89f54-3d85-de41-82e0-b84f3a87cbf8\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T12:44:28.7916341Z\"\n }" + string: "{\n \"name\": \"f1394315-7070-4446-8c1a-b8f45d7743a0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:08:15.8345567Z\"\n }" headers: cache-control: - no-cache @@ -920,7 +1155,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:45:29 GMT + - Thu, 29 Jun 2023 10:10:45 GMT expires: - '-1' pragma: @@ -952,14 +1187,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --priority --spot-max-price -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/154339f1-7070-4644-8c1a-b8f45d7743a0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"66b89f54-3d85-de41-82e0-b84f3a87cbf8\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T12:44:28.7916341Z\"\n }" + string: "{\n \"name\": \"f1394315-7070-4446-8c1a-b8f45d7743a0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:08:15.8345567Z\"\n }" headers: cache-control: - no-cache @@ -968,7 +1203,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:45:58 GMT + - Thu, 29 Jun 2023 10:11:15 GMT expires: - '-1' pragma: @@ -1000,15 +1235,15 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --priority --spot-max-price -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/154339f1-7070-4644-8c1a-b8f45d7743a0?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"f1394315-7070-4446-8c1a-b8f45d7743a0\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:08:15.8345567Z\",\n \"endTime\": + \"2023-06-29T10:11:42.6852872Z\"\n }" headers: cache-control: - no-cache @@ -1017,7 +1252,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:46:28 GMT + - Thu, 29 Jun 2023 10:11:46 GMT expires: - '-1' pragma: @@ -1049,28 +1284,27 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --priority --spot-max-price -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/s000002?api-version=2023-05-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.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 }" + 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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -1079,7 +1313,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:46:29 GMT + - Thu, 29 Jun 2023 10:11:47 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 0ae200b6d74..30b4878de0d 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 12:46:35 GMT + - Thu, 29 Jun 2023 10:11:50 GMT expires: - '-1' pragma: @@ -58,12 +58,12 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1039-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_spot_node_pool_msi","date":"2023-06-15T12:46:32Z","module":"acs"},"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-29T10:11:49Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -72,7 +72,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 12:46:35 GMT + - Thu, 29 Jun 2023 10:11:50 GMT expires: - '-1' pragma: @@ -88,18 +88,19 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestmfmnebwiv-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestplibjhezt-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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {}}}' headers: Accept: - application/json @@ -110,69 +111,67 @@ interactions: Connection: - keep-alive Content-Length: - - '1751' + - '1422' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestplibjhezt-79a739\",\n \"fqdn\": \"cliakstest-clitestplibjhezt-79a739-23e31466.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestplibjhezt-79a739-23e31466.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/5fd9f130-6d15-4d33-a332-6550564f8c91?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e64010be-0b9b-4fa2-a4e8-f34d7f896daf?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3596' + - '3267' content-type: - application/json date: - - Thu, 15 Jun 2023 12:46:42 GMT + - Thu, 29 Jun 2023 10:11:56 GMT expires: - '-1' pragma: @@ -202,14 +201,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e64010be-0b9b-4fa2-a4e8-f34d7f896daf?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"30f1d95f-156d-334d-a332-6550564f8c91\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T12:46:42.4014415Z\"\n }" + string: "{\n \"name\": \"be1040e6-9b0b-a24f-a4e8-f34d7f896daf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:11:56.5230116Z\"\n }" headers: cache-control: - no-cache @@ -218,7 +217,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:46:42 GMT + - Thu, 29 Jun 2023 10:11:56 GMT expires: - '-1' pragma: @@ -250,14 +249,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e64010be-0b9b-4fa2-a4e8-f34d7f896daf?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"30f1d95f-156d-334d-a332-6550564f8c91\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T12:46:42.4014415Z\"\n }" + string: "{\n \"name\": \"be1040e6-9b0b-a24f-a4e8-f34d7f896daf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:11:56.5230116Z\"\n }" headers: cache-control: - no-cache @@ -266,7 +265,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:47:13 GMT + - Thu, 29 Jun 2023 10:12:26 GMT expires: - '-1' pragma: @@ -298,14 +297,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e64010be-0b9b-4fa2-a4e8-f34d7f896daf?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"30f1d95f-156d-334d-a332-6550564f8c91\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T12:46:42.4014415Z\"\n }" + string: "{\n \"name\": \"be1040e6-9b0b-a24f-a4e8-f34d7f896daf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:11:56.5230116Z\"\n }" headers: cache-control: - no-cache @@ -314,7 +313,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:47:43 GMT + - Thu, 29 Jun 2023 10:12:56 GMT expires: - '-1' pragma: @@ -346,14 +345,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e64010be-0b9b-4fa2-a4e8-f34d7f896daf?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"30f1d95f-156d-334d-a332-6550564f8c91\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T12:46:42.4014415Z\"\n }" + string: "{\n \"name\": \"be1040e6-9b0b-a24f-a4e8-f34d7f896daf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:11:56.5230116Z\"\n }" headers: cache-control: - no-cache @@ -362,7 +361,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:48:13 GMT + - Thu, 29 Jun 2023 10:13:27 GMT expires: - '-1' pragma: @@ -394,15 +393,351 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e64010be-0b9b-4fa2-a4e8-f34d7f896daf?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"be1040e6-9b0b-a24f-a4e8-f34d7f896daf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:11:56.5230116Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:13: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 --vm-set-type --node-count --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e64010be-0b9b-4fa2-a4e8-f34d7f896daf?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"be1040e6-9b0b-a24f-a4e8-f34d7f896daf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:11:56.5230116Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:14: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 --vm-set-type --node-count --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e64010be-0b9b-4fa2-a4e8-f34d7f896daf?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"be1040e6-9b0b-a24f-a4e8-f34d7f896daf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:11:56.5230116Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10: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 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e64010be-0b9b-4fa2-a4e8-f34d7f896daf?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"be1040e6-9b0b-a24f-a4e8-f34d7f896daf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:11:56.5230116Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:15: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 --vm-set-type --node-count --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e64010be-0b9b-4fa2-a4e8-f34d7f896daf?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"be1040e6-9b0b-a24f-a4e8-f34d7f896daf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:11:56.5230116Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:15: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 --vm-set-type --node-count --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e64010be-0b9b-4fa2-a4e8-f34d7f896daf?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"be1040e6-9b0b-a24f-a4e8-f34d7f896daf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:11:56.5230116Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:16: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 --vm-set-type --node-count --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e64010be-0b9b-4fa2-a4e8-f34d7f896daf?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"be1040e6-9b0b-a24f-a4e8-f34d7f896daf\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:11:56.5230116Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:16: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 --vm-set-type --node-count --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e64010be-0b9b-4fa2-a4e8-f34d7f896daf?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"be1040e6-9b0b-a24f-a4e8-f34d7f896daf\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:11:56.5230116Z\",\n \"endTime\": + \"2023-06-29T10:17:09.5372946Z\"\n }" headers: cache-control: - no-cache @@ -411,7 +746,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:52:16 GMT + - Thu, 29 Jun 2023 10:17:28 GMT expires: - '-1' pragma: @@ -443,66 +778,63 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-clitestplibjhezt-79a739\",\n \"fqdn\": \"cliakstest-clitestplibjhezt-79a739-23e31466.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestplibjhezt-79a739-23e31466.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/c27e69b6-7607-43e7-ab7a-354690070bb9\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4249' + - '3920' content-type: - application/json date: - - Thu, 15 Jun 2023 12:52:18 GMT + - Thu, 29 Jun 2023 10:17:28 GMT expires: - '-1' pragma: @@ -534,25 +866,25 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --priority --spot-max-price -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-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.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ - : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\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 }" + 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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n + }" headers: cache-control: - no-cache @@ -561,7 +893,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:52:20 GMT + - Thu, 29 Jun 2023 10:17:29 GMT expires: - '-1' pragma: @@ -602,31 +934,30 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --priority --spot-max-price -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/s000002?api-version=2023-05-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.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 }" + 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.19.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/55d098d9-db5e-4a5c-9d01-59a88699ea3b?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c4c588ed-9d76-44a7-8cd1-ad50079c14e8?api-version=2016-03-30 cache-control: - no-cache content-length: @@ -634,7 +965,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:52:25 GMT + - Thu, 29 Jun 2023 10:17:33 GMT expires: - '-1' pragma: @@ -664,14 +995,206 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --priority --spot-max-price -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c4c588ed-9d76-44a7-8cd1-ad50079c14e8?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ed88c5c4-769d-a744-8cd1-ad50079c14e8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:17:34.2583239Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:17: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 nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name -n --priority --spot-max-price -c + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c4c588ed-9d76-44a7-8cd1-ad50079c14e8?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ed88c5c4-769d-a744-8cd1-ad50079c14e8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:17:34.2583239Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:18: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 nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name -n --priority --spot-max-price -c + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c4c588ed-9d76-44a7-8cd1-ad50079c14e8?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ed88c5c4-769d-a744-8cd1-ad50079c14e8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:17:34.2583239Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:18: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 nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name -n --priority --spot-max-price -c + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c4c588ed-9d76-44a7-8cd1-ad50079c14e8?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ed88c5c4-769d-a744-8cd1-ad50079c14e8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:17:34.2583239Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:19: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 -n --priority --spot-max-price -c + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c4c588ed-9d76-44a7-8cd1-ad50079c14e8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d998d055-5edb-5c4a-9d01-59a88699ea3b\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T12:52:25.8708301Z\"\n }" + string: "{\n \"name\": \"ed88c5c4-769d-a744-8cd1-ad50079c14e8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:17:34.2583239Z\"\n }" headers: cache-control: - no-cache @@ -680,7 +1203,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:52:25 GMT + - Thu, 29 Jun 2023 10:19:34 GMT expires: - '-1' pragma: @@ -712,14 +1235,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --priority --spot-max-price -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c4c588ed-9d76-44a7-8cd1-ad50079c14e8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d998d055-5edb-5c4a-9d01-59a88699ea3b\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T12:52:25.8708301Z\"\n }" + string: "{\n \"name\": \"ed88c5c4-769d-a744-8cd1-ad50079c14e8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:17:34.2583239Z\"\n }" headers: cache-control: - no-cache @@ -728,7 +1251,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:54:10 GMT + - Thu, 29 Jun 2023 10:20:04 GMT expires: - '-1' pragma: @@ -760,14 +1283,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --priority --spot-max-price -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c4c588ed-9d76-44a7-8cd1-ad50079c14e8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d998d055-5edb-5c4a-9d01-59a88699ea3b\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T12:52:25.8708301Z\"\n }" + string: "{\n \"name\": \"ed88c5c4-769d-a744-8cd1-ad50079c14e8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:17:34.2583239Z\"\n }" headers: cache-control: - no-cache @@ -776,7 +1299,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:55:25 GMT + - Thu, 29 Jun 2023 10:20:34 GMT expires: - '-1' pragma: @@ -808,15 +1331,15 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --priority --spot-max-price -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c4c588ed-9d76-44a7-8cd1-ad50079c14e8?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"ed88c5c4-769d-a744-8cd1-ad50079c14e8\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:17:34.2583239Z\",\n \"endTime\": + \"2023-06-29T10:21:01.7767736Z\"\n }" headers: cache-control: - no-cache @@ -825,7 +1348,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:55:57 GMT + - Thu, 29 Jun 2023 10:21:04 GMT expires: - '-1' pragma: @@ -857,28 +1380,27 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --priority --spot-max-price -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/s000002?api-version=2023-05-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.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 }" + 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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -887,7 +1409,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:55:58 GMT + - Thu, 29 Jun 2023 10:21:05 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 1a934c74bc7..ff04b27a06a 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 12:56:07 GMT + - Thu, 29 Jun 2023 09:52:36 GMT expires: - '-1' pragma: @@ -58,21 +58,21 @@ interactions: ParameterSetName: - --resource-group --name --service-principal --client-secret --ssh-key-value User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1039-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":"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"}}' + 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_SP_then_update_to_user_assigned_identity","date":"2023-06-29T09:52:35Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '390' + - '391' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 12:56:07 GMT + - Thu, 29 Jun 2023 09:52:36 GMT expires: - '-1' pragma: @@ -87,16 +87,16 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus", "properties": {"kubernetesVersion": "", "dnsPrefix": - "cliakstest-clitestvs6fp4nfo-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + body: '{"location": "westus2", "properties": {"kubernetesVersion": "", "dnsPrefix": + "cliakstest-clitest3znyeundd-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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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", + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": @@ -111,67 +111,65 @@ interactions: Connection: - keep-alive Content-Length: - - '1814' + - '1486' 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-01 response: body: - 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 }" + 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-clitest3znyeundd-79a739\",\n \"fqdn\": \"cliakstest-clitest3znyeundd-79a739-316o72ph.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest3znyeundd-79a739-316o72ph.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"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/westus/operations/bafa9233-0dfd-4a83-8be8-cabe1a640792?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ae76a961-e83a-4260-a2fd-f2c358566b7f?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3431' + - '3106' content-type: - application/json date: - - Thu, 15 Jun 2023 12:56:17 GMT + - Thu, 29 Jun 2023 09:52:41 GMT expires: - '-1' pragma: @@ -201,14 +199,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ae76a961-e83a-4260-a2fd-f2c358566b7f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3392faba-fd0d-834a-8be8-cabe1a640792\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T12:56:17.3980314Z\"\n }" + string: "{\n \"name\": \"61a976ae-3ae8-6042-a2fd-f2c358566b7f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:52:41.7386938Z\"\n }" headers: cache-control: - no-cache @@ -217,7 +215,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:56:17 GMT + - Thu, 29 Jun 2023 09:52:42 GMT expires: - '-1' pragma: @@ -249,14 +247,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ae76a961-e83a-4260-a2fd-f2c358566b7f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3392faba-fd0d-834a-8be8-cabe1a640792\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T12:56:17.3980314Z\"\n }" + string: "{\n \"name\": \"61a976ae-3ae8-6042-a2fd-f2c358566b7f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:52:41.7386938Z\"\n }" headers: cache-control: - no-cache @@ -265,7 +263,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:56:47 GMT + - Thu, 29 Jun 2023 09:53:11 GMT expires: - '-1' pragma: @@ -297,14 +295,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ae76a961-e83a-4260-a2fd-f2c358566b7f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3392faba-fd0d-834a-8be8-cabe1a640792\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T12:56:17.3980314Z\"\n }" + string: "{\n \"name\": \"61a976ae-3ae8-6042-a2fd-f2c358566b7f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:52:41.7386938Z\"\n }" headers: cache-control: - no-cache @@ -313,7 +311,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:57:18 GMT + - Thu, 29 Jun 2023 09:53:42 GMT expires: - '-1' pragma: @@ -345,14 +343,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ae76a961-e83a-4260-a2fd-f2c358566b7f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3392faba-fd0d-834a-8be8-cabe1a640792\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T12:56:17.3980314Z\"\n }" + string: "{\n \"name\": \"61a976ae-3ae8-6042-a2fd-f2c358566b7f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:52:41.7386938Z\"\n }" headers: cache-control: - no-cache @@ -361,7 +359,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:57:48 GMT + - Thu, 29 Jun 2023 09:54:12 GMT expires: - '-1' pragma: @@ -393,14 +391,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ae76a961-e83a-4260-a2fd-f2c358566b7f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3392faba-fd0d-834a-8be8-cabe1a640792\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T12:56:17.3980314Z\"\n }" + string: "{\n \"name\": \"61a976ae-3ae8-6042-a2fd-f2c358566b7f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:52:41.7386938Z\"\n }" headers: cache-control: - no-cache @@ -409,7 +407,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:58:18 GMT + - Thu, 29 Jun 2023 09:54:42 GMT expires: - '-1' pragma: @@ -441,14 +439,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ae76a961-e83a-4260-a2fd-f2c358566b7f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3392faba-fd0d-834a-8be8-cabe1a640792\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T12:56:17.3980314Z\"\n }" + string: "{\n \"name\": \"61a976ae-3ae8-6042-a2fd-f2c358566b7f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:52:41.7386938Z\"\n }" headers: cache-control: - no-cache @@ -457,7 +455,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:58:48 GMT + - Thu, 29 Jun 2023 09:55:12 GMT expires: - '-1' pragma: @@ -489,14 +487,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ae76a961-e83a-4260-a2fd-f2c358566b7f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3392faba-fd0d-834a-8be8-cabe1a640792\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T12:56:17.3980314Z\"\n }" + string: "{\n \"name\": \"61a976ae-3ae8-6042-a2fd-f2c358566b7f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:52:41.7386938Z\"\n }" headers: cache-control: - no-cache @@ -505,7 +503,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:59:19 GMT + - Thu, 29 Jun 2023 09:55:43 GMT expires: - '-1' pragma: @@ -537,15 +535,159 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ae76a961-e83a-4260-a2fd-f2c358566b7f?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"61a976ae-3ae8-6042-a2fd-f2c358566b7f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:52:41.7386938Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:56: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 --service-principal --client-secret --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ae76a961-e83a-4260-a2fd-f2c358566b7f?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"61a976ae-3ae8-6042-a2fd-f2c358566b7f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:52:41.7386938Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:56: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 --service-principal --client-secret --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ae76a961-e83a-4260-a2fd-f2c358566b7f?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"61a976ae-3ae8-6042-a2fd-f2c358566b7f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:52:41.7386938Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:57: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 --service-principal --client-secret --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ae76a961-e83a-4260-a2fd-f2c358566b7f?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"61a976ae-3ae8-6042-a2fd-f2c358566b7f\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:52:41.7386938Z\",\n \"endTime\": + \"2023-06-29T09:57:37.1913142Z\"\n }" headers: cache-control: - no-cache @@ -554,7 +696,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 12:59:49 GMT + - Thu, 29 Jun 2023 09:57:43 GMT expires: - '-1' pragma: @@ -586,61 +728,58 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - 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 }" + 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-clitest3znyeundd-79a739\",\n \"fqdn\": \"cliakstest-clitest3znyeundd-79a739-316o72ph.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest3znyeundd-79a739-316o72ph.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"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/41b61a19-27e2-45ef-b705-849d47db0e11\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3694' + - '3370' content-type: - application/json date: - - Thu, 15 Jun 2023 12:59:49 GMT + - Thu, 29 Jun 2023 09:57:43 GMT expires: - '-1' pragma: @@ -672,21 +811,21 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1039-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":"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"}}' + 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_SP_then_update_to_user_assigned_identity","date":"2023-06-29T09:52:35Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '390' + - '391' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 12:59:50 GMT + - Thu, 29 Jun 2023 09:57:43 GMT expires: - '-1' pragma: @@ -701,7 +840,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus"}' + body: '{"location": "westus2"}' headers: Accept: - application/json @@ -712,27 +851,27 @@ interactions: Connection: - keep-alive Content-Length: - - '22' + - '23' Content-Type: - application/json ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-msi/7.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-msi/7.0.0 Python/3.8.10 (Linux-5.15.0-1039-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: '{"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"}}' + 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"}}' headers: cache-control: - no-cache content-length: - - '433' + - '434' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 12:59:53 GMT + - Thu, 29 Jun 2023 09:57:46 GMT expires: - '-1' location: @@ -744,7 +883,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -762,61 +901,58 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - 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 }" + 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-clitest3znyeundd-79a739\",\n \"fqdn\": \"cliakstest-clitest3znyeundd-79a739-316o72ph.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest3znyeundd-79a739-316o72ph.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"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/41b61a19-27e2-45ef-b705-849d47db0e11\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3694' + - '3370' content-type: - application/json date: - - Thu, 15 Jun 2023 12:59:55 GMT + - Thu, 29 Jun 2023 09:57:47 GMT expires: - '-1' pragma: @@ -835,9 +971,9 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus", "sku": {"name": "Base", "tier": "Free"}, "identity": + 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": - {}}}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": "cliakstest-clitestvs6fp4nfo-8ecadf", + {}}}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": "cliakstest-clitest3znyeundd-79a739", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", @@ -845,14 +981,13 @@ interactions: {"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"}]}, + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", + "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/41b61a19-27e2-45ef-b705-849d47db0e11"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {}, "workloadAutoScalerProfile": {}}}' @@ -866,71 +1001,68 @@ interactions: Connection: - keep-alive Content-Length: - - '2636' + - '2273' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-01 response: body: - 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 }" + 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.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": + \"cliakstest-clitest3znyeundd-79a739\",\n \"fqdn\": \"cliakstest-clitest3znyeundd-79a739-316o72ph.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest3znyeundd-79a739-316o72ph.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"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/41b61a19-27e2-45ef-b705-849d47db0e11\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/46cfff78-db20-43e0-b521-710bf0e521f3?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3936' + - '3612' content-type: - application/json date: - - Thu, 15 Jun 2023 13:00:01 GMT + - Thu, 29 Jun 2023 09:57:51 GMT expires: - '-1' pragma: @@ -946,7 +1078,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -964,14 +1096,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/46cfff78-db20-43e0-b521-710bf0e521f3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"84dbcd0f-397d-8241-b0e1-cd9c84a930ee\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T13:00:00.1645471Z\"\n }" + string: "{\n \"name\": \"78ffcf46-20db-e043-b521-710bf0e521f3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:57:51.4427618Z\"\n }" headers: cache-control: - no-cache @@ -980,7 +1112,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 13:00:01 GMT + - Thu, 29 Jun 2023 09:57:51 GMT expires: - '-1' pragma: @@ -1012,14 +1144,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/46cfff78-db20-43e0-b521-710bf0e521f3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"84dbcd0f-397d-8241-b0e1-cd9c84a930ee\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T13:00:00.1645471Z\"\n }" + string: "{\n \"name\": \"78ffcf46-20db-e043-b521-710bf0e521f3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:57:51.4427618Z\"\n }" headers: cache-control: - no-cache @@ -1028,7 +1160,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 13:00:31 GMT + - Thu, 29 Jun 2023 09:58:21 GMT expires: - '-1' pragma: @@ -1060,14 +1192,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/46cfff78-db20-43e0-b521-710bf0e521f3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"84dbcd0f-397d-8241-b0e1-cd9c84a930ee\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T13:00:00.1645471Z\"\n }" + string: "{\n \"name\": \"78ffcf46-20db-e043-b521-710bf0e521f3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:57:51.4427618Z\"\n }" headers: cache-control: - no-cache @@ -1076,7 +1208,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 13:01:01 GMT + - Thu, 29 Jun 2023 09:58:52 GMT expires: - '-1' pragma: @@ -1108,14 +1240,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/46cfff78-db20-43e0-b521-710bf0e521f3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"84dbcd0f-397d-8241-b0e1-cd9c84a930ee\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T13:00:00.1645471Z\"\n }" + string: "{\n \"name\": \"78ffcf46-20db-e043-b521-710bf0e521f3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:57:51.4427618Z\"\n }" headers: cache-control: - no-cache @@ -1124,7 +1256,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 13:01:31 GMT + - Thu, 29 Jun 2023 09:59:22 GMT expires: - '-1' pragma: @@ -1156,14 +1288,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/46cfff78-db20-43e0-b521-710bf0e521f3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"84dbcd0f-397d-8241-b0e1-cd9c84a930ee\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T13:00:00.1645471Z\"\n }" + string: "{\n \"name\": \"78ffcf46-20db-e043-b521-710bf0e521f3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:57:51.4427618Z\"\n }" headers: cache-control: - no-cache @@ -1172,7 +1304,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 13:02:01 GMT + - Thu, 29 Jun 2023 09:59:52 GMT expires: - '-1' pragma: @@ -1204,24 +1336,24 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/46cfff78-db20-43e0-b521-710bf0e521f3?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"78ffcf46-20db-e043-b521-710bf0e521f3\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:57:51.4427618Z\",\n \"endTime\": + \"2023-06-29T10:00:01.3950221Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '170' content-type: - application/json date: - - Thu, 15 Jun 2023 13:02:32 GMT + - Thu, 29 Jun 2023 10:00:22 GMT expires: - '-1' pragma: @@ -1253,67 +1385,64 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - 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 }" + 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-clitest3znyeundd-79a739\",\n \"fqdn\": \"cliakstest-clitest3znyeundd-79a739-316o72ph.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest3znyeundd-79a739-316o72ph.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"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/41b61a19-27e2-45ef-b705-849d47db0e11\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\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\": \"Base\",\n \"tier\": \"Free\"\n + \ }\n }" headers: cache-control: - no-cache content-length: - - '4445' + - '4122' content-type: - application/json date: - - Thu, 15 Jun 2023 13:02:33 GMT + - Thu, 29 Jun 2023 10:00:23 GMT expires: - '-1' pragma: @@ -1347,8 +1476,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -1356,17 +1485,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9cdef317-d9c8-463e-99d3-0395955c5bec?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 15 Jun 2023 13:02:35 GMT + - Thu, 29 Jun 2023 10:00:24 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/9cdef317-d9c8-463e-99d3-0395955c5bec?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_ahub.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_ahub.yaml index 194c97c1796..a773e6ba177 100644 --- 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -32,7 +32,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 13:02:49 GMT + - Thu, 29 Jun 2023 10:00:27 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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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": {}}}' headers: Accept: - application/json @@ -71,7 +71,7 @@ interactions: Connection: - keep-alive Content-Length: - - '1832' + - '1503' Content-Type: - application/json ParameterSetName: @@ -79,62 +79,60 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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\ - \ }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-eqq003ry.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-eqq003ry.portal.hcp.westus2.azmk8s.io\",\n + \ \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"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/48bfadb9-79fe-4419-9636-a0a144787349?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a2fb8ec0-1ac5-45f8-a251-f29caa0ca83d?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3458' + - '3129' content-type: - application/json date: - - Thu, 15 Jun 2023 13:02:56 GMT + - Thu, 29 Jun 2023 10:00:33 GMT expires: - '-1' pragma: @@ -166,14 +164,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a2fb8ec0-1ac5-45f8-a251-f29caa0ca83d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b9adbf48-fe79-1944-9636-a0a144787349\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T13:02:56.5912349Z\"\n }" + string: "{\n \"name\": \"c08efba2-c51a-f845-a251-f29caa0ca83d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:00:33.3962757Z\"\n }" headers: cache-control: - no-cache @@ -182,7 +180,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 13:02:57 GMT + - Thu, 29 Jun 2023 10:00:33 GMT expires: - '-1' pragma: @@ -216,14 +214,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a2fb8ec0-1ac5-45f8-a251-f29caa0ca83d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b9adbf48-fe79-1944-9636-a0a144787349\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T13:02:56.5912349Z\"\n }" + string: "{\n \"name\": \"c08efba2-c51a-f845-a251-f29caa0ca83d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:00:33.3962757Z\"\n }" headers: cache-control: - no-cache @@ -232,7 +230,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 13:03:27 GMT + - Thu, 29 Jun 2023 10:01:03 GMT expires: - '-1' pragma: @@ -266,14 +264,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a2fb8ec0-1ac5-45f8-a251-f29caa0ca83d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b9adbf48-fe79-1944-9636-a0a144787349\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T13:02:56.5912349Z\"\n }" + string: "{\n \"name\": \"c08efba2-c51a-f845-a251-f29caa0ca83d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:00:33.3962757Z\"\n }" headers: cache-control: - no-cache @@ -282,7 +280,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 13:03:57 GMT + - Thu, 29 Jun 2023 10:01:33 GMT expires: - '-1' pragma: @@ -316,14 +314,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a2fb8ec0-1ac5-45f8-a251-f29caa0ca83d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b9adbf48-fe79-1944-9636-a0a144787349\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T13:02:56.5912349Z\"\n }" + string: "{\n \"name\": \"c08efba2-c51a-f845-a251-f29caa0ca83d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:00:33.3962757Z\"\n }" headers: cache-control: - no-cache @@ -332,7 +330,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 13:04:27 GMT + - Thu, 29 Jun 2023 10:02:03 GMT expires: - '-1' pragma: @@ -366,14 +364,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a2fb8ec0-1ac5-45f8-a251-f29caa0ca83d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b9adbf48-fe79-1944-9636-a0a144787349\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T13:02:56.5912349Z\"\n }" + string: "{\n \"name\": \"c08efba2-c51a-f845-a251-f29caa0ca83d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:00:33.3962757Z\"\n }" headers: cache-control: - no-cache @@ -382,7 +380,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 13:04:58 GMT + - Thu, 29 Jun 2023 10:02:33 GMT expires: - '-1' pragma: @@ -416,14 +414,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a2fb8ec0-1ac5-45f8-a251-f29caa0ca83d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b9adbf48-fe79-1944-9636-a0a144787349\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T13:02:56.5912349Z\"\n }" + string: "{\n \"name\": \"c08efba2-c51a-f845-a251-f29caa0ca83d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:00:33.3962757Z\"\n }" headers: cache-control: - no-cache @@ -432,7 +430,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 13:05:28 GMT + - Thu, 29 Jun 2023 10:03:04 GMT expires: - '-1' pragma: @@ -466,24 +464,23 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a2fb8ec0-1ac5-45f8-a251-f29caa0ca83d?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 }" + string: "{\n \"name\": \"c08efba2-c51a-f845-a251-f29caa0ca83d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:00:33.3962757Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 13:05:57 GMT + - Thu, 29 Jun 2023 10:03:35 GMT expires: - '-1' pragma: @@ -517,61 +514,23 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a2fb8ec0-1ac5-45f8-a251-f29caa0ca83d?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-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 }" + string: "{\n \"name\": \"c08efba2-c51a-f845-a251-f29caa0ca83d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:00:33.3962757Z\"\n }" headers: cache-control: - no-cache content-length: - - '3722' + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 13:05:58 GMT + - Thu, 29 Jun 2023 10:04:05 GMT expires: - '-1' pragma: @@ -593,44 +552,35 @@ 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 --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a2fb8ec0-1ac5-45f8-a251-f29caa0ca83d?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.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ - : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\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 }" + string: "{\n \"name\": \"c08efba2-c51a-f845-a251-f29caa0ca83d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:00:33.3962757Z\"\n }" headers: cache-control: - no-cache content-length: - - '1036' + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 13:06:01 GMT + - Thu, 29 Jun 2023 10:04:35 GMT expires: - '-1' pragma: @@ -649,58 +599,39 @@ 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 --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: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2023-05-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a2fb8ec0-1ac5-45f8-a251-f29caa0ca83d?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\": \"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 }" + string: "{\n \"name\": \"c08efba2-c51a-f845-a251-f29caa0ca83d\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:00:33.3962757Z\",\n \"endTime\": + \"2023-06-29T10:04:42.8474542Z\"\n }" headers: - azure-asyncoperation: - - 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: - - '988' + - '170' content-type: - application/json date: - - Thu, 15 Jun 2023 13:06:08 GMT + - Thu, 29 Jun 2023 10:05:05 GMT expires: - '-1' pragma: @@ -709,13 +640,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: @@ -724,29 +657,67 @@ interactions: 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 --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-05-01 response: body: - 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' + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-eqq003ry.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-eqq003ry.portal.hcp.westus2.azmk8s.io\",\n + \ \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"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/6053388c-268d-41af-b523-58a3ff3b42d4\"\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: + - '3393' content-type: - application/json date: - - Thu, 15 Jun 2023 13:06:08 GMT + - Thu, 29 Jun 2023 10:05:05 GMT expires: - '-1' pragma: @@ -768,7 +739,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -778,23 +749,34 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2023-05-01 response: body: - string: "{\n \"name\": \"01e38d4f-bad7-1440-ad88-527ad5241e71\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T13:06:08.5291895Z\"\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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n + }" headers: cache-control: - no-cache content-length: - - '126' + - '1036' content-type: - application/json date: - - Thu, 15 Jun 2023 13:06:38 GMT + - Thu, 29 Jun 2023 10:05:06 GMT expires: - '-1' pragma: @@ -813,36 +795,57 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-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 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"name\": \"01e38d4f-bad7-1440-ad88-527ad5241e71\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T13:06:08.5291895Z\"\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-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/e9a94183-9e92-45e4-9599-b3891106ca6b?api-version=2016-03-30 cache-control: - no-cache content-length: - - '126' + - '983' content-type: - application/json date: - - Thu, 15 Jun 2023 13:07:08 GMT + - Thu, 29 Jun 2023 10:05:10 GMT expires: - '-1' pragma: @@ -851,15 +854,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: + - '1197' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -874,23 +875,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e9a94183-9e92-45e4-9599-b3891106ca6b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"01e38d4f-bad7-1440-ad88-527ad5241e71\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T13:06:08.5291895Z\"\n }" + string: "{\n \"name\": \"8341a9e9-929e-e445-9599-b3891106ca6b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:05:11.11555Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '124' content-type: - application/json date: - - Thu, 15 Jun 2023 13:07:38 GMT + - Thu, 29 Jun 2023 10:05:10 GMT expires: - '-1' pragma: @@ -922,23 +923,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e9a94183-9e92-45e4-9599-b3891106ca6b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"01e38d4f-bad7-1440-ad88-527ad5241e71\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T13:06:08.5291895Z\"\n }" + string: "{\n \"name\": \"8341a9e9-929e-e445-9599-b3891106ca6b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:05:11.11555Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '124' content-type: - application/json date: - - Thu, 15 Jun 2023 13:08:08 GMT + - Thu, 29 Jun 2023 10:05:40 GMT expires: - '-1' pragma: @@ -970,23 +971,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e9a94183-9e92-45e4-9599-b3891106ca6b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"01e38d4f-bad7-1440-ad88-527ad5241e71\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T13:06:08.5291895Z\"\n }" + string: "{\n \"name\": \"8341a9e9-929e-e445-9599-b3891106ca6b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:05:11.11555Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '124' content-type: - application/json date: - - Thu, 15 Jun 2023 13:08:39 GMT + - Thu, 29 Jun 2023 10:06:11 GMT expires: - '-1' pragma: @@ -1018,23 +1019,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e9a94183-9e92-45e4-9599-b3891106ca6b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"01e38d4f-bad7-1440-ad88-527ad5241e71\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T13:06:08.5291895Z\"\n }" + string: "{\n \"name\": \"8341a9e9-929e-e445-9599-b3891106ca6b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:05:11.11555Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '124' content-type: - application/json date: - - Thu, 15 Jun 2023 13:09:09 GMT + - Thu, 29 Jun 2023 10:06:41 GMT expires: - '-1' pragma: @@ -1066,23 +1067,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e9a94183-9e92-45e4-9599-b3891106ca6b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"01e38d4f-bad7-1440-ad88-527ad5241e71\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T13:06:08.5291895Z\"\n }" + string: "{\n \"name\": \"8341a9e9-929e-e445-9599-b3891106ca6b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:05:11.11555Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '124' content-type: - application/json date: - - Thu, 15 Jun 2023 13:09:39 GMT + - Thu, 29 Jun 2023 10:07:11 GMT expires: - '-1' pragma: @@ -1114,23 +1115,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e9a94183-9e92-45e4-9599-b3891106ca6b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"01e38d4f-bad7-1440-ad88-527ad5241e71\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T13:06:08.5291895Z\"\n }" + string: "{\n \"name\": \"8341a9e9-929e-e445-9599-b3891106ca6b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:05:11.11555Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '124' content-type: - application/json date: - - Thu, 15 Jun 2023 13:10:09 GMT + - Thu, 29 Jun 2023 10:07:41 GMT expires: - '-1' pragma: @@ -1162,23 +1163,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e9a94183-9e92-45e4-9599-b3891106ca6b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"01e38d4f-bad7-1440-ad88-527ad5241e71\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T13:06:08.5291895Z\"\n }" + string: "{\n \"name\": \"8341a9e9-929e-e445-9599-b3891106ca6b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:05:11.11555Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '124' content-type: - application/json date: - - Thu, 15 Jun 2023 13:10:40 GMT + - Thu, 29 Jun 2023 10:08:11 GMT expires: - '-1' pragma: @@ -1210,23 +1211,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e9a94183-9e92-45e4-9599-b3891106ca6b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"01e38d4f-bad7-1440-ad88-527ad5241e71\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T13:06:08.5291895Z\"\n }" + string: "{\n \"name\": \"8341a9e9-929e-e445-9599-b3891106ca6b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:05:11.11555Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '124' content-type: - application/json date: - - Thu, 15 Jun 2023 13:11:10 GMT + - Thu, 29 Jun 2023 10:08:41 GMT expires: - '-1' pragma: @@ -1258,23 +1259,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e9a94183-9e92-45e4-9599-b3891106ca6b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"01e38d4f-bad7-1440-ad88-527ad5241e71\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T13:06:08.5291895Z\"\n }" + string: "{\n \"name\": \"8341a9e9-929e-e445-9599-b3891106ca6b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:05:11.11555Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '124' content-type: - application/json date: - - Thu, 15 Jun 2023 13:11:41 GMT + - Thu, 29 Jun 2023 10:09:11 GMT expires: - '-1' pragma: @@ -1306,23 +1307,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e9a94183-9e92-45e4-9599-b3891106ca6b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"01e38d4f-bad7-1440-ad88-527ad5241e71\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T13:06:08.5291895Z\"\n }" + string: "{\n \"name\": \"8341a9e9-929e-e445-9599-b3891106ca6b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:05:11.11555Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '124' content-type: - application/json date: - - Thu, 15 Jun 2023 13:12:11 GMT + - Thu, 29 Jun 2023 10:09:41 GMT expires: - '-1' pragma: @@ -1354,23 +1355,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e9a94183-9e92-45e4-9599-b3891106ca6b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"01e38d4f-bad7-1440-ad88-527ad5241e71\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T13:06:08.5291895Z\"\n }" + string: "{\n \"name\": \"8341a9e9-929e-e445-9599-b3891106ca6b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:05:11.11555Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '124' content-type: - application/json date: - - Thu, 15 Jun 2023 13:12:40 GMT + - Thu, 29 Jun 2023 10:10:12 GMT expires: - '-1' pragma: @@ -1402,24 +1403,24 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e9a94183-9e92-45e4-9599-b3891106ca6b?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"8341a9e9-929e-e445-9599-b3891106ca6b\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:05:11.11555Z\",\n \"endTime\": + \"2023-06-29T10:10:37.4601318Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '168' content-type: - application/json date: - - Thu, 15 Jun 2023 13:13:10 GMT + - Thu, 29 Jun 2023 10:10:42 GMT expires: - '-1' pragma: @@ -1451,34 +1452,33 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/npwin?api-version=2023-05-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 }" + 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-20348.1787.230614\",\n \"upgradeSettings\": + {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '989' + - '984' content-type: - application/json date: - - Thu, 15 Jun 2023 13:13:11 GMT + - Thu, 29 Jun 2023 10:10:43 GMT expires: - '-1' pragma: @@ -1510,72 +1510,69 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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: - - '4503' + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-eqq003ry.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-eqq003ry.portal.hcp.westus2.azmk8s.io\",\n + \ \"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.19.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-20348.1787.230614\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"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/6053388c-268d-41af-b523-58a3ff3b42d4\"\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: + - '4169' content-type: - application/json date: - - Thu, 15 Jun 2023 13:13:14 GMT + - Thu, 29 Jun 2023 10:10:44 GMT expires: - '-1' pragma: @@ -1608,15 +1605,15 @@ interactions: "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"}]}, + {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "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/6053388c-268d-41af-b523-58a3ff3b42d4"}]}, "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {}, "workloadAutoScalerProfile": {}}}' @@ -1630,80 +1627,77 @@ interactions: Connection: - keep-alive Content-Length: - - '2958' + - '2592' 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-eqq003ry.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-eqq003ry.portal.hcp.westus2.azmk8s.io\",\n + \ \"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.19.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-20348.1787.230614\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"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/6053388c-268d-41af-b523-58a3ff3b42d4\"\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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56bf495f-efc3-4b9a-8795-1edc6698959a?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4490' + - '4156' content-type: - application/json date: - - Thu, 15 Jun 2023 13:13:21 GMT + - Thu, 29 Jun 2023 10:10:50 GMT expires: - '-1' pragma: @@ -1719,55 +1713,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '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-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:13: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 + - '1197' status: code: 200 message: OK @@ -1785,14 +1731,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56bf495f-efc3-4b9a-8795-1edc6698959a?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 }" + string: "{\n \"name\": \"5f49bf56-c3ef-9a4b-8795-1edc6698959a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:10:49.3352327Z\"\n }" headers: cache-control: - no-cache @@ -1801,7 +1747,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 13:13:51 GMT + - Thu, 29 Jun 2023 10:10:50 GMT expires: - '-1' pragma: @@ -1833,14 +1779,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56bf495f-efc3-4b9a-8795-1edc6698959a?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 }" + string: "{\n \"name\": \"5f49bf56-c3ef-9a4b-8795-1edc6698959a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:10:49.3352327Z\"\n }" headers: cache-control: - no-cache @@ -1849,7 +1795,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 13:14:21 GMT + - Thu, 29 Jun 2023 10:11:20 GMT expires: - '-1' pragma: @@ -1881,14 +1827,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56bf495f-efc3-4b9a-8795-1edc6698959a?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 }" + string: "{\n \"name\": \"5f49bf56-c3ef-9a4b-8795-1edc6698959a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:10:49.3352327Z\"\n }" headers: cache-control: - no-cache @@ -1897,7 +1843,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 13:14:51 GMT + - Thu, 29 Jun 2023 10:11:50 GMT expires: - '-1' pragma: @@ -1929,14 +1875,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56bf495f-efc3-4b9a-8795-1edc6698959a?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 }" + string: "{\n \"name\": \"5f49bf56-c3ef-9a4b-8795-1edc6698959a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:10:49.3352327Z\"\n }" headers: cache-control: - no-cache @@ -1945,7 +1891,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 13:15:22 GMT + - Thu, 29 Jun 2023 10:12:20 GMT expires: - '-1' pragma: @@ -1977,14 +1923,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56bf495f-efc3-4b9a-8795-1edc6698959a?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 }" + string: "{\n \"name\": \"5f49bf56-c3ef-9a4b-8795-1edc6698959a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:10:49.3352327Z\"\n }" headers: cache-control: - no-cache @@ -1993,7 +1939,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 13:15:52 GMT + - Thu, 29 Jun 2023 10:12:50 GMT expires: - '-1' pragma: @@ -2025,14 +1971,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56bf495f-efc3-4b9a-8795-1edc6698959a?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 }" + string: "{\n \"name\": \"5f49bf56-c3ef-9a4b-8795-1edc6698959a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:10:49.3352327Z\"\n }" headers: cache-control: - no-cache @@ -2041,7 +1987,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 13:16:22 GMT + - Thu, 29 Jun 2023 10:13:20 GMT expires: - '-1' pragma: @@ -2073,14 +2019,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56bf495f-efc3-4b9a-8795-1edc6698959a?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 }" + string: "{\n \"name\": \"5f49bf56-c3ef-9a4b-8795-1edc6698959a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:10:49.3352327Z\"\n }" headers: cache-control: - no-cache @@ -2089,7 +2035,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 13:16:52 GMT + - Thu, 29 Jun 2023 10:13:51 GMT expires: - '-1' pragma: @@ -2121,14 +2067,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56bf495f-efc3-4b9a-8795-1edc6698959a?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 }" + string: "{\n \"name\": \"5f49bf56-c3ef-9a4b-8795-1edc6698959a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:10:49.3352327Z\"\n }" headers: cache-control: - no-cache @@ -2137,7 +2083,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 13:17:22 GMT + - Thu, 29 Jun 2023 10:14:21 GMT expires: - '-1' pragma: @@ -2169,14 +2115,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56bf495f-efc3-4b9a-8795-1edc6698959a?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 }" + string: "{\n \"name\": \"5f49bf56-c3ef-9a4b-8795-1edc6698959a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:10:49.3352327Z\"\n }" headers: cache-control: - no-cache @@ -2185,7 +2131,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 13:17:52 GMT + - Thu, 29 Jun 2023 10:14:51 GMT expires: - '-1' pragma: @@ -2217,14 +2163,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56bf495f-efc3-4b9a-8795-1edc6698959a?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 }" + string: "{\n \"name\": \"5f49bf56-c3ef-9a4b-8795-1edc6698959a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:10:49.3352327Z\"\n }" headers: cache-control: - no-cache @@ -2233,7 +2179,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 13:18:23 GMT + - Thu, 29 Jun 2023 10:15:21 GMT expires: - '-1' pragma: @@ -2265,14 +2211,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56bf495f-efc3-4b9a-8795-1edc6698959a?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 }" + string: "{\n \"name\": \"5f49bf56-c3ef-9a4b-8795-1edc6698959a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:10:49.3352327Z\"\n }" headers: cache-control: - no-cache @@ -2281,7 +2227,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 13:18:53 GMT + - Thu, 29 Jun 2023 10:15:51 GMT expires: - '-1' pragma: @@ -2313,14 +2259,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56bf495f-efc3-4b9a-8795-1edc6698959a?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 }" + string: "{\n \"name\": \"5f49bf56-c3ef-9a4b-8795-1edc6698959a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:10:49.3352327Z\"\n }" headers: cache-control: - no-cache @@ -2329,7 +2275,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 13:19:23 GMT + - Thu, 29 Jun 2023 10:16:21 GMT expires: - '-1' pragma: @@ -2361,14 +2307,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56bf495f-efc3-4b9a-8795-1edc6698959a?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 }" + string: "{\n \"name\": \"5f49bf56-c3ef-9a4b-8795-1edc6698959a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:10:49.3352327Z\"\n }" headers: cache-control: - no-cache @@ -2377,7 +2323,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 13:19:54 GMT + - Thu, 29 Jun 2023 10:16:52 GMT expires: - '-1' pragma: @@ -2409,14 +2355,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56bf495f-efc3-4b9a-8795-1edc6698959a?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 }" + string: "{\n \"name\": \"5f49bf56-c3ef-9a4b-8795-1edc6698959a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:10:49.3352327Z\"\n }" headers: cache-control: - no-cache @@ -2425,7 +2371,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 13:20:24 GMT + - Thu, 29 Jun 2023 10:17:22 GMT expires: - '-1' pragma: @@ -2457,14 +2403,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56bf495f-efc3-4b9a-8795-1edc6698959a?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 }" + string: "{\n \"name\": \"5f49bf56-c3ef-9a4b-8795-1edc6698959a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:10:49.3352327Z\"\n }" headers: cache-control: - no-cache @@ -2473,7 +2419,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 13:20:54 GMT + - Thu, 29 Jun 2023 10:17:52 GMT expires: - '-1' pragma: @@ -2505,14 +2451,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56bf495f-efc3-4b9a-8795-1edc6698959a?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 }" + string: "{\n \"name\": \"5f49bf56-c3ef-9a4b-8795-1edc6698959a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:10:49.3352327Z\"\n }" headers: cache-control: - no-cache @@ -2521,7 +2467,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 13:21:25 GMT + - Thu, 29 Jun 2023 10:18:22 GMT expires: - '-1' pragma: @@ -2553,14 +2499,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56bf495f-efc3-4b9a-8795-1edc6698959a?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 }" + string: "{\n \"name\": \"5f49bf56-c3ef-9a4b-8795-1edc6698959a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:10:49.3352327Z\"\n }" headers: cache-control: - no-cache @@ -2569,7 +2515,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 13:21:55 GMT + - Thu, 29 Jun 2023 10:18:52 GMT expires: - '-1' pragma: @@ -2601,14 +2547,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56bf495f-efc3-4b9a-8795-1edc6698959a?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 }" + string: "{\n \"name\": \"5f49bf56-c3ef-9a4b-8795-1edc6698959a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:10:49.3352327Z\"\n }" headers: cache-control: - no-cache @@ -2617,7 +2563,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 13:22:25 GMT + - Thu, 29 Jun 2023 10:19:23 GMT expires: - '-1' pragma: @@ -2649,14 +2595,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56bf495f-efc3-4b9a-8795-1edc6698959a?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 }" + string: "{\n \"name\": \"5f49bf56-c3ef-9a4b-8795-1edc6698959a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:10:49.3352327Z\"\n }" headers: cache-control: - no-cache @@ -2665,7 +2611,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 13:22:55 GMT + - Thu, 29 Jun 2023 10:19:53 GMT expires: - '-1' pragma: @@ -2697,14 +2643,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56bf495f-efc3-4b9a-8795-1edc6698959a?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 }" + string: "{\n \"name\": \"5f49bf56-c3ef-9a4b-8795-1edc6698959a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:10:49.3352327Z\"\n }" headers: cache-control: - no-cache @@ -2713,7 +2659,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 13:23:25 GMT + - Thu, 29 Jun 2023 10:20:23 GMT expires: - '-1' pragma: @@ -2745,14 +2691,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56bf495f-efc3-4b9a-8795-1edc6698959a?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 }" + string: "{\n \"name\": \"5f49bf56-c3ef-9a4b-8795-1edc6698959a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:10:49.3352327Z\"\n }" headers: cache-control: - no-cache @@ -2761,7 +2707,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 13:23:55 GMT + - Thu, 29 Jun 2023 10:20:53 GMT expires: - '-1' pragma: @@ -2793,14 +2739,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56bf495f-efc3-4b9a-8795-1edc6698959a?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 }" + string: "{\n \"name\": \"5f49bf56-c3ef-9a4b-8795-1edc6698959a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:10:49.3352327Z\"\n }" headers: cache-control: - no-cache @@ -2809,7 +2755,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 13:24:25 GMT + - Thu, 29 Jun 2023 10:21:23 GMT expires: - '-1' pragma: @@ -2841,14 +2787,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56bf495f-efc3-4b9a-8795-1edc6698959a?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 }" + string: "{\n \"name\": \"5f49bf56-c3ef-9a4b-8795-1edc6698959a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:10:49.3352327Z\"\n }" headers: cache-control: - no-cache @@ -2857,7 +2803,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 13:24:56 GMT + - Thu, 29 Jun 2023 10:21:54 GMT expires: - '-1' pragma: @@ -2889,14 +2835,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56bf495f-efc3-4b9a-8795-1edc6698959a?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 }" + string: "{\n \"name\": \"5f49bf56-c3ef-9a4b-8795-1edc6698959a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:10:49.3352327Z\"\n }" headers: cache-control: - no-cache @@ -2905,7 +2851,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 13:25:26 GMT + - Thu, 29 Jun 2023 10:22:24 GMT expires: - '-1' pragma: @@ -2937,14 +2883,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56bf495f-efc3-4b9a-8795-1edc6698959a?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 }" + string: "{\n \"name\": \"5f49bf56-c3ef-9a4b-8795-1edc6698959a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:10:49.3352327Z\"\n }" headers: cache-control: - no-cache @@ -2953,7 +2899,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 13:25:56 GMT + - Thu, 29 Jun 2023 10:22:54 GMT expires: - '-1' pragma: @@ -2985,14 +2931,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56bf495f-efc3-4b9a-8795-1edc6698959a?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 }" + string: "{\n \"name\": \"5f49bf56-c3ef-9a4b-8795-1edc6698959a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:10:49.3352327Z\"\n }" headers: cache-control: - no-cache @@ -3001,7 +2947,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 13:26:27 GMT + - Thu, 29 Jun 2023 10:23:24 GMT expires: - '-1' pragma: @@ -3033,14 +2979,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56bf495f-efc3-4b9a-8795-1edc6698959a?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 }" + string: "{\n \"name\": \"5f49bf56-c3ef-9a4b-8795-1edc6698959a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:10:49.3352327Z\"\n }" headers: cache-control: - no-cache @@ -3049,7 +2995,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 13:26:57 GMT + - Thu, 29 Jun 2023 10:23:54 GMT expires: - '-1' pragma: @@ -3081,63 +3027,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56bf495f-efc3-4b9a-8795-1edc6698959a?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 }" + string: "{\n \"name\": \"5f49bf56-c3ef-9a4b-8795-1edc6698959a\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:10:49.3352327Z\",\n \"endTime\": + \"2023-06-29T10:24:09.3836124Z\"\n }" headers: cache-control: - no-cache @@ -3146,7 +3044,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 13:27:57 GMT + - Thu, 29 Jun 2023 10:24:24 GMT expires: - '-1' pragma: @@ -3178,72 +3076,69 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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' + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-eqq003ry.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-eqq003ry.portal.hcp.westus2.azmk8s.io\",\n + \ \"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.19.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-20348.1787.230614\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"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/6053388c-268d-41af-b523-58a3ff3b42d4\"\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: + - '4159' content-type: - application/json date: - - Thu, 15 Jun 2023 13:27:58 GMT + - Thu, 29 Jun 2023 10:24:25 GMT expires: - '-1' pragma: @@ -3275,47 +3170,46 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-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' + 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.19.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-20348.1787.230614\",\n \"upgradeSettings\": + {},\n \"enableFIPS\": false\n }\n }\n ]\n }" + headers: + cache-control: + - no-cache + content-length: + - '2085' content-type: - application/json date: - - Thu, 15 Jun 2023 13:28:00 GMT + - Thu, 29 Jun 2023 10:24:27 GMT expires: - '-1' pragma: @@ -3349,8 +3243,8 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/cliakstest000001/agentPools/npwin?api-version=2023-05-01 response: @@ -3358,17 +3252,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5b47d67c-0f14-4281-a101-4064baebecb1?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 15 Jun 2023 13:28:01 GMT + - Thu, 29 Jun 2023 10:24:27 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/5b47d67c-0f14-4281-a101-4064baebecb1?api-version=2016-03-30 pragma: - no-cache server: @@ -3398,8 +3292,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/cliakstest000001?api-version=2023-05-01 response: @@ -3407,17 +3301,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8f2af6e7-53e8-45c4-8968-bb52a0ce1780?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 15 Jun 2023 13:28:09 GMT + - Thu, 29 Jun 2023 10:24:33 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/8f2af6e7-53e8-45c4-8968-bb52a0ce1780?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_auto_upgrade_channel.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_auto_upgrade_channel.yaml index 6db0f141bfc..f20d068bcbe 100644 --- 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 13:28:14 GMT + - Thu, 29 Jun 2023 10:24:36 GMT expires: - '-1' pragma: @@ -47,19 +47,19 @@ interactions: message: Not Found - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestensgwgwcp-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestqllxpsy3l-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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "autoUpgradeProfile": {"upgradeChannel": "rapid"}, + "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -70,71 +70,69 @@ interactions: Connection: - keep-alive Content-Length: - - '1802' + - '1473' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestqllxpsy3l-79a739\",\n \"fqdn\": \"cliakstest-clitestqllxpsy3l-79a739-lpcyommq.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestqllxpsy3l-79a739-lpcyommq.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"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/c71022e1-1efc-46e4-8eaf-483c90d3535d?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a3ac0043-59cf-4f93-9550-269da8b23d32?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3659' + - '3330' content-type: - application/json date: - - Thu, 15 Jun 2023 13:28:21 GMT + - Thu, 29 Jun 2023 10:24:42 GMT expires: - '-1' pragma: @@ -146,7 +144,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -165,14 +163,161 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a3ac0043-59cf-4f93-9550-269da8b23d32?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"4300aca3-cf59-934f-9550-269da8b23d32\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:24:42.4622613Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:24: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 --location --enable-managed-identity --auto-upgrade-channel + --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a3ac0043-59cf-4f93-9550-269da8b23d32?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"4300aca3-cf59-934f-9550-269da8b23d32\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:24:42.4622613Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:25: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 --location --enable-managed-identity --auto-upgrade-channel + --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a3ac0043-59cf-4f93-9550-269da8b23d32?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"4300aca3-cf59-934f-9550-269da8b23d32\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:24:42.4622613Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:25: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 --location --enable-managed-identity --auto-upgrade-channel + --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a3ac0043-59cf-4f93-9550-269da8b23d32?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e12210c7-fc1e-e446-8eaf-483c90d3535d\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T13:28:21.3917728Z\"\n }" + string: "{\n \"name\": \"4300aca3-cf59-934f-9550-269da8b23d32\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:24:42.4622613Z\"\n }" headers: cache-control: - no-cache @@ -181,7 +326,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 13:28:21 GMT + - Thu, 29 Jun 2023 10:26:13 GMT expires: - '-1' pragma: @@ -214,14 +359,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a3ac0043-59cf-4f93-9550-269da8b23d32?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e12210c7-fc1e-e446-8eaf-483c90d3535d\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T13:28:21.3917728Z\"\n }" + string: "{\n \"name\": \"4300aca3-cf59-934f-9550-269da8b23d32\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:24:42.4622613Z\"\n }" headers: cache-control: - no-cache @@ -230,7 +375,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 13:28:51 GMT + - Thu, 29 Jun 2023 10:26:43 GMT expires: - '-1' pragma: @@ -263,14 +408,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a3ac0043-59cf-4f93-9550-269da8b23d32?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e12210c7-fc1e-e446-8eaf-483c90d3535d\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T13:28:21.3917728Z\"\n }" + string: "{\n \"name\": \"4300aca3-cf59-934f-9550-269da8b23d32\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:24:42.4622613Z\"\n }" headers: cache-control: - no-cache @@ -279,7 +424,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 13:29:21 GMT + - Thu, 29 Jun 2023 10:27:13 GMT expires: - '-1' pragma: @@ -312,14 +457,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a3ac0043-59cf-4f93-9550-269da8b23d32?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e12210c7-fc1e-e446-8eaf-483c90d3535d\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T13:28:21.3917728Z\"\n }" + string: "{\n \"name\": \"4300aca3-cf59-934f-9550-269da8b23d32\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:24:42.4622613Z\"\n }" headers: cache-control: - no-cache @@ -328,7 +473,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 13:29:52 GMT + - Thu, 29 Jun 2023 10:27:43 GMT expires: - '-1' pragma: @@ -361,14 +506,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a3ac0043-59cf-4f93-9550-269da8b23d32?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e12210c7-fc1e-e446-8eaf-483c90d3535d\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T13:28:21.3917728Z\"\n }" + string: "{\n \"name\": \"4300aca3-cf59-934f-9550-269da8b23d32\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:24:42.4622613Z\"\n }" headers: cache-control: - no-cache @@ -377,7 +522,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 13:30:22 GMT + - Thu, 29 Jun 2023 10:28:13 GMT expires: - '-1' pragma: @@ -410,14 +555,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a3ac0043-59cf-4f93-9550-269da8b23d32?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e12210c7-fc1e-e446-8eaf-483c90d3535d\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T13:28:21.3917728Z\"\n }" + string: "{\n \"name\": \"4300aca3-cf59-934f-9550-269da8b23d32\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:24:42.4622613Z\"\n }" headers: cache-control: - no-cache @@ -426,7 +571,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 13:30:52 GMT + - Thu, 29 Jun 2023 10:28:44 GMT expires: - '-1' pragma: @@ -459,14 +604,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a3ac0043-59cf-4f93-9550-269da8b23d32?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e12210c7-fc1e-e446-8eaf-483c90d3535d\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T13:28:21.3917728Z\"\n }" + string: "{\n \"name\": \"4300aca3-cf59-934f-9550-269da8b23d32\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:24:42.4622613Z\"\n }" headers: cache-control: - no-cache @@ -475,7 +620,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 13:31:22 GMT + - Thu, 29 Jun 2023 10:29:14 GMT expires: - '-1' pragma: @@ -508,15 +653,15 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a3ac0043-59cf-4f93-9550-269da8b23d32?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 }" + string: "{\n \"name\": \"4300aca3-cf59-934f-9550-269da8b23d32\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:24:42.4622613Z\",\n \"endTime\": + \"2023-06-29T10:29:35.3391936Z\"\n }" headers: cache-control: - no-cache @@ -525,7 +670,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 13:47:49 GMT + - Thu, 29 Jun 2023 10:29:44 GMT expires: - '-1' pragma: @@ -558,67 +703,64 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestqllxpsy3l-79a739\",\n \"fqdn\": \"cliakstest-clitestqllxpsy3l-79a739-lpcyommq.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestqllxpsy3l-79a739-lpcyommq.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/31ec94c2-7a09-40e7-86e6-bb6ebc3bdae6\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4312' + - '3983' content-type: - application/json date: - - Thu, 15 Jun 2023 13:47:50 GMT + - Thu, 29 Jun 2023 10:29:44 GMT expires: - '-1' pragma: @@ -650,67 +792,64 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestqllxpsy3l-79a739\",\n \"fqdn\": \"cliakstest-clitestqllxpsy3l-79a739-lpcyommq.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestqllxpsy3l-79a739-lpcyommq.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/31ec94c2-7a09-40e7-86e6-bb6ebc3bdae6\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4312' + - '3983' content-type: - application/json date: - - Thu, 15 Jun 2023 13:47:52 GMT + - Thu, 29 Jun 2023 10:29:45 GMT expires: - '-1' pragma: @@ -731,21 +870,20 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": - "cliakstest-clitestensgwgwcp-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-clitestqllxpsy3l-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.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"}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_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/51c8da99-5e34-4ed7-a60f-604e3b575b4b"}]}, + "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": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/31ec94c2-7a09-40e7-86e6-bb6ebc3bdae6"}]}, "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", @@ -762,78 +900,72 @@ interactions: Connection: - keep-alive Content-Length: - - '2864' + - '2498' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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\ - \ }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestqllxpsy3l-79a739\",\n \"fqdn\": \"cliakstest-clitestqllxpsy3l-79a739-lpcyommq.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestqllxpsy3l-79a739-lpcyommq.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/31ec94c2-7a09-40e7-86e6-bb6ebc3bdae6\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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/568f0675-09a1-47e6-94d7-ba6da66ec845?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f58bf8ff-0781-4c0c-b4eb-b697e1954fc3?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4643' + - '3982' content-type: - application/json date: - - Thu, 15 Jun 2023 14:25:24 GMT + - Thu, 29 Jun 2023 10:29:51 GMT expires: - '-1' pragma: @@ -867,14 +999,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f58bf8ff-0781-4c0c-b4eb-b697e1954fc3?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 }" + string: "{\n \"name\": \"fff88bf5-8107-0c4c-b4eb-b697e1954fc3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:29:51.2445336Z\"\n }" headers: cache-control: - no-cache @@ -883,7 +1015,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 14:25:24 GMT + - Thu, 29 Jun 2023 10:29:51 GMT expires: - '-1' pragma: @@ -915,14 +1047,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f58bf8ff-0781-4c0c-b4eb-b697e1954fc3?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 }" + string: "{\n \"name\": \"fff88bf5-8107-0c4c-b4eb-b697e1954fc3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:29:51.2445336Z\"\n }" headers: cache-control: - no-cache @@ -931,7 +1063,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 14:25:54 GMT + - Thu, 29 Jun 2023 10:30:21 GMT expires: - '-1' pragma: @@ -963,14 +1095,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f58bf8ff-0781-4c0c-b4eb-b697e1954fc3?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 }" + string: "{\n \"name\": \"fff88bf5-8107-0c4c-b4eb-b697e1954fc3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:29:51.2445336Z\"\n }" headers: cache-control: - no-cache @@ -979,7 +1111,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 14:26:24 GMT + - Thu, 29 Jun 2023 10:30:51 GMT expires: - '-1' pragma: @@ -1011,14 +1143,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f58bf8ff-0781-4c0c-b4eb-b697e1954fc3?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 }" + string: "{\n \"name\": \"fff88bf5-8107-0c4c-b4eb-b697e1954fc3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:29:51.2445336Z\"\n }" headers: cache-control: - no-cache @@ -1027,7 +1159,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 14:26:55 GMT + - Thu, 29 Jun 2023 10:31:21 GMT expires: - '-1' pragma: @@ -1059,15 +1191,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f58bf8ff-0781-4c0c-b4eb-b697e1954fc3?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"fff88bf5-8107-0c4c-b4eb-b697e1954fc3\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:29:51.2445336Z\",\n \"endTime\": + \"2023-06-29T10:31:33.6318173Z\"\n }" headers: cache-control: - no-cache @@ -1076,7 +1208,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 14:27:25 GMT + - Thu, 29 Jun 2023 10:31:52 GMT expires: - '-1' pragma: @@ -1108,70 +1240,64 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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\ - \ }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestqllxpsy3l-79a739\",\n \"fqdn\": \"cliakstest-clitestqllxpsy3l-79a739-lpcyommq.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestqllxpsy3l-79a739-lpcyommq.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/31ec94c2-7a09-40e7-86e6-bb6ebc3bdae6\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4645' + - '3984' content-type: - application/json date: - - Thu, 15 Jun 2023 14:27:26 GMT + - Thu, 29 Jun 2023 10:31:53 GMT expires: - '-1' pragma: @@ -1205,8 +1331,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -1214,17 +1340,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56ed030c-47c5-44ea-b05b-b5de6cf3a3f0?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 15 Jun 2023 14:27:29 GMT + - Thu, 29 Jun 2023 10:31:54 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/56ed030c-47c5-44ea-b05b-b5de6cf3a3f0?api-version=2016-03-30 pragma: - no-cache server: @@ -1234,7 +1360,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_azurekeyvaultsecretsprovider_addon.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_azurekeyvaultsecretsprovider_addon.yaml index 024495139fa..c3475874287 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 14:27:33 GMT + - Thu, 29 Jun 2023 10:21:47 GMT expires: - '-1' pragma: @@ -58,12 +58,12 @@ interactions: ParameterSetName: - --resource-group --name -a --ssh-key-value -o User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1039-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_azurekeyvaultsecretsprovider_addon","date":"2023-06-15T14:27:32Z","module":"acs"},"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-29T10:21:47Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -72,15 +72,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 14:27:33 GMT + - Thu, 29 Jun 2023 10:21:48 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -88,18 +86,18 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitesty4a7me2bw-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest4schsz3a7-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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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", + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: @@ -112,72 +110,69 @@ interactions: Connection: - keep-alive Content-Length: - - '1875' + - '1546' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitest4schsz3a7-79a739\",\n \"fqdn\": \"cliakstest-clitest4schsz3a7-79a739-je5wtmpj.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest4schsz3a7-79a739-je5wtmpj.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"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/ebf5a5eb-0e6a-425b-af44-b581f5c5b54c?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d3c77827-ca9e-4e98-9ace-dd184d60f176?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3788' + - '3459' content-type: - application/json date: - - Thu, 15 Jun 2023 14:27:40 GMT + - Thu, 29 Jun 2023 10:21:53 GMT expires: - '-1' pragma: @@ -189,7 +184,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -207,14 +202,206 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d3c77827-ca9e-4e98-9ace-dd184d60f176?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"2778c7d3-9eca-984e-9ace-dd184d60f176\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:21:54.3369484Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:21: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 -a --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d3c77827-ca9e-4e98-9ace-dd184d60f176?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"2778c7d3-9eca-984e-9ace-dd184d60f176\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:21:54.3369484Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:22: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 -a --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d3c77827-ca9e-4e98-9ace-dd184d60f176?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"2778c7d3-9eca-984e-9ace-dd184d60f176\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:21:54.3369484Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10: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 create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name -a --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d3c77827-ca9e-4e98-9ace-dd184d60f176?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"2778c7d3-9eca-984e-9ace-dd184d60f176\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:21:54.3369484Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10: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 create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name -a --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d3c77827-ca9e-4e98-9ace-dd184d60f176?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 }" + string: "{\n \"name\": \"2778c7d3-9eca-984e-9ace-dd184d60f176\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:21:54.3369484Z\"\n }" headers: cache-control: - no-cache @@ -223,7 +410,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 14:27:40 GMT + - Thu, 29 Jun 2023 10:23:54 GMT expires: - '-1' pragma: @@ -255,14 +442,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d3c77827-ca9e-4e98-9ace-dd184d60f176?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 }" + string: "{\n \"name\": \"2778c7d3-9eca-984e-9ace-dd184d60f176\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:21:54.3369484Z\"\n }" headers: cache-control: - no-cache @@ -271,7 +458,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 14:28:10 GMT + - Thu, 29 Jun 2023 10:24:25 GMT expires: - '-1' pragma: @@ -303,14 +490,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d3c77827-ca9e-4e98-9ace-dd184d60f176?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 }" + string: "{\n \"name\": \"2778c7d3-9eca-984e-9ace-dd184d60f176\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:21:54.3369484Z\"\n }" headers: cache-control: - no-cache @@ -319,7 +506,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 14:28:41 GMT + - Thu, 29 Jun 2023 10:24:55 GMT expires: - '-1' pragma: @@ -351,14 +538,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d3c77827-ca9e-4e98-9ace-dd184d60f176?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 }" + string: "{\n \"name\": \"2778c7d3-9eca-984e-9ace-dd184d60f176\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:21:54.3369484Z\"\n }" headers: cache-control: - no-cache @@ -367,7 +554,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 14:29:11 GMT + - Thu, 29 Jun 2023 10:25:25 GMT expires: - '-1' pragma: @@ -399,14 +586,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d3c77827-ca9e-4e98-9ace-dd184d60f176?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 }" + string: "{\n \"name\": \"2778c7d3-9eca-984e-9ace-dd184d60f176\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:21:54.3369484Z\"\n }" headers: cache-control: - no-cache @@ -415,7 +602,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 14:29:41 GMT + - Thu, 29 Jun 2023 10:25:55 GMT expires: - '-1' pragma: @@ -447,14 +634,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d3c77827-ca9e-4e98-9ace-dd184d60f176?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 }" + string: "{\n \"name\": \"2778c7d3-9eca-984e-9ace-dd184d60f176\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:21:54.3369484Z\"\n }" headers: cache-control: - no-cache @@ -463,7 +650,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 14:30:11 GMT + - Thu, 29 Jun 2023 10:26:25 GMT expires: - '-1' pragma: @@ -495,14 +682,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d3c77827-ca9e-4e98-9ace-dd184d60f176?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 }" + string: "{\n \"name\": \"2778c7d3-9eca-984e-9ace-dd184d60f176\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:21:54.3369484Z\"\n }" headers: cache-control: - no-cache @@ -511,7 +698,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 14:30:41 GMT + - Thu, 29 Jun 2023 10:26:56 GMT expires: - '-1' pragma: @@ -543,14 +730,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d3c77827-ca9e-4e98-9ace-dd184d60f176?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 }" + string: "{\n \"name\": \"2778c7d3-9eca-984e-9ace-dd184d60f176\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:21:54.3369484Z\"\n }" headers: cache-control: - no-cache @@ -559,7 +746,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 14:31:11 GMT + - Thu, 29 Jun 2023 10:27:26 GMT expires: - '-1' pragma: @@ -591,24 +778,24 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d3c77827-ca9e-4e98-9ace-dd184d60f176?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 }" + string: "{\n \"name\": \"2778c7d3-9eca-984e-9ace-dd184d60f176\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:21:54.3369484Z\",\n \"endTime\": + \"2023-06-29T10:27:27.473219Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '169' content-type: - application/json date: - - Thu, 15 Jun 2023 14:31:42 GMT + - Thu, 29 Jun 2023 10:27:56 GMT expires: - '-1' pragma: @@ -640,72 +827,67 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitest4schsz3a7-79a739\",\n \"fqdn\": \"cliakstest-clitest4schsz3a7-79a739-je5wtmpj.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest4schsz3a7-79a739-je5wtmpj.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/ca05a240-1d4c-46be-a86c-ec606fcf3e05\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4818' + - '4489' content-type: - application/json date: - - Thu, 15 Jun 2023 14:31:43 GMT + - Thu, 29 Jun 2023 10:27:56 GMT expires: - '-1' pragma: @@ -739,8 +921,8 @@ interactions: ParameterSetName: - --resource-group --name --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -748,17 +930,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3b61abfc-702d-475f-bc9e-ecda946bbeaa?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 15 Jun 2023 14:31:45 GMT + - Thu, 29 Jun 2023 10:27:58 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/3b61abfc-702d-475f-bc9e-ecda946bbeaa?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 51f6acb95d0..78f449243a8 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 14:31:51 GMT + - Thu, 29 Jun 2023 10:28:01 GMT expires: - '-1' pragma: @@ -58,12 +58,12 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1039-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_confcom_addon","date":"2023-06-15T14:31:49Z","module":"acs"},"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-29T10:28:00Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -72,7 +72,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 14:31:51 GMT + - Thu, 29 Jun 2023 10:28:01 GMT expires: - '-1' pragma: @@ -88,18 +88,18 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest65cmo2zlb-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestyp74wljve-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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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", + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: @@ -112,71 +112,69 @@ interactions: Connection: - keep-alive Content-Length: - - '1839' + - '1510' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestyp74wljve-79a739\",\n \"fqdn\": \"cliakstest-clitestyp74wljve-79a739-1afdnf6a.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestyp74wljve-79a739-1afdnf6a.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 + \ \"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/b2b95b93-ea2a-4726-8d94-9ab7d9fa9775?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0bddc7ff-78f3-4fee-8b04-fb022ed2f54c?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3746' + - '3417' content-type: - application/json date: - - Thu, 15 Jun 2023 14:31:59 GMT + - Thu, 29 Jun 2023 10:28:07 GMT expires: - '-1' pragma: @@ -188,7 +186,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -206,23 +204,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0bddc7ff-78f3-4fee-8b04-fb022ed2f54c?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 }" + string: "{\n \"name\": \"ffc7dd0b-f378-ee4f-8b04-fb022ed2f54c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:28:06.947263Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 14:31:59 GMT + - Thu, 29 Jun 2023 10:28:07 GMT expires: - '-1' pragma: @@ -254,23 +252,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0bddc7ff-78f3-4fee-8b04-fb022ed2f54c?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 }" + string: "{\n \"name\": \"ffc7dd0b-f378-ee4f-8b04-fb022ed2f54c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:28:06.947263Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 14:32:29 GMT + - Thu, 29 Jun 2023 10:28:37 GMT expires: - '-1' pragma: @@ -302,23 +300,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0bddc7ff-78f3-4fee-8b04-fb022ed2f54c?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 }" + string: "{\n \"name\": \"ffc7dd0b-f378-ee4f-8b04-fb022ed2f54c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:28:06.947263Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 14:32:59 GMT + - Thu, 29 Jun 2023 10:29:06 GMT expires: - '-1' pragma: @@ -350,23 +348,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0bddc7ff-78f3-4fee-8b04-fb022ed2f54c?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 }" + string: "{\n \"name\": \"ffc7dd0b-f378-ee4f-8b04-fb022ed2f54c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:28:06.947263Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 14:33:29 GMT + - Thu, 29 Jun 2023 10:29:37 GMT expires: - '-1' pragma: @@ -398,23 +396,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0bddc7ff-78f3-4fee-8b04-fb022ed2f54c?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 }" + string: "{\n \"name\": \"ffc7dd0b-f378-ee4f-8b04-fb022ed2f54c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:28:06.947263Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 14:33:59 GMT + - Thu, 29 Jun 2023 10:30:07 GMT expires: - '-1' pragma: @@ -446,23 +444,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0bddc7ff-78f3-4fee-8b04-fb022ed2f54c?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 }" + string: "{\n \"name\": \"ffc7dd0b-f378-ee4f-8b04-fb022ed2f54c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:28:06.947263Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 14:34:29 GMT + - Thu, 29 Jun 2023 10:30:37 GMT expires: - '-1' pragma: @@ -494,23 +492,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0bddc7ff-78f3-4fee-8b04-fb022ed2f54c?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 }" + string: "{\n \"name\": \"ffc7dd0b-f378-ee4f-8b04-fb022ed2f54c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:28:06.947263Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 14:35:00 GMT + - Thu, 29 Jun 2023 10:31:07 GMT expires: - '-1' pragma: @@ -542,23 +540,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0bddc7ff-78f3-4fee-8b04-fb022ed2f54c?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 }" + string: "{\n \"name\": \"ffc7dd0b-f378-ee4f-8b04-fb022ed2f54c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:28:06.947263Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 14:35:30 GMT + - Thu, 29 Jun 2023 10:31:38 GMT expires: - '-1' pragma: @@ -590,24 +588,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0bddc7ff-78f3-4fee-8b04-fb022ed2f54c?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 }" + string: "{\n \"name\": \"ffc7dd0b-f378-ee4f-8b04-fb022ed2f54c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:28:06.947263Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 14:36:00 GMT + - Thu, 29 Jun 2023 10:32:08 GMT expires: - '-1' pragma: @@ -639,68 +636,210 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0bddc7ff-78f3-4fee-8b04-fb022ed2f54c?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ffc7dd0b-f378-ee4f-8b04-fb022ed2f54c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:28:06.947263Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:32: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 --enable-managed-identity -a --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0bddc7ff-78f3-4fee-8b04-fb022ed2f54c?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ffc7dd0b-f378-ee4f-8b04-fb022ed2f54c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:28:06.947263Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:33: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 --enable-managed-identity -a --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0bddc7ff-78f3-4fee-8b04-fb022ed2f54c?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ffc7dd0b-f378-ee4f-8b04-fb022ed2f54c\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:28:06.947263Z\",\n \"endTime\": + \"2023-06-29T10:33:27.52774Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '167' + content-type: + - application/json + date: + - Thu, 29 Jun 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 --enable-managed-identity -a --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestyp74wljve-79a739\",\n \"fqdn\": \"cliakstest-clitestyp74wljve-79a739-1afdnf6a.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestyp74wljve-79a739-1afdnf6a.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/40390142-338a-4ef4-b847-23410f2fef08\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4399' + - '4070' content-type: - application/json date: - - Thu, 15 Jun 2023 14:36:01 GMT + - Thu, 29 Jun 2023 10:33:40 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 001ffaeea79..50e60c09e8d 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 14:36:05 GMT + - Thu, 29 Jun 2023 09:48:34 GMT expires: - '-1' pragma: @@ -60,12 +60,12 @@ interactions: - --resource-group --name --enable-managed-identity -a --enable-sgxquotehelper --ssh-key-value -o User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1039-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_confcom_addon_helper_enabled","date":"2023-06-15T14:36:04Z","module":"acs"},"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-29T09:48:32Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -74,7 +74,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 14:36:06 GMT + - Thu, 29 Jun 2023 09:48:34 GMT expires: - '-1' pragma: @@ -90,18 +90,18 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestuogh6ynkf-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestq7qr5pddp-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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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", + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: @@ -114,72 +114,70 @@ interactions: Connection: - keep-alive Content-Length: - - '1838' + - '1509' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity -a --enable-sgxquotehelper --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestq7qr5pddp-79a739\",\n \"fqdn\": \"cliakstest-clitestq7qr5pddp-79a739-1asenevr.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestq7qr5pddp-79a739-1asenevr.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 + \ \"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/e8cee035-e079-4785-962f-667a8a691018?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/73b00455-b729-491f-b822-10d8a206300d?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3745' + - '3416' content-type: - application/json date: - - Thu, 15 Jun 2023 14:36:14 GMT + - Thu, 29 Jun 2023 09:48:40 GMT expires: - '-1' pragma: @@ -191,7 +189,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -210,14 +208,14 @@ interactions: - --resource-group --name --enable-managed-identity -a --enable-sgxquotehelper --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/73b00455-b729-491f-b822-10d8a206300d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"35e0cee8-79e0-8547-962f-667a8a691018\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T14:36:13.9796047Z\"\n }" + string: "{\n \"name\": \"5504b073-29b7-1f49-b822-10d8a206300d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:48:40.0349551Z\"\n }" headers: cache-control: - no-cache @@ -226,7 +224,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 14:36:14 GMT + - Thu, 29 Jun 2023 09:48:40 GMT expires: - '-1' pragma: @@ -259,14 +257,14 @@ interactions: - --resource-group --name --enable-managed-identity -a --enable-sgxquotehelper --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/73b00455-b729-491f-b822-10d8a206300d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"35e0cee8-79e0-8547-962f-667a8a691018\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T14:36:13.9796047Z\"\n }" + string: "{\n \"name\": \"5504b073-29b7-1f49-b822-10d8a206300d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:48:40.0349551Z\"\n }" headers: cache-control: - no-cache @@ -275,7 +273,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 14:36:44 GMT + - Thu, 29 Jun 2023 09:49:10 GMT expires: - '-1' pragma: @@ -308,14 +306,14 @@ interactions: - --resource-group --name --enable-managed-identity -a --enable-sgxquotehelper --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/73b00455-b729-491f-b822-10d8a206300d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"35e0cee8-79e0-8547-962f-667a8a691018\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T14:36:13.9796047Z\"\n }" + string: "{\n \"name\": \"5504b073-29b7-1f49-b822-10d8a206300d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:48:40.0349551Z\"\n }" headers: cache-control: - no-cache @@ -324,7 +322,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 14:37:14 GMT + - Thu, 29 Jun 2023 09:49:40 GMT expires: - '-1' pragma: @@ -357,14 +355,14 @@ interactions: - --resource-group --name --enable-managed-identity -a --enable-sgxquotehelper --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/73b00455-b729-491f-b822-10d8a206300d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"35e0cee8-79e0-8547-962f-667a8a691018\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T14:36:13.9796047Z\"\n }" + string: "{\n \"name\": \"5504b073-29b7-1f49-b822-10d8a206300d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:48:40.0349551Z\"\n }" headers: cache-control: - no-cache @@ -373,7 +371,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 14:37:44 GMT + - Thu, 29 Jun 2023 09:50:11 GMT expires: - '-1' pragma: @@ -406,14 +404,14 @@ interactions: - --resource-group --name --enable-managed-identity -a --enable-sgxquotehelper --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/73b00455-b729-491f-b822-10d8a206300d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"35e0cee8-79e0-8547-962f-667a8a691018\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T14:36:13.9796047Z\"\n }" + string: "{\n \"name\": \"5504b073-29b7-1f49-b822-10d8a206300d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:48:40.0349551Z\"\n }" headers: cache-control: - no-cache @@ -422,7 +420,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 14:38:14 GMT + - Thu, 29 Jun 2023 09:50:41 GMT expires: - '-1' pragma: @@ -455,14 +453,14 @@ interactions: - --resource-group --name --enable-managed-identity -a --enable-sgxquotehelper --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/73b00455-b729-491f-b822-10d8a206300d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"35e0cee8-79e0-8547-962f-667a8a691018\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T14:36:13.9796047Z\"\n }" + string: "{\n \"name\": \"5504b073-29b7-1f49-b822-10d8a206300d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:48:40.0349551Z\"\n }" headers: cache-control: - no-cache @@ -471,7 +469,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 14:38:45 GMT + - Thu, 29 Jun 2023 09:51:10 GMT expires: - '-1' pragma: @@ -504,14 +502,14 @@ interactions: - --resource-group --name --enable-managed-identity -a --enable-sgxquotehelper --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/73b00455-b729-491f-b822-10d8a206300d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"35e0cee8-79e0-8547-962f-667a8a691018\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T14:36:13.9796047Z\"\n }" + string: "{\n \"name\": \"5504b073-29b7-1f49-b822-10d8a206300d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:48:40.0349551Z\"\n }" headers: cache-control: - no-cache @@ -520,7 +518,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 14:39:15 GMT + - Thu, 29 Jun 2023 09:51:40 GMT expires: - '-1' pragma: @@ -553,15 +551,407 @@ interactions: - --resource-group --name --enable-managed-identity -a --enable-sgxquotehelper --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/73b00455-b729-491f-b822-10d8a206300d?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"5504b073-29b7-1f49-b822-10d8a206300d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:48:40.0349551Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:52: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 --enable-managed-identity -a --enable-sgxquotehelper + --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/73b00455-b729-491f-b822-10d8a206300d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"5504b073-29b7-1f49-b822-10d8a206300d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:48:40.0349551Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:52: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 -a --enable-sgxquotehelper + --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/73b00455-b729-491f-b822-10d8a206300d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"5504b073-29b7-1f49-b822-10d8a206300d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:48:40.0349551Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:53: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 --enable-managed-identity -a --enable-sgxquotehelper + --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/73b00455-b729-491f-b822-10d8a206300d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"5504b073-29b7-1f49-b822-10d8a206300d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:48:40.0349551Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:53: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 -a --enable-sgxquotehelper + --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/73b00455-b729-491f-b822-10d8a206300d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"5504b073-29b7-1f49-b822-10d8a206300d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:48:40.0349551Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:54: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 --enable-managed-identity -a --enable-sgxquotehelper + --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/73b00455-b729-491f-b822-10d8a206300d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"5504b073-29b7-1f49-b822-10d8a206300d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:48:40.0349551Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:54: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 --enable-managed-identity -a --enable-sgxquotehelper + --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/73b00455-b729-491f-b822-10d8a206300d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"5504b073-29b7-1f49-b822-10d8a206300d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:48:40.0349551Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:55: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-managed-identity -a --enable-sgxquotehelper + --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/73b00455-b729-491f-b822-10d8a206300d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"5504b073-29b7-1f49-b822-10d8a206300d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T09:48:40.0349551Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 09:55: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 --enable-managed-identity -a --enable-sgxquotehelper + --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/73b00455-b729-491f-b822-10d8a206300d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"5504b073-29b7-1f49-b822-10d8a206300d\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T09:48:40.0349551Z\",\n \"endTime\": + \"2023-06-29T09:55:47.9757167Z\"\n }" headers: cache-control: - no-cache @@ -570,7 +960,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 14:39:45 GMT + - Thu, 29 Jun 2023 09:56:12 GMT expires: - '-1' pragma: @@ -603,68 +993,65 @@ interactions: - --resource-group --name --enable-managed-identity -a --enable-sgxquotehelper --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestq7qr5pddp-79a739\",\n \"fqdn\": \"cliakstest-clitestq7qr5pddp-79a739-1asenevr.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestq7qr5pddp-79a739-1asenevr.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/aa000dd0-abc4-4931-9d0a-58f7efcc5ad5\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4398' + - '4069' content-type: - application/json date: - - Thu, 15 Jun 2023 14:39:46 GMT + - Thu, 29 Jun 2023 09:56:12 GMT expires: - '-1' pragma: 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 ae0a3b2f589..20c6fa00870 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 14:39:51 GMT + - Thu, 29 Jun 2023 10:01:28 GMT expires: - '-1' pragma: @@ -60,12 +60,12 @@ interactions: - --resource-group --name --vm-set-type -c --node-osdisk-type --node-osdisk-size --ssh-key-value User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1039-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_ephemeral_disk","date":"2023-06-15T14:39:49Z","module":"acs"},"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-29T10:01:28Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -74,7 +74,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 14:39:52 GMT + - Thu, 29 Jun 2023 10:01:28 GMT expires: - '-1' pragma: @@ -90,7 +90,7 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitesttjonqgto5-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestzt4o4o3pe-79a739", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 60, "osDiskType": "Ephemeral", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": @@ -98,11 +98,12 @@ interactions: "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": {}}}' + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {}}}' headers: Accept: - application/json @@ -113,70 +114,68 @@ interactions: Connection: - keep-alive Content-Length: - - '1779' + - '1450' 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestzt4o4o3pe-79a739\",\n \"fqdn\": \"cliakstest-clitestzt4o4o3pe-79a739-gbiqo5i3.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestzt4o4o3pe-79a739-gbiqo5i3.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"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/54780828-1af2-41a0-8302-b01981a80265?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/97f229dd-7607-425a-8d9e-4e6ffa0327df?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3597' + - '3268' content-type: - application/json date: - - Thu, 15 Jun 2023 14:39:58 GMT + - Thu, 29 Jun 2023 10:01:35 GMT expires: - '-1' pragma: @@ -207,14 +206,14 @@ interactions: - --resource-group --name --vm-set-type -c --node-osdisk-type --node-osdisk-size --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/97f229dd-7607-425a-8d9e-4e6ffa0327df?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"28087854-f21a-a041-8302-b01981a80265\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T14:39:58.6050542Z\"\n }" + string: "{\n \"name\": \"dd29f297-0776-5a42-8d9e-4e6ffa0327df\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:01:35.1620365Z\"\n }" headers: cache-control: - no-cache @@ -223,7 +222,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 14:39:58 GMT + - Thu, 29 Jun 2023 10:01:35 GMT expires: - '-1' pragma: @@ -256,14 +255,14 @@ interactions: - --resource-group --name --vm-set-type -c --node-osdisk-type --node-osdisk-size --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/97f229dd-7607-425a-8d9e-4e6ffa0327df?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"28087854-f21a-a041-8302-b01981a80265\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T14:39:58.6050542Z\"\n }" + string: "{\n \"name\": \"dd29f297-0776-5a42-8d9e-4e6ffa0327df\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:01:35.1620365Z\"\n }" headers: cache-control: - no-cache @@ -272,7 +271,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 14:40:28 GMT + - Thu, 29 Jun 2023 10:02:05 GMT expires: - '-1' pragma: @@ -305,14 +304,14 @@ interactions: - --resource-group --name --vm-set-type -c --node-osdisk-type --node-osdisk-size --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/97f229dd-7607-425a-8d9e-4e6ffa0327df?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"28087854-f21a-a041-8302-b01981a80265\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T14:39:58.6050542Z\"\n }" + string: "{\n \"name\": \"dd29f297-0776-5a42-8d9e-4e6ffa0327df\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:01:35.1620365Z\"\n }" headers: cache-control: - no-cache @@ -321,7 +320,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 14:40:58 GMT + - Thu, 29 Jun 2023 10:02:35 GMT expires: - '-1' pragma: @@ -354,14 +353,14 @@ interactions: - --resource-group --name --vm-set-type -c --node-osdisk-type --node-osdisk-size --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/97f229dd-7607-425a-8d9e-4e6ffa0327df?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"28087854-f21a-a041-8302-b01981a80265\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T14:39:58.6050542Z\"\n }" + string: "{\n \"name\": \"dd29f297-0776-5a42-8d9e-4e6ffa0327df\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:01:35.1620365Z\"\n }" headers: cache-control: - no-cache @@ -370,7 +369,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 14:41:29 GMT + - Thu, 29 Jun 2023 10:03:05 GMT expires: - '-1' pragma: @@ -403,14 +402,14 @@ interactions: - --resource-group --name --vm-set-type -c --node-osdisk-type --node-osdisk-size --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/97f229dd-7607-425a-8d9e-4e6ffa0327df?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"28087854-f21a-a041-8302-b01981a80265\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T14:39:58.6050542Z\"\n }" + string: "{\n \"name\": \"dd29f297-0776-5a42-8d9e-4e6ffa0327df\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:01:35.1620365Z\"\n }" headers: cache-control: - no-cache @@ -419,7 +418,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 14:41:59 GMT + - Thu, 29 Jun 2023 10:03:35 GMT expires: - '-1' pragma: @@ -452,14 +451,14 @@ interactions: - --resource-group --name --vm-set-type -c --node-osdisk-type --node-osdisk-size --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/97f229dd-7607-425a-8d9e-4e6ffa0327df?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"28087854-f21a-a041-8302-b01981a80265\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T14:39:58.6050542Z\"\n }" + string: "{\n \"name\": \"dd29f297-0776-5a42-8d9e-4e6ffa0327df\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:01:35.1620365Z\"\n }" headers: cache-control: - no-cache @@ -468,7 +467,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 14:42:29 GMT + - Thu, 29 Jun 2023 10:04:05 GMT expires: - '-1' pragma: @@ -501,14 +500,14 @@ interactions: - --resource-group --name --vm-set-type -c --node-osdisk-type --node-osdisk-size --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/97f229dd-7607-425a-8d9e-4e6ffa0327df?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"28087854-f21a-a041-8302-b01981a80265\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T14:39:58.6050542Z\"\n }" + string: "{\n \"name\": \"dd29f297-0776-5a42-8d9e-4e6ffa0327df\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:01:35.1620365Z\"\n }" headers: cache-control: - no-cache @@ -517,7 +516,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 14:42:59 GMT + - Thu, 29 Jun 2023 10:04:36 GMT expires: - '-1' pragma: @@ -550,24 +549,122 @@ interactions: - --resource-group --name --vm-set-type -c --node-osdisk-type --node-osdisk-size --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/97f229dd-7607-425a-8d9e-4e6ffa0327df?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"dd29f297-0776-5a42-8d9e-4e6ffa0327df\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:01:35.1620365Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:05: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 --vm-set-type -c --node-osdisk-type --node-osdisk-size + --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/97f229dd-7607-425a-8d9e-4e6ffa0327df?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"dd29f297-0776-5a42-8d9e-4e6ffa0327df\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:01:35.1620365Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:05: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 --vm-set-type -c --node-osdisk-type --node-osdisk-size + --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/97f229dd-7607-425a-8d9e-4e6ffa0327df?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"dd29f297-0776-5a42-8d9e-4e6ffa0327df\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:01:35.1620365Z\",\n \"endTime\": + \"2023-06-29T10:05:51.484566Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '169' content-type: - application/json date: - - Thu, 15 Jun 2023 14:43:29 GMT + - Thu, 29 Jun 2023 10:06:06 GMT expires: - '-1' pragma: @@ -600,66 +697,63 @@ interactions: - --resource-group --name --vm-set-type -c --node-osdisk-type --node-osdisk-size --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestzt4o4o3pe-79a739\",\n \"fqdn\": \"cliakstest-clitestzt4o4o3pe-79a739-gbiqo5i3.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestzt4o4o3pe-79a739-gbiqo5i3.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/61c12f38-2b2e-4554-b14f-8583bfc1c9dc\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4250' + - '3921' content-type: - application/json date: - - Thu, 15 Jun 2023 14:43:30 GMT + - Thu, 29 Jun 2023 10:06:07 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 7bb200b647c..348f4d79cf9 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 14:43:35 GMT + - Thu, 29 Jun 2023 10:06:10 GMT expires: - '-1' pragma: @@ -58,21 +58,21 @@ interactions: ParameterSetName: - --resource-group --name --enable-fips-image --generate-ssh-keys User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1039-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":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_aks_create_with_fips","date":"2023-06-15T14:43:34Z","module":"acs"},"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_fips","date":"2023-06-29T10:06:09Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '354' + - '355' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 14:43:35 GMT + - Thu, 29 Jun 2023 10:06:10 GMT expires: - '-1' pragma: @@ -87,19 +87,19 @@ interactions: code: 200 message: OK - request: - body: '{"location": "eastus", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestuyd53r6hx-8ecadf", + body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestxal3hxe7k-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": true, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "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": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvqZgpUon4sp6urK+P7vD2Fj/JQOvgDRIZ+Ra2mI7FQ2JoOPwMOmRI1v0qUX9W9d6JghSeGhLMXASYFUKSY60zefmF49Ha35P2mrJPa86e/ZpWluIn+NiZRpiO3EdEqIl5+7iAvp5aWJoSDGm+ZmwQsafOMwhx+4EV6/gbjAnpimkblwTSQm8YJVfyBEpDsL1R6ySdWVv3GwD+VVZkF0rO9KYwq0gnWiXWxGRVLj/Mh4PmzUBSEdOR3K5PossfqMtRcGJMfV0Eukrez7F+lJTaLqOVMpyFTB5aCOf7b92oMzPvH6zgsfSblbWdwywAxNBtbSxc4N7iL0weVyw1FPLV"}]}}, + "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 @@ -110,69 +110,66 @@ interactions: Connection: - keep-alive Content-Length: - - '1584' + - '1387' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestxal3hxe7k-79a739\",\n \"fqdn\": \"cliakstest-clitestxal3hxe7k-79a739-rpbsjfhc.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestxal3hxe7k-79a739-rpbsjfhc.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": + {},\n \"enableFIPS\": true\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvqZgpUon4sp6urK+P7vD2Fj/JQOvgDRIZ+Ra2mI7FQ2JoOPwMOmRI1v0qUX9W9d6JghSeGhLMXASYFUKSY60zefmF49Ha35P2mrJPa86e/ZpWluIn+NiZRpiO3EdEqIl5+7iAvp5aWJoSDGm+ZmwQsafOMwhx+4EV6/gbjAnpimkblwTSQm8YJVfyBEpDsL1R6ySdWVv3GwD+VVZkF0rO9KYwq0gnWiXWxGRVLj/Mh4PmzUBSEdOR3K5PossfqMtRcGJMfV0Eukrez7F+lJTaLqOVMpyFTB5aCOf7b92oMzPvH6zgsfSblbWdwywAxNBtbSxc4N7iL0weVyw1FPLV\"\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/eastus/operations/922e7ef4-0056-4324-ae0a-213fddf48800?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/47ddd9f0-a415-4b84-a0ee-95fbea90633d?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3430' + - '3236' content-type: - application/json date: - - Thu, 15 Jun 2023 14:43:41 GMT + - Thu, 29 Jun 2023 10:06:16 GMT expires: - '-1' pragma: @@ -202,14 +199,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/922e7ef4-0056-4324-ae0a-213fddf48800?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/47ddd9f0-a415-4b84-a0ee-95fbea90633d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f47e2e92-5600-2443-ae0a-213fddf48800\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T14:43:41.6010934Z\"\n }" + string: "{\n \"name\": \"f0d9dd47-15a4-844b-a0ee-95fbea90633d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:06:16.8184669Z\"\n }" headers: cache-control: - no-cache @@ -218,7 +215,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 14:43:41 GMT + - Thu, 29 Jun 2023 10:06:17 GMT expires: - '-1' pragma: @@ -250,14 +247,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/922e7ef4-0056-4324-ae0a-213fddf48800?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/47ddd9f0-a415-4b84-a0ee-95fbea90633d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f47e2e92-5600-2443-ae0a-213fddf48800\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T14:43:41.6010934Z\"\n }" + string: "{\n \"name\": \"f0d9dd47-15a4-844b-a0ee-95fbea90633d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:06:16.8184669Z\"\n }" headers: cache-control: - no-cache @@ -266,7 +263,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 14:44:11 GMT + - Thu, 29 Jun 2023 10:06:46 GMT expires: - '-1' pragma: @@ -298,14 +295,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/922e7ef4-0056-4324-ae0a-213fddf48800?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/47ddd9f0-a415-4b84-a0ee-95fbea90633d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f47e2e92-5600-2443-ae0a-213fddf48800\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T14:43:41.6010934Z\"\n }" + string: "{\n \"name\": \"f0d9dd47-15a4-844b-a0ee-95fbea90633d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:06:16.8184669Z\"\n }" headers: cache-control: - no-cache @@ -314,7 +311,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 14:44:42 GMT + - Thu, 29 Jun 2023 10:07:16 GMT expires: - '-1' pragma: @@ -346,14 +343,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/922e7ef4-0056-4324-ae0a-213fddf48800?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/47ddd9f0-a415-4b84-a0ee-95fbea90633d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f47e2e92-5600-2443-ae0a-213fddf48800\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T14:43:41.6010934Z\"\n }" + string: "{\n \"name\": \"f0d9dd47-15a4-844b-a0ee-95fbea90633d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:06:16.8184669Z\"\n }" headers: cache-control: - no-cache @@ -362,7 +359,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 14:45:12 GMT + - Thu, 29 Jun 2023 10:07:46 GMT expires: - '-1' pragma: @@ -394,14 +391,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/922e7ef4-0056-4324-ae0a-213fddf48800?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/47ddd9f0-a415-4b84-a0ee-95fbea90633d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f47e2e92-5600-2443-ae0a-213fddf48800\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T14:43:41.6010934Z\"\n }" + string: "{\n \"name\": \"f0d9dd47-15a4-844b-a0ee-95fbea90633d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:06:16.8184669Z\"\n }" headers: cache-control: - no-cache @@ -410,7 +407,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 14:45:42 GMT + - Thu, 29 Jun 2023 10:08:17 GMT expires: - '-1' pragma: @@ -442,14 +439,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/922e7ef4-0056-4324-ae0a-213fddf48800?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/47ddd9f0-a415-4b84-a0ee-95fbea90633d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f47e2e92-5600-2443-ae0a-213fddf48800\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T14:43:41.6010934Z\"\n }" + string: "{\n \"name\": \"f0d9dd47-15a4-844b-a0ee-95fbea90633d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:06:16.8184669Z\"\n }" headers: cache-control: - no-cache @@ -458,7 +455,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 14:46:11 GMT + - Thu, 29 Jun 2023 10:08:47 GMT expires: - '-1' pragma: @@ -490,14 +487,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/922e7ef4-0056-4324-ae0a-213fddf48800?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/47ddd9f0-a415-4b84-a0ee-95fbea90633d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f47e2e92-5600-2443-ae0a-213fddf48800\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T14:43:41.6010934Z\"\n }" + string: "{\n \"name\": \"f0d9dd47-15a4-844b-a0ee-95fbea90633d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:06:16.8184669Z\"\n }" headers: cache-control: - no-cache @@ -506,7 +503,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 14:46:42 GMT + - Thu, 29 Jun 2023 10:09:17 GMT expires: - '-1' pragma: @@ -538,14 +535,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/922e7ef4-0056-4324-ae0a-213fddf48800?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/47ddd9f0-a415-4b84-a0ee-95fbea90633d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f47e2e92-5600-2443-ae0a-213fddf48800\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T14:43:41.6010934Z\"\n }" + string: "{\n \"name\": \"f0d9dd47-15a4-844b-a0ee-95fbea90633d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:06:16.8184669Z\"\n }" headers: cache-control: - no-cache @@ -554,7 +551,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 14:47:12 GMT + - Thu, 29 Jun 2023 10:09:47 GMT expires: - '-1' pragma: @@ -586,24 +583,71 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/922e7ef4-0056-4324-ae0a-213fddf48800?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/47ddd9f0-a415-4b84-a0ee-95fbea90633d?api-version=2016-03-30 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 }" + string: "{\n \"name\": \"f0d9dd47-15a4-844b-a0ee-95fbea90633d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:06:16.8184669Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:10: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-fips-image --generate-ssh-keys + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/47ddd9f0-a415-4b84-a0ee-95fbea90633d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f0d9dd47-15a4-844b-a0ee-95fbea90633d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:06:16.8184669Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 14:47:42 GMT + - Thu, 29 Jun 2023 10:10:48 GMT expires: - '-1' pragma: @@ -635,66 +679,159 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/47ddd9f0-a415-4b84-a0ee-95fbea90633d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f0d9dd47-15a4-844b-a0ee-95fbea90633d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:06:16.8184669Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:11: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 --enable-fips-image --generate-ssh-keys + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/47ddd9f0-a415-4b84-a0ee-95fbea90633d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f0d9dd47-15a4-844b-a0ee-95fbea90633d\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:06:16.8184669Z\",\n \"endTime\": + \"2023-06-29T10:11:39.582218Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '169' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:11: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 --enable-fips-image --generate-ssh-keys + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-clitestxal3hxe7k-79a739\",\n \"fqdn\": \"cliakstest-clitestxal3hxe7k-79a739-rpbsjfhc.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestxal3hxe7k-79a739-rpbsjfhc.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"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.19.0\",\n \"upgradeSettings\": + {},\n \"enableFIPS\": true\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvqZgpUon4sp6urK+P7vD2Fj/JQOvgDRIZ+Ra2mI7FQ2JoOPwMOmRI1v0qUX9W9d6JghSeGhLMXASYFUKSY60zefmF49Ha35P2mrJPa86e/ZpWluIn+NiZRpiO3EdEqIl5+7iAvp5aWJoSDGm+ZmwQsafOMwhx+4EV6/gbjAnpimkblwTSQm8YJVfyBEpDsL1R6ySdWVv3GwD+VVZkF0rO9KYwq0gnWiXWxGRVLj/Mh4PmzUBSEdOR3K5PossfqMtRcGJMfV0Eukrez7F+lJTaLqOVMpyFTB5aCOf7b92oMzPvH6zgsfSblbWdwywAxNBtbSxc4N7iL0weVyw1FPLV\"\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/dfcc8e31-9fd8-463b-ba44-5785123e9d42\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4081' + - '3889' content-type: - application/json date: - - Thu, 15 Jun 2023 14:47:43 GMT + - Thu, 29 Jun 2023 10:11:49 GMT expires: - '-1' pragma: @@ -726,25 +863,25 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --enable-fips-image User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-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.25.6\",\n \"currentOrchestratorVersion\": \"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 }" + 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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": true\n }\n }\n ]\n + }" headers: cache-control: - no-cache @@ -753,7 +890,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 14:47:44 GMT + - Thu, 29 Jun 2023 10:11:50 GMT expires: - '-1' pragma: @@ -794,28 +931,27 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --enable-fips-image User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/np2?api-version=2023-05-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.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 }" + 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.19.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/eastus/operations/f6f4d389-a1dc-4a87-8c05-bb44b5522987?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6da5a680-52d7-420e-b32a-596a6cc7d4e1?api-version=2016-03-30 cache-control: - no-cache content-length: @@ -823,7 +959,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 14:47:49 GMT + - Thu, 29 Jun 2023 10:11:54 GMT expires: - '-1' pragma: @@ -853,23 +989,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --enable-fips-image User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/f6f4d389-a1dc-4a87-8c05-bb44b5522987?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6da5a680-52d7-420e-b32a-596a6cc7d4e1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"89d3f4f6-dca1-874a-8c05-bb44b5522987\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T14:47:50.135231Z\"\n }" + string: "{\n \"name\": \"80a6a56d-d752-0e42-b32a-596a6cc7d4e1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:11:55.1323795Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 14:47:49 GMT + - Thu, 29 Jun 2023 10:11:54 GMT expires: - '-1' pragma: @@ -901,23 +1037,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --enable-fips-image User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/f6f4d389-a1dc-4a87-8c05-bb44b5522987?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6da5a680-52d7-420e-b32a-596a6cc7d4e1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"89d3f4f6-dca1-874a-8c05-bb44b5522987\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T14:47:50.135231Z\"\n }" + string: "{\n \"name\": \"80a6a56d-d752-0e42-b32a-596a6cc7d4e1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:11:55.1323795Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 14:48:19 GMT + - Thu, 29 Jun 2023 10:12:25 GMT expires: - '-1' pragma: @@ -949,23 +1085,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --enable-fips-image User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/f6f4d389-a1dc-4a87-8c05-bb44b5522987?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6da5a680-52d7-420e-b32a-596a6cc7d4e1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"89d3f4f6-dca1-874a-8c05-bb44b5522987\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T14:47:50.135231Z\"\n }" + string: "{\n \"name\": \"80a6a56d-d752-0e42-b32a-596a6cc7d4e1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:11:55.1323795Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 14:48:50 GMT + - Thu, 29 Jun 2023 10:12:55 GMT expires: - '-1' pragma: @@ -997,23 +1133,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --enable-fips-image User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/f6f4d389-a1dc-4a87-8c05-bb44b5522987?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6da5a680-52d7-420e-b32a-596a6cc7d4e1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"89d3f4f6-dca1-874a-8c05-bb44b5522987\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T14:47:50.135231Z\"\n }" + string: "{\n \"name\": \"80a6a56d-d752-0e42-b32a-596a6cc7d4e1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:11:55.1323795Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 14:49:20 GMT + - Thu, 29 Jun 2023 10:13:25 GMT expires: - '-1' pragma: @@ -1045,24 +1181,216 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --enable-fips-image User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/f6f4d389-a1dc-4a87-8c05-bb44b5522987?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6da5a680-52d7-420e-b32a-596a6cc7d4e1?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"80a6a56d-d752-0e42-b32a-596a6cc7d4e1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:11:55.1323795Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:13: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 --enable-fips-image + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6da5a680-52d7-420e-b32a-596a6cc7d4e1?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"80a6a56d-d752-0e42-b32a-596a6cc7d4e1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:11:55.1323795Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10: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 --enable-fips-image + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6da5a680-52d7-420e-b32a-596a6cc7d4e1?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"80a6a56d-d752-0e42-b32a-596a6cc7d4e1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:11:55.1323795Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10: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 --enable-fips-image + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6da5a680-52d7-420e-b32a-596a6cc7d4e1?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"80a6a56d-d752-0e42-b32a-596a6cc7d4e1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:11:55.1323795Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10: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 --enable-fips-image + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6da5a680-52d7-420e-b32a-596a6cc7d4e1?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"80a6a56d-d752-0e42-b32a-596a6cc7d4e1\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:11:55.1323795Z\",\n \"endTime\": + \"2023-06-29T10:15:53.9681501Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' content-type: - application/json date: - - Thu, 15 Jun 2023 14:49:50 GMT + - Thu, 29 Jun 2023 10:15:56 GMT expires: - '-1' pragma: @@ -1094,25 +1422,24 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --enable-fips-image User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/np2?api-version=2023-05-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.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 }" + 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.19.0\",\n \"upgradeSettings\": + {},\n \"enableFIPS\": true\n }\n }" headers: cache-control: - no-cache @@ -1121,7 +1448,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 14:49:50 GMT + - Thu, 29 Jun 2023 10:15:57 GMT expires: - '-1' pragma: @@ -1155,8 +1482,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/cliakstest000001?api-version=2023-05-01 response: @@ -1164,17 +1491,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9439d430-54fd-4673-bd77-cf2dea33bfc5?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 15 Jun 2023 14:49:53 GMT + - Thu, 29 Jun 2023 10:15:58 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/9439d430-54fd-4673-bd77-cf2dea33bfc5?api-version=2016-03-30 pragma: - no-cache server: @@ -1184,7 +1511,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_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 54c5cbab032..f002ddddbcd 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 14:49:55 GMT + - Thu, 29 Jun 2023 10:02:07 GMT expires: - '-1' pragma: @@ -47,19 +47,20 @@ interactions: message: Not Found - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestwrp6qxoep-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestx3yjgolv7-79a739", "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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "securityProfile": + {"imageCleaner": {"enabled": true, "intervalHours": 168}}, "storageProfile": + {}}}' headers: AKSHTTPCustomFeatures: - Microsoft.ContainerService/EnableImageCleanerPreview @@ -72,71 +73,69 @@ interactions: Connection: - keep-alive Content-Length: - - '1829' + - '1500' 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestx3yjgolv7-79a739\",\n \"fqdn\": \"cliakstest-clitestx3yjgolv7-79a739-jonm0u23.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestx3yjgolv7-79a739-jonm0u23.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/d757de8b-b6c1-4a33-9fea-49b7eeaa5879?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4be38cbc-b817-4a66-974d-18e4dd7a8325?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3676' + - '3347' content-type: - application/json date: - - Thu, 15 Jun 2023 14:50:02 GMT + - Thu, 29 Jun 2023 10:02:13 GMT expires: - '-1' pragma: @@ -167,14 +166,14 @@ interactions: - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner --ssh-key-value --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4be38cbc-b817-4a66-974d-18e4dd7a8325?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8bde57d7-c1b6-334a-9fea-49b7eeaa5879\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T14:50:01.9192066Z\"\n }" + string: "{\n \"name\": \"bc8ce34b-17b8-664a-974d-18e4dd7a8325\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:02:14.0215236Z\"\n }" headers: cache-control: - no-cache @@ -183,7 +182,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 14:50:02 GMT + - Thu, 29 Jun 2023 10:02:13 GMT expires: - '-1' pragma: @@ -216,14 +215,14 @@ interactions: - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner --ssh-key-value --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4be38cbc-b817-4a66-974d-18e4dd7a8325?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8bde57d7-c1b6-334a-9fea-49b7eeaa5879\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T14:50:01.9192066Z\"\n }" + string: "{\n \"name\": \"bc8ce34b-17b8-664a-974d-18e4dd7a8325\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:02:14.0215236Z\"\n }" headers: cache-control: - no-cache @@ -232,7 +231,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 14:50:32 GMT + - Thu, 29 Jun 2023 10:02:44 GMT expires: - '-1' pragma: @@ -265,14 +264,14 @@ interactions: - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner --ssh-key-value --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4be38cbc-b817-4a66-974d-18e4dd7a8325?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8bde57d7-c1b6-334a-9fea-49b7eeaa5879\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T14:50:01.9192066Z\"\n }" + string: "{\n \"name\": \"bc8ce34b-17b8-664a-974d-18e4dd7a8325\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:02:14.0215236Z\"\n }" headers: cache-control: - no-cache @@ -281,7 +280,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 14:51:02 GMT + - Thu, 29 Jun 2023 10:03:14 GMT expires: - '-1' pragma: @@ -314,14 +313,14 @@ interactions: - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner --ssh-key-value --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4be38cbc-b817-4a66-974d-18e4dd7a8325?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8bde57d7-c1b6-334a-9fea-49b7eeaa5879\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T14:50:01.9192066Z\"\n }" + string: "{\n \"name\": \"bc8ce34b-17b8-664a-974d-18e4dd7a8325\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:02:14.0215236Z\"\n }" headers: cache-control: - no-cache @@ -330,7 +329,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 14:51:32 GMT + - Thu, 29 Jun 2023 10:03:44 GMT expires: - '-1' pragma: @@ -363,14 +362,14 @@ interactions: - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner --ssh-key-value --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4be38cbc-b817-4a66-974d-18e4dd7a8325?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8bde57d7-c1b6-334a-9fea-49b7eeaa5879\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T14:50:01.9192066Z\"\n }" + string: "{\n \"name\": \"bc8ce34b-17b8-664a-974d-18e4dd7a8325\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:02:14.0215236Z\"\n }" headers: cache-control: - no-cache @@ -379,7 +378,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 14:52:02 GMT + - Thu, 29 Jun 2023 10:04:14 GMT expires: - '-1' pragma: @@ -412,14 +411,14 @@ interactions: - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner --ssh-key-value --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4be38cbc-b817-4a66-974d-18e4dd7a8325?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8bde57d7-c1b6-334a-9fea-49b7eeaa5879\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T14:50:01.9192066Z\"\n }" + string: "{\n \"name\": \"bc8ce34b-17b8-664a-974d-18e4dd7a8325\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:02:14.0215236Z\"\n }" headers: cache-control: - no-cache @@ -428,7 +427,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 14:52:32 GMT + - Thu, 29 Jun 2023 10:04:45 GMT expires: - '-1' pragma: @@ -461,14 +460,14 @@ interactions: - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner --ssh-key-value --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4be38cbc-b817-4a66-974d-18e4dd7a8325?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8bde57d7-c1b6-334a-9fea-49b7eeaa5879\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T14:50:01.9192066Z\"\n }" + string: "{\n \"name\": \"bc8ce34b-17b8-664a-974d-18e4dd7a8325\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:02:14.0215236Z\"\n }" headers: cache-control: - no-cache @@ -477,7 +476,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 14:53:03 GMT + - Thu, 29 Jun 2023 10:05:15 GMT expires: - '-1' pragma: @@ -510,14 +509,14 @@ interactions: - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner --ssh-key-value --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4be38cbc-b817-4a66-974d-18e4dd7a8325?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8bde57d7-c1b6-334a-9fea-49b7eeaa5879\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T14:50:01.9192066Z\"\n }" + string: "{\n \"name\": \"bc8ce34b-17b8-664a-974d-18e4dd7a8325\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:02:14.0215236Z\"\n }" headers: cache-control: - no-cache @@ -526,7 +525,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 14:53:33 GMT + - Thu, 29 Jun 2023 10:05:45 GMT expires: - '-1' pragma: @@ -559,24 +558,73 @@ interactions: - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner --ssh-key-value --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4be38cbc-b817-4a66-974d-18e4dd7a8325?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"bc8ce34b-17b8-664a-974d-18e4dd7a8325\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:02:14.0215236Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:06: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 --location --node-vm-size --node-count --enable-image-cleaner + --ssh-key-value --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4be38cbc-b817-4a66-974d-18e4dd7a8325?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"bc8ce34b-17b8-664a-974d-18e4dd7a8325\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:02:14.0215236Z\",\n \"endTime\": + \"2023-06-29T10:06:31.6877535Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' content-type: - application/json date: - - Thu, 15 Jun 2023 14:54:03 GMT + - Thu, 29 Jun 2023 10:06:45 GMT expires: - '-1' pragma: @@ -609,67 +657,64 @@ interactions: - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner --ssh-key-value --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-clitestx3yjgolv7-79a739\",\n \"fqdn\": \"cliakstest-clitestx3yjgolv7-79a739-jonm0u23.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestx3yjgolv7-79a739-jonm0u23.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/9bdfa969-562d-467d-b11c-ceaa0f1d1676\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4329' + - '4000' content-type: - application/json date: - - Thu, 15 Jun 2023 14:54:04 GMT + - Thu, 29 Jun 2023 10:06:46 GMT expires: - '-1' pragma: 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 a85187ef3ca..136a5012195 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 14:54:10 GMT + - Thu, 29 Jun 2023 10:06:49 GMT expires: - '-1' pragma: @@ -47,19 +47,20 @@ interactions: message: Not Found - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitesti4dj3efrm-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestshyr3gpsz-79a739", "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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "securityProfile": + {"imageCleaner": {"enabled": true, "intervalHours": 24}}, "storageProfile": + {}}}' headers: AKSHTTPCustomFeatures: - Microsoft.ContainerService/EnableImageCleanerPreview @@ -72,71 +73,69 @@ interactions: Connection: - keep-alive Content-Length: - - '1828' + - '1499' 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestshyr3gpsz-79a739\",\n \"fqdn\": \"cliakstest-clitestshyr3gpsz-79a739-43mgzo61.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestshyr3gpsz-79a739-43mgzo61.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/3e1ffe3e-3ddf-496e-928d-f2801490509c?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ecb49df-d779-43b4-ac8e-15cc8b749edc?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3675' + - '3346' content-type: - application/json date: - - Thu, 15 Jun 2023 14:54:16 GMT + - Thu, 29 Jun 2023 10:06:55 GMT expires: - '-1' pragma: @@ -167,14 +166,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ecb49df-d779-43b4-ac8e-15cc8b749edc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3efe1f3e-df3d-6e49-928d-f2801490509c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T14:54:16.6385146Z\"\n }" + string: "{\n \"name\": \"df49cb9e-79d7-b443-ac8e-15cc8b749edc\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:06:55.7563334Z\"\n }" headers: cache-control: - no-cache @@ -183,7 +182,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 14:54:17 GMT + - Thu, 29 Jun 2023 10:06:56 GMT expires: - '-1' pragma: @@ -216,14 +215,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ecb49df-d779-43b4-ac8e-15cc8b749edc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3efe1f3e-df3d-6e49-928d-f2801490509c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T14:54:16.6385146Z\"\n }" + string: "{\n \"name\": \"df49cb9e-79d7-b443-ac8e-15cc8b749edc\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:06:55.7563334Z\"\n }" headers: cache-control: - no-cache @@ -232,7 +231,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 14:54:47 GMT + - Thu, 29 Jun 2023 10:07:26 GMT expires: - '-1' pragma: @@ -265,14 +264,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ecb49df-d779-43b4-ac8e-15cc8b749edc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3efe1f3e-df3d-6e49-928d-f2801490509c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T14:54:16.6385146Z\"\n }" + string: "{\n \"name\": \"df49cb9e-79d7-b443-ac8e-15cc8b749edc\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:06:55.7563334Z\"\n }" headers: cache-control: - no-cache @@ -281,7 +280,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 14:55:17 GMT + - Thu, 29 Jun 2023 10:07:56 GMT expires: - '-1' pragma: @@ -314,14 +313,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ecb49df-d779-43b4-ac8e-15cc8b749edc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3efe1f3e-df3d-6e49-928d-f2801490509c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T14:54:16.6385146Z\"\n }" + string: "{\n \"name\": \"df49cb9e-79d7-b443-ac8e-15cc8b749edc\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:06:55.7563334Z\"\n }" headers: cache-control: - no-cache @@ -330,7 +329,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 14:55:47 GMT + - Thu, 29 Jun 2023 10:08:26 GMT expires: - '-1' pragma: @@ -363,14 +362,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ecb49df-d779-43b4-ac8e-15cc8b749edc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3efe1f3e-df3d-6e49-928d-f2801490509c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T14:54:16.6385146Z\"\n }" + string: "{\n \"name\": \"df49cb9e-79d7-b443-ac8e-15cc8b749edc\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:06:55.7563334Z\"\n }" headers: cache-control: - no-cache @@ -379,7 +378,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 14:56:18 GMT + - Thu, 29 Jun 2023 10:08:56 GMT expires: - '-1' pragma: @@ -412,14 +411,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ecb49df-d779-43b4-ac8e-15cc8b749edc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3efe1f3e-df3d-6e49-928d-f2801490509c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T14:54:16.6385146Z\"\n }" + string: "{\n \"name\": \"df49cb9e-79d7-b443-ac8e-15cc8b749edc\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:06:55.7563334Z\"\n }" headers: cache-control: - no-cache @@ -428,7 +427,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 14:56:48 GMT + - Thu, 29 Jun 2023 10:09:26 GMT expires: - '-1' pragma: @@ -461,14 +460,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ecb49df-d779-43b4-ac8e-15cc8b749edc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3efe1f3e-df3d-6e49-928d-f2801490509c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T14:54:16.6385146Z\"\n }" + string: "{\n \"name\": \"df49cb9e-79d7-b443-ac8e-15cc8b749edc\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:06:55.7563334Z\"\n }" headers: cache-control: - no-cache @@ -477,7 +476,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 14:57:17 GMT + - Thu, 29 Jun 2023 10:09:57 GMT expires: - '-1' pragma: @@ -510,15 +509,260 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ecb49df-d779-43b4-ac8e-15cc8b749edc?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"df49cb9e-79d7-b443-ac8e-15cc8b749edc\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:06:55.7563334Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:10: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-vm-size --node-count --enable-image-cleaner + --image-cleaner-interval-hours --ssh-key-value --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ecb49df-d779-43b4-ac8e-15cc8b749edc?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"df49cb9e-79d7-b443-ac8e-15cc8b749edc\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:06:55.7563334Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:10: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 --node-vm-size --node-count --enable-image-cleaner + --image-cleaner-interval-hours --ssh-key-value --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ecb49df-d779-43b4-ac8e-15cc8b749edc?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"df49cb9e-79d7-b443-ac8e-15cc8b749edc\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:06:55.7563334Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:11: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-vm-size --node-count --enable-image-cleaner + --image-cleaner-interval-hours --ssh-key-value --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ecb49df-d779-43b4-ac8e-15cc8b749edc?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"df49cb9e-79d7-b443-ac8e-15cc8b749edc\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:06:55.7563334Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:11: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 --node-vm-size --node-count --enable-image-cleaner + --image-cleaner-interval-hours --ssh-key-value --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ecb49df-d779-43b4-ac8e-15cc8b749edc?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"df49cb9e-79d7-b443-ac8e-15cc8b749edc\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:06:55.7563334Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:12: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-vm-size --node-count --enable-image-cleaner + --image-cleaner-interval-hours --ssh-key-value --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ecb49df-d779-43b4-ac8e-15cc8b749edc?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"df49cb9e-79d7-b443-ac8e-15cc8b749edc\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:06:55.7563334Z\",\n \"endTime\": + \"2023-06-29T10:12:52.3915044Z\"\n }" headers: cache-control: - no-cache @@ -527,7 +771,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 14:57:47 GMT + - Thu, 29 Jun 2023 10:12:57 GMT expires: - '-1' pragma: @@ -560,67 +804,64 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-clitestshyr3gpsz-79a739\",\n \"fqdn\": \"cliakstest-clitestshyr3gpsz-79a739-43mgzo61.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestshyr3gpsz-79a739-43mgzo61.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/269cd8e2-0ba9-4f96-b65c-414aba9beba2\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4328' + - '3999' content-type: - application/json date: - - Thu, 15 Jun 2023 14:57:48 GMT + - Thu, 29 Jun 2023 10:12:58 GMT expires: - '-1' pragma: 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 4a9553a56d2..583fc29ff4b 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 22:51:13 GMT + - Thu, 29 Jun 2023 10:13:01 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.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1039-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":"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"}}' + 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_ingress_appgw_addon","date":"2023-06-29T10:13:00Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '373' + - '370' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 22:51:14 GMT + - Thu, 29 Jun 2023 10:13:01 GMT expires: - '-1' pragma: @@ -89,20 +89,21 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westeurope", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestpbstckffg-8ecadf", + body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestx4xrigaou-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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {}}}' headers: Accept: - application/json @@ -113,73 +114,71 @@ interactions: Connection: - keep-alive Content-Length: - - '1843' + - '1511' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity -a --appgw-subnet-cidr --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - 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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestx4xrigaou-79a739\",\n \"fqdn\": \"cliakstest-clitestx4xrigaou-79a739-yam5po1a.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestx4xrigaou-79a739-yam5po1a.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 + \ \"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/westeurope/operations/ee9abc7e-e27a-401d-831e-9de2c6e3422c?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/48b48b4e-4871-4f8a-b3cf-0c1fe902c030?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3980' + - '3636' content-type: - application/json date: - - Thu, 15 Jun 2023 22:51:23 GMT + - Thu, 29 Jun 2023 10:13:08 GMT expires: - '-1' pragma: @@ -210,14 +209,14 @@ interactions: - --resource-group --name --enable-managed-identity -a --appgw-subnet-cidr --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/48b48b4e-4871-4f8a-b3cf-0c1fe902c030?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7ebc9aee-7ae2-1d40-831e-9de2c6e3422c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T22:51:22.2969279Z\"\n }" + string: "{\n \"name\": \"4e8bb448-7148-8a4f-b3cf-0c1fe902c030\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:13:08.2107783Z\"\n }" headers: cache-control: - no-cache @@ -226,7 +225,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 22:51:23 GMT + - Thu, 29 Jun 2023 10:13:08 GMT expires: - '-1' pragma: @@ -259,14 +258,14 @@ interactions: - --resource-group --name --enable-managed-identity -a --appgw-subnet-cidr --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/48b48b4e-4871-4f8a-b3cf-0c1fe902c030?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7ebc9aee-7ae2-1d40-831e-9de2c6e3422c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T22:51:22.2969279Z\"\n }" + string: "{\n \"name\": \"4e8bb448-7148-8a4f-b3cf-0c1fe902c030\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:13:08.2107783Z\"\n }" headers: cache-control: - no-cache @@ -275,7 +274,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 22:51:53 GMT + - Thu, 29 Jun 2023 10:13:38 GMT expires: - '-1' pragma: @@ -308,14 +307,14 @@ interactions: - --resource-group --name --enable-managed-identity -a --appgw-subnet-cidr --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/48b48b4e-4871-4f8a-b3cf-0c1fe902c030?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7ebc9aee-7ae2-1d40-831e-9de2c6e3422c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T22:51:22.2969279Z\"\n }" + string: "{\n \"name\": \"4e8bb448-7148-8a4f-b3cf-0c1fe902c030\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:13:08.2107783Z\"\n }" headers: cache-control: - no-cache @@ -324,7 +323,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 22:52:23 GMT + - Thu, 29 Jun 2023 10:14:08 GMT expires: - '-1' pragma: @@ -357,14 +356,14 @@ interactions: - --resource-group --name --enable-managed-identity -a --appgw-subnet-cidr --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/48b48b4e-4871-4f8a-b3cf-0c1fe902c030?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7ebc9aee-7ae2-1d40-831e-9de2c6e3422c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T22:51:22.2969279Z\"\n }" + string: "{\n \"name\": \"4e8bb448-7148-8a4f-b3cf-0c1fe902c030\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:13:08.2107783Z\"\n }" headers: cache-control: - no-cache @@ -373,7 +372,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 22:52:53 GMT + - Thu, 29 Jun 2023 10:14:39 GMT expires: - '-1' pragma: @@ -406,14 +405,14 @@ interactions: - --resource-group --name --enable-managed-identity -a --appgw-subnet-cidr --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/48b48b4e-4871-4f8a-b3cf-0c1fe902c030?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7ebc9aee-7ae2-1d40-831e-9de2c6e3422c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T22:51:22.2969279Z\"\n }" + string: "{\n \"name\": \"4e8bb448-7148-8a4f-b3cf-0c1fe902c030\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:13:08.2107783Z\"\n }" headers: cache-control: - no-cache @@ -422,7 +421,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 22:53:23 GMT + - Thu, 29 Jun 2023 10:15:09 GMT expires: - '-1' pragma: @@ -455,14 +454,14 @@ interactions: - --resource-group --name --enable-managed-identity -a --appgw-subnet-cidr --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/48b48b4e-4871-4f8a-b3cf-0c1fe902c030?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7ebc9aee-7ae2-1d40-831e-9de2c6e3422c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T22:51:22.2969279Z\"\n }" + string: "{\n \"name\": \"4e8bb448-7148-8a4f-b3cf-0c1fe902c030\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:13:08.2107783Z\"\n }" headers: cache-control: - no-cache @@ -471,7 +470,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 22:53:53 GMT + - Thu, 29 Jun 2023 10:15:39 GMT expires: - '-1' pragma: @@ -504,14 +503,14 @@ interactions: - --resource-group --name --enable-managed-identity -a --appgw-subnet-cidr --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/48b48b4e-4871-4f8a-b3cf-0c1fe902c030?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7ebc9aee-7ae2-1d40-831e-9de2c6e3422c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T22:51:22.2969279Z\"\n }" + string: "{\n \"name\": \"4e8bb448-7148-8a4f-b3cf-0c1fe902c030\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:13:08.2107783Z\"\n }" headers: cache-control: - no-cache @@ -520,7 +519,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 22:54:24 GMT + - Thu, 29 Jun 2023 10:16:09 GMT expires: - '-1' pragma: @@ -553,15 +552,260 @@ interactions: - --resource-group --name --enable-managed-identity -a --appgw-subnet-cidr --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/48b48b4e-4871-4f8a-b3cf-0c1fe902c030?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"4e8bb448-7148-8a4f-b3cf-0c1fe902c030\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:13:08.2107783Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:16: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 --enable-managed-identity -a --appgw-subnet-cidr --ssh-key-value + -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/48b48b4e-4871-4f8a-b3cf-0c1fe902c030?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"4e8bb448-7148-8a4f-b3cf-0c1fe902c030\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:13:08.2107783Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:17: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 --enable-managed-identity -a --appgw-subnet-cidr --ssh-key-value + -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/48b48b4e-4871-4f8a-b3cf-0c1fe902c030?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"4e8bb448-7148-8a4f-b3cf-0c1fe902c030\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:13:08.2107783Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:17: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 --enable-managed-identity -a --appgw-subnet-cidr --ssh-key-value + -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/48b48b4e-4871-4f8a-b3cf-0c1fe902c030?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"4e8bb448-7148-8a4f-b3cf-0c1fe902c030\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:13:08.2107783Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:18: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 --enable-managed-identity -a --appgw-subnet-cidr --ssh-key-value + -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/48b48b4e-4871-4f8a-b3cf-0c1fe902c030?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"4e8bb448-7148-8a4f-b3cf-0c1fe902c030\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:13:08.2107783Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:18: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 --enable-managed-identity -a --appgw-subnet-cidr --ssh-key-value + -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/48b48b4e-4871-4f8a-b3cf-0c1fe902c030?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"4e8bb448-7148-8a4f-b3cf-0c1fe902c030\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:13:08.2107783Z\",\n \"endTime\": + \"2023-06-29T10:19:05.864098Z\"\n }" headers: cache-control: - no-cache @@ -570,7 +814,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 22:54:54 GMT + - Thu, 29 Jun 2023 10:19:09 GMT expires: - '-1' pragma: @@ -603,72 +847,68 @@ interactions: - --resource-group --name --enable-managed-identity -a --appgw-subnet-cidr --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - 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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestx4xrigaou-79a739\",\n \"fqdn\": \"cliakstest-clitestx4xrigaou-79a739-yam5po1a.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestx4xrigaou-79a739-yam5po1a.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d7fd16a8-c61a-411b-b332-18d7dce55607\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '5016' + - '4663' content-type: - application/json date: - - Thu, 15 Jun 2023 22:54:55 GMT + - Thu, 29 Jun 2023 10:19:10 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 c6310252733..019b3177226 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 15:53:16 GMT + - Thu, 29 Jun 2023 10:22:45 GMT expires: - '-1' pragma: @@ -58,12 +58,12 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --node-osdisk-type --ssh-key-value User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1039-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_managed_disk","date":"2023-06-15T15:53:14Z","module":"acs"},"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-29T10:22:44Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -72,7 +72,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 15:53:16 GMT + - Thu, 29 Jun 2023 10:22:44 GMT expires: - '-1' pragma: @@ -88,7 +88,7 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestbx7sxovmd-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestra6yx7se4-79a739", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osDiskType": "Managed", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": @@ -96,11 +96,12 @@ interactions: "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": {}}}' + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {}}}' headers: Accept: - application/json @@ -111,69 +112,67 @@ interactions: Connection: - keep-alive Content-Length: - - '1776' + - '1447' Content-Type: - application/json ParameterSetName: - --resource-group --name --vm-set-type -c --node-osdisk-type --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestra6yx7se4-79a739\",\n \"fqdn\": \"cliakstest-clitestra6yx7se4-79a739-xyj1wo6p.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestra6yx7se4-79a739-xyj1wo6p.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"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/93dde4f7-f48e-4b07-93a6-2d55525d482b?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a4fe5ed6-5d84-4e32-bd58-5e429a22dcf9?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3596' + - '3267' content-type: - application/json date: - - Thu, 15 Jun 2023 15:53:23 GMT + - Thu, 29 Jun 2023 10:22:51 GMT expires: - '-1' pragma: @@ -203,23 +202,23 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --node-osdisk-type --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a4fe5ed6-5d84-4e32-bd58-5e429a22dcf9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f7e4dd93-8ef4-074b-93a6-2d55525d482b\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T15:53:23.412865Z\"\n }" + string: "{\n \"name\": \"d65efea4-845d-324e-bd58-5e429a22dcf9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:22:51.0245275Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 15:53:23 GMT + - Thu, 29 Jun 2023 10:22:51 GMT expires: - '-1' pragma: @@ -251,23 +250,23 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --node-osdisk-type --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a4fe5ed6-5d84-4e32-bd58-5e429a22dcf9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f7e4dd93-8ef4-074b-93a6-2d55525d482b\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T15:53:23.412865Z\"\n }" + string: "{\n \"name\": \"d65efea4-845d-324e-bd58-5e429a22dcf9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:22:51.0245275Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 15:53:53 GMT + - Thu, 29 Jun 2023 10:23:21 GMT expires: - '-1' pragma: @@ -299,23 +298,23 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --node-osdisk-type --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a4fe5ed6-5d84-4e32-bd58-5e429a22dcf9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f7e4dd93-8ef4-074b-93a6-2d55525d482b\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T15:53:23.412865Z\"\n }" + string: "{\n \"name\": \"d65efea4-845d-324e-bd58-5e429a22dcf9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:22:51.0245275Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 15:54:24 GMT + - Thu, 29 Jun 2023 10:23:51 GMT expires: - '-1' pragma: @@ -347,23 +346,23 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --node-osdisk-type --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a4fe5ed6-5d84-4e32-bd58-5e429a22dcf9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f7e4dd93-8ef4-074b-93a6-2d55525d482b\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T15:53:23.412865Z\"\n }" + string: "{\n \"name\": \"d65efea4-845d-324e-bd58-5e429a22dcf9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:22:51.0245275Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 15:54:54 GMT + - Thu, 29 Jun 2023 10:24:21 GMT expires: - '-1' pragma: @@ -395,23 +394,23 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --node-osdisk-type --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a4fe5ed6-5d84-4e32-bd58-5e429a22dcf9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f7e4dd93-8ef4-074b-93a6-2d55525d482b\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T15:53:23.412865Z\"\n }" + string: "{\n \"name\": \"d65efea4-845d-324e-bd58-5e429a22dcf9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:22:51.0245275Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 15:55:24 GMT + - Thu, 29 Jun 2023 10:24:52 GMT expires: - '-1' pragma: @@ -443,23 +442,23 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --node-osdisk-type --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a4fe5ed6-5d84-4e32-bd58-5e429a22dcf9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f7e4dd93-8ef4-074b-93a6-2d55525d482b\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T15:53:23.412865Z\"\n }" + string: "{\n \"name\": \"d65efea4-845d-324e-bd58-5e429a22dcf9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:22:51.0245275Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 15:55:54 GMT + - Thu, 29 Jun 2023 10:25:22 GMT expires: - '-1' pragma: @@ -491,23 +490,23 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --node-osdisk-type --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a4fe5ed6-5d84-4e32-bd58-5e429a22dcf9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f7e4dd93-8ef4-074b-93a6-2d55525d482b\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T15:53:23.412865Z\"\n }" + string: "{\n \"name\": \"d65efea4-845d-324e-bd58-5e429a22dcf9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:22:51.0245275Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 15:56:25 GMT + - Thu, 29 Jun 2023 10:25:52 GMT expires: - '-1' pragma: @@ -539,24 +538,23 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --node-osdisk-type --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a4fe5ed6-5d84-4e32-bd58-5e429a22dcf9?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"d65efea4-845d-324e-bd58-5e429a22dcf9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:22:51.0245275Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 15:56:54 GMT + - Thu, 29 Jun 2023 10:26:22 GMT expires: - '-1' pragma: @@ -588,66 +586,160 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --node-osdisk-type --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a4fe5ed6-5d84-4e32-bd58-5e429a22dcf9?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"d65efea4-845d-324e-bd58-5e429a22dcf9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:22:51.0245275Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10: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 --vm-set-type -c --node-osdisk-type --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a4fe5ed6-5d84-4e32-bd58-5e429a22dcf9?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"d65efea4-845d-324e-bd58-5e429a22dcf9\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:22:51.0245275Z\",\n \"endTime\": + \"2023-06-29T10:27:20.4449361Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:27: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 --vm-set-type -c --node-osdisk-type --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestra6yx7se4-79a739\",\n \"fqdn\": \"cliakstest-clitestra6yx7se4-79a739-xyj1wo6p.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestra6yx7se4-79a739-xyj1wo6p.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/af70acd1-f06f-443d-9dae-ef60b3a29cec\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4249' + - '3920' content-type: - application/json date: - - Thu, 15 Jun 2023 15:56:55 GMT + - Thu, 29 Jun 2023 10:27:23 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 486b0f0f874..9e2139dad4d 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 15:56:59 GMT + - Thu, 29 Jun 2023 10:19:13 GMT expires: - '-1' pragma: @@ -47,18 +47,19 @@ interactions: message: Not Found - request: body: '{"location": "eastus", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestylyznwqlq-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestaspluxhnj-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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": "azure", "networkPluginMode": "overlay", "networkDataplane": - "cilium", "podCidr": "10.244.0.0/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, + "networkProfile": {"networkPlugin": "azure", "networkPluginMode": "overlay", + "networkDataplane": "cilium", "podCidr": "10.244.0.0/16", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {}}}' headers: AKSHTTPCustomFeatures: - Microsoft.ContainerService/CiliumDataplanePreview,Microsoft.ContainerService/AzureOverlayPreview @@ -71,73 +72,70 @@ interactions: Connection: - keep-alive Content-Length: - - '1751' + - '1422' Content-Type: - application/json 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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-clitestaspluxhnj-79a739\",\n \"fqdn\": \"cliakstest-clitestaspluxhnj-79a739-j41b80kj.hcp.eastus.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestaspluxhnj-79a739-j41b80kj.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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_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/5de661cc-f5b1-4046-acef-becce064337e?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/35d4883b-3370-40c5-a6aa-eefe6a1a8100?api-version=2017-08-31 cache-control: - no-cache content-length: - - '3781' + - '3452' content-type: - application/json date: - - Thu, 15 Jun 2023 15:57:04 GMT + - Thu, 29 Jun 2023 10:19:18 GMT expires: - '-1' pragma: @@ -149,7 +147,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 201 message: Created @@ -168,14 +166,14 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/5de661cc-f5b1-4046-acef-becce064337e?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/35d4883b-3370-40c5-a6aa-eefe6a1a8100?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"cc61e65d-b1f5-4640-acef-becce064337e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T15:57:04.7386589Z\"\n }" + string: "{\n \"name\": \"3b88d435-7033-c540-a6aa-eefe6a1a8100\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:19:19.2487492Z\"\n }" headers: cache-control: - no-cache @@ -184,7 +182,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 15:57:04 GMT + - Thu, 29 Jun 2023 10:19:18 GMT expires: - '-1' pragma: @@ -193,10 +191,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -217,14 +211,14 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/5de661cc-f5b1-4046-acef-becce064337e?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/35d4883b-3370-40c5-a6aa-eefe6a1a8100?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"cc61e65d-b1f5-4640-acef-becce064337e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T15:57:04.7386589Z\"\n }" + string: "{\n \"name\": \"3b88d435-7033-c540-a6aa-eefe6a1a8100\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:19:19.2487492Z\"\n }" headers: cache-control: - no-cache @@ -233,7 +227,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 15:57:35 GMT + - Thu, 29 Jun 2023 10:19:48 GMT expires: - '-1' pragma: @@ -242,10 +236,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -266,14 +256,14 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/5de661cc-f5b1-4046-acef-becce064337e?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/35d4883b-3370-40c5-a6aa-eefe6a1a8100?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"cc61e65d-b1f5-4640-acef-becce064337e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T15:57:04.7386589Z\"\n }" + string: "{\n \"name\": \"3b88d435-7033-c540-a6aa-eefe6a1a8100\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:19:19.2487492Z\"\n }" headers: cache-control: - no-cache @@ -282,7 +272,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 15:58:06 GMT + - Thu, 29 Jun 2023 10:20:19 GMT expires: - '-1' pragma: @@ -291,10 +281,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -315,14 +301,14 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/5de661cc-f5b1-4046-acef-becce064337e?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/35d4883b-3370-40c5-a6aa-eefe6a1a8100?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"cc61e65d-b1f5-4640-acef-becce064337e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T15:57:04.7386589Z\"\n }" + string: "{\n \"name\": \"3b88d435-7033-c540-a6aa-eefe6a1a8100\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:19:19.2487492Z\"\n }" headers: cache-control: - no-cache @@ -331,7 +317,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 15:58:36 GMT + - Thu, 29 Jun 2023 10:20:49 GMT expires: - '-1' pragma: @@ -340,10 +326,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -364,14 +346,14 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/5de661cc-f5b1-4046-acef-becce064337e?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/35d4883b-3370-40c5-a6aa-eefe6a1a8100?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"cc61e65d-b1f5-4640-acef-becce064337e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T15:57:04.7386589Z\"\n }" + string: "{\n \"name\": \"3b88d435-7033-c540-a6aa-eefe6a1a8100\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:19:19.2487492Z\"\n }" headers: cache-control: - no-cache @@ -380,7 +362,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 15:59:06 GMT + - Thu, 29 Jun 2023 10:21:19 GMT expires: - '-1' pragma: @@ -389,10 +371,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -413,14 +391,14 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/5de661cc-f5b1-4046-acef-becce064337e?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/35d4883b-3370-40c5-a6aa-eefe6a1a8100?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"cc61e65d-b1f5-4640-acef-becce064337e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T15:57:04.7386589Z\"\n }" + string: "{\n \"name\": \"3b88d435-7033-c540-a6aa-eefe6a1a8100\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:19:19.2487492Z\"\n }" headers: cache-control: - no-cache @@ -429,7 +407,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 15:59:36 GMT + - Thu, 29 Jun 2023 10:21:49 GMT expires: - '-1' pragma: @@ -438,10 +416,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -462,14 +436,14 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/5de661cc-f5b1-4046-acef-becce064337e?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/35d4883b-3370-40c5-a6aa-eefe6a1a8100?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"cc61e65d-b1f5-4640-acef-becce064337e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T15:57:04.7386589Z\"\n }" + string: "{\n \"name\": \"3b88d435-7033-c540-a6aa-eefe6a1a8100\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:19:19.2487492Z\"\n }" headers: cache-control: - no-cache @@ -478,7 +452,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:00:06 GMT + - Thu, 29 Jun 2023 10:22:20 GMT expires: - '-1' pragma: @@ -487,10 +461,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -511,14 +481,14 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/5de661cc-f5b1-4046-acef-becce064337e?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/35d4883b-3370-40c5-a6aa-eefe6a1a8100?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"cc61e65d-b1f5-4640-acef-becce064337e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T15:57:04.7386589Z\"\n }" + string: "{\n \"name\": \"3b88d435-7033-c540-a6aa-eefe6a1a8100\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:19:19.2487492Z\"\n }" headers: cache-control: - no-cache @@ -527,7 +497,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:00:36 GMT + - Thu, 29 Jun 2023 10:22:50 GMT expires: - '-1' pragma: @@ -536,10 +506,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -560,14 +526,14 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/5de661cc-f5b1-4046-acef-becce064337e?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/35d4883b-3370-40c5-a6aa-eefe6a1a8100?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"cc61e65d-b1f5-4640-acef-becce064337e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T15:57:04.7386589Z\"\n }" + string: "{\n \"name\": \"3b88d435-7033-c540-a6aa-eefe6a1a8100\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:19:19.2487492Z\"\n }" headers: cache-control: - no-cache @@ -576,7 +542,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:01:06 GMT + - Thu, 29 Jun 2023 10:23:19 GMT expires: - '-1' pragma: @@ -585,10 +551,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -609,14 +571,14 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/5de661cc-f5b1-4046-acef-becce064337e?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/35d4883b-3370-40c5-a6aa-eefe6a1a8100?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"cc61e65d-b1f5-4640-acef-becce064337e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T15:57:04.7386589Z\"\n }" + string: "{\n \"name\": \"3b88d435-7033-c540-a6aa-eefe6a1a8100\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:19:19.2487492Z\"\n }" headers: cache-control: - no-cache @@ -625,7 +587,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:01:36 GMT + - Thu, 29 Jun 2023 10:23:49 GMT expires: - '-1' pragma: @@ -634,10 +596,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -658,15 +616,825 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/5de661cc-f5b1-4046-acef-becce064337e?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/35d4883b-3370-40c5-a6aa-eefe6a1a8100?api-version=2017-08-31 response: body: - 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 }" + string: "{\n \"name\": \"3b88d435-7033-c540-a6aa-eefe6a1a8100\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:19:19.2487492Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:24:19 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 --location --network-plugin --network-plugin-mode + --ssh-key-value --pod-cidr --node-count --network-dataplane --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/35d4883b-3370-40c5-a6aa-eefe6a1a8100?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"3b88d435-7033-c540-a6aa-eefe6a1a8100\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:19:19.2487492Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:24:50 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 --location --network-plugin --network-plugin-mode + --ssh-key-value --pod-cidr --node-count --network-dataplane --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/35d4883b-3370-40c5-a6aa-eefe6a1a8100?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"3b88d435-7033-c540-a6aa-eefe6a1a8100\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:19:19.2487492Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:25:20 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 --location --network-plugin --network-plugin-mode + --ssh-key-value --pod-cidr --node-count --network-dataplane --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/35d4883b-3370-40c5-a6aa-eefe6a1a8100?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"3b88d435-7033-c540-a6aa-eefe6a1a8100\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:19:19.2487492Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:25:50 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 --location --network-plugin --network-plugin-mode + --ssh-key-value --pod-cidr --node-count --network-dataplane --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/35d4883b-3370-40c5-a6aa-eefe6a1a8100?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"3b88d435-7033-c540-a6aa-eefe6a1a8100\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:19:19.2487492Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:26:21 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 --location --network-plugin --network-plugin-mode + --ssh-key-value --pod-cidr --node-count --network-dataplane --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/35d4883b-3370-40c5-a6aa-eefe6a1a8100?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"3b88d435-7033-c540-a6aa-eefe6a1a8100\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:19:19.2487492Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:26:50 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 --location --network-plugin --network-plugin-mode + --ssh-key-value --pod-cidr --node-count --network-dataplane --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/35d4883b-3370-40c5-a6aa-eefe6a1a8100?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"3b88d435-7033-c540-a6aa-eefe6a1a8100\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:19:19.2487492Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:27:20 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 --location --network-plugin --network-plugin-mode + --ssh-key-value --pod-cidr --node-count --network-dataplane --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/35d4883b-3370-40c5-a6aa-eefe6a1a8100?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"3b88d435-7033-c540-a6aa-eefe6a1a8100\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:19:19.2487492Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:27:50 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 --location --network-plugin --network-plugin-mode + --ssh-key-value --pod-cidr --node-count --network-dataplane --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/35d4883b-3370-40c5-a6aa-eefe6a1a8100?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"3b88d435-7033-c540-a6aa-eefe6a1a8100\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:19:19.2487492Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:28:20 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 --location --network-plugin --network-plugin-mode + --ssh-key-value --pod-cidr --node-count --network-dataplane --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/35d4883b-3370-40c5-a6aa-eefe6a1a8100?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"3b88d435-7033-c540-a6aa-eefe6a1a8100\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:19:19.2487492Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:28:51 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 --location --network-plugin --network-plugin-mode + --ssh-key-value --pod-cidr --node-count --network-dataplane --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/35d4883b-3370-40c5-a6aa-eefe6a1a8100?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"3b88d435-7033-c540-a6aa-eefe6a1a8100\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:19:19.2487492Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:29:21 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 --location --network-plugin --network-plugin-mode + --ssh-key-value --pod-cidr --node-count --network-dataplane --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/35d4883b-3370-40c5-a6aa-eefe6a1a8100?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"3b88d435-7033-c540-a6aa-eefe6a1a8100\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:19:19.2487492Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:29:51 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 --location --network-plugin --network-plugin-mode + --ssh-key-value --pod-cidr --node-count --network-dataplane --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/35d4883b-3370-40c5-a6aa-eefe6a1a8100?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"3b88d435-7033-c540-a6aa-eefe6a1a8100\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:19:19.2487492Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:30:21 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 --location --network-plugin --network-plugin-mode + --ssh-key-value --pod-cidr --node-count --network-dataplane --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/35d4883b-3370-40c5-a6aa-eefe6a1a8100?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"3b88d435-7033-c540-a6aa-eefe6a1a8100\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:19:19.2487492Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:30:52 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 --location --network-plugin --network-plugin-mode + --ssh-key-value --pod-cidr --node-count --network-dataplane --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/35d4883b-3370-40c5-a6aa-eefe6a1a8100?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"3b88d435-7033-c540-a6aa-eefe6a1a8100\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:19:19.2487492Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:31:22 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 --location --network-plugin --network-plugin-mode + --ssh-key-value --pod-cidr --node-count --network-dataplane --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/35d4883b-3370-40c5-a6aa-eefe6a1a8100?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"3b88d435-7033-c540-a6aa-eefe6a1a8100\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:19:19.2487492Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:31:52 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 --location --network-plugin --network-plugin-mode + --ssh-key-value --pod-cidr --node-count --network-dataplane --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/35d4883b-3370-40c5-a6aa-eefe6a1a8100?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"3b88d435-7033-c540-a6aa-eefe6a1a8100\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:19:19.2487492Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:32:22 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 --location --network-plugin --network-plugin-mode + --ssh-key-value --pod-cidr --node-count --network-dataplane --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/35d4883b-3370-40c5-a6aa-eefe6a1a8100?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"3b88d435-7033-c540-a6aa-eefe6a1a8100\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:19:19.2487492Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:32:51 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 --location --network-plugin --network-plugin-mode + --ssh-key-value --pod-cidr --node-count --network-dataplane --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/35d4883b-3370-40c5-a6aa-eefe6a1a8100?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"3b88d435-7033-c540-a6aa-eefe6a1a8100\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:19:19.2487492Z\",\n \"endTime\": + \"2023-06-29T10:33:04.8185784Z\"\n }" headers: cache-control: - no-cache @@ -675,7 +1443,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:02:06 GMT + - Thu, 29 Jun 2023 10:33:22 GMT expires: - '-1' pragma: @@ -684,10 +1452,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -708,68 +1472,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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-clitestaspluxhnj-79a739\",\n \"fqdn\": \"cliakstest-clitestaspluxhnj-79a739-j41b80kj.hcp.eastus.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestaspluxhnj-79a739-j41b80kj.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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_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/1ef64313-3e49-404b-97d1-fa9f8a40c638\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4432' + - '4103' content-type: - application/json date: - - Thu, 15 Jun 2023 16:02:07 GMT + - Thu, 29 Jun 2023 10:33:23 GMT expires: - '-1' pragma: @@ -778,10 +1540,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -803,8 +1561,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/cliakstest000001?api-version=2023-05-01 response: @@ -812,17 +1570,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/387189bd-d651-4ee4-9685-de51016df6a6?api-version=2017-08-31 cache-control: - no-cache content-length: - '0' date: - - Thu, 15 Jun 2023 16:02:08 GMT + - Thu, 29 Jun 2023 10:33:24 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operationresults/387189bd-d651-4ee4-9685-de51016df6a6?api-version=2017-08-31 pragma: - no-cache server: @@ -832,7 +1590,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_network_plugin_none.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_network_plugin_none.yaml index 4cc6d0051cc..553033e3be7 100644 --- 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 16:02:12 GMT + - Thu, 29 Jun 2023 10:33:25 GMT expires: - '-1' pragma: @@ -46,17 +46,18 @@ interactions: message: Not Found - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestgwa6ue3o2-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestjkzt6uujw-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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, + "networkProfile": {"networkPlugin": "none", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {}}}' headers: Accept: - application/json @@ -67,69 +68,67 @@ interactions: Connection: - keep-alive Content-Length: - - '1661' + - '1332' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --ssh-key-value --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestjkzt6uujw-79a739\",\n \"fqdn\": \"cliakstest-clitestjkzt6uujw-79a739-sezgaa2f.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestjkzt6uujw-79a739-sezgaa2f.portal.hcp.westus2.azmk8s.io\",\n + \ \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"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/6c24b318-319a-4304-b955-62599ec057c7?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/116f0feb-a9f1-4e39-a25b-8134edbfd5a4?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3605' + - '3276' content-type: - application/json date: - - Thu, 15 Jun 2023 16:02:20 GMT + - Thu, 29 Jun 2023 10:33:31 GMT expires: - '-1' pragma: @@ -141,7 +140,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -159,14 +158,14 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/116f0feb-a9f1-4e39-a25b-8134edbfd5a4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"18b3246c-9a31-0443-b955-62599ec057c7\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:02:20.1953505Z\"\n }" + string: "{\n \"name\": \"eb0f6f11-f1a9-394e-a25b-8134edbfd5a4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:33:31.8701191Z\"\n }" headers: cache-control: - no-cache @@ -175,7 +174,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:02:20 GMT + - Thu, 29 Jun 2023 10:33:31 GMT expires: - '-1' pragma: @@ -207,14 +206,14 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/116f0feb-a9f1-4e39-a25b-8134edbfd5a4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"18b3246c-9a31-0443-b955-62599ec057c7\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:02:20.1953505Z\"\n }" + string: "{\n \"name\": \"eb0f6f11-f1a9-394e-a25b-8134edbfd5a4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:33:31.8701191Z\"\n }" headers: cache-control: - no-cache @@ -223,7 +222,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:02:50 GMT + - Thu, 29 Jun 2023 10:34:01 GMT expires: - '-1' pragma: @@ -255,14 +254,14 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/116f0feb-a9f1-4e39-a25b-8134edbfd5a4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"18b3246c-9a31-0443-b955-62599ec057c7\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:02:20.1953505Z\"\n }" + string: "{\n \"name\": \"eb0f6f11-f1a9-394e-a25b-8134edbfd5a4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:33:31.8701191Z\"\n }" headers: cache-control: - no-cache @@ -271,7 +270,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:03:20 GMT + - Thu, 29 Jun 2023 10:34:32 GMT expires: - '-1' pragma: @@ -303,14 +302,14 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/116f0feb-a9f1-4e39-a25b-8134edbfd5a4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"18b3246c-9a31-0443-b955-62599ec057c7\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:02:20.1953505Z\"\n }" + string: "{\n \"name\": \"eb0f6f11-f1a9-394e-a25b-8134edbfd5a4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:33:31.8701191Z\"\n }" headers: cache-control: - no-cache @@ -319,7 +318,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:03:51 GMT + - Thu, 29 Jun 2023 10:35:02 GMT expires: - '-1' pragma: @@ -351,14 +350,14 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/116f0feb-a9f1-4e39-a25b-8134edbfd5a4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"18b3246c-9a31-0443-b955-62599ec057c7\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:02:20.1953505Z\"\n }" + string: "{\n \"name\": \"eb0f6f11-f1a9-394e-a25b-8134edbfd5a4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:33:31.8701191Z\"\n }" headers: cache-control: - no-cache @@ -367,7 +366,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:04:21 GMT + - Thu, 29 Jun 2023 10:35:33 GMT expires: - '-1' pragma: @@ -399,14 +398,14 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/116f0feb-a9f1-4e39-a25b-8134edbfd5a4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"18b3246c-9a31-0443-b955-62599ec057c7\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:02:20.1953505Z\"\n }" + string: "{\n \"name\": \"eb0f6f11-f1a9-394e-a25b-8134edbfd5a4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:33:31.8701191Z\"\n }" headers: cache-control: - no-cache @@ -415,7 +414,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:04:51 GMT + - Thu, 29 Jun 2023 10:36:02 GMT expires: - '-1' pragma: @@ -447,14 +446,14 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/116f0feb-a9f1-4e39-a25b-8134edbfd5a4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"18b3246c-9a31-0443-b955-62599ec057c7\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:02:20.1953505Z\"\n }" + string: "{\n \"name\": \"eb0f6f11-f1a9-394e-a25b-8134edbfd5a4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:33:31.8701191Z\"\n }" headers: cache-control: - no-cache @@ -463,7 +462,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:05:21 GMT + - Thu, 29 Jun 2023 10:36:32 GMT expires: - '-1' pragma: @@ -495,14 +494,14 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/116f0feb-a9f1-4e39-a25b-8134edbfd5a4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"18b3246c-9a31-0443-b955-62599ec057c7\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:02:20.1953505Z\"\n }" + string: "{\n \"name\": \"eb0f6f11-f1a9-394e-a25b-8134edbfd5a4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:33:31.8701191Z\"\n }" headers: cache-control: - no-cache @@ -511,7 +510,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:05:51 GMT + - Thu, 29 Jun 2023 10:37:03 GMT expires: - '-1' pragma: @@ -543,14 +542,14 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/116f0feb-a9f1-4e39-a25b-8134edbfd5a4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"18b3246c-9a31-0443-b955-62599ec057c7\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:02:20.1953505Z\"\n }" + string: "{\n \"name\": \"eb0f6f11-f1a9-394e-a25b-8134edbfd5a4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:33:31.8701191Z\"\n }" headers: cache-control: - no-cache @@ -559,7 +558,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:06:22 GMT + - Thu, 29 Jun 2023 10:37:33 GMT expires: - '-1' pragma: @@ -591,14 +590,14 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/116f0feb-a9f1-4e39-a25b-8134edbfd5a4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"18b3246c-9a31-0443-b955-62599ec057c7\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:02:20.1953505Z\"\n }" + string: "{\n \"name\": \"eb0f6f11-f1a9-394e-a25b-8134edbfd5a4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:33:31.8701191Z\"\n }" headers: cache-control: - no-cache @@ -607,7 +606,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:06:52 GMT + - Thu, 29 Jun 2023 10:38:03 GMT expires: - '-1' pragma: @@ -639,15 +638,351 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/116f0feb-a9f1-4e39-a25b-8134edbfd5a4?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"eb0f6f11-f1a9-394e-a25b-8134edbfd5a4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:33:31.8701191Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:38: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 --ssh-key-value --network-plugin + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/116f0feb-a9f1-4e39-a25b-8134edbfd5a4?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"eb0f6f11-f1a9-394e-a25b-8134edbfd5a4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:33:31.8701191Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:39: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 --ssh-key-value --network-plugin + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/116f0feb-a9f1-4e39-a25b-8134edbfd5a4?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"eb0f6f11-f1a9-394e-a25b-8134edbfd5a4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:33:31.8701191Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:39: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 --ssh-key-value --network-plugin + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/116f0feb-a9f1-4e39-a25b-8134edbfd5a4?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"eb0f6f11-f1a9-394e-a25b-8134edbfd5a4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:33:31.8701191Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:40: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 --ssh-key-value --network-plugin + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/116f0feb-a9f1-4e39-a25b-8134edbfd5a4?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"eb0f6f11-f1a9-394e-a25b-8134edbfd5a4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:33:31.8701191Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:40: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 --ssh-key-value --network-plugin + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/116f0feb-a9f1-4e39-a25b-8134edbfd5a4?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"eb0f6f11-f1a9-394e-a25b-8134edbfd5a4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:33:31.8701191Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:41: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 --ssh-key-value --network-plugin + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/116f0feb-a9f1-4e39-a25b-8134edbfd5a4?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"eb0f6f11-f1a9-394e-a25b-8134edbfd5a4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:33:31.8701191Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:41: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 --ssh-key-value --network-plugin + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/116f0feb-a9f1-4e39-a25b-8134edbfd5a4?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"eb0f6f11-f1a9-394e-a25b-8134edbfd5a4\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:33:31.8701191Z\",\n \"endTime\": + \"2023-06-29T10:42:01.5773036Z\"\n }" headers: cache-control: - no-cache @@ -656,7 +991,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:07:22 GMT + - Thu, 29 Jun 2023 10:42:05 GMT expires: - '-1' pragma: @@ -688,66 +1023,63 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestjkzt6uujw-79a739\",\n \"fqdn\": \"cliakstest-clitestjkzt6uujw-79a739-sezgaa2f.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestjkzt6uujw-79a739-sezgaa2f.portal.hcp.westus2.azmk8s.io\",\n + \ \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"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/ff5bd600-a59b-4af0-96ec-f7ddc999db58\"\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: - - '4258' + - '3929' content-type: - application/json date: - - Thu, 15 Jun 2023 16:07:23 GMT + - Thu, 29 Jun 2023 10:42:06 GMT expires: - '-1' pragma: @@ -781,8 +1113,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -790,17 +1122,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/deb3f013-dd3d-49ba-8b1f-a83b979c445e?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 15 Jun 2023 16:07:26 GMT + - Thu, 29 Jun 2023 10:42:06 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/deb3f013-dd3d-49ba-8b1f-a83b979c445e?api-version=2016-03-30 pragma: - no-cache server: @@ -810,7 +1142,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_node_config.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_node_config.yaml index bd6b4d45cda..3c279022761 100644 --- 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 16:07:32 GMT + - Thu, 29 Jun 2023 10:42:10 GMT expires: - '-1' pragma: @@ -60,12 +60,12 @@ interactions: - --resource-group --name --kubelet-config --linux-os-config --aks-custom-headers --ssh-key-value -o User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1039-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_node_config","date":"2023-06-15T16:07:30Z","module":"acs"},"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-29T10:42:09Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -74,7 +74,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 16:07:32 GMT + - Thu, 29 Jun 2023 10:42:10 GMT expires: - '-1' pragma: @@ -90,7 +90,7 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestw2i3agoea-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest4n4yj7ntn-79a739", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": @@ -103,11 +103,12 @@ interactions: "transparentHugePageEnabled": "madvise", "transparentHugePageDefrag": "defer+madvise", "swapFileSizeMB": 1500}, "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": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {}}}' headers: AKSHTTPCustomFeatures: - Microsoft.ContainerService/CustomNodeConfigPreview @@ -120,79 +121,76 @@ interactions: Connection: - keep-alive Content-Length: - - '2257' + - '1928' Content-Type: - application/json ParameterSetName: - --resource-group --name --kubelet-config --linux-os-config --aks-custom-headers --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitest4n4yj7ntn-79a739\",\n \"fqdn\": \"cliakstest-clitest4n4yj7ntn-79a739-2fzan6jf.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest4n4yj7ntn-79a739-2fzan6jf.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"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/cd33c00b-790e-4865-9111-dca90f128d19?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/012bb276-bf51-461e-9a0b-4ce560cf5d8b?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4249' + - '3920' content-type: - application/json date: - - Thu, 15 Jun 2023 16:07:39 GMT + - Thu, 29 Jun 2023 10:42:17 GMT expires: - '-1' pragma: @@ -204,7 +202,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -223,14 +221,14 @@ interactions: - --resource-group --name --kubelet-config --linux-os-config --aks-custom-headers --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/012bb276-bf51-461e-9a0b-4ce560cf5d8b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0bc033cd-0e79-6548-9111-dca90f128d19\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:07:39.0866423Z\"\n }" + string: "{\n \"name\": \"76b22b01-51bf-1e46-9a0b-4ce560cf5d8b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:42:17.4336822Z\"\n }" headers: cache-control: - no-cache @@ -239,7 +237,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:07:39 GMT + - Thu, 29 Jun 2023 10:42:18 GMT expires: - '-1' pragma: @@ -272,14 +270,14 @@ interactions: - --resource-group --name --kubelet-config --linux-os-config --aks-custom-headers --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/012bb276-bf51-461e-9a0b-4ce560cf5d8b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0bc033cd-0e79-6548-9111-dca90f128d19\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:07:39.0866423Z\"\n }" + string: "{\n \"name\": \"76b22b01-51bf-1e46-9a0b-4ce560cf5d8b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:42:17.4336822Z\"\n }" headers: cache-control: - no-cache @@ -288,7 +286,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:08:10 GMT + - Thu, 29 Jun 2023 10:42:47 GMT expires: - '-1' pragma: @@ -321,14 +319,14 @@ interactions: - --resource-group --name --kubelet-config --linux-os-config --aks-custom-headers --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/012bb276-bf51-461e-9a0b-4ce560cf5d8b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0bc033cd-0e79-6548-9111-dca90f128d19\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:07:39.0866423Z\"\n }" + string: "{\n \"name\": \"76b22b01-51bf-1e46-9a0b-4ce560cf5d8b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:42:17.4336822Z\"\n }" headers: cache-control: - no-cache @@ -337,7 +335,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:08:40 GMT + - Thu, 29 Jun 2023 10:43:18 GMT expires: - '-1' pragma: @@ -370,14 +368,14 @@ interactions: - --resource-group --name --kubelet-config --linux-os-config --aks-custom-headers --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/012bb276-bf51-461e-9a0b-4ce560cf5d8b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0bc033cd-0e79-6548-9111-dca90f128d19\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:07:39.0866423Z\"\n }" + string: "{\n \"name\": \"76b22b01-51bf-1e46-9a0b-4ce560cf5d8b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:42:17.4336822Z\"\n }" headers: cache-control: - no-cache @@ -386,7 +384,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:09:10 GMT + - Thu, 29 Jun 2023 10:43:47 GMT expires: - '-1' pragma: @@ -419,14 +417,14 @@ interactions: - --resource-group --name --kubelet-config --linux-os-config --aks-custom-headers --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/012bb276-bf51-461e-9a0b-4ce560cf5d8b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0bc033cd-0e79-6548-9111-dca90f128d19\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:07:39.0866423Z\"\n }" + string: "{\n \"name\": \"76b22b01-51bf-1e46-9a0b-4ce560cf5d8b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:42:17.4336822Z\"\n }" headers: cache-control: - no-cache @@ -435,7 +433,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:09:40 GMT + - Thu, 29 Jun 2023 10:44:17 GMT expires: - '-1' pragma: @@ -468,14 +466,14 @@ interactions: - --resource-group --name --kubelet-config --linux-os-config --aks-custom-headers --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/012bb276-bf51-461e-9a0b-4ce560cf5d8b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0bc033cd-0e79-6548-9111-dca90f128d19\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:07:39.0866423Z\"\n }" + string: "{\n \"name\": \"76b22b01-51bf-1e46-9a0b-4ce560cf5d8b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:42:17.4336822Z\"\n }" headers: cache-control: - no-cache @@ -484,7 +482,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:10:10 GMT + - Thu, 29 Jun 2023 10:44:48 GMT expires: - '-1' pragma: @@ -517,15 +515,211 @@ interactions: - --resource-group --name --kubelet-config --linux-os-config --aks-custom-headers --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/012bb276-bf51-461e-9a0b-4ce560cf5d8b?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"76b22b01-51bf-1e46-9a0b-4ce560cf5d8b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:42:17.4336822Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:45: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 --kubelet-config --linux-os-config --aks-custom-headers + --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/012bb276-bf51-461e-9a0b-4ce560cf5d8b?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"76b22b01-51bf-1e46-9a0b-4ce560cf5d8b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:42:17.4336822Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:45: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 --kubelet-config --linux-os-config --aks-custom-headers + --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/012bb276-bf51-461e-9a0b-4ce560cf5d8b?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"76b22b01-51bf-1e46-9a0b-4ce560cf5d8b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:42:17.4336822Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:46: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 --kubelet-config --linux-os-config --aks-custom-headers + --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/012bb276-bf51-461e-9a0b-4ce560cf5d8b?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"76b22b01-51bf-1e46-9a0b-4ce560cf5d8b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:42:17.4336822Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:46: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 --kubelet-config --linux-os-config --aks-custom-headers + --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/012bb276-bf51-461e-9a0b-4ce560cf5d8b?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"76b22b01-51bf-1e46-9a0b-4ce560cf5d8b\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:42:17.4336822Z\",\n \"endTime\": + \"2023-06-29T10:47:14.5368458Z\"\n }" headers: cache-control: - no-cache @@ -534,7 +728,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:10:40 GMT + - Thu, 29 Jun 2023 10:47:18 GMT expires: - '-1' pragma: @@ -567,75 +761,71 @@ interactions: - --resource-group --name --kubelet-config --linux-os-config --aks-custom-headers --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitest4n4yj7ntn-79a739\",\n \"fqdn\": \"cliakstest-clitest4n4yj7ntn-79a739-2fzan6jf.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest4n4yj7ntn-79a739-2fzan6jf.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/ef567bd1-f85c-4918-bcf3-9f9ac7c824fd\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4902' + - '4573' content-type: - application/json date: - - Thu, 15 Jun 2023 16:10:41 GMT + - Thu, 29 Jun 2023 10:47:19 GMT expires: - '-1' pragma: @@ -668,34 +858,33 @@ interactions: - --resource-group --cluster-name --name --node-count --kubelet-config --linux-os-config --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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\": 3,\n \"vmSize\": \"Standard_DS2_v2\"\ - ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ - kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ - ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"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 }" + 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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache @@ -704,7 +893,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:10:42 GMT + - Thu, 29 Jun 2023 10:47:21 GMT expires: - '-1' pragma: @@ -754,36 +943,35 @@ interactions: - --resource-group --cluster-name --name --node-count --kubelet-config --linux-os-config --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.19.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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5aa71c12-8731-411f-84c4-4596003ccb18?api-version=2016-03-30 cache-control: - no-cache content-length: @@ -791,7 +979,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:10:48 GMT + - Thu, 29 Jun 2023 10:47:24 GMT expires: - '-1' pragma: @@ -803,7 +991,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -822,14 +1010,14 @@ interactions: - --resource-group --cluster-name --name --node-count --kubelet-config --linux-os-config --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5aa71c12-8731-411f-84c4-4596003ccb18?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1ef0ae0c-128e-834c-9f20-90773b02fe56\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:10:48.8528133Z\"\n }" + string: "{\n \"name\": \"121ca75a-3187-1f41-84c4-4596003ccb18\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:47:25.3876784Z\"\n }" headers: cache-control: - no-cache @@ -838,7 +1026,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:10:48 GMT + - Thu, 29 Jun 2023 10:47:24 GMT expires: - '-1' pragma: @@ -871,14 +1059,14 @@ interactions: - --resource-group --cluster-name --name --node-count --kubelet-config --linux-os-config --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5aa71c12-8731-411f-84c4-4596003ccb18?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1ef0ae0c-128e-834c-9f20-90773b02fe56\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:10:48.8528133Z\"\n }" + string: "{\n \"name\": \"121ca75a-3187-1f41-84c4-4596003ccb18\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:47:25.3876784Z\"\n }" headers: cache-control: - no-cache @@ -887,7 +1075,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:11:19 GMT + - Thu, 29 Jun 2023 10:47:55 GMT expires: - '-1' pragma: @@ -920,14 +1108,14 @@ interactions: - --resource-group --cluster-name --name --node-count --kubelet-config --linux-os-config --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5aa71c12-8731-411f-84c4-4596003ccb18?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1ef0ae0c-128e-834c-9f20-90773b02fe56\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:10:48.8528133Z\"\n }" + string: "{\n \"name\": \"121ca75a-3187-1f41-84c4-4596003ccb18\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:47:25.3876784Z\"\n }" headers: cache-control: - no-cache @@ -936,7 +1124,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:11:48 GMT + - Thu, 29 Jun 2023 10:48:25 GMT expires: - '-1' pragma: @@ -969,14 +1157,14 @@ interactions: - --resource-group --cluster-name --name --node-count --kubelet-config --linux-os-config --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5aa71c12-8731-411f-84c4-4596003ccb18?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1ef0ae0c-128e-834c-9f20-90773b02fe56\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:10:48.8528133Z\"\n }" + string: "{\n \"name\": \"121ca75a-3187-1f41-84c4-4596003ccb18\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:47:25.3876784Z\"\n }" headers: cache-control: - no-cache @@ -985,7 +1173,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:12:18 GMT + - Thu, 29 Jun 2023 10:48:55 GMT expires: - '-1' pragma: @@ -1018,14 +1206,14 @@ interactions: - --resource-group --cluster-name --name --node-count --kubelet-config --linux-os-config --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5aa71c12-8731-411f-84c4-4596003ccb18?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1ef0ae0c-128e-834c-9f20-90773b02fe56\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:10:48.8528133Z\"\n }" + string: "{\n \"name\": \"121ca75a-3187-1f41-84c4-4596003ccb18\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:47:25.3876784Z\"\n }" headers: cache-control: - no-cache @@ -1034,7 +1222,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:12:48 GMT + - Thu, 29 Jun 2023 10:49:25 GMT expires: - '-1' pragma: @@ -1067,14 +1255,14 @@ interactions: - --resource-group --cluster-name --name --node-count --kubelet-config --linux-os-config --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5aa71c12-8731-411f-84c4-4596003ccb18?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1ef0ae0c-128e-834c-9f20-90773b02fe56\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:10:48.8528133Z\"\n }" + string: "{\n \"name\": \"121ca75a-3187-1f41-84c4-4596003ccb18\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:47:25.3876784Z\"\n }" headers: cache-control: - no-cache @@ -1083,7 +1271,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:13:19 GMT + - Thu, 29 Jun 2023 10:49:55 GMT expires: - '-1' pragma: @@ -1116,14 +1304,14 @@ interactions: - --resource-group --cluster-name --name --node-count --kubelet-config --linux-os-config --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5aa71c12-8731-411f-84c4-4596003ccb18?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1ef0ae0c-128e-834c-9f20-90773b02fe56\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:10:48.8528133Z\"\n }" + string: "{\n \"name\": \"121ca75a-3187-1f41-84c4-4596003ccb18\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:47:25.3876784Z\"\n }" headers: cache-control: - no-cache @@ -1132,7 +1320,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:13:49 GMT + - Thu, 29 Jun 2023 10:50:25 GMT expires: - '-1' pragma: @@ -1165,15 +1353,15 @@ interactions: - --resource-group --cluster-name --name --node-count --kubelet-config --linux-os-config --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5aa71c12-8731-411f-84c4-4596003ccb18?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"121ca75a-3187-1f41-84c4-4596003ccb18\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:47:25.3876784Z\",\n \"endTime\": + \"2023-06-29T10:50:27.9267651Z\"\n }" headers: cache-control: - no-cache @@ -1182,7 +1370,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:14:19 GMT + - Thu, 29 Jun 2023 10:50:55 GMT expires: - '-1' pragma: @@ -1215,33 +1403,32 @@ interactions: - --resource-group --cluster-name --name --node-count --kubelet-config --linux-os-config --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/nodepool2?api-version=2023-05-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.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 }" + 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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -1250,7 +1437,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:14:20 GMT + - Thu, 29 Jun 2023 10:50:56 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 index d509dc0bf9b..74ac41e7142 100644 --- 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 16:14:25 GMT + - Thu, 29 Jun 2023 10:19:36 GMT expires: - '-1' pragma: @@ -46,18 +46,18 @@ interactions: code: 404 message: Not Found - request: - body: '{"location": "centraluseuap", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestqawa27uor-8ecadf", + body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestulxoj7mwf-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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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", + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: @@ -72,71 +72,69 @@ interactions: Connection: - keep-alive Content-Length: - - '1797' + - '1462' 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - 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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestulxoj7mwf-79a739\",\n \"fqdn\": \"cliakstest-clitestulxoj7mwf-79a739-vhuyoilc.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestulxoj7mwf-79a739-vhuyoilc.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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\": true,\n + \ \"issuerURL\": \"https://westus2.oic.prod-aks.azure.com/72f988bf-86f1-41af-91ab-2d7cd011db47/0328c7fa-e740-4752-af1c-182a774aacc7/\"\n + \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": + \"SystemAssigned\",\n \"principalId\":\"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/1335454d-29d3-473e-9691-7f4ee36be0b7?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fe62827a-6931-4fd2-8f8a-62855f18a325?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3759' + - '3400' content-type: - application/json date: - - Thu, 15 Jun 2023 16:14:31 GMT + - Thu, 29 Jun 2023 10:19:49 GMT expires: - '-1' pragma: @@ -148,7 +146,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -167,14 +165,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --aks-custom-headers --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/1335454d-29d3-473e-9691-7f4ee36be0b7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fe62827a-6931-4fd2-8f8a-62855f18a325?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4d453513-d329-3e47-9691-7f4ee36be0b7\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:14:31.4713933Z\"\n }" + string: "{\n \"name\": \"7a8262fe-3169-d24f-8f8a-62855f18a325\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:19:48.9773342Z\"\n }" headers: cache-control: - no-cache @@ -183,7 +181,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:14:31 GMT + - Thu, 29 Jun 2023 10:19:49 GMT expires: - '-1' pragma: @@ -216,14 +214,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --aks-custom-headers --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/1335454d-29d3-473e-9691-7f4ee36be0b7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fe62827a-6931-4fd2-8f8a-62855f18a325?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4d453513-d329-3e47-9691-7f4ee36be0b7\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:14:31.4713933Z\"\n }" + string: "{\n \"name\": \"7a8262fe-3169-d24f-8f8a-62855f18a325\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:19:48.9773342Z\"\n }" headers: cache-control: - no-cache @@ -232,7 +230,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:15:01 GMT + - Thu, 29 Jun 2023 10:20:20 GMT expires: - '-1' pragma: @@ -265,14 +263,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --aks-custom-headers --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/1335454d-29d3-473e-9691-7f4ee36be0b7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fe62827a-6931-4fd2-8f8a-62855f18a325?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4d453513-d329-3e47-9691-7f4ee36be0b7\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:14:31.4713933Z\"\n }" + string: "{\n \"name\": \"7a8262fe-3169-d24f-8f8a-62855f18a325\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:19:48.9773342Z\"\n }" headers: cache-control: - no-cache @@ -281,7 +279,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:15:32 GMT + - Thu, 29 Jun 2023 10:20:50 GMT expires: - '-1' pragma: @@ -314,14 +312,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --aks-custom-headers --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/1335454d-29d3-473e-9691-7f4ee36be0b7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fe62827a-6931-4fd2-8f8a-62855f18a325?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4d453513-d329-3e47-9691-7f4ee36be0b7\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:14:31.4713933Z\"\n }" + string: "{\n \"name\": \"7a8262fe-3169-d24f-8f8a-62855f18a325\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:19:48.9773342Z\"\n }" headers: cache-control: - no-cache @@ -330,7 +328,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:16:01 GMT + - Thu, 29 Jun 2023 10:21:20 GMT expires: - '-1' pragma: @@ -363,14 +361,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --aks-custom-headers --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/1335454d-29d3-473e-9691-7f4ee36be0b7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fe62827a-6931-4fd2-8f8a-62855f18a325?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4d453513-d329-3e47-9691-7f4ee36be0b7\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:14:31.4713933Z\"\n }" + string: "{\n \"name\": \"7a8262fe-3169-d24f-8f8a-62855f18a325\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:19:48.9773342Z\"\n }" headers: cache-control: - no-cache @@ -379,7 +377,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:16:31 GMT + - Thu, 29 Jun 2023 10:21:49 GMT expires: - '-1' pragma: @@ -412,14 +410,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --aks-custom-headers --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/1335454d-29d3-473e-9691-7f4ee36be0b7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fe62827a-6931-4fd2-8f8a-62855f18a325?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4d453513-d329-3e47-9691-7f4ee36be0b7\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:14:31.4713933Z\"\n }" + string: "{\n \"name\": \"7a8262fe-3169-d24f-8f8a-62855f18a325\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:19:48.9773342Z\"\n }" headers: cache-control: - no-cache @@ -428,7 +426,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:17:02 GMT + - Thu, 29 Jun 2023 10:22:19 GMT expires: - '-1' pragma: @@ -461,14 +459,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --aks-custom-headers --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/1335454d-29d3-473e-9691-7f4ee36be0b7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fe62827a-6931-4fd2-8f8a-62855f18a325?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4d453513-d329-3e47-9691-7f4ee36be0b7\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:14:31.4713933Z\"\n }" + string: "{\n \"name\": \"7a8262fe-3169-d24f-8f8a-62855f18a325\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:19:48.9773342Z\"\n }" headers: cache-control: - no-cache @@ -477,7 +475,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:17:32 GMT + - Thu, 29 Jun 2023 10:22:50 GMT expires: - '-1' pragma: @@ -510,14 +508,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --aks-custom-headers --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/1335454d-29d3-473e-9691-7f4ee36be0b7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fe62827a-6931-4fd2-8f8a-62855f18a325?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4d453513-d329-3e47-9691-7f4ee36be0b7\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:14:31.4713933Z\"\n }" + string: "{\n \"name\": \"7a8262fe-3169-d24f-8f8a-62855f18a325\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:19:48.9773342Z\"\n }" headers: cache-control: - no-cache @@ -526,7 +524,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:18:02 GMT + - Thu, 29 Jun 2023 10:23:20 GMT expires: - '-1' pragma: @@ -559,15 +557,113 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --aks-custom-headers --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/1335454d-29d3-473e-9691-7f4ee36be0b7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fe62827a-6931-4fd2-8f8a-62855f18a325?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"7a8262fe-3169-d24f-8f8a-62855f18a325\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:19:48.9773342Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:23: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 --enable-managed-identity --enable-oidc-issuer + --aks-custom-headers --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fe62827a-6931-4fd2-8f8a-62855f18a325?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"7a8262fe-3169-d24f-8f8a-62855f18a325\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:19:48.9773342Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:24: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 --enable-managed-identity --enable-oidc-issuer + --aks-custom-headers --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fe62827a-6931-4fd2-8f8a-62855f18a325?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"7a8262fe-3169-d24f-8f8a-62855f18a325\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:19:48.9773342Z\",\n \"endTime\": + \"2023-06-29T10:24:47.6044359Z\"\n }" headers: cache-control: - no-cache @@ -576,7 +672,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:18:32 GMT + - Thu, 29 Jun 2023 10:24:50 GMT expires: - '-1' pragma: @@ -609,67 +705,64 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --aks-custom-headers --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - 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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-clitestulxoj7mwf-79a739\",\n \"fqdn\": \"cliakstest-clitestulxoj7mwf-79a739-vhuyoilc.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestulxoj7mwf-79a739-vhuyoilc.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/cd655aa8-73c2-4d64-82b7-4ca2a6f146d5\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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/0328c7fa-e740-4752-af1c-182a774aacc7/\"\n + \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": + \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4424' + - '4053' content-type: - application/json date: - - Thu, 15 Jun 2023 16:18:32 GMT + - Thu, 29 Jun 2023 10:24:51 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 f2d3e9aefab..2500249d7c7 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 16:18:37 GMT + - Thu, 29 Jun 2023 10:24:57 GMT expires: - '-1' pragma: @@ -58,12 +58,12 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1039-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_openservicemesh_addon","date":"2023-06-15T16:18:35Z","module":"acs"},"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-29T10:24:56Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -72,7 +72,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 16:18:37 GMT + - Thu, 29 Jun 2023 10:24:57 GMT expires: - '-1' pragma: @@ -88,19 +88,19 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestsosqgakuw-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestmhhcj7afq-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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, + "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -111,70 +111,68 @@ interactions: Connection: - keep-alive Content-Length: - - '1801' + - '1472' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestmhhcj7afq-79a739\",\n \"fqdn\": \"cliakstest-clitestmhhcj7afq-79a739-ylrpltvc.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestmhhcj7afq-79a739-ylrpltvc.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"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/065c5089-6237-49af-99f7-0b6c96c76dcf?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7f1bb062-0e95-47e7-8b87-5b7b3fcc51fd?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3697' + - '3368' content-type: - application/json date: - - Thu, 15 Jun 2023 16:18:46 GMT + - Thu, 29 Jun 2023 10:25:03 GMT expires: - '-1' pragma: @@ -204,14 +202,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7f1bb062-0e95-47e7-8b87-5b7b3fcc51fd?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 }" + string: "{\n \"name\": \"62b01b7f-950e-e747-8b87-5b7b3fcc51fd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:25:03.8373062Z\"\n }" headers: cache-control: - no-cache @@ -220,7 +218,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:18:46 GMT + - Thu, 29 Jun 2023 10:25:04 GMT expires: - '-1' pragma: @@ -252,14 +250,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7f1bb062-0e95-47e7-8b87-5b7b3fcc51fd?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 }" + string: "{\n \"name\": \"62b01b7f-950e-e747-8b87-5b7b3fcc51fd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:25:03.8373062Z\"\n }" headers: cache-control: - no-cache @@ -268,7 +266,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:19:16 GMT + - Thu, 29 Jun 2023 10:25:34 GMT expires: - '-1' pragma: @@ -300,14 +298,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7f1bb062-0e95-47e7-8b87-5b7b3fcc51fd?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 }" + string: "{\n \"name\": \"62b01b7f-950e-e747-8b87-5b7b3fcc51fd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:25:03.8373062Z\"\n }" headers: cache-control: - no-cache @@ -316,7 +314,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:19:46 GMT + - Thu, 29 Jun 2023 10:26:05 GMT expires: - '-1' pragma: @@ -348,14 +346,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7f1bb062-0e95-47e7-8b87-5b7b3fcc51fd?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 }" + string: "{\n \"name\": \"62b01b7f-950e-e747-8b87-5b7b3fcc51fd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:25:03.8373062Z\"\n }" headers: cache-control: - no-cache @@ -364,7 +362,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:20:16 GMT + - Thu, 29 Jun 2023 10:26:35 GMT expires: - '-1' pragma: @@ -396,14 +394,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7f1bb062-0e95-47e7-8b87-5b7b3fcc51fd?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 }" + string: "{\n \"name\": \"62b01b7f-950e-e747-8b87-5b7b3fcc51fd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:25:03.8373062Z\"\n }" headers: cache-control: - no-cache @@ -412,7 +410,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:20:47 GMT + - Thu, 29 Jun 2023 10:27:05 GMT expires: - '-1' pragma: @@ -444,14 +442,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7f1bb062-0e95-47e7-8b87-5b7b3fcc51fd?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 }" + string: "{\n \"name\": \"62b01b7f-950e-e747-8b87-5b7b3fcc51fd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:25:03.8373062Z\"\n }" headers: cache-control: - no-cache @@ -460,7 +458,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:21:17 GMT + - Thu, 29 Jun 2023 10:27:35 GMT expires: - '-1' pragma: @@ -492,14 +490,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7f1bb062-0e95-47e7-8b87-5b7b3fcc51fd?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 }" + string: "{\n \"name\": \"62b01b7f-950e-e747-8b87-5b7b3fcc51fd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:25:03.8373062Z\"\n }" headers: cache-control: - no-cache @@ -508,7 +506,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:21:47 GMT + - Thu, 29 Jun 2023 10:28:05 GMT expires: - '-1' pragma: @@ -540,14 +538,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7f1bb062-0e95-47e7-8b87-5b7b3fcc51fd?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 }" + string: "{\n \"name\": \"62b01b7f-950e-e747-8b87-5b7b3fcc51fd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:25:03.8373062Z\"\n }" headers: cache-control: - no-cache @@ -556,7 +554,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:22:17 GMT + - Thu, 29 Jun 2023 10:28:35 GMT expires: - '-1' pragma: @@ -588,24 +586,120 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7f1bb062-0e95-47e7-8b87-5b7b3fcc51fd?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 }" + string: "{\n \"name\": \"62b01b7f-950e-e747-8b87-5b7b3fcc51fd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:25:03.8373062Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:29: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 --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7f1bb062-0e95-47e7-8b87-5b7b3fcc51fd?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"62b01b7f-950e-e747-8b87-5b7b3fcc51fd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:25:03.8373062Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:29: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 --enable-managed-identity -a --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7f1bb062-0e95-47e7-8b87-5b7b3fcc51fd?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"62b01b7f-950e-e747-8b87-5b7b3fcc51fd\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:25:03.8373062Z\",\n \"endTime\": + \"2023-06-29T10:29:57.824033Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '169' content-type: - application/json date: - - Thu, 15 Jun 2023 16:22:47 GMT + - Thu, 29 Jun 2023 10:30:06 GMT expires: - '-1' pragma: @@ -637,67 +731,64 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestmhhcj7afq-79a739\",\n \"fqdn\": \"cliakstest-clitestmhhcj7afq-79a739-ylrpltvc.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestmhhcj7afq-79a739-ylrpltvc.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d8accd7a-94f4-448b-bc2b-53fb62bda97a\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4350' + - '4021' content-type: - application/json date: - - Thu, 15 Jun 2023 16:22:47 GMT + - Thu, 29 Jun 2023 10:30:06 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 a8f58d9ccb8..e1aea5456e4 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 16:22:52 GMT + - Thu, 29 Jun 2023 10:30:09 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.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1039-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":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_aks_create_with_ossku","date":"2023-06-15T16:22:51Z","module":"acs"},"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_ossku","date":"2023-06-29T10:30:08Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '355' + - '356' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 16:22:52 GMT + - Thu, 29 Jun 2023 10:30:09 GMT expires: - '-1' pragma: @@ -87,8 +87,8 @@ interactions: code: 200 message: OK - request: - body: '{"location": "eastus", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestnljo6pab3-8ecadf", + body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestzadgfv5j5-79a739", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": @@ -96,11 +96,12 @@ interactions: "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": {}}}' + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {}}}' headers: Accept: - application/json @@ -111,69 +112,67 @@ interactions: Connection: - keep-alive Content-Length: - - '1769' + - '1441' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestzadgfv5j5-79a739\",\n \"fqdn\": \"cliakstest-clitestzadgfv5j5-79a739-eu0iyirn.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestzadgfv5j5-79a739-eu0iyirn.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"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/ea422dc1-3aa1-43e0-b3ca-17489a1bdd4b?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/49877c11-4537-456a-a2e8-0f401b7dd4f3?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3592' + - '3267' content-type: - application/json date: - - Thu, 15 Jun 2023 16:22:58 GMT + - Thu, 29 Jun 2023 10:30:15 GMT expires: - '-1' pragma: @@ -185,7 +184,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -203,14 +202,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/ea422dc1-3aa1-43e0-b3ca-17489a1bdd4b?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/49877c11-4537-456a-a2e8-0f401b7dd4f3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c12d42ea-a13a-e043-b3ca-17489a1bdd4b\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:22:58.4410852Z\"\n }" + string: "{\n \"name\": \"117c8749-3745-6a45-a2e8-0f401b7dd4f3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:30:15.6977728Z\"\n }" headers: cache-control: - no-cache @@ -219,7 +218,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:22:58 GMT + - Thu, 29 Jun 2023 10:30:15 GMT expires: - '-1' pragma: @@ -251,14 +250,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/ea422dc1-3aa1-43e0-b3ca-17489a1bdd4b?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/49877c11-4537-456a-a2e8-0f401b7dd4f3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c12d42ea-a13a-e043-b3ca-17489a1bdd4b\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:22:58.4410852Z\"\n }" + string: "{\n \"name\": \"117c8749-3745-6a45-a2e8-0f401b7dd4f3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:30:15.6977728Z\"\n }" headers: cache-control: - no-cache @@ -267,7 +266,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:23:28 GMT + - Thu, 29 Jun 2023 10:30:46 GMT expires: - '-1' pragma: @@ -299,14 +298,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/ea422dc1-3aa1-43e0-b3ca-17489a1bdd4b?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/49877c11-4537-456a-a2e8-0f401b7dd4f3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c12d42ea-a13a-e043-b3ca-17489a1bdd4b\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:22:58.4410852Z\"\n }" + string: "{\n \"name\": \"117c8749-3745-6a45-a2e8-0f401b7dd4f3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:30:15.6977728Z\"\n }" headers: cache-control: - no-cache @@ -315,7 +314,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:23:58 GMT + - Thu, 29 Jun 2023 10:31:16 GMT expires: - '-1' pragma: @@ -347,14 +346,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/ea422dc1-3aa1-43e0-b3ca-17489a1bdd4b?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/49877c11-4537-456a-a2e8-0f401b7dd4f3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c12d42ea-a13a-e043-b3ca-17489a1bdd4b\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:22:58.4410852Z\"\n }" + string: "{\n \"name\": \"117c8749-3745-6a45-a2e8-0f401b7dd4f3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:30:15.6977728Z\"\n }" headers: cache-control: - no-cache @@ -363,7 +362,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:24:28 GMT + - Thu, 29 Jun 2023 10:31:46 GMT expires: - '-1' pragma: @@ -395,14 +394,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/ea422dc1-3aa1-43e0-b3ca-17489a1bdd4b?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/49877c11-4537-456a-a2e8-0f401b7dd4f3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c12d42ea-a13a-e043-b3ca-17489a1bdd4b\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:22:58.4410852Z\"\n }" + string: "{\n \"name\": \"117c8749-3745-6a45-a2e8-0f401b7dd4f3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:30:15.6977728Z\"\n }" headers: cache-control: - no-cache @@ -411,7 +410,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:24:58 GMT + - Thu, 29 Jun 2023 10:32:16 GMT expires: - '-1' pragma: @@ -443,14 +442,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/ea422dc1-3aa1-43e0-b3ca-17489a1bdd4b?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/49877c11-4537-456a-a2e8-0f401b7dd4f3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c12d42ea-a13a-e043-b3ca-17489a1bdd4b\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:22:58.4410852Z\"\n }" + string: "{\n \"name\": \"117c8749-3745-6a45-a2e8-0f401b7dd4f3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:30:15.6977728Z\"\n }" headers: cache-control: - no-cache @@ -459,7 +458,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:25:29 GMT + - Thu, 29 Jun 2023 10:32:46 GMT expires: - '-1' pragma: @@ -491,14 +490,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/ea422dc1-3aa1-43e0-b3ca-17489a1bdd4b?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/49877c11-4537-456a-a2e8-0f401b7dd4f3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c12d42ea-a13a-e043-b3ca-17489a1bdd4b\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:22:58.4410852Z\"\n }" + string: "{\n \"name\": \"117c8749-3745-6a45-a2e8-0f401b7dd4f3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:30:15.6977728Z\"\n }" headers: cache-control: - no-cache @@ -507,7 +506,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:25:59 GMT + - Thu, 29 Jun 2023 10:33:17 GMT expires: - '-1' pragma: @@ -539,14 +538,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/ea422dc1-3aa1-43e0-b3ca-17489a1bdd4b?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/49877c11-4537-456a-a2e8-0f401b7dd4f3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c12d42ea-a13a-e043-b3ca-17489a1bdd4b\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:22:58.4410852Z\"\n }" + string: "{\n \"name\": \"117c8749-3745-6a45-a2e8-0f401b7dd4f3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:30:15.6977728Z\"\n }" headers: cache-control: - no-cache @@ -555,7 +554,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:26:31 GMT + - Thu, 29 Jun 2023 10:33:47 GMT expires: - '-1' pragma: @@ -587,14 +586,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/ea422dc1-3aa1-43e0-b3ca-17489a1bdd4b?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/49877c11-4537-456a-a2e8-0f401b7dd4f3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c12d42ea-a13a-e043-b3ca-17489a1bdd4b\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:22:58.4410852Z\"\n }" + string: "{\n \"name\": \"117c8749-3745-6a45-a2e8-0f401b7dd4f3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:30:15.6977728Z\"\n }" headers: cache-control: - no-cache @@ -603,7 +602,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:27:01 GMT + - Thu, 29 Jun 2023 10:34:16 GMT expires: - '-1' pragma: @@ -635,15 +634,63 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/ea422dc1-3aa1-43e0-b3ca-17489a1bdd4b?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/49877c11-4537-456a-a2e8-0f401b7dd4f3?api-version=2016-03-30 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 }" + string: "{\n \"name\": \"117c8749-3745-6a45-a2e8-0f401b7dd4f3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:30:15.6977728Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10: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 --vm-set-type -c --os-sku --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/49877c11-4537-456a-a2e8-0f401b7dd4f3?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"117c8749-3745-6a45-a2e8-0f401b7dd4f3\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:30:15.6977728Z\",\n \"endTime\": + \"2023-06-29T10:35:05.2700121Z\"\n }" headers: cache-control: - no-cache @@ -652,7 +699,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:30:42 GMT + - Thu, 29 Jun 2023 10:35:16 GMT expires: - '-1' pragma: @@ -684,66 +731,63 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestzadgfv5j5-79a739\",\n \"fqdn\": \"cliakstest-clitestzadgfv5j5-79a739-eu0iyirn.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestzadgfv5j5-79a739-eu0iyirn.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/3d3c59fe-33fb-4c4c-b74d-ff37ed3057a3\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4243' + - '3920' content-type: - application/json date: - - Thu, 15 Jun 2023 16:30:43 GMT + - Thu, 29 Jun 2023 10:35:17 GMT expires: - '-1' pragma: @@ -777,8 +821,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -786,17 +830,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2f1a5585-1717-47be-9e17-5d1e92cf248a?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 15 Jun 2023 16:30:44 GMT + - Thu, 29 Jun 2023 10:35:19 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/2f1a5585-1717-47be-9e17-5d1e92cf248a?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_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 b0eb49b5a31..f020c5b2f61 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 16:30:48 GMT + - Thu, 29 Jun 2023 11:00:13 GMT expires: - '-1' pragma: @@ -47,18 +47,18 @@ interactions: message: Not Found - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitesthixkzwxq6-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitesttqjlinin3-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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": "azure", "networkPluginMode": "overlay", "podCidr": "100.64.0.0/10", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, + "networkProfile": {"networkPlugin": "azure", "networkPluginMode": "overlay", + "podCidr": "100.64.0.0/10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: AKSHTTPCustomFeatures: - Microsoft.ContainerService/AzureOverlayPreview @@ -71,72 +71,70 @@ interactions: Connection: - keep-alive Content-Length: - - '1722' + - '1393' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitesttqjlinin3-79a739\",\n \"fqdn\": \"cliakstest-clitesttqjlinin3-79a739-2863wiwc.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitesttqjlinin3-79a739-2863wiwc.portal.hcp.westus2.azmk8s.io\",\n + \ \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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_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/4e6e6c97-3d22-49ce-91a6-ea512c9ab707?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/80d90cf7-2077-48fa-8a0b-37a332bff98a?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3753' + - '3424' content-type: - application/json date: - - Thu, 15 Jun 2023 16:30:56 GMT + - Thu, 29 Jun 2023 11:00:19 GMT expires: - '-1' pragma: @@ -148,7 +146,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -167,14 +165,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/80d90cf7-2077-48fa-8a0b-37a332bff98a?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 }" + string: "{\n \"name\": \"f70cd980-7720-fa48-8a0b-37a332bff98a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:00:19.6864048Z\"\n }" headers: cache-control: - no-cache @@ -183,7 +181,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:30:57 GMT + - Thu, 29 Jun 2023 11:00:19 GMT expires: - '-1' pragma: @@ -216,14 +214,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/80d90cf7-2077-48fa-8a0b-37a332bff98a?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 }" + string: "{\n \"name\": \"f70cd980-7720-fa48-8a0b-37a332bff98a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:00:19.6864048Z\"\n }" headers: cache-control: - no-cache @@ -232,7 +230,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:31:27 GMT + - Thu, 29 Jun 2023 11:00:50 GMT expires: - '-1' pragma: @@ -265,14 +263,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/80d90cf7-2077-48fa-8a0b-37a332bff98a?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 }" + string: "{\n \"name\": \"f70cd980-7720-fa48-8a0b-37a332bff98a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:00:19.6864048Z\"\n }" headers: cache-control: - no-cache @@ -281,7 +279,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:31:56 GMT + - Thu, 29 Jun 2023 11:01:20 GMT expires: - '-1' pragma: @@ -314,14 +312,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/80d90cf7-2077-48fa-8a0b-37a332bff98a?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 }" + string: "{\n \"name\": \"f70cd980-7720-fa48-8a0b-37a332bff98a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:00:19.6864048Z\"\n }" headers: cache-control: - no-cache @@ -330,7 +328,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:32:28 GMT + - Thu, 29 Jun 2023 11:01:50 GMT expires: - '-1' pragma: @@ -363,14 +361,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/80d90cf7-2077-48fa-8a0b-37a332bff98a?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 }" + string: "{\n \"name\": \"f70cd980-7720-fa48-8a0b-37a332bff98a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:00:19.6864048Z\"\n }" headers: cache-control: - no-cache @@ -379,7 +377,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:32:58 GMT + - Thu, 29 Jun 2023 11:02:19 GMT expires: - '-1' pragma: @@ -412,14 +410,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/80d90cf7-2077-48fa-8a0b-37a332bff98a?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 }" + string: "{\n \"name\": \"f70cd980-7720-fa48-8a0b-37a332bff98a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:00:19.6864048Z\"\n }" headers: cache-control: - no-cache @@ -428,7 +426,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:33:28 GMT + - Thu, 29 Jun 2023 11:02:50 GMT expires: - '-1' pragma: @@ -461,14 +459,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/80d90cf7-2077-48fa-8a0b-37a332bff98a?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 }" + string: "{\n \"name\": \"f70cd980-7720-fa48-8a0b-37a332bff98a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:00:19.6864048Z\"\n }" headers: cache-control: - no-cache @@ -477,7 +475,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:33:57 GMT + - Thu, 29 Jun 2023 11:03:20 GMT expires: - '-1' pragma: @@ -510,14 +508,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/80d90cf7-2077-48fa-8a0b-37a332bff98a?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 }" + string: "{\n \"name\": \"f70cd980-7720-fa48-8a0b-37a332bff98a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:00:19.6864048Z\"\n }" headers: cache-control: - no-cache @@ -526,7 +524,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:34:27 GMT + - Thu, 29 Jun 2023 11:03:50 GMT expires: - '-1' pragma: @@ -559,15 +557,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/80d90cf7-2077-48fa-8a0b-37a332bff98a?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 }" + string: "{\n \"name\": \"f70cd980-7720-fa48-8a0b-37a332bff98a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:00:19.6864048Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:04: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 --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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/80d90cf7-2077-48fa-8a0b-37a332bff98a?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f70cd980-7720-fa48-8a0b-37a332bff98a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:00:19.6864048Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:04: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 --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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/80d90cf7-2077-48fa-8a0b-37a332bff98a?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f70cd980-7720-fa48-8a0b-37a332bff98a\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:00:19.6864048Z\",\n \"endTime\": + \"2023-06-29T11:05:11.9285866Z\"\n }" headers: cache-control: - no-cache @@ -576,7 +672,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:34:58 GMT + - Thu, 29 Jun 2023 11:05:20 GMT expires: - '-1' pragma: @@ -609,68 +705,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-clitesttqjlinin3-79a739\",\n \"fqdn\": \"cliakstest-clitesttqjlinin3-79a739-2863wiwc.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitesttqjlinin3-79a739-2863wiwc.portal.hcp.westus2.azmk8s.io\",\n + \ \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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_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/ac381679-1b7d-4029-93bf-f69ea3737e57\"\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: - - '4406' + - '4077' content-type: - application/json date: - - Thu, 15 Jun 2023 16:34:59 GMT + - Thu, 29 Jun 2023 11:05:21 GMT expires: - '-1' pragma: @@ -704,8 +797,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/cliakstest000001?api-version=2023-05-01 response: @@ -713,17 +806,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/092214c0-8c0d-4129-81c2-66af5ec9fa11?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 15 Jun 2023 16:35:00 GMT + - Thu, 29 Jun 2023 11:05:23 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/092214c0-8c0d-4129-81c2-66af5ec9fa11?api-version=2016-03-30 pragma: - no-cache server: @@ -733,7 +826,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_paid_sku.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_paid_sku.yaml index 6465857ab68..464d7b90e01 100644 --- 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 16:35:12 GMT + - Thu, 29 Jun 2023 11:05:26 GMT expires: - '-1' pragma: @@ -54,8 +54,8 @@ 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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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", + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": @@ -70,67 +70,66 @@ interactions: Connection: - keep-alive Content-Length: - - '1841' + - '1512' 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-mrsdshh2.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-mrsdshh2.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/4c6ab7ec-e0aa-4967-aa1b-7e100df386b3?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e55c0d69-3d94-4a88-80e1-1cff1c350c5c?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3382' + - '3053' content-type: - application/json date: - - Thu, 15 Jun 2023 16:35:22 GMT + - Thu, 29 Jun 2023 11:05:32 GMT expires: - '-1' pragma: @@ -161,14 +160,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --uptime-sla User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e55c0d69-3d94-4a88-80e1-1cff1c350c5c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ecb76a4c-aae0-6749-aa1b-7e100df386b3\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:35:22.2314418Z\"\n }" + string: "{\n \"name\": \"690d5ce5-943d-884a-80e1-1cff1c350c5c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:05:32.7030446Z\"\n }" headers: cache-control: - no-cache @@ -177,7 +176,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:35:23 GMT + - Thu, 29 Jun 2023 11:05:32 GMT expires: - '-1' pragma: @@ -210,14 +209,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --uptime-sla User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e55c0d69-3d94-4a88-80e1-1cff1c350c5c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ecb76a4c-aae0-6749-aa1b-7e100df386b3\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:35:22.2314418Z\"\n }" + string: "{\n \"name\": \"690d5ce5-943d-884a-80e1-1cff1c350c5c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:05:32.7030446Z\"\n }" headers: cache-control: - no-cache @@ -226,7 +225,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:35:52 GMT + - Thu, 29 Jun 2023 11:06:02 GMT expires: - '-1' pragma: @@ -259,14 +258,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --uptime-sla User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e55c0d69-3d94-4a88-80e1-1cff1c350c5c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ecb76a4c-aae0-6749-aa1b-7e100df386b3\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:35:22.2314418Z\"\n }" + string: "{\n \"name\": \"690d5ce5-943d-884a-80e1-1cff1c350c5c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:05:32.7030446Z\"\n }" headers: cache-control: - no-cache @@ -275,7 +274,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:36:24 GMT + - Thu, 29 Jun 2023 11:06:33 GMT expires: - '-1' pragma: @@ -308,14 +307,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --uptime-sla User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e55c0d69-3d94-4a88-80e1-1cff1c350c5c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ecb76a4c-aae0-6749-aa1b-7e100df386b3\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:35:22.2314418Z\"\n }" + string: "{\n \"name\": \"690d5ce5-943d-884a-80e1-1cff1c350c5c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:05:32.7030446Z\"\n }" headers: cache-control: - no-cache @@ -324,7 +323,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:36:54 GMT + - Thu, 29 Jun 2023 11:07:03 GMT expires: - '-1' pragma: @@ -357,14 +356,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --uptime-sla User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e55c0d69-3d94-4a88-80e1-1cff1c350c5c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ecb76a4c-aae0-6749-aa1b-7e100df386b3\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:35:22.2314418Z\"\n }" + string: "{\n \"name\": \"690d5ce5-943d-884a-80e1-1cff1c350c5c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:05:32.7030446Z\"\n }" headers: cache-control: - no-cache @@ -373,7 +372,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:37:24 GMT + - Thu, 29 Jun 2023 11:07:33 GMT expires: - '-1' pragma: @@ -406,24 +405,220 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --uptime-sla User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e55c0d69-3d94-4a88-80e1-1cff1c350c5c?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"690d5ce5-943d-884a-80e1-1cff1c350c5c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:05:32.7030446Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:08: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 --uptime-sla + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e55c0d69-3d94-4a88-80e1-1cff1c350c5c?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"690d5ce5-943d-884a-80e1-1cff1c350c5c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:05:32.7030446Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:08: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 + --service-principal --client-secret --uptime-sla + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e55c0d69-3d94-4a88-80e1-1cff1c350c5c?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"690d5ce5-943d-884a-80e1-1cff1c350c5c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:05:32.7030446Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:09: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 --uptime-sla + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e55c0d69-3d94-4a88-80e1-1cff1c350c5c?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"690d5ce5-943d-884a-80e1-1cff1c350c5c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:05:32.7030446Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:09: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 + --service-principal --client-secret --uptime-sla + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e55c0d69-3d94-4a88-80e1-1cff1c350c5c?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"690d5ce5-943d-884a-80e1-1cff1c350c5c\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:05:32.7030446Z\",\n \"endTime\": + \"2023-06-29T11:09:54.810436Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '169' content-type: - application/json date: - - Thu, 15 Jun 2023 16:37:53 GMT + - Thu, 29 Jun 2023 11:10:03 GMT expires: - '-1' pragma: @@ -456,60 +651,58 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --uptime-sla User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-mrsdshh2.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-mrsdshh2.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/6b751061-7886-4bbd-a03b-eb1d17d0d1b1\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3646' + - '3317' content-type: - application/json date: - - Thu, 15 Jun 2023 16:37:54 GMT + - Thu, 29 Jun 2023 11:10:04 GMT expires: - '-1' pragma: @@ -543,8 +736,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/cliakstest000001?api-version=2023-05-01 response: @@ -552,17 +745,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1d70f7db-dade-45e3-aa61-dc4d26f3f477?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 15 Jun 2023 16:37:56 GMT + - Thu, 29 Jun 2023 11:10:06 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/1d70f7db-dade-45e3-aa61-dc4d26f3f477?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 index b29fe69d81f..b54a3a0dd23 100644 --- 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 16:38:00 GMT + - Thu, 29 Jun 2023 10:35:02 GMT expires: - '-1' pragma: @@ -54,11 +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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {}}}' headers: Accept: - application/json @@ -69,69 +70,68 @@ interactions: Connection: - keep-alive Content-Length: - - '1777' + - '1448' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --uptime-sla User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-l39n3naw.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-l39n3naw.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/ce540b4b-cb63-48ea-a3b8-206f3836f6d6?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4fd90d2f-d54e-4c76-9b94-64de2a6c13b9?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3543' + - '3214' content-type: - application/json date: - - Thu, 15 Jun 2023 16:38:07 GMT + - Thu, 29 Jun 2023 10:35:09 GMT expires: - '-1' pragma: @@ -143,7 +143,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -162,14 +162,63 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --uptime-sla User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4fd90d2f-d54e-4c76-9b94-64de2a6c13b9?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"2f0dd94f-4ed5-764c-9b94-64de2a6c13b9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:35:08.5422614Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:35: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 + --uptime-sla + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4fd90d2f-d54e-4c76-9b94-64de2a6c13b9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4b0b54ce-63cb-ea48-a3b8-206f3836f6d6\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:38:07.2474049Z\"\n }" + string: "{\n \"name\": \"2f0dd94f-4ed5-764c-9b94-64de2a6c13b9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:35:08.5422614Z\"\n }" headers: cache-control: - no-cache @@ -178,7 +227,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:38:07 GMT + - Thu, 29 Jun 2023 10:35:40 GMT expires: - '-1' pragma: @@ -211,14 +260,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --uptime-sla User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4fd90d2f-d54e-4c76-9b94-64de2a6c13b9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4b0b54ce-63cb-ea48-a3b8-206f3836f6d6\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:38:07.2474049Z\"\n }" + string: "{\n \"name\": \"2f0dd94f-4ed5-764c-9b94-64de2a6c13b9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:35:08.5422614Z\"\n }" headers: cache-control: - no-cache @@ -227,7 +276,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:38:37 GMT + - Thu, 29 Jun 2023 10:36:10 GMT expires: - '-1' pragma: @@ -260,14 +309,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --uptime-sla User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4fd90d2f-d54e-4c76-9b94-64de2a6c13b9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4b0b54ce-63cb-ea48-a3b8-206f3836f6d6\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:38:07.2474049Z\"\n }" + string: "{\n \"name\": \"2f0dd94f-4ed5-764c-9b94-64de2a6c13b9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:35:08.5422614Z\"\n }" headers: cache-control: - no-cache @@ -276,7 +325,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:39:07 GMT + - Thu, 29 Jun 2023 10:36:40 GMT expires: - '-1' pragma: @@ -309,14 +358,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --uptime-sla User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4fd90d2f-d54e-4c76-9b94-64de2a6c13b9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4b0b54ce-63cb-ea48-a3b8-206f3836f6d6\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:38:07.2474049Z\"\n }" + string: "{\n \"name\": \"2f0dd94f-4ed5-764c-9b94-64de2a6c13b9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:35:08.5422614Z\"\n }" headers: cache-control: - no-cache @@ -325,7 +374,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:39:38 GMT + - Thu, 29 Jun 2023 10:37:10 GMT expires: - '-1' pragma: @@ -358,14 +407,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --uptime-sla User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4fd90d2f-d54e-4c76-9b94-64de2a6c13b9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4b0b54ce-63cb-ea48-a3b8-206f3836f6d6\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:38:07.2474049Z\"\n }" + string: "{\n \"name\": \"2f0dd94f-4ed5-764c-9b94-64de2a6c13b9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:35:08.5422614Z\"\n }" headers: cache-control: - no-cache @@ -374,7 +423,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:40:07 GMT + - Thu, 29 Jun 2023 10:37:40 GMT expires: - '-1' pragma: @@ -407,14 +456,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --uptime-sla User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4fd90d2f-d54e-4c76-9b94-64de2a6c13b9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4b0b54ce-63cb-ea48-a3b8-206f3836f6d6\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:38:07.2474049Z\"\n }" + string: "{\n \"name\": \"2f0dd94f-4ed5-764c-9b94-64de2a6c13b9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:35:08.5422614Z\"\n }" headers: cache-control: - no-cache @@ -423,7 +472,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:40:38 GMT + - Thu, 29 Jun 2023 10:38:11 GMT expires: - '-1' pragma: @@ -456,14 +505,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --uptime-sla User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4fd90d2f-d54e-4c76-9b94-64de2a6c13b9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4b0b54ce-63cb-ea48-a3b8-206f3836f6d6\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:38:07.2474049Z\"\n }" + string: "{\n \"name\": \"2f0dd94f-4ed5-764c-9b94-64de2a6c13b9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:35:08.5422614Z\"\n }" headers: cache-control: - no-cache @@ -472,7 +521,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:41:08 GMT + - Thu, 29 Jun 2023 10:38:41 GMT expires: - '-1' pragma: @@ -505,15 +554,162 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --uptime-sla User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4fd90d2f-d54e-4c76-9b94-64de2a6c13b9?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"2f0dd94f-4ed5-764c-9b94-64de2a6c13b9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:35:08.5422614Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:39: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 --location --dns-name-prefix --node-count --ssh-key-value + --uptime-sla + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4fd90d2f-d54e-4c76-9b94-64de2a6c13b9?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"2f0dd94f-4ed5-764c-9b94-64de2a6c13b9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:35:08.5422614Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:39: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 --ssh-key-value + --uptime-sla + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4fd90d2f-d54e-4c76-9b94-64de2a6c13b9?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"2f0dd94f-4ed5-764c-9b94-64de2a6c13b9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:35:08.5422614Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:40: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 --location --dns-name-prefix --node-count --ssh-key-value + --uptime-sla + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4fd90d2f-d54e-4c76-9b94-64de2a6c13b9?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"2f0dd94f-4ed5-764c-9b94-64de2a6c13b9\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:35:08.5422614Z\",\n \"endTime\": + \"2023-06-29T10:40:37.3814121Z\"\n }" headers: cache-control: - no-cache @@ -522,7 +718,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:41:38 GMT + - Thu, 29 Jun 2023 10:40:41 GMT expires: - '-1' pragma: @@ -555,65 +751,63 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --uptime-sla User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-l39n3naw.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-l39n3naw.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/98d4657f-cb14-4d71-991d-47bb83e763d7\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4196' + - '3867' content-type: - application/json date: - - Thu, 15 Jun 2023 16:41:39 GMT + - Thu, 29 Jun 2023 10:40:42 GMT expires: - '-1' pragma: @@ -645,65 +839,63 @@ interactions: ParameterSetName: - --resource-group --name --no-uptime-sla User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-l39n3naw.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-l39n3naw.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/98d4657f-cb14-4d71-991d-47bb83e763d7\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4196' + - '3867' content-type: - application/json date: - - Thu, 15 Jun 2023 16:41:41 GMT + - Thu, 29 Jun 2023 10:40:44 GMT expires: - '-1' pragma: @@ -731,14 +923,13 @@ interactions: "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"}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_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/aeb0f275-2193-446f-bb20-0c16610dde44"}]}, + "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": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/98d4657f-cb14-4d71-991d-47bb83e763d7"}]}, "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"}}, @@ -754,73 +945,71 @@ interactions: Connection: - keep-alive Content-Length: - - '2793' + - '2427' Content-Type: - application/json ParameterSetName: - --resource-group --name --no-uptime-sla User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-l39n3naw.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-l39n3naw.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/98d4657f-cb14-4d71-991d-47bb83e763d7\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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/5b511b2e-7ba4-459d-87c9-cf87a3915d25?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/398ec62b-02e2-4ed8-825a-9295ed44dd81?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4190' + - '3861' content-type: - application/json date: - - Thu, 15 Jun 2023 16:41:47 GMT + - Thu, 29 Jun 2023 10:40:48 GMT expires: - '-1' pragma: @@ -836,7 +1025,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' status: code: 200 message: OK @@ -854,14 +1043,14 @@ interactions: ParameterSetName: - --resource-group --name --no-uptime-sla User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/398ec62b-02e2-4ed8-825a-9295ed44dd81?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2e1b515b-a47b-9d45-87c9-cf87a3915d25\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:41:46.5759354Z\"\n }" + string: "{\n \"name\": \"2bc68e39-e202-d84e-825a-9295ed44dd81\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:40:47.9178436Z\"\n }" headers: cache-control: - no-cache @@ -870,7 +1059,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:41:47 GMT + - Thu, 29 Jun 2023 10:40:48 GMT expires: - '-1' pragma: @@ -902,14 +1091,14 @@ interactions: ParameterSetName: - --resource-group --name --no-uptime-sla User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/398ec62b-02e2-4ed8-825a-9295ed44dd81?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2e1b515b-a47b-9d45-87c9-cf87a3915d25\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:41:46.5759354Z\"\n }" + string: "{\n \"name\": \"2bc68e39-e202-d84e-825a-9295ed44dd81\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:40:47.9178436Z\"\n }" headers: cache-control: - no-cache @@ -918,7 +1107,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:42:17 GMT + - Thu, 29 Jun 2023 10:41:18 GMT expires: - '-1' pragma: @@ -950,14 +1139,14 @@ interactions: ParameterSetName: - --resource-group --name --no-uptime-sla User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/398ec62b-02e2-4ed8-825a-9295ed44dd81?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2e1b515b-a47b-9d45-87c9-cf87a3915d25\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:41:46.5759354Z\"\n }" + string: "{\n \"name\": \"2bc68e39-e202-d84e-825a-9295ed44dd81\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:40:47.9178436Z\"\n }" headers: cache-control: - no-cache @@ -966,7 +1155,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:42:48 GMT + - Thu, 29 Jun 2023 10:41:48 GMT expires: - '-1' pragma: @@ -998,14 +1187,14 @@ interactions: ParameterSetName: - --resource-group --name --no-uptime-sla User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/398ec62b-02e2-4ed8-825a-9295ed44dd81?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2e1b515b-a47b-9d45-87c9-cf87a3915d25\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:41:46.5759354Z\"\n }" + string: "{\n \"name\": \"2bc68e39-e202-d84e-825a-9295ed44dd81\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:40:47.9178436Z\"\n }" headers: cache-control: - no-cache @@ -1014,7 +1203,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:43:18 GMT + - Thu, 29 Jun 2023 10:42:18 GMT expires: - '-1' pragma: @@ -1046,14 +1235,14 @@ interactions: ParameterSetName: - --resource-group --name --no-uptime-sla User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/398ec62b-02e2-4ed8-825a-9295ed44dd81?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2e1b515b-a47b-9d45-87c9-cf87a3915d25\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:41:46.5759354Z\"\n }" + string: "{\n \"name\": \"2bc68e39-e202-d84e-825a-9295ed44dd81\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:40:47.9178436Z\"\n }" headers: cache-control: - no-cache @@ -1062,7 +1251,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:43:48 GMT + - Thu, 29 Jun 2023 10:42:49 GMT expires: - '-1' pragma: @@ -1094,24 +1283,24 @@ interactions: ParameterSetName: - --resource-group --name --no-uptime-sla User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/398ec62b-02e2-4ed8-825a-9295ed44dd81?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"2bc68e39-e202-d84e-825a-9295ed44dd81\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:40:47.9178436Z\",\n \"endTime\": + \"2023-06-29T10:43:04.2703267Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '170' content-type: - application/json date: - - Thu, 15 Jun 2023 16:44:18 GMT + - Thu, 29 Jun 2023 10:43:19 GMT expires: - '-1' pragma: @@ -1143,65 +1332,63 @@ interactions: ParameterSetName: - --resource-group --name --no-uptime-sla User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-l39n3naw.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-l39n3naw.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/98d4657f-cb14-4d71-991d-47bb83e763d7\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4192' + - '3863' content-type: - application/json date: - - Thu, 15 Jun 2023 16:44:18 GMT + - Thu, 29 Jun 2023 10:43:19 GMT expires: - '-1' pragma: @@ -1233,65 +1420,63 @@ interactions: ParameterSetName: - --resource-group --name --uptime-sla User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-l39n3naw.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-l39n3naw.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/98d4657f-cb14-4d71-991d-47bb83e763d7\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4192' + - '3863' content-type: - application/json date: - - Thu, 15 Jun 2023 16:44:21 GMT + - Thu, 29 Jun 2023 10:43:36 GMT expires: - '-1' pragma: @@ -1319,14 +1504,13 @@ interactions: "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"}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_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/aeb0f275-2193-446f-bb20-0c16610dde44"}]}, + "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": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/98d4657f-cb14-4d71-991d-47bb83e763d7"}]}, "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"}}, @@ -1342,73 +1526,71 @@ interactions: Connection: - keep-alive Content-Length: - - '2797' + - '2431' Content-Type: - application/json ParameterSetName: - --resource-group --name --uptime-sla User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-l39n3naw.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-l39n3naw.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/98d4657f-cb14-4d71-991d-47bb83e763d7\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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/7cc578fa-4f65-4bea-a38a-0eef2d7e9ccc?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f88e23da-05a2-4e5a-a477-d65d85d91139?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4194' + - '3865' content-type: - application/json date: - - Thu, 15 Jun 2023 16:44:27 GMT + - Thu, 29 Jun 2023 10:43:42 GMT expires: - '-1' pragma: @@ -1442,14 +1624,14 @@ interactions: ParameterSetName: - --resource-group --name --uptime-sla User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f88e23da-05a2-4e5a-a477-d65d85d91139?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"fa78c57c-654f-ea4b-a38a-0eef2d7e9ccc\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:44:26.6234416Z\"\n }" + string: "{\n \"name\": \"da238ef8-a205-5a4e-a477-d65d85d91139\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:43:41.4493839Z\"\n }" headers: cache-control: - no-cache @@ -1458,7 +1640,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:44:27 GMT + - Thu, 29 Jun 2023 10:43:42 GMT expires: - '-1' pragma: @@ -1490,14 +1672,14 @@ interactions: ParameterSetName: - --resource-group --name --uptime-sla User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f88e23da-05a2-4e5a-a477-d65d85d91139?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"fa78c57c-654f-ea4b-a38a-0eef2d7e9ccc\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:44:26.6234416Z\"\n }" + string: "{\n \"name\": \"da238ef8-a205-5a4e-a477-d65d85d91139\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:43:41.4493839Z\"\n }" headers: cache-control: - no-cache @@ -1506,7 +1688,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:44:57 GMT + - Thu, 29 Jun 2023 10:44:12 GMT expires: - '-1' pragma: @@ -1538,14 +1720,14 @@ interactions: ParameterSetName: - --resource-group --name --uptime-sla User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f88e23da-05a2-4e5a-a477-d65d85d91139?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"fa78c57c-654f-ea4b-a38a-0eef2d7e9ccc\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:44:26.6234416Z\"\n }" + string: "{\n \"name\": \"da238ef8-a205-5a4e-a477-d65d85d91139\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:43:41.4493839Z\"\n }" headers: cache-control: - no-cache @@ -1554,7 +1736,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:45:27 GMT + - Thu, 29 Jun 2023 10:44:42 GMT expires: - '-1' pragma: @@ -1586,14 +1768,14 @@ interactions: ParameterSetName: - --resource-group --name --uptime-sla User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f88e23da-05a2-4e5a-a477-d65d85d91139?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"fa78c57c-654f-ea4b-a38a-0eef2d7e9ccc\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:44:26.6234416Z\"\n }" + string: "{\n \"name\": \"da238ef8-a205-5a4e-a477-d65d85d91139\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:43:41.4493839Z\"\n }" headers: cache-control: - no-cache @@ -1602,7 +1784,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:45:58 GMT + - Thu, 29 Jun 2023 10:45:13 GMT expires: - '-1' pragma: @@ -1634,14 +1816,14 @@ interactions: ParameterSetName: - --resource-group --name --uptime-sla User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f88e23da-05a2-4e5a-a477-d65d85d91139?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"fa78c57c-654f-ea4b-a38a-0eef2d7e9ccc\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T16:44:26.6234416Z\"\n }" + string: "{\n \"name\": \"da238ef8-a205-5a4e-a477-d65d85d91139\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:43:41.4493839Z\"\n }" headers: cache-control: - no-cache @@ -1650,7 +1832,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:46:28 GMT + - Thu, 29 Jun 2023 10:45:42 GMT expires: - '-1' pragma: @@ -1682,15 +1864,15 @@ interactions: ParameterSetName: - --resource-group --name --uptime-sla User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f88e23da-05a2-4e5a-a477-d65d85d91139?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"da238ef8-a205-5a4e-a477-d65d85d91139\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:43:41.4493839Z\",\n \"endTime\": + \"2023-06-29T10:46:00.5472588Z\"\n }" headers: cache-control: - no-cache @@ -1699,7 +1881,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:46:58 GMT + - Thu, 29 Jun 2023 10:46:13 GMT expires: - '-1' pragma: @@ -1731,65 +1913,63 @@ interactions: ParameterSetName: - --resource-group --name --uptime-sla User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-l39n3naw.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-l39n3naw.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/98d4657f-cb14-4d71-991d-47bb83e763d7\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4196' + - '3867' content-type: - application/json date: - - Thu, 15 Jun 2023 16:46:59 GMT + - Thu, 29 Jun 2023 10:46:14 GMT expires: - '-1' pragma: @@ -1823,8 +2003,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/cliakstest000001?api-version=2023-05-01 response: @@ -1832,17 +2012,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2ca9b02a-c5d4-4b47-ac21-52e2c573a619?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 15 Jun 2023 16:47:00 GMT + - Thu, 29 Jun 2023 10:46:15 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/2ca9b02a-c5d4-4b47-ac21-52e2c573a619?api-version=2016-03-30 pragma: - no-cache server: @@ -1852,7 +2032,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14997' 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 index 60ba45521df..4bf6b7c96ff 100644 --- 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.49.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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: - - Thu, 15 Jun 2023 16:47:13 GMT + - Thu, 29 Jun 2023 10:46:19 GMT expires: - '-1' pragma: @@ -47,7 +47,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/PutDeletePPG3Min;99,Microsoft.Compute/PutDeletePPG30Min;499 + - Microsoft.Compute/PutDeletePPG3Min;99,Microsoft.Compute/PutDeletePPG30Min;498 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -85,7 +85,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 16:47:14 GMT + - Thu, 29 Jun 2023 10:46:19 GMT expires: - '-1' pragma: @@ -108,8 +108,8 @@ 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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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", + {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": @@ -124,33 +124,67 @@ interactions: Connection: - keep-alive Content-Length: - - '1975' + - '1646' 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - 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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-virvrd0j.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000003-virvrd0j.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/66080318-b239-44ef-9968-613e7fdd634f?api-version=2016-03-30 cache-control: - no-cache content-length: - - '313' + - '3233' content-type: - application/json date: - - Thu, 15 Jun 2023 16:47:19 GMT + - Thu, 29 Jun 2023 10:46:25 GMT expires: - '-1' pragma: @@ -164,96 +198,89 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' status: - code: 404 - message: Not Found + code: 201 + message: Created - 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": {}}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - aks create Connection: - keep-alive - Content-Length: - - '1975' - Content-Type: + 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/66080318-b239-44ef-9968-613e7fdd634f?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"18030866-39b2-ef44-9968-613e7fdd634f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:46:25.246829Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: - application/json + date: + - Thu, 29 Jun 2023 10:46: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 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: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-05-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/66080318-b239-44ef-9968-613e7fdd634f?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\": \"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 }" + string: "{\n \"name\": \"18030866-39b2-ef44-9968-613e7fdd634f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:46:25.246829Z\"\n }" headers: - azure-asyncoperation: - - 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: - - '3562' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 16:47:28 GMT + - Thu, 29 Jun 2023 10:46:55 GMT expires: - '-1' pragma: @@ -262,13 +289,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: @@ -284,23 +313,23 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/66080318-b239-44ef-9968-613e7fdd634f?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 }" + string: "{\n \"name\": \"18030866-39b2-ef44-9968-613e7fdd634f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:46:25.246829Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 16:47:28 GMT + - Thu, 29 Jun 2023 10:47:26 GMT expires: - '-1' pragma: @@ -333,23 +362,23 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/66080318-b239-44ef-9968-613e7fdd634f?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 }" + string: "{\n \"name\": \"18030866-39b2-ef44-9968-613e7fdd634f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:46:25.246829Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 16:47:59 GMT + - Thu, 29 Jun 2023 10:47:55 GMT expires: - '-1' pragma: @@ -382,23 +411,23 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/66080318-b239-44ef-9968-613e7fdd634f?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 }" + string: "{\n \"name\": \"18030866-39b2-ef44-9968-613e7fdd634f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:46:25.246829Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 16:48:29 GMT + - Thu, 29 Jun 2023 10:48:25 GMT expires: - '-1' pragma: @@ -431,23 +460,23 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/66080318-b239-44ef-9968-613e7fdd634f?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 }" + string: "{\n \"name\": \"18030866-39b2-ef44-9968-613e7fdd634f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:46:25.246829Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 16:48:59 GMT + - Thu, 29 Jun 2023 10:48:56 GMT expires: - '-1' pragma: @@ -480,23 +509,23 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/66080318-b239-44ef-9968-613e7fdd634f?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 }" + string: "{\n \"name\": \"18030866-39b2-ef44-9968-613e7fdd634f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:46:25.246829Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 16:49:29 GMT + - Thu, 29 Jun 2023 10:49:26 GMT expires: - '-1' pragma: @@ -529,23 +558,23 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/66080318-b239-44ef-9968-613e7fdd634f?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 }" + string: "{\n \"name\": \"18030866-39b2-ef44-9968-613e7fdd634f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:46:25.246829Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 16:50:00 GMT + - Thu, 29 Jun 2023 10:49:56 GMT expires: - '-1' pragma: @@ -578,23 +607,23 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/66080318-b239-44ef-9968-613e7fdd634f?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 }" + string: "{\n \"name\": \"18030866-39b2-ef44-9968-613e7fdd634f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:46:25.246829Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 16:50:30 GMT + - Thu, 29 Jun 2023 10:50:26 GMT expires: - '-1' pragma: @@ -627,23 +656,23 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/66080318-b239-44ef-9968-613e7fdd634f?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 }" + string: "{\n \"name\": \"18030866-39b2-ef44-9968-613e7fdd634f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:46:25.246829Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 16:51:00 GMT + - Thu, 29 Jun 2023 10:50:56 GMT expires: - '-1' pragma: @@ -676,23 +705,23 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/66080318-b239-44ef-9968-613e7fdd634f?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 }" + string: "{\n \"name\": \"18030866-39b2-ef44-9968-613e7fdd634f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:46:25.246829Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 16:51:30 GMT + - Thu, 29 Jun 2023 10:51:26 GMT expires: - '-1' pragma: @@ -725,23 +754,23 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/66080318-b239-44ef-9968-613e7fdd634f?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 }" + string: "{\n \"name\": \"18030866-39b2-ef44-9968-613e7fdd634f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:46:25.246829Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 16:52:00 GMT + - Thu, 29 Jun 2023 10:51:57 GMT expires: - '-1' pragma: @@ -774,23 +803,23 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/66080318-b239-44ef-9968-613e7fdd634f?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 }" + string: "{\n \"name\": \"18030866-39b2-ef44-9968-613e7fdd634f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:46:25.246829Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 16:52:30 GMT + - Thu, 29 Jun 2023 10:52:27 GMT expires: - '-1' pragma: @@ -823,24 +852,24 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/66080318-b239-44ef-9968-613e7fdd634f?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"18030866-39b2-ef44-9968-613e7fdd634f\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:46:25.246829Z\",\n \"endTime\": + \"2023-06-29T10:52:42.1680324Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '169' content-type: - application/json date: - - Thu, 15 Jun 2023 16:53:00 GMT + - Thu, 29 Jun 2023 10:52:57 GMT expires: - '-1' pragma: @@ -873,62 +902,59 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-virvrd0j.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000003-virvrd0j.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/7225e94d-2ae2-49b0-9cbb-31a2ba64afb4\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3826' + - '3497' content-type: - application/json date: - - Thu, 15 Jun 2023 16:53:01 GMT + - Thu, 29 Jun 2023 10:52:57 GMT expires: - '-1' pragma: @@ -960,26 +986,25 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-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.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 }" + 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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache @@ -988,7 +1013,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:53:04 GMT + - Thu, 29 Jun 2023 10:52:59 GMT expires: - '-1' pragma: @@ -1029,29 +1054,27 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/p000002?api-version=2023-05-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.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 }" + 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.19.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/37c76f3b-f833-4b92-869b-b39765f5e5fd?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/26ce60d5-5d0e-49b9-b53d-a51bddce9d07?api-version=2016-03-30 cache-control: - no-cache content-length: @@ -1059,7 +1082,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:53:10 GMT + - Thu, 29 Jun 2023 10:53:03 GMT expires: - '-1' pragma: @@ -1071,7 +1094,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -1089,14 +1112,302 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/26ce60d5-5d0e-49b9-b53d-a51bddce9d07?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"d560ce26-0e5d-b949-b53d-a51bddce9d07\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:53:04.0917435Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:53: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 nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name -n --ppg + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/26ce60d5-5d0e-49b9-b53d-a51bddce9d07?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"d560ce26-0e5d-b949-b53d-a51bddce9d07\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:53:04.0917435Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 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 nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name -n --ppg + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/26ce60d5-5d0e-49b9-b53d-a51bddce9d07?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"d560ce26-0e5d-b949-b53d-a51bddce9d07\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:53:04.0917435Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:54: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 nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name -n --ppg + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/26ce60d5-5d0e-49b9-b53d-a51bddce9d07?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"d560ce26-0e5d-b949-b53d-a51bddce9d07\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:53:04.0917435Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:54: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 nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name -n --ppg + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/26ce60d5-5d0e-49b9-b53d-a51bddce9d07?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"d560ce26-0e5d-b949-b53d-a51bddce9d07\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:53:04.0917435Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:55: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 -n --ppg + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/26ce60d5-5d0e-49b9-b53d-a51bddce9d07?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"d560ce26-0e5d-b949-b53d-a51bddce9d07\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:53:04.0917435Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:55: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 -n --ppg + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/26ce60d5-5d0e-49b9-b53d-a51bddce9d07?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 }" + string: "{\n \"name\": \"d560ce26-0e5d-b949-b53d-a51bddce9d07\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:53:04.0917435Z\"\n }" headers: cache-control: - no-cache @@ -1105,7 +1416,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:53:10 GMT + - Thu, 29 Jun 2023 10:56:04 GMT expires: - '-1' pragma: @@ -1137,14 +1448,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/26ce60d5-5d0e-49b9-b53d-a51bddce9d07?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 }" + string: "{\n \"name\": \"d560ce26-0e5d-b949-b53d-a51bddce9d07\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:53:04.0917435Z\"\n }" headers: cache-control: - no-cache @@ -1153,7 +1464,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:53:40 GMT + - Thu, 29 Jun 2023 10:56:35 GMT expires: - '-1' pragma: @@ -1185,14 +1496,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/26ce60d5-5d0e-49b9-b53d-a51bddce9d07?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 }" + string: "{\n \"name\": \"d560ce26-0e5d-b949-b53d-a51bddce9d07\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:53:04.0917435Z\"\n }" headers: cache-control: - no-cache @@ -1201,7 +1512,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:54:10 GMT + - Thu, 29 Jun 2023 10:57:05 GMT expires: - '-1' pragma: @@ -1233,14 +1544,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/26ce60d5-5d0e-49b9-b53d-a51bddce9d07?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 }" + string: "{\n \"name\": \"d560ce26-0e5d-b949-b53d-a51bddce9d07\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:53:04.0917435Z\"\n }" headers: cache-control: - no-cache @@ -1249,7 +1560,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:54:40 GMT + - Thu, 29 Jun 2023 10:57:35 GMT expires: - '-1' pragma: @@ -1281,14 +1592,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/26ce60d5-5d0e-49b9-b53d-a51bddce9d07?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 }" + string: "{\n \"name\": \"d560ce26-0e5d-b949-b53d-a51bddce9d07\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:53:04.0917435Z\"\n }" headers: cache-control: - no-cache @@ -1297,7 +1608,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:55:10 GMT + - Thu, 29 Jun 2023 10:58:05 GMT expires: - '-1' pragma: @@ -1329,14 +1640,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/26ce60d5-5d0e-49b9-b53d-a51bddce9d07?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 }" + string: "{\n \"name\": \"d560ce26-0e5d-b949-b53d-a51bddce9d07\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:53:04.0917435Z\"\n }" headers: cache-control: - no-cache @@ -1345,7 +1656,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:55:41 GMT + - Thu, 29 Jun 2023 10:58:35 GMT expires: - '-1' pragma: @@ -1377,14 +1688,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/26ce60d5-5d0e-49b9-b53d-a51bddce9d07?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 }" + string: "{\n \"name\": \"d560ce26-0e5d-b949-b53d-a51bddce9d07\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:53:04.0917435Z\"\n }" headers: cache-control: - no-cache @@ -1393,7 +1704,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:56:11 GMT + - Thu, 29 Jun 2023 10:59:05 GMT expires: - '-1' pragma: @@ -1425,15 +1736,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/26ce60d5-5d0e-49b9-b53d-a51bddce9d07?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"d560ce26-0e5d-b949-b53d-a51bddce9d07\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:53:04.0917435Z\",\n \"endTime\": + \"2023-06-29T10:59:23.6691146Z\"\n }" headers: cache-control: - no-cache @@ -1442,7 +1753,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:56:41 GMT + - Thu, 29 Jun 2023 10:59:35 GMT expires: - '-1' pragma: @@ -1474,26 +1785,24 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/p000002?api-version=2023-05-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.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 }" + 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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -1502,7 +1811,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:56:41 GMT + - Thu, 29 Jun 2023 10:59:36 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 index 4bee24a7d94..518bb97818c 100644 --- 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.49.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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: - - Thu, 15 Jun 2023 16:56:50 GMT + - Thu, 29 Jun 2023 10:33:41 GMT expires: - '-1' pragma: @@ -47,7 +47,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/PutDeletePPG3Min;99,Microsoft.Compute/PutDeletePPG30Min;498 + - Microsoft.Compute/PutDeletePPG3Min;99,Microsoft.Compute/PutDeletePPG30Min;499 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -68,8 +68,8 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -85,7 +85,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 16:56:50 GMT + - Thu, 29 Jun 2023 10:33:45 GMT expires: - '-1' pragma: @@ -109,11 +109,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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": {}}}' + {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {}}}' headers: Accept: - application/json @@ -124,71 +125,69 @@ interactions: Connection: - keep-alive Content-Length: - - '1911' + - '1582' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-2n82i0te.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000003-2n82i0te.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/f42c692a-e519-489c-b7cb-80206dad3102?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7884d664-634c-43de-9b2f-0038e8c3c038?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3723' + - '3394' content-type: - application/json date: - - Thu, 15 Jun 2023 16:56:57 GMT + - Thu, 29 Jun 2023 10:33:52 GMT expires: - '-1' pragma: @@ -200,7 +199,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -219,14 +218,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7884d664-634c-43de-9b2f-0038e8c3c038?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 }" + string: "{\n \"name\": \"64d68478-4c63-de43-9b2f-0038e8c3c038\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:33:52.0889628Z\"\n }" headers: cache-control: - no-cache @@ -235,7 +234,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:56:57 GMT + - Thu, 29 Jun 2023 10:33:52 GMT expires: - '-1' pragma: @@ -268,14 +267,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7884d664-634c-43de-9b2f-0038e8c3c038?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 }" + string: "{\n \"name\": \"64d68478-4c63-de43-9b2f-0038e8c3c038\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:33:52.0889628Z\"\n }" headers: cache-control: - no-cache @@ -284,7 +283,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:57:27 GMT + - Thu, 29 Jun 2023 10:34:22 GMT expires: - '-1' pragma: @@ -317,14 +316,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7884d664-634c-43de-9b2f-0038e8c3c038?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 }" + string: "{\n \"name\": \"64d68478-4c63-de43-9b2f-0038e8c3c038\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:33:52.0889628Z\"\n }" headers: cache-control: - no-cache @@ -333,7 +332,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:57:57 GMT + - Thu, 29 Jun 2023 10:34:52 GMT expires: - '-1' pragma: @@ -366,14 +365,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7884d664-634c-43de-9b2f-0038e8c3c038?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 }" + string: "{\n \"name\": \"64d68478-4c63-de43-9b2f-0038e8c3c038\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:33:52.0889628Z\"\n }" headers: cache-control: - no-cache @@ -382,7 +381,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:58:27 GMT + - Thu, 29 Jun 2023 10:35:22 GMT expires: - '-1' pragma: @@ -415,14 +414,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7884d664-634c-43de-9b2f-0038e8c3c038?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 }" + string: "{\n \"name\": \"64d68478-4c63-de43-9b2f-0038e8c3c038\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:33:52.0889628Z\"\n }" headers: cache-control: - no-cache @@ -431,7 +430,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:58:58 GMT + - Thu, 29 Jun 2023 10:35:52 GMT expires: - '-1' pragma: @@ -464,14 +463,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7884d664-634c-43de-9b2f-0038e8c3c038?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 }" + string: "{\n \"name\": \"64d68478-4c63-de43-9b2f-0038e8c3c038\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:33:52.0889628Z\"\n }" headers: cache-control: - no-cache @@ -480,7 +479,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:59:28 GMT + - Thu, 29 Jun 2023 10:36:22 GMT expires: - '-1' pragma: @@ -513,14 +512,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7884d664-634c-43de-9b2f-0038e8c3c038?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 }" + string: "{\n \"name\": \"64d68478-4c63-de43-9b2f-0038e8c3c038\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:33:52.0889628Z\"\n }" headers: cache-control: - no-cache @@ -529,7 +528,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 16:59:58 GMT + - Thu, 29 Jun 2023 10:36:52 GMT expires: - '-1' pragma: @@ -562,14 +561,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7884d664-634c-43de-9b2f-0038e8c3c038?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 }" + string: "{\n \"name\": \"64d68478-4c63-de43-9b2f-0038e8c3c038\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:33:52.0889628Z\"\n }" headers: cache-control: - no-cache @@ -578,7 +577,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:00:28 GMT + - Thu, 29 Jun 2023 10:37:23 GMT expires: - '-1' pragma: @@ -611,14 +610,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7884d664-634c-43de-9b2f-0038e8c3c038?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 }" + string: "{\n \"name\": \"64d68478-4c63-de43-9b2f-0038e8c3c038\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:33:52.0889628Z\"\n }" headers: cache-control: - no-cache @@ -627,7 +626,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:00:58 GMT + - Thu, 29 Jun 2023 10:37:53 GMT expires: - '-1' pragma: @@ -660,14 +659,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7884d664-634c-43de-9b2f-0038e8c3c038?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 }" + string: "{\n \"name\": \"64d68478-4c63-de43-9b2f-0038e8c3c038\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:33:52.0889628Z\"\n }" headers: cache-control: - no-cache @@ -676,7 +675,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:01:29 GMT + - Thu, 29 Jun 2023 10:38:23 GMT expires: - '-1' pragma: @@ -709,14 +708,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7884d664-634c-43de-9b2f-0038e8c3c038?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 }" + string: "{\n \"name\": \"64d68478-4c63-de43-9b2f-0038e8c3c038\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:33:52.0889628Z\"\n }" headers: cache-control: - no-cache @@ -725,7 +724,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:01:58 GMT + - Thu, 29 Jun 2023 10:38:53 GMT expires: - '-1' pragma: @@ -758,14 +757,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7884d664-634c-43de-9b2f-0038e8c3c038?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 }" + string: "{\n \"name\": \"64d68478-4c63-de43-9b2f-0038e8c3c038\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:33:52.0889628Z\"\n }" headers: cache-control: - no-cache @@ -774,7 +773,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:02:29 GMT + - Thu, 29 Jun 2023 10:39:23 GMT expires: - '-1' pragma: @@ -807,24 +806,72 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7884d664-634c-43de-9b2f-0038e8c3c038?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 }" + string: "{\n \"name\": \"64d68478-4c63-de43-9b2f-0038e8c3c038\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:33:52.0889628Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:39: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 + --ppg + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7884d664-634c-43de-9b2f-0038e8c3c038?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"64d68478-4c63-de43-9b2f-0038e8c3c038\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:33:52.0889628Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 17:02:59 GMT + - Thu, 29 Jun 2023 10:40:24 GMT expires: - '-1' pragma: @@ -857,67 +904,114 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7884d664-634c-43de-9b2f-0038e8c3c038?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"64d68478-4c63-de43-9b2f-0038e8c3c038\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:33:52.0889628Z\",\n \"endTime\": + \"2023-06-29T10:40:51.032676Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '169' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10: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 +- 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-2n82i0te.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000003-2n82i0te.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/fcf17bb6-c851-483d-9643-ad55558d69bf\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4376' + - '4047' content-type: - application/json date: - - Thu, 15 Jun 2023 17:03:00 GMT + - Thu, 29 Jun 2023 10:40:54 GMT expires: - '-1' pragma: @@ -949,26 +1043,25 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-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.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 }" + 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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache @@ -977,7 +1070,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:03:01 GMT + - Thu, 29 Jun 2023 10:40:55 GMT expires: - '-1' pragma: @@ -1018,29 +1111,27 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/p000002?api-version=2023-05-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.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 }" + 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.19.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/6b3009da-4b46-4e10-8146-52ba0725d20d?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d8f736fe-9909-4a84-bfe4-42f7376afc66?api-version=2016-03-30 cache-control: - no-cache content-length: @@ -1048,7 +1139,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:03:08 GMT + - Thu, 29 Jun 2023 10:41:00 GMT expires: - '-1' pragma: @@ -1060,7 +1151,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -1078,14 +1169,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d8f736fe-9909-4a84-bfe4-42f7376afc66?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"da09306b-464b-104e-8146-52ba0725d20d\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:03:08.3449906Z\"\n }" + string: "{\n \"name\": \"fe36f7d8-0999-844a-bfe4-42f7376afc66\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:41:01.0272455Z\"\n }" headers: cache-control: - no-cache @@ -1094,7 +1185,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:03:08 GMT + - Thu, 29 Jun 2023 10:41:00 GMT expires: - '-1' pragma: @@ -1126,14 +1217,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d8f736fe-9909-4a84-bfe4-42f7376afc66?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"da09306b-464b-104e-8146-52ba0725d20d\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:03:08.3449906Z\"\n }" + string: "{\n \"name\": \"fe36f7d8-0999-844a-bfe4-42f7376afc66\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:41:01.0272455Z\"\n }" headers: cache-control: - no-cache @@ -1142,7 +1233,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:03:38 GMT + - Thu, 29 Jun 2023 10:41:30 GMT expires: - '-1' pragma: @@ -1174,14 +1265,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d8f736fe-9909-4a84-bfe4-42f7376afc66?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"da09306b-464b-104e-8146-52ba0725d20d\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:03:08.3449906Z\"\n }" + string: "{\n \"name\": \"fe36f7d8-0999-844a-bfe4-42f7376afc66\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:41:01.0272455Z\"\n }" headers: cache-control: - no-cache @@ -1190,7 +1281,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:04:08 GMT + - Thu, 29 Jun 2023 10:42:00 GMT expires: - '-1' pragma: @@ -1222,14 +1313,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d8f736fe-9909-4a84-bfe4-42f7376afc66?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"da09306b-464b-104e-8146-52ba0725d20d\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:03:08.3449906Z\"\n }" + string: "{\n \"name\": \"fe36f7d8-0999-844a-bfe4-42f7376afc66\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:41:01.0272455Z\"\n }" headers: cache-control: - no-cache @@ -1238,7 +1329,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:04:38 GMT + - Thu, 29 Jun 2023 10:42:30 GMT expires: - '-1' pragma: @@ -1270,14 +1361,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d8f736fe-9909-4a84-bfe4-42f7376afc66?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"da09306b-464b-104e-8146-52ba0725d20d\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:03:08.3449906Z\"\n }" + string: "{\n \"name\": \"fe36f7d8-0999-844a-bfe4-42f7376afc66\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:41:01.0272455Z\"\n }" headers: cache-control: - no-cache @@ -1286,7 +1377,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:05:08 GMT + - Thu, 29 Jun 2023 10:43:01 GMT expires: - '-1' pragma: @@ -1318,14 +1409,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d8f736fe-9909-4a84-bfe4-42f7376afc66?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"da09306b-464b-104e-8146-52ba0725d20d\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:03:08.3449906Z\"\n }" + string: "{\n \"name\": \"fe36f7d8-0999-844a-bfe4-42f7376afc66\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:41:01.0272455Z\"\n }" headers: cache-control: - no-cache @@ -1334,7 +1425,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:05:38 GMT + - Thu, 29 Jun 2023 10:43:31 GMT expires: - '-1' pragma: @@ -1366,14 +1457,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d8f736fe-9909-4a84-bfe4-42f7376afc66?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"da09306b-464b-104e-8146-52ba0725d20d\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:03:08.3449906Z\"\n }" + string: "{\n \"name\": \"fe36f7d8-0999-844a-bfe4-42f7376afc66\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:41:01.0272455Z\"\n }" headers: cache-control: - no-cache @@ -1382,7 +1473,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:06:09 GMT + - Thu, 29 Jun 2023 10:44:01 GMT expires: - '-1' pragma: @@ -1414,24 +1505,216 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d8f736fe-9909-4a84-bfe4-42f7376afc66?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"fe36f7d8-0999-844a-bfe4-42f7376afc66\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:41:01.0272455Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:44: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 nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name -n --ppg + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d8f736fe-9909-4a84-bfe4-42f7376afc66?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"fe36f7d8-0999-844a-bfe4-42f7376afc66\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:41:01.0272455Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:45: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 nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name -n --ppg + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d8f736fe-9909-4a84-bfe4-42f7376afc66?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"fe36f7d8-0999-844a-bfe4-42f7376afc66\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:41:01.0272455Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:45: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 nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name -n --ppg + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d8f736fe-9909-4a84-bfe4-42f7376afc66?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"fe36f7d8-0999-844a-bfe4-42f7376afc66\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:41:01.0272455Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10: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 nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name -n --ppg + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d8f736fe-9909-4a84-bfe4-42f7376afc66?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"fe36f7d8-0999-844a-bfe4-42f7376afc66\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:41:01.0272455Z\",\n \"endTime\": + \"2023-06-29T10:46:30.4467776Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' content-type: - application/json date: - - Thu, 15 Jun 2023 17:06:39 GMT + - Thu, 29 Jun 2023 10:46:32 GMT expires: - '-1' pragma: @@ -1463,26 +1746,24 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/p000002?api-version=2023-05-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.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 }" + 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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -1491,7 +1772,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:06:40 GMT + - Thu, 29 Jun 2023 10:46:33 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 index 0722328efad..8e730e15f0d 100644 --- 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 17:06:45 GMT + - Thu, 29 Jun 2023 10:46:35 GMT expires: - '-1' pragma: @@ -58,12 +58,12 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1039-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":"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"}}' + 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-29T10:46:35Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -72,7 +72,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 17:06:45 GMT + - Thu, 29 Jun 2023 10:46:36 GMT expires: - '-1' pragma: @@ -88,18 +88,19 @@ interactions: message: OK - request: body: '{"location": "centraluseuap", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest3tplpyjiq-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestd3677g4i5-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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {}}}' headers: Accept: - application/json @@ -110,75 +111,71 @@ interactions: Connection: - keep-alive Content-Length: - - '1757' + - '1428' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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-clitestd3677g4i5-79a739\",\n \"fqdn\": \"cliakstest-clitestd3677g4i5-79a739-afa2uynv.hcp.centraluseuap.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestd3677g4i5-79a739-afa2uynv.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.26.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"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/db65f5ba-8a0c-4972-93e8-705d349cb3f5?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/723aabe0-aa0c-4b37-a5f9-7fb5401ed019?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3620' + - '3291' content-type: - application/json date: - - Thu, 15 Jun 2023 17:06:51 GMT + - Thu, 29 Jun 2023 10:46:40 GMT expires: - '-1' pragma: - no-cache - server: - - nginx strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: @@ -202,14 +199,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/db65f5ba-8a0c-4972-93e8-705d349cb3f5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/723aabe0-aa0c-4b37-a5f9-7fb5401ed019?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"baf565db-0c8a-7249-93e8-705d349cb3f5\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:06:51.0930993Z\"\n }" + string: "{\n \"name\": \"e0ab3a72-0caa-374b-a5f9-7fb5401ed019\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:46:40.5009192Z\"\n }" headers: cache-control: - no-cache @@ -218,7 +215,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:06:51 GMT + - Thu, 29 Jun 2023 10:46:40 GMT expires: - '-1' pragma: @@ -250,14 +247,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/db65f5ba-8a0c-4972-93e8-705d349cb3f5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/723aabe0-aa0c-4b37-a5f9-7fb5401ed019?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"baf565db-0c8a-7249-93e8-705d349cb3f5\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:06:51.0930993Z\"\n }" + string: "{\n \"name\": \"e0ab3a72-0caa-374b-a5f9-7fb5401ed019\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:46:40.5009192Z\"\n }" headers: cache-control: - no-cache @@ -266,7 +263,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:07:21 GMT + - Thu, 29 Jun 2023 10:47:10 GMT expires: - '-1' pragma: @@ -298,14 +295,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/db65f5ba-8a0c-4972-93e8-705d349cb3f5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/723aabe0-aa0c-4b37-a5f9-7fb5401ed019?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"baf565db-0c8a-7249-93e8-705d349cb3f5\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:06:51.0930993Z\"\n }" + string: "{\n \"name\": \"e0ab3a72-0caa-374b-a5f9-7fb5401ed019\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:46:40.5009192Z\"\n }" headers: cache-control: - no-cache @@ -314,7 +311,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:07:51 GMT + - Thu, 29 Jun 2023 10:47:41 GMT expires: - '-1' pragma: @@ -346,14 +343,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/db65f5ba-8a0c-4972-93e8-705d349cb3f5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/723aabe0-aa0c-4b37-a5f9-7fb5401ed019?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"baf565db-0c8a-7249-93e8-705d349cb3f5\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:06:51.0930993Z\"\n }" + string: "{\n \"name\": \"e0ab3a72-0caa-374b-a5f9-7fb5401ed019\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:46:40.5009192Z\"\n }" headers: cache-control: - no-cache @@ -362,7 +359,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:08:21 GMT + - Thu, 29 Jun 2023 10:48:11 GMT expires: - '-1' pragma: @@ -394,14 +391,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/db65f5ba-8a0c-4972-93e8-705d349cb3f5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/723aabe0-aa0c-4b37-a5f9-7fb5401ed019?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"baf565db-0c8a-7249-93e8-705d349cb3f5\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:06:51.0930993Z\"\n }" + string: "{\n \"name\": \"e0ab3a72-0caa-374b-a5f9-7fb5401ed019\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:46:40.5009192Z\"\n }" headers: cache-control: - no-cache @@ -410,7 +407,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:08:51 GMT + - Thu, 29 Jun 2023 10:48:41 GMT expires: - '-1' pragma: @@ -442,14 +439,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/db65f5ba-8a0c-4972-93e8-705d349cb3f5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/723aabe0-aa0c-4b37-a5f9-7fb5401ed019?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"baf565db-0c8a-7249-93e8-705d349cb3f5\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:06:51.0930993Z\"\n }" + string: "{\n \"name\": \"e0ab3a72-0caa-374b-a5f9-7fb5401ed019\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:46:40.5009192Z\"\n }" headers: cache-control: - no-cache @@ -458,7 +455,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:09:22 GMT + - Thu, 29 Jun 2023 10:49:10 GMT expires: - '-1' pragma: @@ -490,14 +487,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/db65f5ba-8a0c-4972-93e8-705d349cb3f5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/723aabe0-aa0c-4b37-a5f9-7fb5401ed019?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"baf565db-0c8a-7249-93e8-705d349cb3f5\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:06:51.0930993Z\"\n }" + string: "{\n \"name\": \"e0ab3a72-0caa-374b-a5f9-7fb5401ed019\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:46:40.5009192Z\"\n }" headers: cache-control: - no-cache @@ -506,7 +503,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:09:52 GMT + - Thu, 29 Jun 2023 10:49:40 GMT expires: - '-1' pragma: @@ -538,14 +535,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/db65f5ba-8a0c-4972-93e8-705d349cb3f5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/723aabe0-aa0c-4b37-a5f9-7fb5401ed019?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"baf565db-0c8a-7249-93e8-705d349cb3f5\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:06:51.0930993Z\"\n }" + string: "{\n \"name\": \"e0ab3a72-0caa-374b-a5f9-7fb5401ed019\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:46:40.5009192Z\"\n }" headers: cache-control: - no-cache @@ -554,7 +551,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:10:21 GMT + - Thu, 29 Jun 2023 10:50:11 GMT expires: - '-1' pragma: @@ -586,24 +583,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/db65f5ba-8a0c-4972-93e8-705d349cb3f5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/723aabe0-aa0c-4b37-a5f9-7fb5401ed019?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"e0ab3a72-0caa-374b-a5f9-7fb5401ed019\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:46:40.5009192Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 17:10:51 GMT + - Thu, 29 Jun 2023 10:50:41 GMT expires: - '-1' pragma: @@ -635,66 +631,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/723aabe0-aa0c-4b37-a5f9-7fb5401ed019?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.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 }" + string: "{\n \"name\": \"e0ab3a72-0caa-374b-a5f9-7fb5401ed019\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:46:40.5009192Z\"\n }" headers: cache-control: - no-cache content-length: - - '4285' + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 17:10:52 GMT + - Thu, 29 Jun 2023 10:51:11 GMT expires: - '-1' pragma: @@ -716,76 +669,33 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - aks update + - aks create Connection: - keep-alive ParameterSetName: - - --resource-group --name -y -o + - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/723aabe0-aa0c-4b37-a5f9-7fb5401ed019?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.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 }" + string: "{\n \"name\": \"e0ab3a72-0caa-374b-a5f9-7fb5401ed019\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:46:40.5009192Z\"\n }" headers: cache-control: - no-cache content-length: - - '4285' + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 17:10:53 GMT + - Thu, 29 Jun 2023 10:51:41 GMT expires: - '-1' pragma: @@ -804,107 +714,133 @@ interactions: code: 200 message: OK - request: - 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": {}}}' + 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/723aabe0-aa0c-4b37-a5f9-7fb5401ed019?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"e0ab3a72-0caa-374b-a5f9-7fb5401ed019\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:46:40.5009192Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: - application/json + date: + - Thu, 29 Jun 2023 10:52: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 update + - aks create Connection: - keep-alive - Content-Length: - - '2836' - Content-Type: + ParameterSetName: + - --resource-group --name --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/723aabe0-aa0c-4b37-a5f9-7fb5401ed019?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"e0ab3a72-0caa-374b-a5f9-7fb5401ed019\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:46:40.5009192Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: - application/json + date: + - Thu, 29 Jun 2023 10:52: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 -y -o + - --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: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-05-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/723aabe0-aa0c-4b37-a5f9-7fb5401ed019?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.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 }" + string: "{\n \"name\": \"e0ab3a72-0caa-374b-a5f9-7fb5401ed019\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:46:40.5009192Z\",\n \"endTime\": + \"2023-06-29T10:52:48.7217402Z\"\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: - - '4283' + - '170' content-type: - application/json date: - - Thu, 15 Jun 2023 17:10:57 GMT + - Thu, 29 Jun 2023 10:53:11 GMT expires: - '-1' pragma: @@ -919,8 +855,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' status: code: 200 message: OK @@ -932,35 +866,272 @@ interactions: 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": + \"cliakstest-clitestd3677g4i5-79a739\",\n \"fqdn\": \"cliakstest-clitestd3677g4i5-79a739-afa2uynv.hcp.centraluseuap.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestd3677g4i5-79a739-afa2uynv.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.26.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"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/8e539f56-9486-4c19-82a3-225dc5080300\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: + - '3956' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:53:11 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/8a17c149-ae70-420b-a9be-0a37c46ad3e3?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-05-01 response: body: - string: "{\n \"name\": \"49c1178a-70ae-0b42-a9be-0a37c46ad3e3\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:10:57.7682525Z\"\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-clitestd3677g4i5-79a739\",\n \"fqdn\": \"cliakstest-clitestd3677g4i5-79a739-afa2uynv.hcp.centraluseuap.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestd3677g4i5-79a739-afa2uynv.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.26.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"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/8e539f56-9486-4c19-82a3-225dc5080300\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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' + - '3956' content-type: - application/json date: - - Thu, 15 Jun 2023 17:10:57 GMT + - Thu, 29 Jun 2023 10:53:13 GMT + expires: + - '-1' + pragma: + - no-cache + strict-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": "Base", "tier": "Free"}, + "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": + "1.25.6", "dnsPrefix": "cliakstest-clitestd3677g4i5-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.25.6", "upgradeSettings": {}, "powerState": + {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", + "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/8e539f56-9486-4c19-82a3-225dc5080300"}]}, + "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: + - '2470' + Content-Type: + - application/json + ParameterSetName: + - --resource-group --name -y -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": + \"cliakstest-clitestd3677g4i5-79a739\",\n \"fqdn\": \"cliakstest-clitestd3677g4i5-79a739-afa2uynv.hcp.centraluseuap.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestd3677g4i5-79a739-afa2uynv.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.26.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"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/8e539f56-9486-4c19-82a3-225dc5080300\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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/433ca5ec-58b5-4650-a83c-517fa6983f7c?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '3954' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:53:16 GMT expires: - '-1' pragma: - no-cache - server: - - nginx strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -969,6 +1140,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1197' status: code: 200 message: OK @@ -986,14 +1159,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/8a17c149-ae70-420b-a9be-0a37c46ad3e3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/433ca5ec-58b5-4650-a83c-517fa6983f7c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"49c1178a-70ae-0b42-a9be-0a37c46ad3e3\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:10:57.7682525Z\"\n }" + string: "{\n \"name\": \"eca53c43-b558-5046-a83c-517fa6983f7c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:53:16.6333609Z\"\n }" headers: cache-control: - no-cache @@ -1002,7 +1175,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:11:27 GMT + - Thu, 29 Jun 2023 10:53:16 GMT expires: - '-1' pragma: @@ -1034,14 +1207,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/8a17c149-ae70-420b-a9be-0a37c46ad3e3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/433ca5ec-58b5-4650-a83c-517fa6983f7c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"49c1178a-70ae-0b42-a9be-0a37c46ad3e3\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:10:57.7682525Z\"\n }" + string: "{\n \"name\": \"eca53c43-b558-5046-a83c-517fa6983f7c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:53:16.6333609Z\"\n }" headers: cache-control: - no-cache @@ -1050,7 +1223,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:11:58 GMT + - Thu, 29 Jun 2023 10:53:46 GMT expires: - '-1' pragma: @@ -1082,14 +1255,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/8a17c149-ae70-420b-a9be-0a37c46ad3e3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/433ca5ec-58b5-4650-a83c-517fa6983f7c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"49c1178a-70ae-0b42-a9be-0a37c46ad3e3\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:10:57.7682525Z\"\n }" + string: "{\n \"name\": \"eca53c43-b558-5046-a83c-517fa6983f7c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:53:16.6333609Z\"\n }" headers: cache-control: - no-cache @@ -1098,7 +1271,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:12:27 GMT + - Thu, 29 Jun 2023 10:54:16 GMT expires: - '-1' pragma: @@ -1130,15 +1303,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/8a17c149-ae70-420b-a9be-0a37c46ad3e3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/433ca5ec-58b5-4650-a83c-517fa6983f7c?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"eca53c43-b558-5046-a83c-517fa6983f7c\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:53:16.6333609Z\",\n \"endTime\": + \"2023-06-29T10:54:32.5830108Z\"\n }" headers: cache-control: - no-cache @@ -1147,7 +1320,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:12:58 GMT + - Thu, 29 Jun 2023 10:54:46 GMT expires: - '-1' pragma: @@ -1179,72 +1352,67 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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-clitestd3677g4i5-79a739\",\n \"fqdn\": \"cliakstest-clitestd3677g4i5-79a739-afa2uynv.hcp.centraluseuap.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestd3677g4i5-79a739-afa2uynv.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.26.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"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/8e539f56-9486-4c19-82a3-225dc5080300\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4285' + - '3956' content-type: - application/json date: - - Thu, 15 Jun 2023 17:12:59 GMT + - Thu, 29 Jun 2023 10:54:47 GMT expires: - '-1' pragma: - no-cache - server: - - nginx strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1272,8 +1440,8 @@ interactions: ParameterSetName: - --resource-group --name --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -1281,21 +1449,19 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/9ea77b78-476f-4013-953b-4ba47ff2a1c1?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 15 Jun 2023 17:13:01 GMT + - Thu, 29 Jun 2023 10:54:48 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operationresults/9ea77b78-476f-4013-953b-4ba47ff2a1c1?api-version=2016-03-30 pragma: - no-cache - server: - - nginx strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: 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 index 2b9d8ae3d35..42c31dac545 100644 --- 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 17:13:04 GMT + - Thu, 29 Jun 2023 10:35:27 GMT expires: - '-1' pragma: @@ -58,12 +58,12 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1039-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_standard_csi_drivers","date":"2023-06-15T17:13:03Z","module":"acs"},"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-29T10:35:21Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -72,7 +72,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 17:13:05 GMT + - Thu, 29 Jun 2023 10:35:27 GMT expires: - '-1' pragma: @@ -88,18 +88,19 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestcm52w2h4m-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestnf7yea2xu-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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {}}}' headers: Accept: - application/json @@ -110,69 +111,67 @@ interactions: Connection: - keep-alive Content-Length: - - '1751' + - '1422' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestnf7yea2xu-79a739\",\n \"fqdn\": \"cliakstest-clitestnf7yea2xu-79a739-tu4trh6u.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestnf7yea2xu-79a739-tu4trh6u.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"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/9ea05db4-a220-4f23-8466-c834444202e3?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d55ae37f-5808-4917-a005-7499e7783315?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3596' + - '3267' content-type: - application/json date: - - Thu, 15 Jun 2023 17:13:12 GMT + - Thu, 29 Jun 2023 10:35:54 GMT expires: - '-1' pragma: @@ -184,7 +183,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -202,14 +201,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d55ae37f-5808-4917-a005-7499e7783315?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b45da09e-20a2-234f-8466-c834444202e3\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:13:12.3152873Z\"\n }" + string: "{\n \"name\": \"7fe35ad5-0858-1749-a005-7499e7783315\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:35:50.4329367Z\"\n }" headers: cache-control: - no-cache @@ -218,7 +217,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:13:12 GMT + - Thu, 29 Jun 2023 10:35:54 GMT expires: - '-1' pragma: @@ -227,10 +226,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -250,14 +245,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d55ae37f-5808-4917-a005-7499e7783315?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b45da09e-20a2-234f-8466-c834444202e3\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:13:12.3152873Z\"\n }" + string: "{\n \"name\": \"7fe35ad5-0858-1749-a005-7499e7783315\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:35:50.4329367Z\"\n }" headers: cache-control: - no-cache @@ -266,7 +261,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:13:43 GMT + - Thu, 29 Jun 2023 10:36:24 GMT expires: - '-1' pragma: @@ -275,10 +270,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -298,14 +289,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d55ae37f-5808-4917-a005-7499e7783315?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b45da09e-20a2-234f-8466-c834444202e3\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:13:12.3152873Z\"\n }" + string: "{\n \"name\": \"7fe35ad5-0858-1749-a005-7499e7783315\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:35:50.4329367Z\"\n }" headers: cache-control: - no-cache @@ -314,7 +305,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:14:13 GMT + - Thu, 29 Jun 2023 10:36:55 GMT expires: - '-1' pragma: @@ -323,10 +314,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -346,14 +333,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d55ae37f-5808-4917-a005-7499e7783315?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b45da09e-20a2-234f-8466-c834444202e3\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:13:12.3152873Z\"\n }" + string: "{\n \"name\": \"7fe35ad5-0858-1749-a005-7499e7783315\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:35:50.4329367Z\"\n }" headers: cache-control: - no-cache @@ -362,7 +349,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:14:43 GMT + - Thu, 29 Jun 2023 10:37:25 GMT expires: - '-1' pragma: @@ -371,10 +358,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -394,14 +377,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d55ae37f-5808-4917-a005-7499e7783315?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b45da09e-20a2-234f-8466-c834444202e3\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:13:12.3152873Z\"\n }" + string: "{\n \"name\": \"7fe35ad5-0858-1749-a005-7499e7783315\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:35:50.4329367Z\"\n }" headers: cache-control: - no-cache @@ -410,7 +393,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:15:13 GMT + - Thu, 29 Jun 2023 10:37:56 GMT expires: - '-1' pragma: @@ -419,10 +402,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -442,14 +421,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d55ae37f-5808-4917-a005-7499e7783315?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b45da09e-20a2-234f-8466-c834444202e3\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:13:12.3152873Z\"\n }" + string: "{\n \"name\": \"7fe35ad5-0858-1749-a005-7499e7783315\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:35:50.4329367Z\"\n }" headers: cache-control: - no-cache @@ -458,7 +437,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:15:43 GMT + - Thu, 29 Jun 2023 10:38:26 GMT expires: - '-1' pragma: @@ -467,10 +446,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -490,14 +465,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d55ae37f-5808-4917-a005-7499e7783315?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b45da09e-20a2-234f-8466-c834444202e3\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:13:12.3152873Z\"\n }" + string: "{\n \"name\": \"7fe35ad5-0858-1749-a005-7499e7783315\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:35:50.4329367Z\"\n }" headers: cache-control: - no-cache @@ -506,7 +481,139 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:16:13 GMT + - Thu, 29 Jun 2023 10:38:56 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 --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d55ae37f-5808-4917-a005-7499e7783315?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"7fe35ad5-0858-1749-a005-7499e7783315\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:35:50.4329367Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:39:26 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 --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d55ae37f-5808-4917-a005-7499e7783315?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"7fe35ad5-0858-1749-a005-7499e7783315\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:35:50.4329367Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:39:56 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 --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d55ae37f-5808-4917-a005-7499e7783315?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"7fe35ad5-0858-1749-a005-7499e7783315\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:35:50.4329367Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:40:26 GMT expires: - '-1' pragma: @@ -515,10 +622,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -538,15 +641,59 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d55ae37f-5808-4917-a005-7499e7783315?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 }" + string: "{\n \"name\": \"7fe35ad5-0858-1749-a005-7499e7783315\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:35:50.4329367Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:40:57 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 --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d55ae37f-5808-4917-a005-7499e7783315?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"7fe35ad5-0858-1749-a005-7499e7783315\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:35:50.4329367Z\",\n \"endTime\": + \"2023-06-29T10:41:12.6080462Z\"\n }" headers: cache-control: - no-cache @@ -555,7 +702,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:16:43 GMT + - Thu, 29 Jun 2023 10:41:27 GMT expires: - '-1' pragma: @@ -564,10 +711,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -587,66 +730,63 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestnf7yea2xu-79a739\",\n \"fqdn\": \"cliakstest-clitestnf7yea2xu-79a739-tu4trh6u.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestnf7yea2xu-79a739-tu4trh6u.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/073d5728-d8cd-46d2-8d53-aa026a597a0f\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4249' + - '3920' content-type: - application/json date: - - Thu, 15 Jun 2023 17:16:44 GMT + - Thu, 29 Jun 2023 10:41:28 GMT expires: - '-1' pragma: @@ -655,10 +795,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -678,66 +814,63 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestnf7yea2xu-79a739\",\n \"fqdn\": \"cliakstest-clitestnf7yea2xu-79a739-tu4trh6u.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestnf7yea2xu-79a739-tu4trh6u.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/073d5728-d8cd-46d2-8d53-aa026a597a0f\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4249' + - '3920' content-type: - application/json date: - - Thu, 15 Jun 2023 17:16:46 GMT + - Thu, 29 Jun 2023 10:41:29 GMT expires: - '-1' pragma: @@ -758,21 +891,20 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": - "cliakstest-clitestcm52w2h4m-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-clitestnf7yea2xu-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.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"}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_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/c5337524-5b67-4fcd-9e08-75ff4ba1116b"}]}, + "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": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/073d5728-d8cd-46d2-8d53-aa026a597a0f"}]}, "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"}}, @@ -788,74 +920,71 @@ interactions: Connection: - keep-alive Content-Length: - - '2812' + - '2446' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestnf7yea2xu-79a739\",\n \"fqdn\": \"cliakstest-clitestnf7yea2xu-79a739-tu4trh6u.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestnf7yea2xu-79a739-tu4trh6u.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/073d5728-d8cd-46d2-8d53-aa026a597a0f\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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/de00c6f3-d03f-4d93-a18c-c9f15cb8739b?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/718b6279-4cb9-4650-b99b-bd19c410288a?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4247' + - '3918' content-type: - application/json date: - - Thu, 15 Jun 2023 17:16:52 GMT + - Thu, 29 Jun 2023 10:41:34 GMT expires: - '-1' pragma: @@ -871,7 +1000,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -889,14 +1018,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/718b6279-4cb9-4650-b99b-bd19c410288a?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 }" + string: "{\n \"name\": \"79628b71-b94c-5046-b99b-bd19c410288a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:41:33.5429386Z\"\n }" headers: cache-control: - no-cache @@ -905,7 +1034,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:16:52 GMT + - Thu, 29 Jun 2023 10:41:34 GMT expires: - '-1' pragma: @@ -937,14 +1066,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/718b6279-4cb9-4650-b99b-bd19c410288a?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 }" + string: "{\n \"name\": \"79628b71-b94c-5046-b99b-bd19c410288a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:41:33.5429386Z\"\n }" headers: cache-control: - no-cache @@ -953,7 +1082,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:17:22 GMT + - Thu, 29 Jun 2023 10:42:03 GMT expires: - '-1' pragma: @@ -985,14 +1114,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/718b6279-4cb9-4650-b99b-bd19c410288a?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 }" + string: "{\n \"name\": \"79628b71-b94c-5046-b99b-bd19c410288a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:41:33.5429386Z\"\n }" headers: cache-control: - no-cache @@ -1001,7 +1130,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:17:52 GMT + - Thu, 29 Jun 2023 10:42:34 GMT expires: - '-1' pragma: @@ -1033,14 +1162,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/718b6279-4cb9-4650-b99b-bd19c410288a?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 }" + string: "{\n \"name\": \"79628b71-b94c-5046-b99b-bd19c410288a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:41:33.5429386Z\"\n }" headers: cache-control: - no-cache @@ -1049,7 +1178,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:18:22 GMT + - Thu, 29 Jun 2023 10:43:04 GMT expires: - '-1' pragma: @@ -1081,15 +1210,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/718b6279-4cb9-4650-b99b-bd19c410288a?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"79628b71-b94c-5046-b99b-bd19c410288a\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:41:33.5429386Z\",\n \"endTime\": + \"2023-06-29T10:43:15.9464711Z\"\n }" headers: cache-control: - no-cache @@ -1098,7 +1227,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:18:52 GMT + - Thu, 29 Jun 2023 10:43:34 GMT expires: - '-1' pragma: @@ -1130,66 +1259,63 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestnf7yea2xu-79a739\",\n \"fqdn\": \"cliakstest-clitestnf7yea2xu-79a739-tu4trh6u.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestnf7yea2xu-79a739-tu4trh6u.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/073d5728-d8cd-46d2-8d53-aa026a597a0f\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4249' + - '3920' content-type: - application/json date: - - Thu, 15 Jun 2023 17:18:52 GMT + - Thu, 29 Jun 2023 10:43:35 GMT expires: - '-1' pragma: @@ -1223,8 +1349,8 @@ interactions: ParameterSetName: - --resource-group --name --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -1232,17 +1358,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7496b1aa-2719-4388-97e1-646a12c8de4a?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 15 Jun 2023 17:18:56 GMT + - Thu, 29 Jun 2023 10:43:36 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/7496b1aa-2719-4388-97e1-646a12c8de4a?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_standard_sku.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_standard_sku.yaml index cd8f036d570..2f206bdaea7 100644 --- 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 17:19:04 GMT + - Thu, 29 Jun 2023 10:43:40 GMT expires: - '-1' pragma: @@ -47,18 +47,19 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Standard"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "", "dnsPrefix": - "cliakstest-clitestozlj4rvex-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": + "cliakstest-clitestkqsiytor2-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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": {}}}' + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {}}}' headers: Accept: - application/json @@ -69,69 +70,67 @@ interactions: Connection: - keep-alive Content-Length: - - '1796' + - '1467' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --node-count --ssh-key-value --tier User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestkqsiytor2-79a739\",\n \"fqdn\": \"cliakstest-clitestkqsiytor2-79a739-fbacjgx8.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestkqsiytor2-79a739-fbacjgx8.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/b4b0190e-6541-4db7-9581-a4d23fca266d?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c621e550-d703-46e2-9e89-2bc113770a50?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3600' + - '3271' content-type: - application/json date: - - Thu, 15 Jun 2023 17:19:14 GMT + - Thu, 29 Jun 2023 10:43:45 GMT expires: - '-1' pragma: @@ -143,7 +142,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -161,14 +160,14 @@ interactions: ParameterSetName: - --resource-group --name --location --node-count --ssh-key-value --tier User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c621e550-d703-46e2-9e89-2bc113770a50?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0e19b0b4-4165-b74d-9581-a4d23fca266d\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:19:12.1284898Z\"\n }" + string: "{\n \"name\": \"50e521c6-03d7-e246-9e89-2bc113770a50\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:43:45.3087667Z\"\n }" headers: cache-control: - no-cache @@ -177,7 +176,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:19:14 GMT + - Thu, 29 Jun 2023 10:43:45 GMT expires: - '-1' pragma: @@ -209,14 +208,14 @@ interactions: ParameterSetName: - --resource-group --name --location --node-count --ssh-key-value --tier User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c621e550-d703-46e2-9e89-2bc113770a50?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0e19b0b4-4165-b74d-9581-a4d23fca266d\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:19:12.1284898Z\"\n }" + string: "{\n \"name\": \"50e521c6-03d7-e246-9e89-2bc113770a50\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:43:45.3087667Z\"\n }" headers: cache-control: - no-cache @@ -225,7 +224,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:19:44 GMT + - Thu, 29 Jun 2023 10:44:15 GMT expires: - '-1' pragma: @@ -257,14 +256,14 @@ interactions: ParameterSetName: - --resource-group --name --location --node-count --ssh-key-value --tier User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c621e550-d703-46e2-9e89-2bc113770a50?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0e19b0b4-4165-b74d-9581-a4d23fca266d\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:19:12.1284898Z\"\n }" + string: "{\n \"name\": \"50e521c6-03d7-e246-9e89-2bc113770a50\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:43:45.3087667Z\"\n }" headers: cache-control: - no-cache @@ -273,7 +272,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:20:15 GMT + - Thu, 29 Jun 2023 10:44:45 GMT expires: - '-1' pragma: @@ -305,14 +304,14 @@ interactions: ParameterSetName: - --resource-group --name --location --node-count --ssh-key-value --tier User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c621e550-d703-46e2-9e89-2bc113770a50?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0e19b0b4-4165-b74d-9581-a4d23fca266d\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:19:12.1284898Z\"\n }" + string: "{\n \"name\": \"50e521c6-03d7-e246-9e89-2bc113770a50\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:43:45.3087667Z\"\n }" headers: cache-control: - no-cache @@ -321,7 +320,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:20:44 GMT + - Thu, 29 Jun 2023 10:45:15 GMT expires: - '-1' pragma: @@ -353,14 +352,14 @@ interactions: ParameterSetName: - --resource-group --name --location --node-count --ssh-key-value --tier User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c621e550-d703-46e2-9e89-2bc113770a50?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0e19b0b4-4165-b74d-9581-a4d23fca266d\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:19:12.1284898Z\"\n }" + string: "{\n \"name\": \"50e521c6-03d7-e246-9e89-2bc113770a50\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:43:45.3087667Z\"\n }" headers: cache-control: - no-cache @@ -369,7 +368,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:21:14 GMT + - Thu, 29 Jun 2023 10:45:45 GMT expires: - '-1' pragma: @@ -401,14 +400,14 @@ interactions: ParameterSetName: - --resource-group --name --location --node-count --ssh-key-value --tier User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c621e550-d703-46e2-9e89-2bc113770a50?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0e19b0b4-4165-b74d-9581-a4d23fca266d\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:19:12.1284898Z\"\n }" + string: "{\n \"name\": \"50e521c6-03d7-e246-9e89-2bc113770a50\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:43:45.3087667Z\"\n }" headers: cache-control: - no-cache @@ -417,7 +416,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:21:45 GMT + - Thu, 29 Jun 2023 10:46:16 GMT expires: - '-1' pragma: @@ -449,15 +448,351 @@ interactions: ParameterSetName: - --resource-group --name --location --node-count --ssh-key-value --tier User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c621e550-d703-46e2-9e89-2bc113770a50?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"50e521c6-03d7-e246-9e89-2bc113770a50\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:43:45.3087667Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:46: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-count --ssh-key-value --tier + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c621e550-d703-46e2-9e89-2bc113770a50?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"50e521c6-03d7-e246-9e89-2bc113770a50\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:43:45.3087667Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:47: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-count --ssh-key-value --tier + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c621e550-d703-46e2-9e89-2bc113770a50?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"50e521c6-03d7-e246-9e89-2bc113770a50\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:43:45.3087667Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:47: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-count --ssh-key-value --tier + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c621e550-d703-46e2-9e89-2bc113770a50?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"50e521c6-03d7-e246-9e89-2bc113770a50\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:43:45.3087667Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:48: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-count --ssh-key-value --tier + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c621e550-d703-46e2-9e89-2bc113770a50?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"50e521c6-03d7-e246-9e89-2bc113770a50\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:43:45.3087667Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:48: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-count --ssh-key-value --tier + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c621e550-d703-46e2-9e89-2bc113770a50?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"50e521c6-03d7-e246-9e89-2bc113770a50\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:43:45.3087667Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:49: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-count --ssh-key-value --tier + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c621e550-d703-46e2-9e89-2bc113770a50?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"50e521c6-03d7-e246-9e89-2bc113770a50\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:43:45.3087667Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:49: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-count --ssh-key-value --tier + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c621e550-d703-46e2-9e89-2bc113770a50?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"50e521c6-03d7-e246-9e89-2bc113770a50\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:43:45.3087667Z\",\n \"endTime\": + \"2023-06-29T10:50:09.1444301Z\"\n }" headers: cache-control: - no-cache @@ -466,7 +801,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:22:15 GMT + - Thu, 29 Jun 2023 10:50:17 GMT expires: - '-1' pragma: @@ -498,66 +833,63 @@ interactions: ParameterSetName: - --resource-group --name --location --node-count --ssh-key-value --tier User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-clitestkqsiytor2-79a739\",\n \"fqdn\": \"cliakstest-clitestkqsiytor2-79a739-fbacjgx8.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestkqsiytor2-79a739-fbacjgx8.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/2d97f46c-88fb-4cc7-9e76-42951b9c9e93\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4253' + - '3924' content-type: - application/json date: - - Thu, 15 Jun 2023 17:22:16 GMT + - Thu, 29 Jun 2023 10:50:17 GMT expires: - '-1' pragma: @@ -589,66 +921,63 @@ interactions: ParameterSetName: - --resource-group --name --tier User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-clitestkqsiytor2-79a739\",\n \"fqdn\": \"cliakstest-clitestkqsiytor2-79a739-fbacjgx8.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestkqsiytor2-79a739-fbacjgx8.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/2d97f46c-88fb-4cc7-9e76-42951b9c9e93\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4253' + - '3924' content-type: - application/json date: - - Thu, 15 Jun 2023 17:22:18 GMT + - Thu, 29 Jun 2023 10:50:19 GMT expires: - '-1' pragma: @@ -669,21 +998,20 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": - "cliakstest-clitestozlj4rvex-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": + "cliakstest-clitestkqsiytor2-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.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"}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_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"}]}, + "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": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/2d97f46c-88fb-4cc7-9e76-42951b9c9e93"}]}, "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"}}, @@ -699,74 +1027,71 @@ interactions: Connection: - keep-alive Content-Length: - - '2812' + - '2446' Content-Type: - application/json ParameterSetName: - --resource-group --name --tier User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestkqsiytor2-79a739\",\n \"fqdn\": \"cliakstest-clitestkqsiytor2-79a739-fbacjgx8.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestkqsiytor2-79a739-fbacjgx8.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/2d97f46c-88fb-4cc7-9e76-42951b9c9e93\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7f9abeb-5d80-4863-844c-2654af61bcd8?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4247' + - '3918' content-type: - application/json date: - - Thu, 15 Jun 2023 17:22:23 GMT + - Thu, 29 Jun 2023 10:50:23 GMT expires: - '-1' pragma: @@ -782,7 +1107,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 200 message: OK @@ -800,14 +1125,14 @@ interactions: ParameterSetName: - --resource-group --name --tier User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7f9abeb-5d80-4863-844c-2654af61bcd8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d53f096a-9e39-784c-ae38-d008271f75d9\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:22:22.9258314Z\"\n }" + string: "{\n \"name\": \"ebabf9f7-805d-6348-844c-2654af61bcd8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:50:23.3100889Z\"\n }" headers: cache-control: - no-cache @@ -816,7 +1141,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:22:23 GMT + - Thu, 29 Jun 2023 10:50:23 GMT expires: - '-1' pragma: @@ -848,14 +1173,14 @@ interactions: ParameterSetName: - --resource-group --name --tier User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7f9abeb-5d80-4863-844c-2654af61bcd8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d53f096a-9e39-784c-ae38-d008271f75d9\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:22:22.9258314Z\"\n }" + string: "{\n \"name\": \"ebabf9f7-805d-6348-844c-2654af61bcd8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:50:23.3100889Z\"\n }" headers: cache-control: - no-cache @@ -864,7 +1189,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:22:53 GMT + - Thu, 29 Jun 2023 10:50:53 GMT expires: - '-1' pragma: @@ -896,14 +1221,14 @@ interactions: ParameterSetName: - --resource-group --name --tier User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7f9abeb-5d80-4863-844c-2654af61bcd8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d53f096a-9e39-784c-ae38-d008271f75d9\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:22:22.9258314Z\"\n }" + string: "{\n \"name\": \"ebabf9f7-805d-6348-844c-2654af61bcd8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:50:23.3100889Z\"\n }" headers: cache-control: - no-cache @@ -912,7 +1237,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:23:23 GMT + - Thu, 29 Jun 2023 10:51:24 GMT expires: - '-1' pragma: @@ -944,14 +1269,14 @@ interactions: ParameterSetName: - --resource-group --name --tier User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7f9abeb-5d80-4863-844c-2654af61bcd8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d53f096a-9e39-784c-ae38-d008271f75d9\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:22:22.9258314Z\"\n }" + string: "{\n \"name\": \"ebabf9f7-805d-6348-844c-2654af61bcd8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:50:23.3100889Z\"\n }" headers: cache-control: - no-cache @@ -960,7 +1285,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:23:54 GMT + - Thu, 29 Jun 2023 10:51:54 GMT expires: - '-1' pragma: @@ -992,14 +1317,14 @@ interactions: ParameterSetName: - --resource-group --name --tier User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7f9abeb-5d80-4863-844c-2654af61bcd8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d53f096a-9e39-784c-ae38-d008271f75d9\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:22:22.9258314Z\"\n }" + string: "{\n \"name\": \"ebabf9f7-805d-6348-844c-2654af61bcd8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:50:23.3100889Z\"\n }" headers: cache-control: - no-cache @@ -1008,7 +1333,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:24:24 GMT + - Thu, 29 Jun 2023 10:52:24 GMT expires: - '-1' pragma: @@ -1040,24 +1365,24 @@ interactions: ParameterSetName: - --resource-group --name --tier User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7f9abeb-5d80-4863-844c-2654af61bcd8?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"ebabf9f7-805d-6348-844c-2654af61bcd8\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:50:23.3100889Z\",\n \"endTime\": + \"2023-06-29T10:52:26.9400109Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '170' content-type: - application/json date: - - Thu, 15 Jun 2023 17:24:55 GMT + - Thu, 29 Jun 2023 10:52:54 GMT expires: - '-1' pragma: @@ -1089,66 +1414,63 @@ interactions: ParameterSetName: - --resource-group --name --tier User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-clitestkqsiytor2-79a739\",\n \"fqdn\": \"cliakstest-clitestkqsiytor2-79a739-fbacjgx8.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestkqsiytor2-79a739-fbacjgx8.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/2d97f46c-88fb-4cc7-9e76-42951b9c9e93\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4249' + - '3920' content-type: - application/json date: - - Thu, 15 Jun 2023 17:24:55 GMT + - Thu, 29 Jun 2023 10:52:55 GMT expires: - '-1' pragma: @@ -1182,8 +1504,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/cliakstest000001?api-version=2023-05-01 response: @@ -1191,17 +1513,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3a64f79a-92c6-499a-8626-5031afe58af6?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 15 Jun 2023 17:24:57 GMT + - Thu, 29 Jun 2023 10:52:57 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/3a64f79a-92c6-499a-8626-5031afe58af6?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 index d8d5ae0e421..1f150c0015b 100644 --- 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -32,7 +32,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 17:25:07 GMT + - Thu, 29 Jun 2023 10:51:56 GMT expires: - '-1' pragma: @@ -54,12 +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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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": {}}}' headers: Accept: - application/json @@ -70,7 +71,7 @@ interactions: Connection: - keep-alive Content-Length: - - '1799' + - '1470' Content-Type: - application/json ParameterSetName: @@ -78,26 +79,60 @@ interactions: --service-principal --client-secret --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - 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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-dbvz6swj.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-dbvz6swj.portal.hcp.westus2.azmk8s.io\",\n + \ \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"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/a5d8453b-e006-4f06-8937-cb5ac42a2204?api-version=2016-03-30 cache-control: - no-cache content-length: - - '313' + - '3092' content-type: - application/json date: - - Thu, 15 Jun 2023 17:25:12 GMT + - Thu, 29 Jun 2023 10:52:02 GMT expires: - '-1' pragma: @@ -109,97 +144,143 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: - code: 404 - message: Not Found + code: 201 + message: Created - 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"}]}}, "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": {}}}' + 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 + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a5d8453b-e006-4f06-8937-cb5ac42a2204?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"3b45d8a5-06e0-064f-8937-cb5ac42a2204\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:52:02.3415646Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: - application/json + date: + - Thu, 29 Jun 2023 10:52: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 - Content-Length: - - '1799' - Content-Type: + 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.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a5d8453b-e006-4f06-8937-cb5ac42a2204?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"3b45d8a5-06e0-064f-8937-cb5ac42a2204\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:52:02.3415646Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: - application/json + date: + - Thu, 29 Jun 2023 10:52: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 --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: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-05-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a5d8453b-e006-4f06-8937-cb5ac42a2204?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\": \"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 }" + string: "{\n \"name\": \"3b45d8a5-06e0-064f-8937-cb5ac42a2204\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:52:02.3415646Z\"\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: - - '3421' + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 17:25:24 GMT + - Thu, 29 Jun 2023 10:53:03 GMT expires: - '-1' pragma: @@ -208,13 +289,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: @@ -231,23 +314,23 @@ interactions: --service-principal --client-secret --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a5d8453b-e006-4f06-8937-cb5ac42a2204?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7546eca5-acd2-1045-9320-2149de3f291b\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:25:23.988697Z\"\n }" + string: "{\n \"name\": \"3b45d8a5-06e0-064f-8937-cb5ac42a2204\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:52:02.3415646Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 17:25:24 GMT + - Thu, 29 Jun 2023 10:53:33 GMT expires: - '-1' pragma: @@ -281,23 +364,23 @@ interactions: --service-principal --client-secret --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a5d8453b-e006-4f06-8937-cb5ac42a2204?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7546eca5-acd2-1045-9320-2149de3f291b\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:25:23.988697Z\"\n }" + string: "{\n \"name\": \"3b45d8a5-06e0-064f-8937-cb5ac42a2204\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:52:02.3415646Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 17:25:54 GMT + - Thu, 29 Jun 2023 10:54:03 GMT expires: - '-1' pragma: @@ -331,23 +414,23 @@ interactions: --service-principal --client-secret --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a5d8453b-e006-4f06-8937-cb5ac42a2204?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7546eca5-acd2-1045-9320-2149de3f291b\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:25:23.988697Z\"\n }" + string: "{\n \"name\": \"3b45d8a5-06e0-064f-8937-cb5ac42a2204\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:52:02.3415646Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 17:26:24 GMT + - Thu, 29 Jun 2023 10:54:33 GMT expires: - '-1' pragma: @@ -381,23 +464,23 @@ interactions: --service-principal --client-secret --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a5d8453b-e006-4f06-8937-cb5ac42a2204?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7546eca5-acd2-1045-9320-2149de3f291b\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:25:23.988697Z\"\n }" + string: "{\n \"name\": \"3b45d8a5-06e0-064f-8937-cb5ac42a2204\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:52:02.3415646Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 17:26:54 GMT + - Thu, 29 Jun 2023 10:55:03 GMT expires: - '-1' pragma: @@ -431,23 +514,23 @@ interactions: --service-principal --client-secret --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a5d8453b-e006-4f06-8937-cb5ac42a2204?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7546eca5-acd2-1045-9320-2149de3f291b\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:25:23.988697Z\"\n }" + string: "{\n \"name\": \"3b45d8a5-06e0-064f-8937-cb5ac42a2204\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:52:02.3415646Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 17:27:25 GMT + - Thu, 29 Jun 2023 10:55:33 GMT expires: - '-1' pragma: @@ -481,23 +564,23 @@ interactions: --service-principal --client-secret --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a5d8453b-e006-4f06-8937-cb5ac42a2204?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7546eca5-acd2-1045-9320-2149de3f291b\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:25:23.988697Z\"\n }" + string: "{\n \"name\": \"3b45d8a5-06e0-064f-8937-cb5ac42a2204\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:52:02.3415646Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 17:27:55 GMT + - Thu, 29 Jun 2023 10:56:04 GMT expires: - '-1' pragma: @@ -531,24 +614,24 @@ interactions: --service-principal --client-secret --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a5d8453b-e006-4f06-8937-cb5ac42a2204?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"3b45d8a5-06e0-064f-8937-cb5ac42a2204\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:52:02.3415646Z\",\n \"endTime\": + \"2023-06-29T10:56:30.2699404Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '170' content-type: - application/json date: - - Thu, 15 Jun 2023 17:28:25 GMT + - Thu, 29 Jun 2023 10:56:34 GMT expires: - '-1' pragma: @@ -582,60 +665,59 @@ interactions: --service-principal --client-secret --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-dbvz6swj.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-dbvz6swj.portal.hcp.westus2.azmk8s.io\",\n + \ \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"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/df9dd713-4acb-43e2-8044-f6d9673bd917\"\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: - - '3685' + - '3356' content-type: - application/json date: - - Thu, 15 Jun 2023 17:28:26 GMT + - Thu, 29 Jun 2023 10:56:34 GMT expires: - '-1' pragma: @@ -667,25 +749,25 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-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 }" + 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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n + }" headers: cache-control: - no-cache @@ -694,7 +776,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:28:28 GMT + - Thu, 29 Jun 2023 10:56:35 GMT expires: - '-1' pragma: @@ -735,36 +817,35 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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-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/9e13998e-2178-4f55-9f79-c0dd0feeb384?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa5dae33-4be7-49a7-9cc5-cf75ce9cb275?api-version=2016-03-30 cache-control: - no-cache content-length: - - '988' + - '983' content-type: - application/json date: - - Thu, 15 Jun 2023 17:28:33 GMT + - Thu, 29 Jun 2023 10:56:40 GMT expires: - '-1' pragma: @@ -794,14 +875,110 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa5dae33-4be7-49a7-9cc5-cf75ce9cb275?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"33ae5dfa-e74b-a749-9cc5-cf75ce9cb275\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:56:40.3890215Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:56: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 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa5dae33-4be7-49a7-9cc5-cf75ce9cb275?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"33ae5dfa-e74b-a749-9cc5-cf75ce9cb275\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:56:40.3890215Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:57: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 --name --os-type --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa5dae33-4be7-49a7-9cc5-cf75ce9cb275?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8e99139e-7821-554f-9f79-c0dd0feeb384\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:28:33.2078883Z\"\n }" + string: "{\n \"name\": \"33ae5dfa-e74b-a749-9cc5-cf75ce9cb275\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:56:40.3890215Z\"\n }" headers: cache-control: - no-cache @@ -810,7 +987,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:28:33 GMT + - Thu, 29 Jun 2023 10:57:40 GMT expires: - '-1' pragma: @@ -842,14 +1019,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa5dae33-4be7-49a7-9cc5-cf75ce9cb275?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8e99139e-7821-554f-9f79-c0dd0feeb384\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:28:33.2078883Z\"\n }" + string: "{\n \"name\": \"33ae5dfa-e74b-a749-9cc5-cf75ce9cb275\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:56:40.3890215Z\"\n }" headers: cache-control: - no-cache @@ -858,7 +1035,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:29:03 GMT + - Thu, 29 Jun 2023 10:58:10 GMT expires: - '-1' pragma: @@ -890,14 +1067,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa5dae33-4be7-49a7-9cc5-cf75ce9cb275?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8e99139e-7821-554f-9f79-c0dd0feeb384\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:28:33.2078883Z\"\n }" + string: "{\n \"name\": \"33ae5dfa-e74b-a749-9cc5-cf75ce9cb275\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:56:40.3890215Z\"\n }" headers: cache-control: - no-cache @@ -906,7 +1083,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:29:33 GMT + - Thu, 29 Jun 2023 10:58:41 GMT expires: - '-1' pragma: @@ -938,14 +1115,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa5dae33-4be7-49a7-9cc5-cf75ce9cb275?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8e99139e-7821-554f-9f79-c0dd0feeb384\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:28:33.2078883Z\"\n }" + string: "{\n \"name\": \"33ae5dfa-e74b-a749-9cc5-cf75ce9cb275\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:56:40.3890215Z\"\n }" headers: cache-control: - no-cache @@ -954,7 +1131,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:30:03 GMT + - Thu, 29 Jun 2023 10:59:10 GMT expires: - '-1' pragma: @@ -986,14 +1163,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa5dae33-4be7-49a7-9cc5-cf75ce9cb275?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8e99139e-7821-554f-9f79-c0dd0feeb384\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:28:33.2078883Z\"\n }" + string: "{\n \"name\": \"33ae5dfa-e74b-a749-9cc5-cf75ce9cb275\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:56:40.3890215Z\"\n }" headers: cache-control: - no-cache @@ -1002,7 +1179,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:30:33 GMT + - Thu, 29 Jun 2023 10:59:40 GMT expires: - '-1' pragma: @@ -1034,14 +1211,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa5dae33-4be7-49a7-9cc5-cf75ce9cb275?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8e99139e-7821-554f-9f79-c0dd0feeb384\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:28:33.2078883Z\"\n }" + string: "{\n \"name\": \"33ae5dfa-e74b-a749-9cc5-cf75ce9cb275\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:56:40.3890215Z\"\n }" headers: cache-control: - no-cache @@ -1050,7 +1227,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:31:03 GMT + - Thu, 29 Jun 2023 11:00:11 GMT expires: - '-1' pragma: @@ -1082,14 +1259,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa5dae33-4be7-49a7-9cc5-cf75ce9cb275?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8e99139e-7821-554f-9f79-c0dd0feeb384\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:28:33.2078883Z\"\n }" + string: "{\n \"name\": \"33ae5dfa-e74b-a749-9cc5-cf75ce9cb275\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:56:40.3890215Z\"\n }" headers: cache-control: - no-cache @@ -1098,7 +1275,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:31:33 GMT + - Thu, 29 Jun 2023 11:00:41 GMT expires: - '-1' pragma: @@ -1130,14 +1307,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa5dae33-4be7-49a7-9cc5-cf75ce9cb275?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8e99139e-7821-554f-9f79-c0dd0feeb384\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:28:33.2078883Z\"\n }" + string: "{\n \"name\": \"33ae5dfa-e74b-a749-9cc5-cf75ce9cb275\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:56:40.3890215Z\"\n }" headers: cache-control: - no-cache @@ -1146,7 +1323,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:32:03 GMT + - Thu, 29 Jun 2023 11:01:11 GMT expires: - '-1' pragma: @@ -1178,14 +1355,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa5dae33-4be7-49a7-9cc5-cf75ce9cb275?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8e99139e-7821-554f-9f79-c0dd0feeb384\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:28:33.2078883Z\"\n }" + string: "{\n \"name\": \"33ae5dfa-e74b-a749-9cc5-cf75ce9cb275\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:56:40.3890215Z\"\n }" headers: cache-control: - no-cache @@ -1194,7 +1371,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:32:34 GMT + - Thu, 29 Jun 2023 11:01:41 GMT expires: - '-1' pragma: @@ -1226,15 +1403,63 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa5dae33-4be7-49a7-9cc5-cf75ce9cb275?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"33ae5dfa-e74b-a749-9cc5-cf75ce9cb275\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:56:40.3890215Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:02: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 --os-type --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa5dae33-4be7-49a7-9cc5-cf75ce9cb275?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"33ae5dfa-e74b-a749-9cc5-cf75ce9cb275\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:56:40.3890215Z\",\n \"endTime\": + \"2023-06-29T11:02:35.4560233Z\"\n }" headers: cache-control: - no-cache @@ -1243,7 +1468,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:33:04 GMT + - Thu, 29 Jun 2023 11:02:42 GMT expires: - '-1' pragma: @@ -1275,34 +1500,33 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/npwin?api-version=2023-05-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 }" + 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-20348.1787.230614\",\n \"upgradeSettings\": + {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '989' + - '984' content-type: - application/json date: - - Thu, 15 Jun 2023 17:33:05 GMT + - Thu, 29 Jun 2023 11:02:42 GMT expires: - '-1' pragma: @@ -1334,71 +1558,69 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-dbvz6swj.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-dbvz6swj.portal.hcp.westus2.azmk8s.io\",\n + \ \"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.19.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-20348.1787.230614\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"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/df9dd713-4acb-43e2-8044-f6d9673bd917\"\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: - - '4466' + - '4132' content-type: - application/json date: - - Thu, 15 Jun 2023 17:33:07 GMT + - Thu, 29 Jun 2023 11:02:43 GMT expires: - '-1' pragma: @@ -1431,15 +1653,15 @@ interactions: "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"}]}, + {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "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/df9dd713-4acb-43e2-8044-f6d9673bd917"}]}, "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {}, "workloadAutoScalerProfile": {}}}' @@ -1453,80 +1675,77 @@ interactions: Connection: - keep-alive Content-Length: - - '2968' + - '2602' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-dbvz6swj.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-dbvz6swj.portal.hcp.westus2.azmk8s.io\",\n + \ \"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.19.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-20348.1787.230614\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"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/df9dd713-4acb-43e2-8044-f6d9673bd917\"\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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fb366df0-5940-432a-ac27-bd540d6f25d2?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4500' + - '4166' content-type: - application/json date: - - Thu, 15 Jun 2023 17:33:13 GMT + - Thu, 29 Jun 2023 11:02:48 GMT expires: - '-1' pragma: @@ -1542,7 +1761,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -1560,14 +1779,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fb366df0-5940-432a-ac27-bd540d6f25d2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dfa4a4e8-0cf8-d643-9606-181fde343271\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:33:13.4115939Z\"\n }" + string: "{\n \"name\": \"f06d36fb-4059-2a43-ac27-bd540d6f25d2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:02:48.4212432Z\"\n }" headers: cache-control: - no-cache @@ -1576,7 +1795,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:33:13 GMT + - Thu, 29 Jun 2023 11:02:48 GMT expires: - '-1' pragma: @@ -1608,14 +1827,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fb366df0-5940-432a-ac27-bd540d6f25d2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dfa4a4e8-0cf8-d643-9606-181fde343271\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:33:13.4115939Z\"\n }" + string: "{\n \"name\": \"f06d36fb-4059-2a43-ac27-bd540d6f25d2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:02:48.4212432Z\"\n }" headers: cache-control: - no-cache @@ -1624,7 +1843,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:33:44 GMT + - Thu, 29 Jun 2023 11:03:18 GMT expires: - '-1' pragma: @@ -1656,14 +1875,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fb366df0-5940-432a-ac27-bd540d6f25d2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dfa4a4e8-0cf8-d643-9606-181fde343271\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:33:13.4115939Z\"\n }" + string: "{\n \"name\": \"f06d36fb-4059-2a43-ac27-bd540d6f25d2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:02:48.4212432Z\"\n }" headers: cache-control: - no-cache @@ -1672,7 +1891,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:34:14 GMT + - Thu, 29 Jun 2023 11:03:49 GMT expires: - '-1' pragma: @@ -1704,14 +1923,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fb366df0-5940-432a-ac27-bd540d6f25d2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dfa4a4e8-0cf8-d643-9606-181fde343271\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:33:13.4115939Z\"\n }" + string: "{\n \"name\": \"f06d36fb-4059-2a43-ac27-bd540d6f25d2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:02:48.4212432Z\"\n }" headers: cache-control: - no-cache @@ -1720,7 +1939,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:34:44 GMT + - Thu, 29 Jun 2023 11:04:19 GMT expires: - '-1' pragma: @@ -1752,14 +1971,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fb366df0-5940-432a-ac27-bd540d6f25d2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dfa4a4e8-0cf8-d643-9606-181fde343271\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:33:13.4115939Z\"\n }" + string: "{\n \"name\": \"f06d36fb-4059-2a43-ac27-bd540d6f25d2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:02:48.4212432Z\"\n }" headers: cache-control: - no-cache @@ -1768,7 +1987,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:35:14 GMT + - Thu, 29 Jun 2023 11:04:49 GMT expires: - '-1' pragma: @@ -1800,14 +2019,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fb366df0-5940-432a-ac27-bd540d6f25d2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dfa4a4e8-0cf8-d643-9606-181fde343271\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:33:13.4115939Z\"\n }" + string: "{\n \"name\": \"f06d36fb-4059-2a43-ac27-bd540d6f25d2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:02:48.4212432Z\"\n }" headers: cache-control: - no-cache @@ -1816,7 +2035,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:35:45 GMT + - Thu, 29 Jun 2023 11:05:19 GMT expires: - '-1' pragma: @@ -1848,14 +2067,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fb366df0-5940-432a-ac27-bd540d6f25d2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dfa4a4e8-0cf8-d643-9606-181fde343271\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:33:13.4115939Z\"\n }" + string: "{\n \"name\": \"f06d36fb-4059-2a43-ac27-bd540d6f25d2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:02:48.4212432Z\"\n }" headers: cache-control: - no-cache @@ -1864,7 +2083,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:36:15 GMT + - Thu, 29 Jun 2023 11:05:50 GMT expires: - '-1' pragma: @@ -1896,14 +2115,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fb366df0-5940-432a-ac27-bd540d6f25d2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dfa4a4e8-0cf8-d643-9606-181fde343271\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:33:13.4115939Z\"\n }" + string: "{\n \"name\": \"f06d36fb-4059-2a43-ac27-bd540d6f25d2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:02:48.4212432Z\"\n }" headers: cache-control: - no-cache @@ -1912,7 +2131,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:36:45 GMT + - Thu, 29 Jun 2023 11:06:20 GMT expires: - '-1' pragma: @@ -1944,14 +2163,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fb366df0-5940-432a-ac27-bd540d6f25d2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dfa4a4e8-0cf8-d643-9606-181fde343271\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:33:13.4115939Z\"\n }" + string: "{\n \"name\": \"f06d36fb-4059-2a43-ac27-bd540d6f25d2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:02:48.4212432Z\"\n }" headers: cache-control: - no-cache @@ -1960,7 +2179,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:37:15 GMT + - Thu, 29 Jun 2023 11:06:50 GMT expires: - '-1' pragma: @@ -1992,14 +2211,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fb366df0-5940-432a-ac27-bd540d6f25d2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dfa4a4e8-0cf8-d643-9606-181fde343271\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:33:13.4115939Z\"\n }" + string: "{\n \"name\": \"f06d36fb-4059-2a43-ac27-bd540d6f25d2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:02:48.4212432Z\"\n }" headers: cache-control: - no-cache @@ -2008,7 +2227,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:37:45 GMT + - Thu, 29 Jun 2023 11:07:20 GMT expires: - '-1' pragma: @@ -2040,14 +2259,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fb366df0-5940-432a-ac27-bd540d6f25d2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dfa4a4e8-0cf8-d643-9606-181fde343271\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:33:13.4115939Z\"\n }" + string: "{\n \"name\": \"f06d36fb-4059-2a43-ac27-bd540d6f25d2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:02:48.4212432Z\"\n }" headers: cache-control: - no-cache @@ -2056,7 +2275,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:38:16 GMT + - Thu, 29 Jun 2023 11:07:50 GMT expires: - '-1' pragma: @@ -2088,14 +2307,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fb366df0-5940-432a-ac27-bd540d6f25d2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dfa4a4e8-0cf8-d643-9606-181fde343271\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:33:13.4115939Z\"\n }" + string: "{\n \"name\": \"f06d36fb-4059-2a43-ac27-bd540d6f25d2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:02:48.4212432Z\"\n }" headers: cache-control: - no-cache @@ -2104,7 +2323,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:38:47 GMT + - Thu, 29 Jun 2023 11:08:21 GMT expires: - '-1' pragma: @@ -2136,14 +2355,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fb366df0-5940-432a-ac27-bd540d6f25d2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dfa4a4e8-0cf8-d643-9606-181fde343271\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:33:13.4115939Z\"\n }" + string: "{\n \"name\": \"f06d36fb-4059-2a43-ac27-bd540d6f25d2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:02:48.4212432Z\"\n }" headers: cache-control: - no-cache @@ -2152,7 +2371,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:39:16 GMT + - Thu, 29 Jun 2023 11:08:51 GMT expires: - '-1' pragma: @@ -2184,14 +2403,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fb366df0-5940-432a-ac27-bd540d6f25d2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dfa4a4e8-0cf8-d643-9606-181fde343271\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:33:13.4115939Z\"\n }" + string: "{\n \"name\": \"f06d36fb-4059-2a43-ac27-bd540d6f25d2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:02:48.4212432Z\"\n }" headers: cache-control: - no-cache @@ -2200,7 +2419,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:39:46 GMT + - Thu, 29 Jun 2023 11:09:21 GMT expires: - '-1' pragma: @@ -2232,14 +2451,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fb366df0-5940-432a-ac27-bd540d6f25d2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dfa4a4e8-0cf8-d643-9606-181fde343271\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:33:13.4115939Z\"\n }" + string: "{\n \"name\": \"f06d36fb-4059-2a43-ac27-bd540d6f25d2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:02:48.4212432Z\"\n }" headers: cache-control: - no-cache @@ -2248,7 +2467,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:40:17 GMT + - Thu, 29 Jun 2023 11:09:51 GMT expires: - '-1' pragma: @@ -2280,14 +2499,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fb366df0-5940-432a-ac27-bd540d6f25d2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dfa4a4e8-0cf8-d643-9606-181fde343271\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:33:13.4115939Z\"\n }" + string: "{\n \"name\": \"f06d36fb-4059-2a43-ac27-bd540d6f25d2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:02:48.4212432Z\"\n }" headers: cache-control: - no-cache @@ -2296,7 +2515,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:40:47 GMT + - Thu, 29 Jun 2023 11:10:21 GMT expires: - '-1' pragma: @@ -2328,14 +2547,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fb366df0-5940-432a-ac27-bd540d6f25d2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dfa4a4e8-0cf8-d643-9606-181fde343271\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:33:13.4115939Z\"\n }" + string: "{\n \"name\": \"f06d36fb-4059-2a43-ac27-bd540d6f25d2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:02:48.4212432Z\"\n }" headers: cache-control: - no-cache @@ -2344,7 +2563,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:41:17 GMT + - Thu, 29 Jun 2023 11:10:51 GMT expires: - '-1' pragma: @@ -2376,14 +2595,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fb366df0-5940-432a-ac27-bd540d6f25d2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dfa4a4e8-0cf8-d643-9606-181fde343271\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:33:13.4115939Z\"\n }" + string: "{\n \"name\": \"f06d36fb-4059-2a43-ac27-bd540d6f25d2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:02:48.4212432Z\"\n }" headers: cache-control: - no-cache @@ -2392,7 +2611,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:41:48 GMT + - Thu, 29 Jun 2023 11:11:22 GMT expires: - '-1' pragma: @@ -2424,14 +2643,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fb366df0-5940-432a-ac27-bd540d6f25d2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dfa4a4e8-0cf8-d643-9606-181fde343271\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:33:13.4115939Z\"\n }" + string: "{\n \"name\": \"f06d36fb-4059-2a43-ac27-bd540d6f25d2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:02:48.4212432Z\"\n }" headers: cache-control: - no-cache @@ -2440,7 +2659,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:42:17 GMT + - Thu, 29 Jun 2023 11:11:52 GMT expires: - '-1' pragma: @@ -2472,14 +2691,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fb366df0-5940-432a-ac27-bd540d6f25d2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dfa4a4e8-0cf8-d643-9606-181fde343271\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:33:13.4115939Z\"\n }" + string: "{\n \"name\": \"f06d36fb-4059-2a43-ac27-bd540d6f25d2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:02:48.4212432Z\"\n }" headers: cache-control: - no-cache @@ -2488,7 +2707,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:42:48 GMT + - Thu, 29 Jun 2023 11:12:22 GMT expires: - '-1' pragma: @@ -2520,14 +2739,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fb366df0-5940-432a-ac27-bd540d6f25d2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dfa4a4e8-0cf8-d643-9606-181fde343271\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:33:13.4115939Z\"\n }" + string: "{\n \"name\": \"f06d36fb-4059-2a43-ac27-bd540d6f25d2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:02:48.4212432Z\"\n }" headers: cache-control: - no-cache @@ -2536,7 +2755,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:43:18 GMT + - Thu, 29 Jun 2023 11:12:52 GMT expires: - '-1' pragma: @@ -2568,14 +2787,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fb366df0-5940-432a-ac27-bd540d6f25d2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dfa4a4e8-0cf8-d643-9606-181fde343271\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:33:13.4115939Z\"\n }" + string: "{\n \"name\": \"f06d36fb-4059-2a43-ac27-bd540d6f25d2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:02:48.4212432Z\"\n }" headers: cache-control: - no-cache @@ -2584,7 +2803,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:43:48 GMT + - Thu, 29 Jun 2023 11:13:22 GMT expires: - '-1' pragma: @@ -2616,14 +2835,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fb366df0-5940-432a-ac27-bd540d6f25d2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dfa4a4e8-0cf8-d643-9606-181fde343271\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:33:13.4115939Z\"\n }" + string: "{\n \"name\": \"f06d36fb-4059-2a43-ac27-bd540d6f25d2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:02:48.4212432Z\"\n }" headers: cache-control: - no-cache @@ -2632,7 +2851,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:44:18 GMT + - Thu, 29 Jun 2023 11:13:52 GMT expires: - '-1' pragma: @@ -2664,14 +2883,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fb366df0-5940-432a-ac27-bd540d6f25d2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dfa4a4e8-0cf8-d643-9606-181fde343271\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:33:13.4115939Z\"\n }" + string: "{\n \"name\": \"f06d36fb-4059-2a43-ac27-bd540d6f25d2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:02:48.4212432Z\"\n }" headers: cache-control: - no-cache @@ -2680,7 +2899,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:44:48 GMT + - Thu, 29 Jun 2023 11:14:23 GMT expires: - '-1' pragma: @@ -2712,14 +2931,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fb366df0-5940-432a-ac27-bd540d6f25d2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dfa4a4e8-0cf8-d643-9606-181fde343271\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:33:13.4115939Z\"\n }" + string: "{\n \"name\": \"f06d36fb-4059-2a43-ac27-bd540d6f25d2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:02:48.4212432Z\"\n }" headers: cache-control: - no-cache @@ -2728,7 +2947,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:45:18 GMT + - Thu, 29 Jun 2023 11:14:52 GMT expires: - '-1' pragma: @@ -2760,14 +2979,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fb366df0-5940-432a-ac27-bd540d6f25d2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dfa4a4e8-0cf8-d643-9606-181fde343271\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:33:13.4115939Z\"\n }" + string: "{\n \"name\": \"f06d36fb-4059-2a43-ac27-bd540d6f25d2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:02:48.4212432Z\"\n }" headers: cache-control: - no-cache @@ -2776,7 +2995,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:45:49 GMT + - Thu, 29 Jun 2023 11:15:22 GMT expires: - '-1' pragma: @@ -2808,14 +3027,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fb366df0-5940-432a-ac27-bd540d6f25d2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dfa4a4e8-0cf8-d643-9606-181fde343271\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:33:13.4115939Z\"\n }" + string: "{\n \"name\": \"f06d36fb-4059-2a43-ac27-bd540d6f25d2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:02:48.4212432Z\"\n }" headers: cache-control: - no-cache @@ -2824,7 +3043,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:46:18 GMT + - Thu, 29 Jun 2023 11:15:53 GMT expires: - '-1' pragma: @@ -2856,14 +3075,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fb366df0-5940-432a-ac27-bd540d6f25d2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dfa4a4e8-0cf8-d643-9606-181fde343271\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:33:13.4115939Z\"\n }" + string: "{\n \"name\": \"f06d36fb-4059-2a43-ac27-bd540d6f25d2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:02:48.4212432Z\"\n }" headers: cache-control: - no-cache @@ -2872,7 +3091,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:46:49 GMT + - Thu, 29 Jun 2023 11:16:24 GMT expires: - '-1' pragma: @@ -2904,15 +3123,111 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fb366df0-5940-432a-ac27-bd540d6f25d2?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"f06d36fb-4059-2a43-ac27-bd540d6f25d2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:02:48.4212432Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:16: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 update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-ahub + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fb366df0-5940-432a-ac27-bd540d6f25d2?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f06d36fb-4059-2a43-ac27-bd540d6f25d2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:02:48.4212432Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:17: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 --enable-ahub + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fb366df0-5940-432a-ac27-bd540d6f25d2?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f06d36fb-4059-2a43-ac27-bd540d6f25d2\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:02:48.4212432Z\",\n \"endTime\": + \"2023-06-29T11:17:54.6759077Z\"\n }" headers: cache-control: - no-cache @@ -2921,7 +3236,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:47:20 GMT + - Thu, 29 Jun 2023 11:17:54 GMT expires: - '-1' pragma: @@ -2953,72 +3268,69 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-dbvz6swj.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-dbvz6swj.portal.hcp.westus2.azmk8s.io\",\n + \ \"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.19.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-20348.1787.230614\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"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/df9dd713-4acb-43e2-8044-f6d9673bd917\"\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: - - '4503' + - '4169' content-type: - application/json date: - - Thu, 15 Jun 2023 17:47:21 GMT + - Thu, 29 Jun 2023 11:17:55 GMT expires: - '-1' pragma: @@ -3050,47 +3362,46 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-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 }" + 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.19.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-20348.1787.230614\",\n \"upgradeSettings\": + {},\n \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '2090' + - '2085' content-type: - application/json date: - - Thu, 15 Jun 2023 17:47:22 GMT + - Thu, 29 Jun 2023 11:17:55 GMT expires: - '-1' pragma: @@ -3124,8 +3435,8 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/cliakstest000001/agentPools/npwin?api-version=2023-05-01 response: @@ -3133,17 +3444,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/11446a0f-0fa9-4e23-bacd-7e0f340d7239?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 15 Jun 2023 17:47:23 GMT + - Thu, 29 Jun 2023 11:17:56 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/11446a0f-0fa9-4e23-bacd-7e0f340d7239?api-version=2016-03-30 pragma: - no-cache server: @@ -3153,7 +3464,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14996' status: code: 202 message: Accepted @@ -3173,8 +3484,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/cliakstest000001?api-version=2023-05-01 response: @@ -3182,17 +3493,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2eb3e400-50eb-47ac-976d-6a2234492978?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 15 Jun 2023 17:47:30 GMT + - Thu, 29 Jun 2023 11:18:02 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/2eb3e400-50eb-47ac-976d-6a2234492978?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_gmsa.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_windows_gmsa.yaml index fd23cc06df1..7f762d87fbf 100644 --- 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -32,7 +32,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 17:47:35 GMT + - Thu, 29 Jun 2023 11:18:05 GMT expires: - '-1' pragma: @@ -47,7 +47,7 @@ interactions: code: 404 message: Not Found - request: - body: '{"location": "centraluseuap", "identity": {"type": "SystemAssigned"}, "properties": + body: '{"location": "westus2", "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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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": {}}}' headers: AKSHTTPCustomFeatures: - Microsoft.ContainerService/AKSWindowsGmsaPreview @@ -73,7 +73,7 @@ interactions: Connection: - keep-alive Content-Length: - - '1776' + - '1441' Content-Type: - application/json ParameterSetName: @@ -81,65 +81,63 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - 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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-60thmx8n.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-60thmx8n.portal.hcp.westus2.azmk8s.io\",\n + \ \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 + \ \"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/centraluseuap/operations/b23f00b4-2884-40b3-9a56-39ebeccbd4a4?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/41749469-a923-4076-9611-5d3182319ac9?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3704' + - '3351' content-type: - application/json date: - - Thu, 15 Jun 2023 17:47:40 GMT + - Thu, 29 Jun 2023 11:18:11 GMT expires: - '-1' pragma: @@ -171,14 +169,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/b23f00b4-2884-40b3-9a56-39ebeccbd4a4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/41749469-a923-4076-9611-5d3182319ac9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b4003fb2-8428-b340-9a56-39ebeccbd4a4\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:47:40.5026811Z\"\n }" + string: "{\n \"name\": \"69947441-23a9-7640-9611-5d3182319ac9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:18:11.4391007Z\"\n }" headers: cache-control: - no-cache @@ -187,7 +185,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:47:40 GMT + - Thu, 29 Jun 2023 11:18:11 GMT expires: - '-1' pragma: @@ -221,14 +219,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/b23f00b4-2884-40b3-9a56-39ebeccbd4a4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/41749469-a923-4076-9611-5d3182319ac9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b4003fb2-8428-b340-9a56-39ebeccbd4a4\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:47:40.5026811Z\"\n }" + string: "{\n \"name\": \"69947441-23a9-7640-9611-5d3182319ac9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:18:11.4391007Z\"\n }" headers: cache-control: - no-cache @@ -237,7 +235,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:48:11 GMT + - Thu, 29 Jun 2023 11:18:41 GMT expires: - '-1' pragma: @@ -271,14 +269,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/b23f00b4-2884-40b3-9a56-39ebeccbd4a4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/41749469-a923-4076-9611-5d3182319ac9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b4003fb2-8428-b340-9a56-39ebeccbd4a4\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:47:40.5026811Z\"\n }" + string: "{\n \"name\": \"69947441-23a9-7640-9611-5d3182319ac9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:18:11.4391007Z\"\n }" headers: cache-control: - no-cache @@ -287,7 +285,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:48:40 GMT + - Thu, 29 Jun 2023 11:19:11 GMT expires: - '-1' pragma: @@ -321,14 +319,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/b23f00b4-2884-40b3-9a56-39ebeccbd4a4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/41749469-a923-4076-9611-5d3182319ac9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b4003fb2-8428-b340-9a56-39ebeccbd4a4\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:47:40.5026811Z\"\n }" + string: "{\n \"name\": \"69947441-23a9-7640-9611-5d3182319ac9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:18:11.4391007Z\"\n }" headers: cache-control: - no-cache @@ -337,7 +335,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:49:10 GMT + - Thu, 29 Jun 2023 11:19:42 GMT expires: - '-1' pragma: @@ -371,14 +369,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/b23f00b4-2884-40b3-9a56-39ebeccbd4a4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/41749469-a923-4076-9611-5d3182319ac9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b4003fb2-8428-b340-9a56-39ebeccbd4a4\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:47:40.5026811Z\"\n }" + string: "{\n \"name\": \"69947441-23a9-7640-9611-5d3182319ac9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:18:11.4391007Z\"\n }" headers: cache-control: - no-cache @@ -387,7 +385,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:49:41 GMT + - Thu, 29 Jun 2023 11:20:12 GMT expires: - '-1' pragma: @@ -421,14 +419,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/b23f00b4-2884-40b3-9a56-39ebeccbd4a4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/41749469-a923-4076-9611-5d3182319ac9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b4003fb2-8428-b340-9a56-39ebeccbd4a4\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:47:40.5026811Z\"\n }" + string: "{\n \"name\": \"69947441-23a9-7640-9611-5d3182319ac9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:18:11.4391007Z\"\n }" headers: cache-control: - no-cache @@ -437,7 +435,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:50:11 GMT + - Thu, 29 Jun 2023 11:20:42 GMT expires: - '-1' pragma: @@ -471,14 +469,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/b23f00b4-2884-40b3-9a56-39ebeccbd4a4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/41749469-a923-4076-9611-5d3182319ac9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b4003fb2-8428-b340-9a56-39ebeccbd4a4\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:47:40.5026811Z\"\n }" + string: "{\n \"name\": \"69947441-23a9-7640-9611-5d3182319ac9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:18:11.4391007Z\"\n }" headers: cache-control: - no-cache @@ -487,7 +485,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:50:41 GMT + - Thu, 29 Jun 2023 11:21:12 GMT expires: - '-1' pragma: @@ -521,15 +519,215 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/b23f00b4-2884-40b3-9a56-39ebeccbd4a4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/41749469-a923-4076-9611-5d3182319ac9?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 }" + string: "{\n \"name\": \"69947441-23a9-7640-9611-5d3182319ac9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:18:11.4391007Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:21: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 --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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/41749469-a923-4076-9611-5d3182319ac9?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"69947441-23a9-7640-9611-5d3182319ac9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:18:11.4391007Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11: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 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/41749469-a923-4076-9611-5d3182319ac9?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"69947441-23a9-7640-9611-5d3182319ac9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:18:11.4391007Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:22: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 --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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/41749469-a923-4076-9611-5d3182319ac9?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"69947441-23a9-7640-9611-5d3182319ac9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:18:11.4391007Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:23: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 --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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/41749469-a923-4076-9611-5d3182319ac9?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"69947441-23a9-7640-9611-5d3182319ac9\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:18:11.4391007Z\",\n \"endTime\": + \"2023-06-29T11:23:37.3944735Z\"\n }" headers: cache-control: - no-cache @@ -538,7 +736,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:51:11 GMT + - Thu, 29 Jun 2023 11:23:43 GMT expires: - '-1' pragma: @@ -572,67 +770,66 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - 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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-60thmx8n.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-60thmx8n.portal.hcp.westus2.azmk8s.io\",\n + \ \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 + \ \"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/0f7cd4c4-a8d7-4fe8-9083-a073fdfc0107\"\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: - - '4369' + - '4004' content-type: - application/json date: - - Thu, 15 Jun 2023 17:51:11 GMT + - Thu, 29 Jun 2023 11:23:43 GMT expires: - '-1' pragma: @@ -664,25 +861,25 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-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.07.0\"\ - ,\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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n + }" headers: cache-control: - no-cache @@ -691,7 +888,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:51:13 GMT + - Thu, 29 Jun 2023 11:23:45 GMT expires: - '-1' pragma: @@ -732,36 +929,35 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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-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/centraluseuap/operations/f7b657ee-a862-450b-a476-07b1b2a25187?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a71906af-e439-43a9-8faf-a32249a2c326?api-version=2016-03-30 cache-control: - no-cache content-length: - - '988' + - '983' content-type: - application/json date: - - Thu, 15 Jun 2023 17:51:17 GMT + - Thu, 29 Jun 2023 11:23:49 GMT expires: - '-1' pragma: @@ -773,7 +969,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 201 message: Created @@ -791,14 +987,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/f7b657ee-a862-450b-a476-07b1b2a25187?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a71906af-e439-43a9-8faf-a32249a2c326?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 }" + string: "{\n \"name\": \"af0619a7-39e4-a943-8faf-a32249a2c326\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:23:49.8149665Z\"\n }" headers: cache-control: - no-cache @@ -807,7 +1003,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:51:17 GMT + - Thu, 29 Jun 2023 11:23:49 GMT expires: - '-1' pragma: @@ -839,14 +1035,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/f7b657ee-a862-450b-a476-07b1b2a25187?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a71906af-e439-43a9-8faf-a32249a2c326?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 }" + string: "{\n \"name\": \"af0619a7-39e4-a943-8faf-a32249a2c326\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:23:49.8149665Z\"\n }" headers: cache-control: - no-cache @@ -855,7 +1051,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:51:47 GMT + - Thu, 29 Jun 2023 11:24:20 GMT expires: - '-1' pragma: @@ -887,14 +1083,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/f7b657ee-a862-450b-a476-07b1b2a25187?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a71906af-e439-43a9-8faf-a32249a2c326?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 }" + string: "{\n \"name\": \"af0619a7-39e4-a943-8faf-a32249a2c326\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:23:49.8149665Z\"\n }" headers: cache-control: - no-cache @@ -903,7 +1099,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:52:17 GMT + - Thu, 29 Jun 2023 11:24:50 GMT expires: - '-1' pragma: @@ -935,14 +1131,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/f7b657ee-a862-450b-a476-07b1b2a25187?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a71906af-e439-43a9-8faf-a32249a2c326?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 }" + string: "{\n \"name\": \"af0619a7-39e4-a943-8faf-a32249a2c326\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:23:49.8149665Z\"\n }" headers: cache-control: - no-cache @@ -951,7 +1147,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:52:48 GMT + - Thu, 29 Jun 2023 11:25:20 GMT expires: - '-1' pragma: @@ -983,14 +1179,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/f7b657ee-a862-450b-a476-07b1b2a25187?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a71906af-e439-43a9-8faf-a32249a2c326?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 }" + string: "{\n \"name\": \"af0619a7-39e4-a943-8faf-a32249a2c326\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:23:49.8149665Z\"\n }" headers: cache-control: - no-cache @@ -999,7 +1195,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:53:18 GMT + - Thu, 29 Jun 2023 11:25:49 GMT expires: - '-1' pragma: @@ -1031,14 +1227,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/f7b657ee-a862-450b-a476-07b1b2a25187?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a71906af-e439-43a9-8faf-a32249a2c326?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 }" + string: "{\n \"name\": \"af0619a7-39e4-a943-8faf-a32249a2c326\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:23:49.8149665Z\"\n }" headers: cache-control: - no-cache @@ -1047,7 +1243,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:53:48 GMT + - Thu, 29 Jun 2023 11:26:19 GMT expires: - '-1' pragma: @@ -1079,14 +1275,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/f7b657ee-a862-450b-a476-07b1b2a25187?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a71906af-e439-43a9-8faf-a32249a2c326?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 }" + string: "{\n \"name\": \"af0619a7-39e4-a943-8faf-a32249a2c326\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:23:49.8149665Z\"\n }" headers: cache-control: - no-cache @@ -1095,7 +1291,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:54:18 GMT + - Thu, 29 Jun 2023 11:26:49 GMT expires: - '-1' pragma: @@ -1127,14 +1323,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/f7b657ee-a862-450b-a476-07b1b2a25187?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a71906af-e439-43a9-8faf-a32249a2c326?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 }" + string: "{\n \"name\": \"af0619a7-39e4-a943-8faf-a32249a2c326\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:23:49.8149665Z\"\n }" headers: cache-control: - no-cache @@ -1143,7 +1339,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:54:49 GMT + - Thu, 29 Jun 2023 11:27:20 GMT expires: - '-1' pragma: @@ -1175,14 +1371,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/f7b657ee-a862-450b-a476-07b1b2a25187?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a71906af-e439-43a9-8faf-a32249a2c326?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 }" + string: "{\n \"name\": \"af0619a7-39e4-a943-8faf-a32249a2c326\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:23:49.8149665Z\"\n }" headers: cache-control: - no-cache @@ -1191,7 +1387,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:55:19 GMT + - Thu, 29 Jun 2023 11:27:50 GMT expires: - '-1' pragma: @@ -1223,14 +1419,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/f7b657ee-a862-450b-a476-07b1b2a25187?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a71906af-e439-43a9-8faf-a32249a2c326?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 }" + string: "{\n \"name\": \"af0619a7-39e4-a943-8faf-a32249a2c326\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:23:49.8149665Z\"\n }" headers: cache-control: - no-cache @@ -1239,7 +1435,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:55:49 GMT + - Thu, 29 Jun 2023 11:28:20 GMT expires: - '-1' pragma: @@ -1271,14 +1467,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/f7b657ee-a862-450b-a476-07b1b2a25187?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a71906af-e439-43a9-8faf-a32249a2c326?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 }" + string: "{\n \"name\": \"af0619a7-39e4-a943-8faf-a32249a2c326\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:23:49.8149665Z\"\n }" headers: cache-control: - no-cache @@ -1287,7 +1483,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:56:19 GMT + - Thu, 29 Jun 2023 11:28:51 GMT expires: - '-1' pragma: @@ -1319,14 +1515,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/f7b657ee-a862-450b-a476-07b1b2a25187?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a71906af-e439-43a9-8faf-a32249a2c326?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 }" + string: "{\n \"name\": \"af0619a7-39e4-a943-8faf-a32249a2c326\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:23:49.8149665Z\"\n }" headers: cache-control: - no-cache @@ -1335,7 +1531,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:56:49 GMT + - Thu, 29 Jun 2023 11:29:21 GMT expires: - '-1' pragma: @@ -1367,14 +1563,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/f7b657ee-a862-450b-a476-07b1b2a25187?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a71906af-e439-43a9-8faf-a32249a2c326?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 }" + string: "{\n \"name\": \"af0619a7-39e4-a943-8faf-a32249a2c326\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:23:49.8149665Z\"\n }" headers: cache-control: - no-cache @@ -1383,7 +1579,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:57:19 GMT + - Thu, 29 Jun 2023 11:29:51 GMT expires: - '-1' pragma: @@ -1415,15 +1611,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/f7b657ee-a862-450b-a476-07b1b2a25187?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a71906af-e439-43a9-8faf-a32249a2c326?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"af0619a7-39e4-a943-8faf-a32249a2c326\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:23:49.8149665Z\",\n \"endTime\": + \"2023-06-29T11:29:53.8329354Z\"\n }" headers: cache-control: - no-cache @@ -1432,7 +1628,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:57:50 GMT + - Thu, 29 Jun 2023 11:30:21 GMT expires: - '-1' pragma: @@ -1464,34 +1660,33 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/npwin?api-version=2023-05-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.1787.230614\",\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-20348.1787.230614\",\n \"upgradeSettings\": + {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '989' + - '984' content-type: - application/json date: - - Thu, 15 Jun 2023 17:57:50 GMT + - Thu, 29 Jun 2023 11:30:22 GMT expires: - '-1' pragma: @@ -1523,47 +1718,46 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-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.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 }" + 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.19.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-20348.1787.230614\",\n \"upgradeSettings\": + {},\n \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '2090' + - '2085' content-type: - application/json date: - - Thu, 15 Jun 2023 17:57:51 GMT + - Thu, 29 Jun 2023 11:30:23 GMT expires: - '-1' pragma: @@ -1597,8 +1791,8 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/cliakstest000001/agentPools/npwin?api-version=2023-05-01 response: @@ -1606,17 +1800,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e7a4cdcf-6f99-4733-8b2b-03a57001b644?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 15 Jun 2023 17:57:52 GMT + - Thu, 29 Jun 2023 11:30:23 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/e7a4cdcf-6f99-4733-8b2b-03a57001b644?api-version=2016-03-30 pragma: - no-cache server: @@ -1646,8 +1840,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/cliakstest000001?api-version=2023-05-01 response: @@ -1655,17 +1849,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/35c311ae-bcc6-423e-b0c2-7f9b6a1ccb27?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 15 Jun 2023 17:57:58 GMT + - Thu, 29 Jun 2023 11:30:30 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/35c311ae-bcc6-423e-b0c2-7f9b6a1ccb27?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 index 00db8fbb9c4..9702c871c0e 100644 --- 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -32,7 +32,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 17:58:02 GMT + - Thu, 29 Jun 2023 10:45:50 GMT expires: - '-1' pragma: @@ -55,11 +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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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": {}}}' headers: Accept: - application/json @@ -70,7 +71,7 @@ interactions: Connection: - keep-alive Content-Length: - - '1735' + - '1406' Content-Type: - application/json ParameterSetName: @@ -78,63 +79,61 @@ interactions: --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-wushd3k9.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-wushd3k9.portal.hcp.westus2.azmk8s.io\",\n + \ \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"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/b9d4efd0-9a07-4dbe-a560-cb672801ed18?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7813d68a-4d01-4791-b5cd-8e1ee0ad3c12?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3582' + - '3253' content-type: - application/json date: - - Thu, 15 Jun 2023 17:58:09 GMT + - Thu, 29 Jun 2023 10:46:02 GMT expires: - '-1' pragma: @@ -146,7 +145,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -166,14 +165,114 @@ interactions: --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7813d68a-4d01-4791-b5cd-8e1ee0ad3c12?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"8ad61378-014d-9147-b5cd-8e1ee0ad3c12\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:46:02.4498248Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10: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 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7813d68a-4d01-4791-b5cd-8e1ee0ad3c12?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"8ad61378-014d-9147-b5cd-8e1ee0ad3c12\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:46:02.4498248Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:46: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 + --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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7813d68a-4d01-4791-b5cd-8e1ee0ad3c12?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d0efd4b9-079a-be4d-a560-cb672801ed18\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:58:09.0560096Z\"\n }" + string: "{\n \"name\": \"8ad61378-014d-9147-b5cd-8e1ee0ad3c12\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:46:02.4498248Z\"\n }" headers: cache-control: - no-cache @@ -182,7 +281,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:58:09 GMT + - Thu, 29 Jun 2023 10:47:02 GMT expires: - '-1' pragma: @@ -216,14 +315,14 @@ interactions: --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7813d68a-4d01-4791-b5cd-8e1ee0ad3c12?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d0efd4b9-079a-be4d-a560-cb672801ed18\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:58:09.0560096Z\"\n }" + string: "{\n \"name\": \"8ad61378-014d-9147-b5cd-8e1ee0ad3c12\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:46:02.4498248Z\"\n }" headers: cache-control: - no-cache @@ -232,7 +331,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:58:39 GMT + - Thu, 29 Jun 2023 10:47:33 GMT expires: - '-1' pragma: @@ -266,14 +365,14 @@ interactions: --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7813d68a-4d01-4791-b5cd-8e1ee0ad3c12?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d0efd4b9-079a-be4d-a560-cb672801ed18\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:58:09.0560096Z\"\n }" + string: "{\n \"name\": \"8ad61378-014d-9147-b5cd-8e1ee0ad3c12\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:46:02.4498248Z\"\n }" headers: cache-control: - no-cache @@ -282,7 +381,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:59:09 GMT + - Thu, 29 Jun 2023 10:48:03 GMT expires: - '-1' pragma: @@ -316,14 +415,14 @@ interactions: --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7813d68a-4d01-4791-b5cd-8e1ee0ad3c12?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d0efd4b9-079a-be4d-a560-cb672801ed18\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:58:09.0560096Z\"\n }" + string: "{\n \"name\": \"8ad61378-014d-9147-b5cd-8e1ee0ad3c12\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:46:02.4498248Z\"\n }" headers: cache-control: - no-cache @@ -332,7 +431,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 17:59:40 GMT + - Thu, 29 Jun 2023 10:48:33 GMT expires: - '-1' pragma: @@ -366,14 +465,14 @@ interactions: --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7813d68a-4d01-4791-b5cd-8e1ee0ad3c12?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d0efd4b9-079a-be4d-a560-cb672801ed18\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:58:09.0560096Z\"\n }" + string: "{\n \"name\": \"8ad61378-014d-9147-b5cd-8e1ee0ad3c12\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:46:02.4498248Z\"\n }" headers: cache-control: - no-cache @@ -382,7 +481,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:00:10 GMT + - Thu, 29 Jun 2023 10:49:03 GMT expires: - '-1' pragma: @@ -416,14 +515,14 @@ interactions: --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7813d68a-4d01-4791-b5cd-8e1ee0ad3c12?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d0efd4b9-079a-be4d-a560-cb672801ed18\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:58:09.0560096Z\"\n }" + string: "{\n \"name\": \"8ad61378-014d-9147-b5cd-8e1ee0ad3c12\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:46:02.4498248Z\"\n }" headers: cache-control: - no-cache @@ -432,7 +531,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:00:40 GMT + - Thu, 29 Jun 2023 10:49:33 GMT expires: - '-1' pragma: @@ -466,14 +565,14 @@ interactions: --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7813d68a-4d01-4791-b5cd-8e1ee0ad3c12?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d0efd4b9-079a-be4d-a560-cb672801ed18\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T17:58:09.0560096Z\"\n }" + string: "{\n \"name\": \"8ad61378-014d-9147-b5cd-8e1ee0ad3c12\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:46:02.4498248Z\"\n }" headers: cache-control: - no-cache @@ -482,7 +581,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:01:10 GMT + - Thu, 29 Jun 2023 10:50:03 GMT expires: - '-1' pragma: @@ -516,15 +615,65 @@ interactions: --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7813d68a-4d01-4791-b5cd-8e1ee0ad3c12?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 }" + string: "{\n \"name\": \"8ad61378-014d-9147-b5cd-8e1ee0ad3c12\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:46:02.4498248Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:50: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 + --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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7813d68a-4d01-4791-b5cd-8e1ee0ad3c12?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"8ad61378-014d-9147-b5cd-8e1ee0ad3c12\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:46:02.4498248Z\",\n \"endTime\": + \"2023-06-29T10:50:55.4497709Z\"\n }" headers: cache-control: - no-cache @@ -533,7 +682,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:01:41 GMT + - Thu, 29 Jun 2023 10:51:04 GMT expires: - '-1' pragma: @@ -567,65 +716,64 @@ interactions: --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-wushd3k9.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-wushd3k9.portal.hcp.westus2.azmk8s.io\",\n + \ \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"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/b93c8260-c18a-4906-9cb0-f511c4b287af\"\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: - - '4235' + - '3906' content-type: - application/json date: - - Thu, 15 Jun 2023 18:01:41 GMT + - Thu, 29 Jun 2023 10:51:04 GMT expires: - '-1' pragma: @@ -657,25 +805,25 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-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 }" + 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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n + }" headers: cache-control: - no-cache @@ -684,7 +832,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:01:43 GMT + - Thu, 29 Jun 2023 10:51:07 GMT expires: - '-1' pragma: @@ -725,36 +873,35 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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-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/f52c435a-9754-4fdb-b98c-70bf6e3ba263?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a7463001-3d11-4506-8bd3-4a4b7833e120?api-version=2016-03-30 cache-control: - no-cache content-length: - - '988' + - '983' content-type: - application/json date: - - Thu, 15 Jun 2023 18:01:49 GMT + - Thu, 29 Jun 2023 10:51:11 GMT expires: - '-1' pragma: @@ -766,7 +913,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -784,14 +931,158 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a7463001-3d11-4506-8bd3-4a4b7833e120?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"013046a7-113d-0645-8bd3-4a4b7833e120\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:51:11.8570682Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:51: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 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a7463001-3d11-4506-8bd3-4a4b7833e120?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"013046a7-113d-0645-8bd3-4a4b7833e120\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:51:11.8570682Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:51: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 --os-type --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a7463001-3d11-4506-8bd3-4a4b7833e120?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"013046a7-113d-0645-8bd3-4a4b7833e120\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:51:11.8570682Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:52: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 --os-type --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a7463001-3d11-4506-8bd3-4a4b7833e120?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 }" + string: "{\n \"name\": \"013046a7-113d-0645-8bd3-4a4b7833e120\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:51:11.8570682Z\"\n }" headers: cache-control: - no-cache @@ -800,7 +1091,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:01:49 GMT + - Thu, 29 Jun 2023 10:52:42 GMT expires: - '-1' pragma: @@ -832,14 +1123,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a7463001-3d11-4506-8bd3-4a4b7833e120?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 }" + string: "{\n \"name\": \"013046a7-113d-0645-8bd3-4a4b7833e120\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:51:11.8570682Z\"\n }" headers: cache-control: - no-cache @@ -848,7 +1139,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:02:19 GMT + - Thu, 29 Jun 2023 10:53:12 GMT expires: - '-1' pragma: @@ -880,14 +1171,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a7463001-3d11-4506-8bd3-4a4b7833e120?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 }" + string: "{\n \"name\": \"013046a7-113d-0645-8bd3-4a4b7833e120\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:51:11.8570682Z\"\n }" headers: cache-control: - no-cache @@ -896,7 +1187,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:02:49 GMT + - Thu, 29 Jun 2023 10:53:42 GMT expires: - '-1' pragma: @@ -928,14 +1219,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a7463001-3d11-4506-8bd3-4a4b7833e120?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 }" + string: "{\n \"name\": \"013046a7-113d-0645-8bd3-4a4b7833e120\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:51:11.8570682Z\"\n }" headers: cache-control: - no-cache @@ -944,7 +1235,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:03:20 GMT + - Thu, 29 Jun 2023 10:54:12 GMT expires: - '-1' pragma: @@ -976,14 +1267,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a7463001-3d11-4506-8bd3-4a4b7833e120?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 }" + string: "{\n \"name\": \"013046a7-113d-0645-8bd3-4a4b7833e120\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:51:11.8570682Z\"\n }" headers: cache-control: - no-cache @@ -992,7 +1283,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:03:50 GMT + - Thu, 29 Jun 2023 10:54:42 GMT expires: - '-1' pragma: @@ -1024,14 +1315,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a7463001-3d11-4506-8bd3-4a4b7833e120?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 }" + string: "{\n \"name\": \"013046a7-113d-0645-8bd3-4a4b7833e120\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:51:11.8570682Z\"\n }" headers: cache-control: - no-cache @@ -1040,7 +1331,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:04:21 GMT + - Thu, 29 Jun 2023 10:55:12 GMT expires: - '-1' pragma: @@ -1072,14 +1363,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a7463001-3d11-4506-8bd3-4a4b7833e120?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 }" + string: "{\n \"name\": \"013046a7-113d-0645-8bd3-4a4b7833e120\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:51:11.8570682Z\"\n }" headers: cache-control: - no-cache @@ -1088,7 +1379,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:04:51 GMT + - Thu, 29 Jun 2023 10:55:42 GMT expires: - '-1' pragma: @@ -1120,14 +1411,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a7463001-3d11-4506-8bd3-4a4b7833e120?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 }" + string: "{\n \"name\": \"013046a7-113d-0645-8bd3-4a4b7833e120\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:51:11.8570682Z\"\n }" headers: cache-control: - no-cache @@ -1136,7 +1427,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:05:21 GMT + - Thu, 29 Jun 2023 10:56:13 GMT expires: - '-1' pragma: @@ -1168,14 +1459,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a7463001-3d11-4506-8bd3-4a4b7833e120?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 }" + string: "{\n \"name\": \"013046a7-113d-0645-8bd3-4a4b7833e120\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:51:11.8570682Z\"\n }" headers: cache-control: - no-cache @@ -1184,7 +1475,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:05:51 GMT + - Thu, 29 Jun 2023 10:56:43 GMT expires: - '-1' pragma: @@ -1216,14 +1507,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a7463001-3d11-4506-8bd3-4a4b7833e120?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 }" + string: "{\n \"name\": \"013046a7-113d-0645-8bd3-4a4b7833e120\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:51:11.8570682Z\"\n }" headers: cache-control: - no-cache @@ -1232,7 +1523,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:06:21 GMT + - Thu, 29 Jun 2023 10:57:13 GMT expires: - '-1' pragma: @@ -1264,14 +1555,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a7463001-3d11-4506-8bd3-4a4b7833e120?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 }" + string: "{\n \"name\": \"013046a7-113d-0645-8bd3-4a4b7833e120\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:51:11.8570682Z\"\n }" headers: cache-control: - no-cache @@ -1280,7 +1571,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:06:51 GMT + - Thu, 29 Jun 2023 10:57:43 GMT expires: - '-1' pragma: @@ -1312,14 +1603,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a7463001-3d11-4506-8bd3-4a4b7833e120?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 }" + string: "{\n \"name\": \"013046a7-113d-0645-8bd3-4a4b7833e120\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:51:11.8570682Z\"\n }" headers: cache-control: - no-cache @@ -1328,7 +1619,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:07:22 GMT + - Thu, 29 Jun 2023 10:58:14 GMT expires: - '-1' pragma: @@ -1360,15 +1651,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a7463001-3d11-4506-8bd3-4a4b7833e120?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 }" + string: "{\n \"name\": \"013046a7-113d-0645-8bd3-4a4b7833e120\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:51:11.8570682Z\",\n \"endTime\": + \"2023-06-29T10:58:17.3583678Z\"\n }" headers: cache-control: - no-cache @@ -1377,7 +1668,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:07:51 GMT + - Thu, 29 Jun 2023 10:58:44 GMT expires: - '-1' pragma: @@ -1409,34 +1700,33 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/npwin?api-version=2023-05-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 }" + 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-20348.1787.230614\",\n \"upgradeSettings\": + {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '989' + - '984' content-type: - application/json date: - - Thu, 15 Jun 2023 18:07:52 GMT + - Thu, 29 Jun 2023 10:58:44 GMT expires: - '-1' pragma: @@ -1468,76 +1758,74 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-wushd3k9.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-wushd3k9.portal.hcp.westus2.azmk8s.io\",\n + \ \"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.19.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-20348.1787.230614\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"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/b93c8260-c18a-4906-9cb0-f511c4b287af\"\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: - - '5016' + - '4682' content-type: - application/json date: - - Thu, 15 Jun 2023 18:07:55 GMT + - Thu, 29 Jun 2023 10:58:45 GMT expires: - '-1' pragma: @@ -1571,15 +1859,15 @@ interactions: "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/f8e73794-ec32-4c2a-8a21-1269c315e73c"}]}, + {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "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/b93c8260-c18a-4906-9cb0-f511c4b287af"}]}, "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"}}, @@ -1595,85 +1883,82 @@ interactions: Connection: - keep-alive Content-Length: - - '3364' + - '2998' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-wushd3k9.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-wushd3k9.portal.hcp.westus2.azmk8s.io\",\n + \ \"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.19.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-20348.1787.230614\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"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/b93c8260-c18a-4906-9cb0-f511c4b287af\"\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/4e3b3334-95a1-42a3-8334-3832d579e2a5?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bb0668fe-cc50-4370-847e-f918c46adf91?api-version=2016-03-30 cache-control: - no-cache content-length: - - '5050' + - '4716' content-type: - application/json date: - - Thu, 15 Jun 2023 18:08:00 GMT + - Thu, 29 Jun 2023 10:58:51 GMT expires: - '-1' pragma: @@ -1707,23 +1992,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bb0668fe-cc50-4370-847e-f918c46adf91?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 }" + string: "{\n \"name\": \"fe6806bb-50cc-7043-847e-f918c46adf91\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:58:50.545478Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 18:08:00 GMT + - Thu, 29 Jun 2023 10:58:51 GMT expires: - '-1' pragma: @@ -1755,23 +2040,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bb0668fe-cc50-4370-847e-f918c46adf91?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 }" + string: "{\n \"name\": \"fe6806bb-50cc-7043-847e-f918c46adf91\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:58:50.545478Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 18:08:30 GMT + - Thu, 29 Jun 2023 10:59:21 GMT expires: - '-1' pragma: @@ -1803,23 +2088,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bb0668fe-cc50-4370-847e-f918c46adf91?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 }" + string: "{\n \"name\": \"fe6806bb-50cc-7043-847e-f918c46adf91\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:58:50.545478Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 18:09:01 GMT + - Thu, 29 Jun 2023 10:59:51 GMT expires: - '-1' pragma: @@ -1851,23 +2136,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bb0668fe-cc50-4370-847e-f918c46adf91?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 }" + string: "{\n \"name\": \"fe6806bb-50cc-7043-847e-f918c46adf91\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:58:50.545478Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 18:09:31 GMT + - Thu, 29 Jun 2023 11:00:21 GMT expires: - '-1' pragma: @@ -1899,23 +2184,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bb0668fe-cc50-4370-847e-f918c46adf91?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 }" + string: "{\n \"name\": \"fe6806bb-50cc-7043-847e-f918c46adf91\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:58:50.545478Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 18:10:02 GMT + - Thu, 29 Jun 2023 11:00:51 GMT expires: - '-1' pragma: @@ -1947,23 +2232,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bb0668fe-cc50-4370-847e-f918c46adf91?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 }" + string: "{\n \"name\": \"fe6806bb-50cc-7043-847e-f918c46adf91\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:58:50.545478Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 18:10:32 GMT + - Thu, 29 Jun 2023 11:01:22 GMT expires: - '-1' pragma: @@ -1995,23 +2280,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bb0668fe-cc50-4370-847e-f918c46adf91?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 }" + string: "{\n \"name\": \"fe6806bb-50cc-7043-847e-f918c46adf91\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:58:50.545478Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 18:11:02 GMT + - Thu, 29 Jun 2023 11:01:52 GMT expires: - '-1' pragma: @@ -2043,23 +2328,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bb0668fe-cc50-4370-847e-f918c46adf91?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 }" + string: "{\n \"name\": \"fe6806bb-50cc-7043-847e-f918c46adf91\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:58:50.545478Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 18:11:32 GMT + - Thu, 29 Jun 2023 11:02:22 GMT expires: - '-1' pragma: @@ -2091,23 +2376,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bb0668fe-cc50-4370-847e-f918c46adf91?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 }" + string: "{\n \"name\": \"fe6806bb-50cc-7043-847e-f918c46adf91\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:58:50.545478Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 18:12:02 GMT + - Thu, 29 Jun 2023 11:02:52 GMT expires: - '-1' pragma: @@ -2139,23 +2424,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bb0668fe-cc50-4370-847e-f918c46adf91?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 }" + string: "{\n \"name\": \"fe6806bb-50cc-7043-847e-f918c46adf91\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:58:50.545478Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 18:12:32 GMT + - Thu, 29 Jun 2023 11:03:22 GMT expires: - '-1' pragma: @@ -2187,23 +2472,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bb0668fe-cc50-4370-847e-f918c46adf91?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 }" + string: "{\n \"name\": \"fe6806bb-50cc-7043-847e-f918c46adf91\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:58:50.545478Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 18:13:02 GMT + - Thu, 29 Jun 2023 11:03:53 GMT expires: - '-1' pragma: @@ -2235,23 +2520,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bb0668fe-cc50-4370-847e-f918c46adf91?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 }" + string: "{\n \"name\": \"fe6806bb-50cc-7043-847e-f918c46adf91\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:58:50.545478Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 18:13:33 GMT + - Thu, 29 Jun 2023 11:04:23 GMT expires: - '-1' pragma: @@ -2283,23 +2568,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bb0668fe-cc50-4370-847e-f918c46adf91?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 }" + string: "{\n \"name\": \"fe6806bb-50cc-7043-847e-f918c46adf91\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:58:50.545478Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 18:14:03 GMT + - Thu, 29 Jun 2023 11:04:54 GMT expires: - '-1' pragma: @@ -2331,23 +2616,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bb0668fe-cc50-4370-847e-f918c46adf91?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 }" + string: "{\n \"name\": \"fe6806bb-50cc-7043-847e-f918c46adf91\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:58:50.545478Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 18:14:33 GMT + - Thu, 29 Jun 2023 11:05:23 GMT expires: - '-1' pragma: @@ -2379,23 +2664,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bb0668fe-cc50-4370-847e-f918c46adf91?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 }" + string: "{\n \"name\": \"fe6806bb-50cc-7043-847e-f918c46adf91\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:58:50.545478Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 18:15:03 GMT + - Thu, 29 Jun 2023 11:05:53 GMT expires: - '-1' pragma: @@ -2427,23 +2712,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bb0668fe-cc50-4370-847e-f918c46adf91?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 }" + string: "{\n \"name\": \"fe6806bb-50cc-7043-847e-f918c46adf91\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:58:50.545478Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 18:15:34 GMT + - Thu, 29 Jun 2023 11:06:25 GMT expires: - '-1' pragma: @@ -2475,23 +2760,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bb0668fe-cc50-4370-847e-f918c46adf91?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 }" + string: "{\n \"name\": \"fe6806bb-50cc-7043-847e-f918c46adf91\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:58:50.545478Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 18:16:04 GMT + - Thu, 29 Jun 2023 11:06:55 GMT expires: - '-1' pragma: @@ -2523,23 +2808,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bb0668fe-cc50-4370-847e-f918c46adf91?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 }" + string: "{\n \"name\": \"fe6806bb-50cc-7043-847e-f918c46adf91\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:58:50.545478Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 18:16:34 GMT + - Thu, 29 Jun 2023 11:07:25 GMT expires: - '-1' pragma: @@ -2571,23 +2856,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bb0668fe-cc50-4370-847e-f918c46adf91?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 }" + string: "{\n \"name\": \"fe6806bb-50cc-7043-847e-f918c46adf91\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:58:50.545478Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 18:17:04 GMT + - Thu, 29 Jun 2023 11:07:55 GMT expires: - '-1' pragma: @@ -2619,23 +2904,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bb0668fe-cc50-4370-847e-f918c46adf91?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 }" + string: "{\n \"name\": \"fe6806bb-50cc-7043-847e-f918c46adf91\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:58:50.545478Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 18:17:34 GMT + - Thu, 29 Jun 2023 11:08:25 GMT expires: - '-1' pragma: @@ -2667,23 +2952,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bb0668fe-cc50-4370-847e-f918c46adf91?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 }" + string: "{\n \"name\": \"fe6806bb-50cc-7043-847e-f918c46adf91\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:58:50.545478Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 18:18:05 GMT + - Thu, 29 Jun 2023 11:08:56 GMT expires: - '-1' pragma: @@ -2715,23 +3000,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bb0668fe-cc50-4370-847e-f918c46adf91?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 }" + string: "{\n \"name\": \"fe6806bb-50cc-7043-847e-f918c46adf91\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:58:50.545478Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 18:18:35 GMT + - Thu, 29 Jun 2023 11:09:26 GMT expires: - '-1' pragma: @@ -2763,23 +3048,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bb0668fe-cc50-4370-847e-f918c46adf91?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 }" + string: "{\n \"name\": \"fe6806bb-50cc-7043-847e-f918c46adf91\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:58:50.545478Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 18:19:05 GMT + - Thu, 29 Jun 2023 11:09:57 GMT expires: - '-1' pragma: @@ -2811,23 +3096,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bb0668fe-cc50-4370-847e-f918c46adf91?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 }" + string: "{\n \"name\": \"fe6806bb-50cc-7043-847e-f918c46adf91\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:58:50.545478Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 18:19:35 GMT + - Thu, 29 Jun 2023 11:10:27 GMT expires: - '-1' pragma: @@ -2859,23 +3144,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bb0668fe-cc50-4370-847e-f918c46adf91?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 }" + string: "{\n \"name\": \"fe6806bb-50cc-7043-847e-f918c46adf91\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:58:50.545478Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 18:20:05 GMT + - Thu, 29 Jun 2023 11:10:57 GMT expires: - '-1' pragma: @@ -2907,23 +3192,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bb0668fe-cc50-4370-847e-f918c46adf91?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 }" + string: "{\n \"name\": \"fe6806bb-50cc-7043-847e-f918c46adf91\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:58:50.545478Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 18:20:36 GMT + - Thu, 29 Jun 2023 11:11:27 GMT expires: - '-1' pragma: @@ -2955,23 +3240,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bb0668fe-cc50-4370-847e-f918c46adf91?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 }" + string: "{\n \"name\": \"fe6806bb-50cc-7043-847e-f918c46adf91\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:58:50.545478Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 18:21:06 GMT + - Thu, 29 Jun 2023 11:11:57 GMT expires: - '-1' pragma: @@ -3003,23 +3288,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bb0668fe-cc50-4370-847e-f918c46adf91?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 }" + string: "{\n \"name\": \"fe6806bb-50cc-7043-847e-f918c46adf91\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:58:50.545478Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 18:21:36 GMT + - Thu, 29 Jun 2023 11:12:28 GMT expires: - '-1' pragma: @@ -3051,24 +3336,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bb0668fe-cc50-4370-847e-f918c46adf91?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"fe6806bb-50cc-7043-847e-f918c46adf91\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:58:50.545478Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 18:22:06 GMT + - Thu, 29 Jun 2023 11:12:58 GMT expires: - '-1' pragma: @@ -3100,77 +3384,267 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bb0668fe-cc50-4370-847e-f918c46adf91?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"fe6806bb-50cc-7043-847e-f918c46adf91\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:58:50.545478Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:13: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-ahub + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bb0668fe-cc50-4370-847e-f918c46adf91?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"fe6806bb-50cc-7043-847e-f918c46adf91\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:58:50.545478Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:13: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-ahub + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bb0668fe-cc50-4370-847e-f918c46adf91?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"fe6806bb-50cc-7043-847e-f918c46adf91\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:58:50.545478Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:14: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-ahub + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bb0668fe-cc50-4370-847e-f918c46adf91?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"fe6806bb-50cc-7043-847e-f918c46adf91\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:58:50.545478Z\",\n \"endTime\": + \"2023-06-29T11:14:42.8284472Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '169' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:14: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-ahub + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-wushd3k9.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-wushd3k9.portal.hcp.westus2.azmk8s.io\",\n + \ \"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.19.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-20348.1787.230614\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"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/b93c8260-c18a-4906-9cb0-f511c4b287af\"\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: - - '5053' + - '4719' content-type: - application/json date: - - Thu, 15 Jun 2023 18:22:07 GMT + - Thu, 29 Jun 2023 11:14:59 GMT expires: - '-1' pragma: @@ -3202,47 +3676,46 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-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 }" + 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.19.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-20348.1787.230614\",\n \"upgradeSettings\": + {},\n \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '2090' + - '2085' content-type: - application/json date: - - Thu, 15 Jun 2023 18:22:11 GMT + - Thu, 29 Jun 2023 11:15:00 GMT expires: - '-1' pragma: @@ -3276,8 +3749,8 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/cliakstest000001/agentPools/npwin?api-version=2023-05-01 response: @@ -3285,17 +3758,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1d883a35-48df-4f59-b0ce-7381f009f316?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 15 Jun 2023 18:22:11 GMT + - Thu, 29 Jun 2023 11:15:01 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/1d883a35-48df-4f59-b0ce-7381f009f316?api-version=2016-03-30 pragma: - no-cache server: @@ -3305,7 +3778,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14997' status: code: 202 message: Accepted @@ -3325,8 +3798,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/cliakstest000001?api-version=2023-05-01 response: @@ -3334,17 +3807,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6b99aa86-5c29-4f12-9605-07793afe13bf?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 15 Jun 2023 18:22:18 GMT + - Thu, 29 Jun 2023 11:15:07 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/6b99aa86-5c29-4f12-9605-07793afe13bf?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_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 ff20d7f3f2f..268bc09fb68 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 18:22:23 GMT + - Thu, 29 Jun 2023 11:15:10 GMT expires: - '-1' pragma: @@ -46,18 +46,18 @@ interactions: code: 404 message: Not Found - request: - body: '{"location": "centraluseuap", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestikumou725-8ecadf", + body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest5pdofh3lk-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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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", + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "securityProfile": {"workloadIdentity": {"enabled": true}}, "storageProfile": {}}}' @@ -73,72 +73,70 @@ interactions: Connection: - keep-alive Content-Length: - - '1857' + - '1522' 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - 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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitest5pdofh3lk-79a739\",\n \"fqdn\": \"cliakstest-clitest5pdofh3lk-79a739-4rz3s385.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest5pdofh3lk-79a739-4rz3s385.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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 \"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/45065001-0dbe-46cc-901d-60273194d53a/\"\n + \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": + \"SystemAssigned\",\n \"principalId\":\"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/c27ad56f-efbc-4abd-95a7-da5cf449fbe9?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/28830174-9dcc-43c9-9aee-30c68b96eec8?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3816' + - '3457' content-type: - application/json date: - - Thu, 15 Jun 2023 18:22:29 GMT + - Thu, 29 Jun 2023 11:15:17 GMT expires: - '-1' pragma: @@ -150,7 +148,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 201 message: Created @@ -169,14 +167,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/c27ad56f-efbc-4abd-95a7-da5cf449fbe9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/28830174-9dcc-43c9-9aee-30c68b96eec8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6fd57ac2-bcef-bd4a-95a7-da5cf449fbe9\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T18:22:28.8294683Z\"\n }" + string: "{\n \"name\": \"74018328-cc9d-c943-9aee-30c68b96eec8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:15:17.3136505Z\"\n }" headers: cache-control: - no-cache @@ -185,7 +183,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:22:29 GMT + - Thu, 29 Jun 2023 11:15:18 GMT expires: - '-1' pragma: @@ -218,14 +216,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/c27ad56f-efbc-4abd-95a7-da5cf449fbe9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/28830174-9dcc-43c9-9aee-30c68b96eec8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6fd57ac2-bcef-bd4a-95a7-da5cf449fbe9\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T18:22:28.8294683Z\"\n }" + string: "{\n \"name\": \"74018328-cc9d-c943-9aee-30c68b96eec8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:15:17.3136505Z\"\n }" headers: cache-control: - no-cache @@ -234,7 +232,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:22:59 GMT + - Thu, 29 Jun 2023 11:15:48 GMT expires: - '-1' pragma: @@ -267,14 +265,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/c27ad56f-efbc-4abd-95a7-da5cf449fbe9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/28830174-9dcc-43c9-9aee-30c68b96eec8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6fd57ac2-bcef-bd4a-95a7-da5cf449fbe9\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T18:22:28.8294683Z\"\n }" + string: "{\n \"name\": \"74018328-cc9d-c943-9aee-30c68b96eec8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:15:17.3136505Z\"\n }" headers: cache-control: - no-cache @@ -283,7 +281,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:23:28 GMT + - Thu, 29 Jun 2023 11:16:18 GMT expires: - '-1' pragma: @@ -316,14 +314,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/c27ad56f-efbc-4abd-95a7-da5cf449fbe9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/28830174-9dcc-43c9-9aee-30c68b96eec8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6fd57ac2-bcef-bd4a-95a7-da5cf449fbe9\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T18:22:28.8294683Z\"\n }" + string: "{\n \"name\": \"74018328-cc9d-c943-9aee-30c68b96eec8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:15:17.3136505Z\"\n }" headers: cache-control: - no-cache @@ -332,7 +330,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:23:58 GMT + - Thu, 29 Jun 2023 11:16:48 GMT expires: - '-1' pragma: @@ -365,14 +363,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/c27ad56f-efbc-4abd-95a7-da5cf449fbe9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/28830174-9dcc-43c9-9aee-30c68b96eec8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6fd57ac2-bcef-bd4a-95a7-da5cf449fbe9\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T18:22:28.8294683Z\"\n }" + string: "{\n \"name\": \"74018328-cc9d-c943-9aee-30c68b96eec8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:15:17.3136505Z\"\n }" headers: cache-control: - no-cache @@ -381,7 +379,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:24:30 GMT + - Thu, 29 Jun 2023 11:17:18 GMT expires: - '-1' pragma: @@ -414,14 +412,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/c27ad56f-efbc-4abd-95a7-da5cf449fbe9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/28830174-9dcc-43c9-9aee-30c68b96eec8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6fd57ac2-bcef-bd4a-95a7-da5cf449fbe9\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T18:22:28.8294683Z\"\n }" + string: "{\n \"name\": \"74018328-cc9d-c943-9aee-30c68b96eec8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:15:17.3136505Z\"\n }" headers: cache-control: - no-cache @@ -430,7 +428,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:25:00 GMT + - Thu, 29 Jun 2023 11:17:48 GMT expires: - '-1' pragma: @@ -463,14 +461,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/c27ad56f-efbc-4abd-95a7-da5cf449fbe9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/28830174-9dcc-43c9-9aee-30c68b96eec8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6fd57ac2-bcef-bd4a-95a7-da5cf449fbe9\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T18:22:28.8294683Z\"\n }" + string: "{\n \"name\": \"74018328-cc9d-c943-9aee-30c68b96eec8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:15:17.3136505Z\"\n }" headers: cache-control: - no-cache @@ -479,7 +477,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:25:30 GMT + - Thu, 29 Jun 2023 11:18:18 GMT expires: - '-1' pragma: @@ -512,14 +510,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/c27ad56f-efbc-4abd-95a7-da5cf449fbe9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/28830174-9dcc-43c9-9aee-30c68b96eec8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6fd57ac2-bcef-bd4a-95a7-da5cf449fbe9\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T18:22:28.8294683Z\"\n }" + string: "{\n \"name\": \"74018328-cc9d-c943-9aee-30c68b96eec8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:15:17.3136505Z\"\n }" headers: cache-control: - no-cache @@ -528,7 +526,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:26:01 GMT + - Thu, 29 Jun 2023 11:18:48 GMT expires: - '-1' pragma: @@ -561,14 +559,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/c27ad56f-efbc-4abd-95a7-da5cf449fbe9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/28830174-9dcc-43c9-9aee-30c68b96eec8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6fd57ac2-bcef-bd4a-95a7-da5cf449fbe9\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T18:22:28.8294683Z\"\n }" + string: "{\n \"name\": \"74018328-cc9d-c943-9aee-30c68b96eec8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:15:17.3136505Z\"\n }" headers: cache-control: - no-cache @@ -577,7 +575,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:26:31 GMT + - Thu, 29 Jun 2023 11:19:19 GMT expires: - '-1' pragma: @@ -610,14 +608,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/c27ad56f-efbc-4abd-95a7-da5cf449fbe9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/28830174-9dcc-43c9-9aee-30c68b96eec8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6fd57ac2-bcef-bd4a-95a7-da5cf449fbe9\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T18:22:28.8294683Z\"\n }" + string: "{\n \"name\": \"74018328-cc9d-c943-9aee-30c68b96eec8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:15:17.3136505Z\"\n }" headers: cache-control: - no-cache @@ -626,7 +624,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:27:01 GMT + - Thu, 29 Jun 2023 11:19:49 GMT expires: - '-1' pragma: @@ -659,14 +657,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/c27ad56f-efbc-4abd-95a7-da5cf449fbe9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/28830174-9dcc-43c9-9aee-30c68b96eec8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6fd57ac2-bcef-bd4a-95a7-da5cf449fbe9\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T18:22:28.8294683Z\"\n }" + string: "{\n \"name\": \"74018328-cc9d-c943-9aee-30c68b96eec8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:15:17.3136505Z\"\n }" headers: cache-control: - no-cache @@ -675,7 +673,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:27:31 GMT + - Thu, 29 Jun 2023 11:20:19 GMT expires: - '-1' pragma: @@ -708,15 +706,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/c27ad56f-efbc-4abd-95a7-da5cf449fbe9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/28830174-9dcc-43c9-9aee-30c68b96eec8?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"74018328-cc9d-c943-9aee-30c68b96eec8\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:15:17.3136505Z\",\n \"endTime\": + \"2023-06-29T11:20:23.9751641Z\"\n }" headers: cache-control: - no-cache @@ -725,7 +723,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:28:02 GMT + - Thu, 29 Jun 2023 11:20:49 GMT expires: - '-1' pragma: @@ -758,68 +756,65 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --enable-workload-identity --ssh-key-value --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - 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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-clitest5pdofh3lk-79a739\",\n \"fqdn\": \"cliakstest-clitest5pdofh3lk-79a739-4rz3s385.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest5pdofh3lk-79a739-4rz3s385.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/4a96657a-4595-4f58-9c95-304adc4a8b13\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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/45065001-0dbe-46cc-901d-60273194d53a/\"\n + \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": + \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4481' + - '4110' content-type: - application/json date: - - Thu, 15 Jun 2023 18:28:02 GMT + - Thu, 29 Jun 2023 11:20:49 GMT expires: - '-1' pragma: 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 index e654e30a923..d8ec2b624b6 100644 --- 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 18:28:06 GMT + - Thu, 29 Jun 2023 10:47:41 GMT expires: - '-1' pragma: @@ -47,19 +47,19 @@ interactions: message: Not Found - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest4vcphnrhz-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestnfwl2lsql-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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "autoUpgradeProfile": {"upgradeChannel": "rapid"}, + "disableLocalAccounts": false, "storageProfile": {}}}' headers: AKSHTTPCustomFeatures: - Microsoft.ContainerService/AutoUpgradePreview @@ -72,71 +72,69 @@ interactions: Connection: - keep-alive Content-Length: - - '1802' + - '1473' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestnfwl2lsql-79a739\",\n \"fqdn\": \"cliakstest-clitestnfwl2lsql-79a739-f57hetxg.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestnfwl2lsql-79a739-f57hetxg.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"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/cf1d1f6c-27ca-428a-adc8-0f9dacbf2762?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5b07a565-861a-4a97-aa3a-097914a33e8e?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3659' + - '3330' content-type: - application/json date: - - Thu, 15 Jun 2023 18:28:13 GMT + - Thu, 29 Jun 2023 10:47:48 GMT expires: - '-1' pragma: @@ -167,14 +165,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5b07a565-861a-4a97-aa3a-097914a33e8e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6c1f1dcf-ca27-8a42-adc8-0f9dacbf2762\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T18:28:14.0289739Z\"\n }" + string: "{\n \"name\": \"65a5075b-1a86-974a-aa3a-097914a33e8e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:47:48.4815096Z\"\n }" headers: cache-control: - no-cache @@ -183,7 +181,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:28:13 GMT + - Thu, 29 Jun 2023 10:47:48 GMT expires: - '-1' pragma: @@ -216,14 +214,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5b07a565-861a-4a97-aa3a-097914a33e8e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6c1f1dcf-ca27-8a42-adc8-0f9dacbf2762\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T18:28:14.0289739Z\"\n }" + string: "{\n \"name\": \"65a5075b-1a86-974a-aa3a-097914a33e8e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:47:48.4815096Z\"\n }" headers: cache-control: - no-cache @@ -232,7 +230,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:28:44 GMT + - Thu, 29 Jun 2023 10:48:18 GMT expires: - '-1' pragma: @@ -265,14 +263,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5b07a565-861a-4a97-aa3a-097914a33e8e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6c1f1dcf-ca27-8a42-adc8-0f9dacbf2762\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T18:28:14.0289739Z\"\n }" + string: "{\n \"name\": \"65a5075b-1a86-974a-aa3a-097914a33e8e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:47:48.4815096Z\"\n }" headers: cache-control: - no-cache @@ -281,7 +279,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:29:14 GMT + - Thu, 29 Jun 2023 10:48:48 GMT expires: - '-1' pragma: @@ -314,14 +312,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5b07a565-861a-4a97-aa3a-097914a33e8e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6c1f1dcf-ca27-8a42-adc8-0f9dacbf2762\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T18:28:14.0289739Z\"\n }" + string: "{\n \"name\": \"65a5075b-1a86-974a-aa3a-097914a33e8e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:47:48.4815096Z\"\n }" headers: cache-control: - no-cache @@ -330,7 +328,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:29:44 GMT + - Thu, 29 Jun 2023 10:49:18 GMT expires: - '-1' pragma: @@ -363,14 +361,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5b07a565-861a-4a97-aa3a-097914a33e8e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6c1f1dcf-ca27-8a42-adc8-0f9dacbf2762\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T18:28:14.0289739Z\"\n }" + string: "{\n \"name\": \"65a5075b-1a86-974a-aa3a-097914a33e8e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:47:48.4815096Z\"\n }" headers: cache-control: - no-cache @@ -379,7 +377,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:30:14 GMT + - Thu, 29 Jun 2023 10:49:48 GMT expires: - '-1' pragma: @@ -412,14 +410,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5b07a565-861a-4a97-aa3a-097914a33e8e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6c1f1dcf-ca27-8a42-adc8-0f9dacbf2762\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T18:28:14.0289739Z\"\n }" + string: "{\n \"name\": \"65a5075b-1a86-974a-aa3a-097914a33e8e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:47:48.4815096Z\"\n }" headers: cache-control: - no-cache @@ -428,7 +426,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:30:44 GMT + - Thu, 29 Jun 2023 10:50:20 GMT expires: - '-1' pragma: @@ -461,14 +459,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5b07a565-861a-4a97-aa3a-097914a33e8e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6c1f1dcf-ca27-8a42-adc8-0f9dacbf2762\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T18:28:14.0289739Z\"\n }" + string: "{\n \"name\": \"65a5075b-1a86-974a-aa3a-097914a33e8e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:47:48.4815096Z\"\n }" headers: cache-control: - no-cache @@ -477,7 +475,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:31:15 GMT + - Thu, 29 Jun 2023 10:50:50 GMT expires: - '-1' pragma: @@ -510,14 +508,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5b07a565-861a-4a97-aa3a-097914a33e8e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6c1f1dcf-ca27-8a42-adc8-0f9dacbf2762\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T18:28:14.0289739Z\"\n }" + string: "{\n \"name\": \"65a5075b-1a86-974a-aa3a-097914a33e8e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:47:48.4815096Z\"\n }" headers: cache-control: - no-cache @@ -526,7 +524,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:31:45 GMT + - Thu, 29 Jun 2023 10:51:20 GMT expires: - '-1' pragma: @@ -559,15 +557,64 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5b07a565-861a-4a97-aa3a-097914a33e8e?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 }" + string: "{\n \"name\": \"65a5075b-1a86-974a-aa3a-097914a33e8e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:47:48.4815096Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10: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 --ssh-key-value --auto-upgrade-channel + --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5b07a565-861a-4a97-aa3a-097914a33e8e?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"65a5075b-1a86-974a-aa3a-097914a33e8e\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:47:48.4815096Z\",\n \"endTime\": + \"2023-06-29T10:52:06.4250014Z\"\n }" headers: cache-control: - no-cache @@ -576,7 +623,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:32:15 GMT + - Thu, 29 Jun 2023 10:52:20 GMT expires: - '-1' pragma: @@ -609,67 +656,64 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestnfwl2lsql-79a739\",\n \"fqdn\": \"cliakstest-clitestnfwl2lsql-79a739-f57hetxg.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestnfwl2lsql-79a739-f57hetxg.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/06c8d1c1-cbab-430a-adcc-5f77a3410e46\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4312' + - '3983' content-type: - application/json date: - - Thu, 15 Jun 2023 18:32:16 GMT + - Thu, 29 Jun 2023 10:52:21 GMT expires: - '-1' pragma: @@ -701,67 +745,64 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestnfwl2lsql-79a739\",\n \"fqdn\": \"cliakstest-clitestnfwl2lsql-79a739-f57hetxg.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestnfwl2lsql-79a739-f57hetxg.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/06c8d1c1-cbab-430a-adcc-5f77a3410e46\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4312' + - '3983' content-type: - application/json date: - - Thu, 15 Jun 2023 18:32:18 GMT + - Thu, 29 Jun 2023 10:52:21 GMT expires: - '-1' pragma: @@ -782,21 +823,20 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": - "cliakstest-clitest4vcphnrhz-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-clitestnfwl2lsql-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.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"}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_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/fc5cc5e6-0d23-4b76-88da-0e9f5b48aa97"}]}, + "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": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/06c8d1c1-cbab-430a-adcc-5f77a3410e46"}]}, "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", @@ -815,75 +855,72 @@ interactions: Connection: - keep-alive Content-Length: - - '2864' + - '2498' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestnfwl2lsql-79a739\",\n \"fqdn\": \"cliakstest-clitestnfwl2lsql-79a739-f57hetxg.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestnfwl2lsql-79a739-f57hetxg.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/06c8d1c1-cbab-430a-adcc-5f77a3410e46\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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/c0dbb1af-d265-4c07-8da2-d49219c11935?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/08d953bf-1f5d-4377-8212-3828c2265999?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4311' + - '3982' content-type: - application/json date: - - Thu, 15 Jun 2023 18:32:24 GMT + - Thu, 29 Jun 2023 10:52:26 GMT expires: - '-1' pragma: @@ -899,7 +936,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 200 message: OK @@ -917,14 +954,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/08d953bf-1f5d-4377-8212-3828c2265999?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 }" + string: "{\n \"name\": \"bf53d908-5d1f-7743-8212-3828c2265999\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:52:26.1387226Z\"\n }" headers: cache-control: - no-cache @@ -933,7 +970,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:32:24 GMT + - Thu, 29 Jun 2023 10:52:26 GMT expires: - '-1' pragma: @@ -965,14 +1002,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/08d953bf-1f5d-4377-8212-3828c2265999?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 }" + string: "{\n \"name\": \"bf53d908-5d1f-7743-8212-3828c2265999\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:52:26.1387226Z\"\n }" headers: cache-control: - no-cache @@ -981,7 +1018,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:32:54 GMT + - Thu, 29 Jun 2023 10:52:56 GMT expires: - '-1' pragma: @@ -1013,14 +1050,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/08d953bf-1f5d-4377-8212-3828c2265999?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 }" + string: "{\n \"name\": \"bf53d908-5d1f-7743-8212-3828c2265999\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:52:26.1387226Z\"\n }" headers: cache-control: - no-cache @@ -1029,7 +1066,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:33:24 GMT + - Thu, 29 Jun 2023 10:53:27 GMT expires: - '-1' pragma: @@ -1061,14 +1098,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/08d953bf-1f5d-4377-8212-3828c2265999?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 }" + string: "{\n \"name\": \"bf53d908-5d1f-7743-8212-3828c2265999\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:52:26.1387226Z\"\n }" headers: cache-control: - no-cache @@ -1077,7 +1114,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:33:54 GMT + - Thu, 29 Jun 2023 10:53:57 GMT expires: - '-1' pragma: @@ -1109,15 +1146,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/08d953bf-1f5d-4377-8212-3828c2265999?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"bf53d908-5d1f-7743-8212-3828c2265999\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:52:26.1387226Z\",\n \"endTime\": + \"2023-06-29T10:53:57.6766549Z\"\n }" headers: cache-control: - no-cache @@ -1126,7 +1163,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:34:24 GMT + - Thu, 29 Jun 2023 10:54:27 GMT expires: - '-1' pragma: @@ -1158,67 +1195,64 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestnfwl2lsql-79a739\",\n \"fqdn\": \"cliakstest-clitestnfwl2lsql-79a739-f57hetxg.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestnfwl2lsql-79a739-f57hetxg.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/06c8d1c1-cbab-430a-adcc-5f77a3410e46\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4313' + - '3984' content-type: - application/json date: - - Thu, 15 Jun 2023 18:34:24 GMT + - Thu, 29 Jun 2023 10:54:27 GMT expires: - '-1' pragma: @@ -1252,8 +1286,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -1261,17 +1295,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5c682e4b-8b50-47a6-845b-01fdf7898c2e?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 15 Jun 2023 18:34:27 GMT + - Thu, 29 Jun 2023 10:54:29 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/5c682e4b-8b50-47a6-845b-01fdf7898c2e?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_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 0c470c5ba57..f344cf84f7b 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 18:34:32 GMT + - Thu, 29 Jun 2023 10:50:59 GMT expires: - '-1' pragma: @@ -58,12 +58,12 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1039-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_disable_addons_confcom_addon","date":"2023-06-15T18:34:30Z","module":"acs"},"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-29T10:50:58Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -72,7 +72,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 18:34:32 GMT + - Thu, 29 Jun 2023 10:50:59 GMT expires: - '-1' pragma: @@ -88,18 +88,18 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestrmialzqwq-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest7ga4xlcy4-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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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", + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: @@ -112,71 +112,69 @@ interactions: Connection: - keep-alive Content-Length: - - '1839' + - '1510' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitest7ga4xlcy4-79a739\",\n \"fqdn\": \"cliakstest-clitest7ga4xlcy4-79a739-1umxhpzn.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest7ga4xlcy4-79a739-1umxhpzn.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 + \ \"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/16e74cf7-4c39-44e3-b147-f44203525c90?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7d9bdcc9-0e21-4e79-aaa1-e322ee51b846?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3746' + - '3417' content-type: - application/json date: - - Thu, 15 Jun 2023 18:34:39 GMT + - Thu, 29 Jun 2023 10:51:05 GMT expires: - '-1' pragma: @@ -206,14 +204,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7d9bdcc9-0e21-4e79-aaa1-e322ee51b846?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f74ce716-394c-e344-b147-f44203525c90\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T18:34:39.2642845Z\"\n }" + string: "{\n \"name\": \"c9dc9b7d-210e-794e-aaa1-e322ee51b846\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:51:05.5445716Z\"\n }" headers: cache-control: - no-cache @@ -222,7 +220,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:34:39 GMT + - Thu, 29 Jun 2023 10:51:05 GMT expires: - '-1' pragma: @@ -254,14 +252,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7d9bdcc9-0e21-4e79-aaa1-e322ee51b846?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f74ce716-394c-e344-b147-f44203525c90\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T18:34:39.2642845Z\"\n }" + string: "{\n \"name\": \"c9dc9b7d-210e-794e-aaa1-e322ee51b846\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:51:05.5445716Z\"\n }" headers: cache-control: - no-cache @@ -270,7 +268,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:35:09 GMT + - Thu, 29 Jun 2023 10:51:35 GMT expires: - '-1' pragma: @@ -302,14 +300,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7d9bdcc9-0e21-4e79-aaa1-e322ee51b846?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f74ce716-394c-e344-b147-f44203525c90\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T18:34:39.2642845Z\"\n }" + string: "{\n \"name\": \"c9dc9b7d-210e-794e-aaa1-e322ee51b846\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:51:05.5445716Z\"\n }" headers: cache-control: - no-cache @@ -318,7 +316,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:35:39 GMT + - Thu, 29 Jun 2023 10:52:05 GMT expires: - '-1' pragma: @@ -350,14 +348,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7d9bdcc9-0e21-4e79-aaa1-e322ee51b846?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f74ce716-394c-e344-b147-f44203525c90\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T18:34:39.2642845Z\"\n }" + string: "{\n \"name\": \"c9dc9b7d-210e-794e-aaa1-e322ee51b846\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:51:05.5445716Z\"\n }" headers: cache-control: - no-cache @@ -366,7 +364,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:36:10 GMT + - Thu, 29 Jun 2023 10:52:35 GMT expires: - '-1' pragma: @@ -398,14 +396,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7d9bdcc9-0e21-4e79-aaa1-e322ee51b846?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f74ce716-394c-e344-b147-f44203525c90\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T18:34:39.2642845Z\"\n }" + string: "{\n \"name\": \"c9dc9b7d-210e-794e-aaa1-e322ee51b846\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:51:05.5445716Z\"\n }" headers: cache-control: - no-cache @@ -414,7 +412,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:36:40 GMT + - Thu, 29 Jun 2023 10:53:05 GMT expires: - '-1' pragma: @@ -446,14 +444,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7d9bdcc9-0e21-4e79-aaa1-e322ee51b846?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f74ce716-394c-e344-b147-f44203525c90\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T18:34:39.2642845Z\"\n }" + string: "{\n \"name\": \"c9dc9b7d-210e-794e-aaa1-e322ee51b846\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:51:05.5445716Z\"\n }" headers: cache-control: - no-cache @@ -462,7 +460,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:37:10 GMT + - Thu, 29 Jun 2023 10:53:35 GMT expires: - '-1' pragma: @@ -494,14 +492,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7d9bdcc9-0e21-4e79-aaa1-e322ee51b846?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f74ce716-394c-e344-b147-f44203525c90\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T18:34:39.2642845Z\"\n }" + string: "{\n \"name\": \"c9dc9b7d-210e-794e-aaa1-e322ee51b846\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:51:05.5445716Z\"\n }" headers: cache-control: - no-cache @@ -510,7 +508,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:37:40 GMT + - Thu, 29 Jun 2023 10:54:07 GMT expires: - '-1' pragma: @@ -542,24 +540,264 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7d9bdcc9-0e21-4e79-aaa1-e322ee51b846?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 }" + string: "{\n \"name\": \"c9dc9b7d-210e-794e-aaa1-e322ee51b846\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:51:05.5445716Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:54: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 --enable-managed-identity -a --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7d9bdcc9-0e21-4e79-aaa1-e322ee51b846?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"c9dc9b7d-210e-794e-aaa1-e322ee51b846\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:51:05.5445716Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:55: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 --enable-managed-identity -a --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7d9bdcc9-0e21-4e79-aaa1-e322ee51b846?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"c9dc9b7d-210e-794e-aaa1-e322ee51b846\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:51:05.5445716Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:55: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 --enable-managed-identity -a --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7d9bdcc9-0e21-4e79-aaa1-e322ee51b846?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"c9dc9b7d-210e-794e-aaa1-e322ee51b846\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:51:05.5445716Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:56: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 --enable-managed-identity -a --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7d9bdcc9-0e21-4e79-aaa1-e322ee51b846?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"c9dc9b7d-210e-794e-aaa1-e322ee51b846\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:51:05.5445716Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:56: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 --enable-managed-identity -a --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7d9bdcc9-0e21-4e79-aaa1-e322ee51b846?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"c9dc9b7d-210e-794e-aaa1-e322ee51b846\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:51:05.5445716Z\",\n \"endTime\": + \"2023-06-29T10:56:39.355616Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '169' content-type: - application/json date: - - Thu, 15 Jun 2023 18:38:10 GMT + - Thu, 29 Jun 2023 10:57:07 GMT expires: - '-1' pragma: @@ -591,68 +829,65 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitest7ga4xlcy4-79a739\",\n \"fqdn\": \"cliakstest-clitest7ga4xlcy4-79a739-1umxhpzn.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest7ga4xlcy4-79a739-1umxhpzn.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4d495128-800f-426d-babb-59fcb8f8fded\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4399' + - '4070' content-type: - application/json date: - - Thu, 15 Jun 2023 18:38:11 GMT + - Thu, 29 Jun 2023 10:57:08 GMT expires: - '-1' pragma: @@ -684,68 +919,65 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitest7ga4xlcy4-79a739\",\n \"fqdn\": \"cliakstest-clitest7ga4xlcy4-79a739-1umxhpzn.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest7ga4xlcy4-79a739-1umxhpzn.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4d495128-800f-426d-babb-59fcb8f8fded\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4399' + - '4070' content-type: - application/json date: - - Thu, 15 Jun 2023 18:38:12 GMT + - Thu, 29 Jun 2023 10:57:09 GMT expires: - '-1' pragma: @@ -766,21 +998,21 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": - "cliakstest-clitestrmialzqwq-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-clitest7ga4xlcy4-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.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": {"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"}]}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_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/4d495128-800f-426d-babb-59fcb8f8fded"}]}, "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"}}, @@ -797,75 +1029,72 @@ interactions: Connection: - keep-alive Content-Length: - - '2904' + - '2575' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitest7ga4xlcy4-79a739\",\n \"fqdn\": \"cliakstest-clitest7ga4xlcy4-79a739-1umxhpzn.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest7ga4xlcy4-79a739-1umxhpzn.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4d495128-800f-426d-babb-59fcb8f8fded\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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/bd0909e8-c5d1-4e46-aae2-022f86f58370?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b9c50ee9-0f0a-4d84-8eb1-507112f14498?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4352' + - '4023' content-type: - application/json date: - - Thu, 15 Jun 2023 18:38:20 GMT + - Thu, 29 Jun 2023 10:57:14 GMT expires: - '-1' pragma: @@ -899,14 +1128,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b9c50ee9-0f0a-4d84-8eb1-507112f14498?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 }" + string: "{\n \"name\": \"e90ec5b9-0a0f-844d-8eb1-507112f14498\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:57:13.4046952Z\"\n }" headers: cache-control: - no-cache @@ -915,7 +1144,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:38:20 GMT + - Thu, 29 Jun 2023 10:57:14 GMT expires: - '-1' pragma: @@ -947,14 +1176,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b9c50ee9-0f0a-4d84-8eb1-507112f14498?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 }" + string: "{\n \"name\": \"e90ec5b9-0a0f-844d-8eb1-507112f14498\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:57:13.4046952Z\"\n }" headers: cache-control: - no-cache @@ -963,7 +1192,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:38:50 GMT + - Thu, 29 Jun 2023 10:57:44 GMT expires: - '-1' pragma: @@ -995,14 +1224,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b9c50ee9-0f0a-4d84-8eb1-507112f14498?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 }" + string: "{\n \"name\": \"e90ec5b9-0a0f-844d-8eb1-507112f14498\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:57:13.4046952Z\"\n }" headers: cache-control: - no-cache @@ -1011,7 +1240,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:39:20 GMT + - Thu, 29 Jun 2023 10:58:14 GMT expires: - '-1' pragma: @@ -1043,14 +1272,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b9c50ee9-0f0a-4d84-8eb1-507112f14498?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 }" + string: "{\n \"name\": \"e90ec5b9-0a0f-844d-8eb1-507112f14498\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:57:13.4046952Z\"\n }" headers: cache-control: - no-cache @@ -1059,7 +1288,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:39:50 GMT + - Thu, 29 Jun 2023 10:58:44 GMT expires: - '-1' pragma: @@ -1091,15 +1320,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b9c50ee9-0f0a-4d84-8eb1-507112f14498?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"e90ec5b9-0a0f-844d-8eb1-507112f14498\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:57:13.4046952Z\",\n \"endTime\": + \"2023-06-29T10:59:00.1079249Z\"\n }" headers: cache-control: - no-cache @@ -1108,7 +1337,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:40:21 GMT + - Thu, 29 Jun 2023 10:59:14 GMT expires: - '-1' pragma: @@ -1140,67 +1369,64 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitest7ga4xlcy4-79a739\",\n \"fqdn\": \"cliakstest-clitest7ga4xlcy4-79a739-1umxhpzn.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest7ga4xlcy4-79a739-1umxhpzn.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4d495128-800f-426d-babb-59fcb8f8fded\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4354' + - '4025' content-type: - application/json date: - - Thu, 15 Jun 2023 18:40:21 GMT + - Thu, 29 Jun 2023 10:59:14 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 index 82a4adf270e..c0287ba8b14 100644 --- 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 18:40:25 GMT + - Thu, 29 Jun 2023 10:52:59 GMT expires: - '-1' pragma: @@ -60,12 +60,12 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --disable-local-accounts --ssh-key-value User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1039-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_disable_local_accounts","date":"2023-06-15T18:40:24Z","module":"acs"},"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-29T10:52:59Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -74,7 +74,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 18:40:25 GMT + - Thu, 29 Jun 2023 10:52:59 GMT expires: - '-1' pragma: @@ -90,20 +90,20 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestfevvrlzvi-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest4lpndtqia-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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": - {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "aadProfile": {"managed": true, "enableAzureRBAC": + false, "adminGroupObjectIDs": ["00000000-0000-0000-0000-000000000001"]}, "disableLocalAccounts": + true, "storageProfile": {}}}' headers: Accept: - application/json @@ -114,74 +114,71 @@ interactions: Connection: - keep-alive Content-Length: - - '1874' + - '1545' 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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\ - \ }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitest4lpndtqia-79a739\",\n \"fqdn\": \"cliakstest-clitest4lpndtqia-79a739-f3gfvm0o.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest4lpndtqia-79a739-f3gfvm0o.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"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/d123c1be-c8e8-4457-8622-03b4940a73ff?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/406cd715-cffd-40f6-85d8-20ed6e6887b0?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3830' + - '3501' content-type: - application/json date: - - Thu, 15 Jun 2023 18:40:32 GMT + - Thu, 29 Jun 2023 10:53:05 GMT expires: - '-1' pragma: @@ -193,7 +190,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -212,14 +209,112 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --disable-local-accounts --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/406cd715-cffd-40f6-85d8-20ed6e6887b0?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"15d76c40-fdcf-f640-85d8-20ed6e6887b0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:53:05.7792516Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:53: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 --enable-aad --aad-admin-group-object-ids --disable-local-accounts + --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/406cd715-cffd-40f6-85d8-20ed6e6887b0?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"15d76c40-fdcf-f640-85d8-20ed6e6887b0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:53:05.7792516Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:53: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 --enable-aad --aad-admin-group-object-ids --disable-local-accounts + --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/406cd715-cffd-40f6-85d8-20ed6e6887b0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bec123d1-e8c8-5744-8622-03b4940a73ff\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T18:40:32.6243711Z\"\n }" + string: "{\n \"name\": \"15d76c40-fdcf-f640-85d8-20ed6e6887b0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:53:05.7792516Z\"\n }" headers: cache-control: - no-cache @@ -228,7 +323,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:40:33 GMT + - Thu, 29 Jun 2023 10:54:05 GMT expires: - '-1' pragma: @@ -261,14 +356,14 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --disable-local-accounts --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/406cd715-cffd-40f6-85d8-20ed6e6887b0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bec123d1-e8c8-5744-8622-03b4940a73ff\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T18:40:32.6243711Z\"\n }" + string: "{\n \"name\": \"15d76c40-fdcf-f640-85d8-20ed6e6887b0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:53:05.7792516Z\"\n }" headers: cache-control: - no-cache @@ -277,7 +372,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:41:03 GMT + - Thu, 29 Jun 2023 10:54:35 GMT expires: - '-1' pragma: @@ -310,14 +405,14 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --disable-local-accounts --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/406cd715-cffd-40f6-85d8-20ed6e6887b0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bec123d1-e8c8-5744-8622-03b4940a73ff\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T18:40:32.6243711Z\"\n }" + string: "{\n \"name\": \"15d76c40-fdcf-f640-85d8-20ed6e6887b0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:53:05.7792516Z\"\n }" headers: cache-control: - no-cache @@ -326,7 +421,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:41:33 GMT + - Thu, 29 Jun 2023 10:55:06 GMT expires: - '-1' pragma: @@ -359,14 +454,14 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --disable-local-accounts --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/406cd715-cffd-40f6-85d8-20ed6e6887b0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bec123d1-e8c8-5744-8622-03b4940a73ff\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T18:40:32.6243711Z\"\n }" + string: "{\n \"name\": \"15d76c40-fdcf-f640-85d8-20ed6e6887b0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:53:05.7792516Z\"\n }" headers: cache-control: - no-cache @@ -375,7 +470,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:42:03 GMT + - Thu, 29 Jun 2023 10:55:36 GMT expires: - '-1' pragma: @@ -408,14 +503,14 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --disable-local-accounts --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/406cd715-cffd-40f6-85d8-20ed6e6887b0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bec123d1-e8c8-5744-8622-03b4940a73ff\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T18:40:32.6243711Z\"\n }" + string: "{\n \"name\": \"15d76c40-fdcf-f640-85d8-20ed6e6887b0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:53:05.7792516Z\"\n }" headers: cache-control: - no-cache @@ -424,7 +519,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:42:34 GMT + - Thu, 29 Jun 2023 10:56:06 GMT expires: - '-1' pragma: @@ -457,14 +552,14 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --disable-local-accounts --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/406cd715-cffd-40f6-85d8-20ed6e6887b0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bec123d1-e8c8-5744-8622-03b4940a73ff\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T18:40:32.6243711Z\"\n }" + string: "{\n \"name\": \"15d76c40-fdcf-f640-85d8-20ed6e6887b0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:53:05.7792516Z\"\n }" headers: cache-control: - no-cache @@ -473,7 +568,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:43:04 GMT + - Thu, 29 Jun 2023 10:56:36 GMT expires: - '-1' pragma: @@ -506,14 +601,14 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --disable-local-accounts --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/406cd715-cffd-40f6-85d8-20ed6e6887b0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bec123d1-e8c8-5744-8622-03b4940a73ff\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T18:40:32.6243711Z\"\n }" + string: "{\n \"name\": \"15d76c40-fdcf-f640-85d8-20ed6e6887b0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:53:05.7792516Z\"\n }" headers: cache-control: - no-cache @@ -522,7 +617,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:43:34 GMT + - Thu, 29 Jun 2023 10:57:06 GMT expires: - '-1' pragma: @@ -555,14 +650,14 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --disable-local-accounts --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/406cd715-cffd-40f6-85d8-20ed6e6887b0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bec123d1-e8c8-5744-8622-03b4940a73ff\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T18:40:32.6243711Z\"\n }" + string: "{\n \"name\": \"15d76c40-fdcf-f640-85d8-20ed6e6887b0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:53:05.7792516Z\"\n }" headers: cache-control: - no-cache @@ -571,7 +666,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:44:04 GMT + - Thu, 29 Jun 2023 10:57:36 GMT expires: - '-1' pragma: @@ -604,15 +699,211 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --disable-local-accounts --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/406cd715-cffd-40f6-85d8-20ed6e6887b0?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"15d76c40-fdcf-f640-85d8-20ed6e6887b0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:53:05.7792516Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:58: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-aad --aad-admin-group-object-ids --disable-local-accounts + --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/406cd715-cffd-40f6-85d8-20ed6e6887b0?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"15d76c40-fdcf-f640-85d8-20ed6e6887b0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:53:05.7792516Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:58: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 --enable-aad --aad-admin-group-object-ids --disable-local-accounts + --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/406cd715-cffd-40f6-85d8-20ed6e6887b0?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"15d76c40-fdcf-f640-85d8-20ed6e6887b0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:53:05.7792516Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:59: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 --enable-aad --aad-admin-group-object-ids --disable-local-accounts + --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/406cd715-cffd-40f6-85d8-20ed6e6887b0?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"15d76c40-fdcf-f640-85d8-20ed6e6887b0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:53:05.7792516Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:59: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 --enable-aad --aad-admin-group-object-ids --disable-local-accounts + --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/406cd715-cffd-40f6-85d8-20ed6e6887b0?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"15d76c40-fdcf-f640-85d8-20ed6e6887b0\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:53:05.7792516Z\",\n \"endTime\": + \"2023-06-29T10:59:43.0143475Z\"\n }" headers: cache-control: - no-cache @@ -621,7 +912,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:44:34 GMT + - Thu, 29 Jun 2023 11:00:07 GMT expires: - '-1' pragma: @@ -654,70 +945,66 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --disable-local-accounts --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitest4lpndtqia-79a739\",\n \"fqdn\": \"cliakstest-clitest4lpndtqia-79a739-f3gfvm0o.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest4lpndtqia-79a739-f3gfvm0o.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/092c8c7e-1e2e-40bc-adee-a6c6c6785877\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"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: - - '4483' + - '4154' content-type: - application/json date: - - Thu, 15 Jun 2023 18:44:34 GMT + - Thu, 29 Jun 2023 11:00:08 GMT expires: - '-1' pragma: @@ -749,70 +1036,66 @@ interactions: ParameterSetName: - --resource-group --name --enable-local-accounts User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitest4lpndtqia-79a739\",\n \"fqdn\": \"cliakstest-clitest4lpndtqia-79a739-f3gfvm0o.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest4lpndtqia-79a739-f3gfvm0o.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/092c8c7e-1e2e-40bc-adee-a6c6c6785877\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"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: - - '4483' + - '4154' content-type: - application/json date: - - Thu, 15 Jun 2023 18:44:36 GMT + - Thu, 29 Jun 2023 11:00:09 GMT expires: - '-1' pragma: @@ -833,21 +1116,20 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": - "cliakstest-clitestfevvrlzvi-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-clitest4lpndtqia-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.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"}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_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/3c11ec9b-777e-42e6-8f2e-c129b3fe29b2"}]}, + "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": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/092c8c7e-1e2e-40bc-adee-a6c6c6785877"}]}, "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"}, @@ -865,78 +1147,74 @@ interactions: Connection: - keep-alive Content-Length: - - '2988' + - '2622' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-local-accounts User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitest4lpndtqia-79a739\",\n \"fqdn\": \"cliakstest-clitest4lpndtqia-79a739-f3gfvm0o.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest4lpndtqia-79a739-f3gfvm0o.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/092c8c7e-1e2e-40bc-adee-a6c6c6785877\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"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/14c2803c-4fcf-4999-8feb-9da76f379888?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/acae7a4b-e153-48fa-bd0d-2c3015f33632?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4482' + - '4153' content-type: - application/json date: - - Thu, 15 Jun 2023 18:44:42 GMT + - Thu, 29 Jun 2023 11:00:14 GMT expires: - '-1' pragma: @@ -970,14 +1248,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-local-accounts User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/acae7a4b-e153-48fa-bd0d-2c3015f33632?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3c80c214-cf4f-9949-8feb-9da76f379888\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T18:44:42.2188861Z\"\n }" + string: "{\n \"name\": \"4b7aaeac-53e1-fa48-bd0d-2c3015f33632\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:00:13.8582632Z\"\n }" headers: cache-control: - no-cache @@ -986,7 +1264,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:44:42 GMT + - Thu, 29 Jun 2023 11:00:14 GMT expires: - '-1' pragma: @@ -1018,14 +1296,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-local-accounts User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/acae7a4b-e153-48fa-bd0d-2c3015f33632?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3c80c214-cf4f-9949-8feb-9da76f379888\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T18:44:42.2188861Z\"\n }" + string: "{\n \"name\": \"4b7aaeac-53e1-fa48-bd0d-2c3015f33632\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:00:13.8582632Z\"\n }" headers: cache-control: - no-cache @@ -1034,7 +1312,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:45:12 GMT + - Thu, 29 Jun 2023 11:00:44 GMT expires: - '-1' pragma: @@ -1066,14 +1344,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-local-accounts User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/acae7a4b-e153-48fa-bd0d-2c3015f33632?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3c80c214-cf4f-9949-8feb-9da76f379888\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T18:44:42.2188861Z\"\n }" + string: "{\n \"name\": \"4b7aaeac-53e1-fa48-bd0d-2c3015f33632\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:00:13.8582632Z\"\n }" headers: cache-control: - no-cache @@ -1082,7 +1360,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:45:43 GMT + - Thu, 29 Jun 2023 11:01:14 GMT expires: - '-1' pragma: @@ -1114,14 +1392,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-local-accounts User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/acae7a4b-e153-48fa-bd0d-2c3015f33632?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3c80c214-cf4f-9949-8feb-9da76f379888\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T18:44:42.2188861Z\"\n }" + string: "{\n \"name\": \"4b7aaeac-53e1-fa48-bd0d-2c3015f33632\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:00:13.8582632Z\"\n }" headers: cache-control: - no-cache @@ -1130,7 +1408,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:46:13 GMT + - Thu, 29 Jun 2023 11:01:45 GMT expires: - '-1' pragma: @@ -1162,24 +1440,24 @@ interactions: ParameterSetName: - --resource-group --name --enable-local-accounts User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/acae7a4b-e153-48fa-bd0d-2c3015f33632?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"4b7aaeac-53e1-fa48-bd0d-2c3015f33632\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:00:13.8582632Z\",\n \"endTime\": + \"2023-06-29T11:02:00.33207Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '168' content-type: - application/json date: - - Thu, 15 Jun 2023 18:46:43 GMT + - Thu, 29 Jun 2023 11:02:15 GMT expires: - '-1' pragma: @@ -1211,70 +1489,66 @@ interactions: ParameterSetName: - --resource-group --name --enable-local-accounts User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitest4lpndtqia-79a739\",\n \"fqdn\": \"cliakstest-clitest4lpndtqia-79a739-f3gfvm0o.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest4lpndtqia-79a739-f3gfvm0o.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/092c8c7e-1e2e-40bc-adee-a6c6c6785877\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"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: - - '4484' + - '4155' content-type: - application/json date: - - Thu, 15 Jun 2023 18:46:44 GMT + - Thu, 29 Jun 2023 11:02:16 GMT expires: - '-1' pragma: @@ -1306,70 +1580,66 @@ interactions: ParameterSetName: - --resource-group --name --disable-local-accounts User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitest4lpndtqia-79a739\",\n \"fqdn\": \"cliakstest-clitest4lpndtqia-79a739-f3gfvm0o.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest4lpndtqia-79a739-f3gfvm0o.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/092c8c7e-1e2e-40bc-adee-a6c6c6785877\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"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: - - '4484' + - '4155' content-type: - application/json date: - - Thu, 15 Jun 2023 18:46:46 GMT + - Thu, 29 Jun 2023 11:02:17 GMT expires: - '-1' pragma: @@ -1390,21 +1660,20 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": - "cliakstest-clitestfevvrlzvi-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-clitest4lpndtqia-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.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"}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_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/3c11ec9b-777e-42e6-8f2e-c129b3fe29b2"}]}, + "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": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/092c8c7e-1e2e-40bc-adee-a6c6c6785877"}]}, "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"}, @@ -1422,78 +1691,74 @@ interactions: Connection: - keep-alive Content-Length: - - '2987' + - '2621' Content-Type: - application/json ParameterSetName: - --resource-group --name --disable-local-accounts User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitest4lpndtqia-79a739\",\n \"fqdn\": \"cliakstest-clitest4lpndtqia-79a739-f3gfvm0o.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest4lpndtqia-79a739-f3gfvm0o.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/092c8c7e-1e2e-40bc-adee-a6c6c6785877\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"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/89c1be4e-4a90-4bce-8c4d-30b3f83cf93a?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/596f3184-263a-4ebd-a06f-e9cef195e9d0?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4481' + - '4152' content-type: - application/json date: - - Thu, 15 Jun 2023 18:46:54 GMT + - Thu, 29 Jun 2023 11:02:21 GMT expires: - '-1' pragma: @@ -1509,7 +1774,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -1527,23 +1792,23 @@ interactions: ParameterSetName: - --resource-group --name --disable-local-accounts User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/596f3184-263a-4ebd-a06f-e9cef195e9d0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4ebec189-904a-ce4b-8c4d-30b3f83cf93a\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T18:46:51.344285Z\"\n }" + string: "{\n \"name\": \"84316f59-3a26-bd4e-a06f-e9cef195e9d0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:02:21.2648791Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 18:46:54 GMT + - Thu, 29 Jun 2023 11:02:22 GMT expires: - '-1' pragma: @@ -1575,23 +1840,23 @@ interactions: ParameterSetName: - --resource-group --name --disable-local-accounts User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/596f3184-263a-4ebd-a06f-e9cef195e9d0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4ebec189-904a-ce4b-8c4d-30b3f83cf93a\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T18:46:51.344285Z\"\n }" + string: "{\n \"name\": \"84316f59-3a26-bd4e-a06f-e9cef195e9d0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:02:21.2648791Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 18:47:25 GMT + - Thu, 29 Jun 2023 11:02:51 GMT expires: - '-1' pragma: @@ -1623,23 +1888,23 @@ interactions: ParameterSetName: - --resource-group --name --disable-local-accounts User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/596f3184-263a-4ebd-a06f-e9cef195e9d0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4ebec189-904a-ce4b-8c4d-30b3f83cf93a\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T18:46:51.344285Z\"\n }" + string: "{\n \"name\": \"84316f59-3a26-bd4e-a06f-e9cef195e9d0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:02:21.2648791Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 18:47:55 GMT + - Thu, 29 Jun 2023 11:03:22 GMT expires: - '-1' pragma: @@ -1671,23 +1936,23 @@ interactions: ParameterSetName: - --resource-group --name --disable-local-accounts User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/596f3184-263a-4ebd-a06f-e9cef195e9d0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4ebec189-904a-ce4b-8c4d-30b3f83cf93a\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T18:46:51.344285Z\"\n }" + string: "{\n \"name\": \"84316f59-3a26-bd4e-a06f-e9cef195e9d0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:02:21.2648791Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 18:48:25 GMT + - Thu, 29 Jun 2023 11:03:52 GMT expires: - '-1' pragma: @@ -1719,24 +1984,24 @@ interactions: ParameterSetName: - --resource-group --name --disable-local-accounts User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/596f3184-263a-4ebd-a06f-e9cef195e9d0?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"84316f59-3a26-bd4e-a06f-e9cef195e9d0\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:02:21.2648791Z\",\n \"endTime\": + \"2023-06-29T11:04:07.3693433Z\"\n }" headers: cache-control: - no-cache content-length: - - '167' + - '170' content-type: - application/json date: - - Thu, 15 Jun 2023 18:48:55 GMT + - Thu, 29 Jun 2023 11:04:22 GMT expires: - '-1' pragma: @@ -1768,70 +2033,66 @@ interactions: ParameterSetName: - --resource-group --name --disable-local-accounts User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitest4lpndtqia-79a739\",\n \"fqdn\": \"cliakstest-clitest4lpndtqia-79a739-f3gfvm0o.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest4lpndtqia-79a739-f3gfvm0o.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/092c8c7e-1e2e-40bc-adee-a6c6c6785877\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"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: - - '4483' + - '4154' content-type: - application/json date: - - Thu, 15 Jun 2023 18:48:56 GMT + - Thu, 29 Jun 2023 11:04:23 GMT expires: - '-1' pragma: @@ -1865,8 +2126,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -1874,17 +2135,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/28637815-7ac2-41ec-8127-adbc8758d8cd?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 15 Jun 2023 18:48:58 GMT + - Thu, 29 Jun 2023 11:04:24 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/28637815-7ac2-41ec-8127-adbc8758d8cd?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_disable_openservicemesh_addon.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_disable_openservicemesh_addon.yaml index d12cac615b7..49cd2086ea2 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 18:49:02 GMT + - Thu, 29 Jun 2023 10:59:40 GMT expires: - '-1' pragma: @@ -58,12 +58,12 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1039-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_disable_openservicemesh_addon","date":"2023-06-15T18:49:01Z","module":"acs"},"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-29T10:59:39Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -72,7 +72,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 18:49:03 GMT + - Thu, 29 Jun 2023 10:59:40 GMT expires: - '-1' pragma: @@ -88,19 +88,19 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestvw7rzo47z-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestumpnw56ym-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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, + "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -111,70 +111,68 @@ interactions: Connection: - keep-alive Content-Length: - - '1801' + - '1472' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestumpnw56ym-79a739\",\n \"fqdn\": \"cliakstest-clitestumpnw56ym-79a739-t9q7v1zn.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestumpnw56ym-79a739-t9q7v1zn.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"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/c2ebcc7b-0ec2-46bc-8f20-e911da936997?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e2b2bdaa-9b0a-4b4b-961f-fe1fb6debd8d?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3697' + - '3368' content-type: - application/json date: - - Thu, 15 Jun 2023 18:49:10 GMT + - Thu, 29 Jun 2023 10:59:46 GMT expires: - '-1' pragma: @@ -204,14 +202,158 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e2b2bdaa-9b0a-4b4b-961f-fe1fb6debd8d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"aabdb2e2-0a9b-4b4b-961f-fe1fb6debd8d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:59:46.4675119Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:59: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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e2b2bdaa-9b0a-4b4b-961f-fe1fb6debd8d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"aabdb2e2-0a9b-4b4b-961f-fe1fb6debd8d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:59:46.4675119Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:00: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 --enable-managed-identity -a --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e2b2bdaa-9b0a-4b4b-961f-fe1fb6debd8d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"aabdb2e2-0a9b-4b4b-961f-fe1fb6debd8d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:59:46.4675119Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:00: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 --enable-managed-identity -a --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e2b2bdaa-9b0a-4b4b-961f-fe1fb6debd8d?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 }" + string: "{\n \"name\": \"aabdb2e2-0a9b-4b4b-961f-fe1fb6debd8d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:59:46.4675119Z\"\n }" headers: cache-control: - no-cache @@ -220,7 +362,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:49:10 GMT + - Thu, 29 Jun 2023 11:01:17 GMT expires: - '-1' pragma: @@ -252,14 +394,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e2b2bdaa-9b0a-4b4b-961f-fe1fb6debd8d?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 }" + string: "{\n \"name\": \"aabdb2e2-0a9b-4b4b-961f-fe1fb6debd8d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:59:46.4675119Z\"\n }" headers: cache-control: - no-cache @@ -268,7 +410,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:49:40 GMT + - Thu, 29 Jun 2023 11:01:47 GMT expires: - '-1' pragma: @@ -300,14 +442,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e2b2bdaa-9b0a-4b4b-961f-fe1fb6debd8d?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 }" + string: "{\n \"name\": \"aabdb2e2-0a9b-4b4b-961f-fe1fb6debd8d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:59:46.4675119Z\"\n }" headers: cache-control: - no-cache @@ -316,7 +458,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:50:11 GMT + - Thu, 29 Jun 2023 11:02:17 GMT expires: - '-1' pragma: @@ -348,14 +490,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e2b2bdaa-9b0a-4b4b-961f-fe1fb6debd8d?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 }" + string: "{\n \"name\": \"aabdb2e2-0a9b-4b4b-961f-fe1fb6debd8d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:59:46.4675119Z\"\n }" headers: cache-control: - no-cache @@ -364,7 +506,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:50:41 GMT + - Thu, 29 Jun 2023 11:02:47 GMT expires: - '-1' pragma: @@ -396,14 +538,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e2b2bdaa-9b0a-4b4b-961f-fe1fb6debd8d?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 }" + string: "{\n \"name\": \"aabdb2e2-0a9b-4b4b-961f-fe1fb6debd8d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:59:46.4675119Z\"\n }" headers: cache-control: - no-cache @@ -412,7 +554,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:51:11 GMT + - Thu, 29 Jun 2023 11:03:17 GMT expires: - '-1' pragma: @@ -444,14 +586,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e2b2bdaa-9b0a-4b4b-961f-fe1fb6debd8d?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 }" + string: "{\n \"name\": \"aabdb2e2-0a9b-4b4b-961f-fe1fb6debd8d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:59:46.4675119Z\"\n }" headers: cache-control: - no-cache @@ -460,7 +602,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:51:41 GMT + - Thu, 29 Jun 2023 11:03:47 GMT expires: - '-1' pragma: @@ -492,14 +634,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e2b2bdaa-9b0a-4b4b-961f-fe1fb6debd8d?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 }" + string: "{\n \"name\": \"aabdb2e2-0a9b-4b4b-961f-fe1fb6debd8d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:59:46.4675119Z\"\n }" headers: cache-control: - no-cache @@ -508,7 +650,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:52:11 GMT + - Thu, 29 Jun 2023 11:04:17 GMT expires: - '-1' pragma: @@ -540,14 +682,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e2b2bdaa-9b0a-4b4b-961f-fe1fb6debd8d?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 }" + string: "{\n \"name\": \"aabdb2e2-0a9b-4b4b-961f-fe1fb6debd8d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:59:46.4675119Z\"\n }" headers: cache-control: - no-cache @@ -556,7 +698,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:52:41 GMT + - Thu, 29 Jun 2023 11:04:47 GMT expires: - '-1' pragma: @@ -588,15 +730,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e2b2bdaa-9b0a-4b4b-961f-fe1fb6debd8d?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"aabdb2e2-0a9b-4b4b-961f-fe1fb6debd8d\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:59:46.4675119Z\",\n \"endTime\": + \"2023-06-29T11:04:50.7736661Z\"\n }" headers: cache-control: - no-cache @@ -605,7 +747,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:53:12 GMT + - Thu, 29 Jun 2023 11:05:18 GMT expires: - '-1' pragma: @@ -637,67 +779,64 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestumpnw56ym-79a739\",\n \"fqdn\": \"cliakstest-clitestumpnw56ym-79a739-t9q7v1zn.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestumpnw56ym-79a739-t9q7v1zn.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d2b9e412-1770-44e6-a0b2-3b10e85681c0\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4350' + - '4021' content-type: - application/json date: - - Thu, 15 Jun 2023 18:53:13 GMT + - Thu, 29 Jun 2023 11:05:18 GMT expires: - '-1' pragma: @@ -729,67 +868,64 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestumpnw56ym-79a739\",\n \"fqdn\": \"cliakstest-clitestumpnw56ym-79a739-t9q7v1zn.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestumpnw56ym-79a739-t9q7v1zn.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d2b9e412-1770-44e6-a0b2-3b10e85681c0\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4350' + - '4021' content-type: - application/json date: - - Thu, 15 Jun 2023 18:53:16 GMT + - Thu, 29 Jun 2023 11:05:19 GMT expires: - '-1' pragma: @@ -810,21 +946,21 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": - "cliakstest-clitestvw7rzo47z-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-clitestumpnw56ym-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.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": {"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"}]}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_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/d2b9e412-1770-44e6-a0b2-3b10e85681c0"}]}, "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"}}, @@ -841,75 +977,72 @@ interactions: Connection: - keep-alive Content-Length: - - '2901' + - '2572' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestumpnw56ym-79a739\",\n \"fqdn\": \"cliakstest-clitestumpnw56ym-79a739-t9q7v1zn.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestumpnw56ym-79a739-t9q7v1zn.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d2b9e412-1770-44e6-a0b2-3b10e85681c0\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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/64d470ce-efa3-4d79-9f9f-fc6eec15f4f7?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/03d533bd-6b39-4ece-bfa3-3bcecf825cf0?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4349' + - '4020' content-type: - application/json date: - - Thu, 15 Jun 2023 18:53:22 GMT + - Thu, 29 Jun 2023 11:05:23 GMT expires: - '-1' pragma: @@ -943,14 +1076,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/03d533bd-6b39-4ece-bfa3-3bcecf825cf0?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 }" + string: "{\n \"name\": \"bd33d503-396b-ce4e-bfa3-3bcecf825cf0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:05:23.9217714Z\"\n }" headers: cache-control: - no-cache @@ -959,7 +1092,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:53:22 GMT + - Thu, 29 Jun 2023 11:05:24 GMT expires: - '-1' pragma: @@ -991,14 +1124,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/03d533bd-6b39-4ece-bfa3-3bcecf825cf0?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 }" + string: "{\n \"name\": \"bd33d503-396b-ce4e-bfa3-3bcecf825cf0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:05:23.9217714Z\"\n }" headers: cache-control: - no-cache @@ -1007,7 +1140,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:53:52 GMT + - Thu, 29 Jun 2023 11:05:54 GMT expires: - '-1' pragma: @@ -1039,14 +1172,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/03d533bd-6b39-4ece-bfa3-3bcecf825cf0?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 }" + string: "{\n \"name\": \"bd33d503-396b-ce4e-bfa3-3bcecf825cf0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:05:23.9217714Z\"\n }" headers: cache-control: - no-cache @@ -1055,7 +1188,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:54:22 GMT + - Thu, 29 Jun 2023 11:06:25 GMT expires: - '-1' pragma: @@ -1087,14 +1220,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/03d533bd-6b39-4ece-bfa3-3bcecf825cf0?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 }" + string: "{\n \"name\": \"bd33d503-396b-ce4e-bfa3-3bcecf825cf0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:05:23.9217714Z\"\n }" headers: cache-control: - no-cache @@ -1103,7 +1236,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:54:53 GMT + - Thu, 29 Jun 2023 11:06:55 GMT expires: - '-1' pragma: @@ -1135,15 +1268,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/03d533bd-6b39-4ece-bfa3-3bcecf825cf0?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"bd33d503-396b-ce4e-bfa3-3bcecf825cf0\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:05:23.9217714Z\",\n \"endTime\": + \"2023-06-29T11:07:03.0237562Z\"\n }" headers: cache-control: - no-cache @@ -1152,7 +1285,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:55:23 GMT + - Thu, 29 Jun 2023 11:07:25 GMT expires: - '-1' pragma: @@ -1184,67 +1317,64 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestumpnw56ym-79a739\",\n \"fqdn\": \"cliakstest-clitestumpnw56ym-79a739-t9q7v1zn.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestumpnw56ym-79a739-t9q7v1zn.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d2b9e412-1770-44e6-a0b2-3b10e85681c0\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4351' + - '4022' content-type: - application/json date: - - Thu, 15 Jun 2023 18:55:24 GMT + - Thu, 29 Jun 2023 11:07:25 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 5a634ebc6c9..dd4a203435b 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 18:55:31 GMT + - Thu, 29 Jun 2023 10:54:49 GMT expires: - '-1' pragma: @@ -58,12 +58,12 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1039-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_enable_addon_with_azurekeyvaultsecretsprovider","date":"2023-06-15T18:55:28Z","module":"acs"},"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-29T10:54:49Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -72,7 +72,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 18:55:31 GMT + - Thu, 29 Jun 2023 10:54:50 GMT expires: - '-1' pragma: @@ -88,18 +88,19 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestjwnqfyx7d-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest6trveodgz-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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {}}}' headers: Accept: - application/json @@ -110,69 +111,67 @@ interactions: Connection: - keep-alive Content-Length: - - '1751' + - '1422' Content-Type: - application/json ParameterSetName: - --resource-group --name --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitest6trveodgz-79a739\",\n \"fqdn\": \"cliakstest-clitest6trveodgz-79a739-fd7klwud.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest6trveodgz-79a739-fd7klwud.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"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/f033fb7e-f731-4607-afd0-817257755aa1?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/750a2b4c-f0a2-42fe-a9b6-1bc40741cafc?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3596' + - '3267' content-type: - application/json date: - - Thu, 15 Jun 2023 18:55:38 GMT + - Thu, 29 Jun 2023 10:54:57 GMT expires: - '-1' pragma: @@ -184,7 +183,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -202,14 +201,206 @@ interactions: ParameterSetName: - --resource-group --name --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/750a2b4c-f0a2-42fe-a9b6-1bc40741cafc?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"4c2b0a75-a2f0-fe42-a9b6-1bc40741cafc\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:54:57.4825684Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:54: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 --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/750a2b4c-f0a2-42fe-a9b6-1bc40741cafc?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"4c2b0a75-a2f0-fe42-a9b6-1bc40741cafc\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:54:57.4825684Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10: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 --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/750a2b4c-f0a2-42fe-a9b6-1bc40741cafc?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"4c2b0a75-a2f0-fe42-a9b6-1bc40741cafc\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:54:57.4825684Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10: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 +- request: + 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.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/750a2b4c-f0a2-42fe-a9b6-1bc40741cafc?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"4c2b0a75-a2f0-fe42-a9b6-1bc40741cafc\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:54:57.4825684Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:56: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 --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/750a2b4c-f0a2-42fe-a9b6-1bc40741cafc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7efb33f0-31f7-0746-afd0-817257755aa1\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T18:55:37.7516759Z\"\n }" + string: "{\n \"name\": \"4c2b0a75-a2f0-fe42-a9b6-1bc40741cafc\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:54:57.4825684Z\"\n }" headers: cache-control: - no-cache @@ -218,7 +409,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:55:38 GMT + - Thu, 29 Jun 2023 10:56:57 GMT expires: - '-1' pragma: @@ -250,14 +441,14 @@ interactions: ParameterSetName: - --resource-group --name --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/750a2b4c-f0a2-42fe-a9b6-1bc40741cafc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7efb33f0-31f7-0746-afd0-817257755aa1\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T18:55:37.7516759Z\"\n }" + string: "{\n \"name\": \"4c2b0a75-a2f0-fe42-a9b6-1bc40741cafc\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:54:57.4825684Z\"\n }" headers: cache-control: - no-cache @@ -266,7 +457,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:56:08 GMT + - Thu, 29 Jun 2023 10:57:28 GMT expires: - '-1' pragma: @@ -298,14 +489,14 @@ interactions: ParameterSetName: - --resource-group --name --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/750a2b4c-f0a2-42fe-a9b6-1bc40741cafc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7efb33f0-31f7-0746-afd0-817257755aa1\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T18:55:37.7516759Z\"\n }" + string: "{\n \"name\": \"4c2b0a75-a2f0-fe42-a9b6-1bc40741cafc\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:54:57.4825684Z\"\n }" headers: cache-control: - no-cache @@ -314,7 +505,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:57:43 GMT + - Thu, 29 Jun 2023 10:57:58 GMT expires: - '-1' pragma: @@ -346,14 +537,14 @@ interactions: ParameterSetName: - --resource-group --name --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/750a2b4c-f0a2-42fe-a9b6-1bc40741cafc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7efb33f0-31f7-0746-afd0-817257755aa1\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T18:55:37.7516759Z\"\n }" + string: "{\n \"name\": \"4c2b0a75-a2f0-fe42-a9b6-1bc40741cafc\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:54:57.4825684Z\"\n }" headers: cache-control: - no-cache @@ -362,7 +553,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:58:13 GMT + - Thu, 29 Jun 2023 10:58:28 GMT expires: - '-1' pragma: @@ -394,14 +585,14 @@ interactions: ParameterSetName: - --resource-group --name --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/750a2b4c-f0a2-42fe-a9b6-1bc40741cafc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7efb33f0-31f7-0746-afd0-817257755aa1\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T18:55:37.7516759Z\"\n }" + string: "{\n \"name\": \"4c2b0a75-a2f0-fe42-a9b6-1bc40741cafc\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:54:57.4825684Z\"\n }" headers: cache-control: - no-cache @@ -410,7 +601,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:58:43 GMT + - Thu, 29 Jun 2023 10:58:59 GMT expires: - '-1' pragma: @@ -442,15 +633,111 @@ interactions: ParameterSetName: - --resource-group --name --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/750a2b4c-f0a2-42fe-a9b6-1bc40741cafc?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"4c2b0a75-a2f0-fe42-a9b6-1bc40741cafc\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:54:57.4825684Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:59: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 --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/750a2b4c-f0a2-42fe-a9b6-1bc40741cafc?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"4c2b0a75-a2f0-fe42-a9b6-1bc40741cafc\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T10:54:57.4825684Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 10:59: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 --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/750a2b4c-f0a2-42fe-a9b6-1bc40741cafc?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"4c2b0a75-a2f0-fe42-a9b6-1bc40741cafc\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T10:54:57.4825684Z\",\n \"endTime\": + \"2023-06-29T11:00:26.5249576Z\"\n }" headers: cache-control: - no-cache @@ -459,7 +746,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:59:13 GMT + - Thu, 29 Jun 2023 11:00:29 GMT expires: - '-1' pragma: @@ -491,66 +778,63 @@ interactions: ParameterSetName: - --resource-group --name --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitest6trveodgz-79a739\",\n \"fqdn\": \"cliakstest-clitest6trveodgz-79a739-fd7klwud.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest6trveodgz-79a739-fd7klwud.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/7e93dc5e-b5c8-4878-8cf6-fccb006858a6\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4249' + - '3920' content-type: - application/json date: - - Thu, 15 Jun 2023 18:59:14 GMT + - Thu, 29 Jun 2023 11:00:30 GMT expires: - '-1' pragma: @@ -582,66 +866,63 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitest6trveodgz-79a739\",\n \"fqdn\": \"cliakstest-clitest6trveodgz-79a739-fd7klwud.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest6trveodgz-79a739-fd7klwud.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/7e93dc5e-b5c8-4878-8cf6-fccb006858a6\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4249' + - '3920' content-type: - application/json date: - - Thu, 15 Jun 2023 18:59:15 GMT + - Thu, 29 Jun 2023 11:00:31 GMT expires: - '-1' pragma: @@ -662,22 +943,22 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": - "cliakstest-clitestjwnqfyx7d-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-clitest6trveodgz-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.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", + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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, "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"}]}, + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/7e93dc5e-b5c8-4878-8cf6-fccb006858a6"}]}, "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"}}, @@ -694,77 +975,73 @@ interactions: Connection: - keep-alive Content-Length: - - '2988' + - '2659' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitest6trveodgz-79a739\",\n \"fqdn\": \"cliakstest-clitest6trveodgz-79a739-fd7klwud.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest6trveodgz-79a739-fd7klwud.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/7e93dc5e-b5c8-4878-8cf6-fccb006858a6\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dcc0cc29-2347-46e1-8fa5-6f841beb2dec?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4439' + - '4110' content-type: - application/json date: - - Thu, 15 Jun 2023 18:59:20 GMT + - Thu, 29 Jun 2023 11:00:36 GMT expires: - '-1' pragma: @@ -780,7 +1057,55 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' + 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dcc0cc29-2347-46e1-8fa5-6f841beb2dec?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"29ccc0dc-4723-e146-8fa5-6f841beb2dec\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:00:35.4832645Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:00: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 @@ -798,14 +1123,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dcc0cc29-2347-46e1-8fa5-6f841beb2dec?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b370957c-8d04-8a49-a8eb-08817203b459\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T18:59:20.2678583Z\"\n }" + string: "{\n \"name\": \"29ccc0dc-4723-e146-8fa5-6f841beb2dec\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:00:35.4832645Z\"\n }" headers: cache-control: - no-cache @@ -814,7 +1139,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:59:20 GMT + - Thu, 29 Jun 2023 11:01:06 GMT expires: - '-1' pragma: @@ -846,14 +1171,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dcc0cc29-2347-46e1-8fa5-6f841beb2dec?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b370957c-8d04-8a49-a8eb-08817203b459\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T18:59:20.2678583Z\"\n }" + string: "{\n \"name\": \"29ccc0dc-4723-e146-8fa5-6f841beb2dec\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:00:35.4832645Z\"\n }" headers: cache-control: - no-cache @@ -862,7 +1187,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 18:59:51 GMT + - Thu, 29 Jun 2023 11:01:36 GMT expires: - '-1' pragma: @@ -894,14 +1219,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dcc0cc29-2347-46e1-8fa5-6f841beb2dec?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b370957c-8d04-8a49-a8eb-08817203b459\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T18:59:20.2678583Z\"\n }" + string: "{\n \"name\": \"29ccc0dc-4723-e146-8fa5-6f841beb2dec\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:00:35.4832645Z\"\n }" headers: cache-control: - no-cache @@ -910,7 +1235,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:00:21 GMT + - Thu, 29 Jun 2023 11:02:06 GMT expires: - '-1' pragma: @@ -942,14 +1267,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dcc0cc29-2347-46e1-8fa5-6f841beb2dec?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b370957c-8d04-8a49-a8eb-08817203b459\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T18:59:20.2678583Z\"\n }" + string: "{\n \"name\": \"29ccc0dc-4723-e146-8fa5-6f841beb2dec\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:00:35.4832645Z\"\n }" headers: cache-control: - no-cache @@ -958,7 +1283,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:00:51 GMT + - Thu, 29 Jun 2023 11:02:36 GMT expires: - '-1' pragma: @@ -990,15 +1315,63 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dcc0cc29-2347-46e1-8fa5-6f841beb2dec?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"29ccc0dc-4723-e146-8fa5-6f841beb2dec\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:00:35.4832645Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:03: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 enable-addons + Connection: + - keep-alive + ParameterSetName: + - --addons --resource-group --name -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dcc0cc29-2347-46e1-8fa5-6f841beb2dec?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"29ccc0dc-4723-e146-8fa5-6f841beb2dec\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:00:35.4832645Z\",\n \"endTime\": + \"2023-06-29T11:03:17.7797152Z\"\n }" headers: cache-control: - no-cache @@ -1007,7 +1380,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:01:22 GMT + - Thu, 29 Jun 2023 11:03:36 GMT expires: - '-1' pragma: @@ -1039,72 +1412,67 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitest6trveodgz-79a739\",\n \"fqdn\": \"cliakstest-clitest6trveodgz-79a739-fd7klwud.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest6trveodgz-79a739-fd7klwud.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/7e93dc5e-b5c8-4878-8cf6-fccb006858a6\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4818' + - '4489' content-type: - application/json date: - - Thu, 15 Jun 2023 19:01:23 GMT + - Thu, 29 Jun 2023 11:03:37 GMT expires: - '-1' pragma: @@ -1137,72 +1505,67 @@ interactions: - --resource-group --name --enable-secret-rotation --rotation-poll-interval -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitest6trveodgz-79a739\",\n \"fqdn\": \"cliakstest-clitest6trveodgz-79a739-fd7klwud.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest6trveodgz-79a739-fd7klwud.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/7e93dc5e-b5c8-4878-8cf6-fccb006858a6\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4818' + - '4489' content-type: - application/json date: - - Thu, 15 Jun 2023 19:01:26 GMT + - Thu, 29 Jun 2023 11:03:38 GMT expires: - '-1' pragma: @@ -1223,23 +1586,22 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": - "cliakstest-clitestjwnqfyx7d-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-clitest6trveodgz-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.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"}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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, "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"}]}, + "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": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/7e93dc5e-b5c8-4878-8cf6-fccb006858a6"}]}, "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"}}, @@ -1255,78 +1617,74 @@ interactions: Connection: - keep-alive Content-Length: - - '2958' + - '2592' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-secret-rotation --rotation-poll-interval -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitest6trveodgz-79a739\",\n \"fqdn\": \"cliakstest-clitest6trveodgz-79a739-fd7klwud.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest6trveodgz-79a739-fd7klwud.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/7e93dc5e-b5c8-4878-8cf6-fccb006858a6\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e7bf6880-dc6f-4250-9b61-6795678626b5?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4440' + - '4111' content-type: - application/json date: - - Thu, 15 Jun 2023 19:01:31 GMT + - Thu, 29 Jun 2023 11:03:43 GMT expires: - '-1' pragma: @@ -1342,7 +1700,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 200 message: OK @@ -1361,14 +1719,14 @@ interactions: - --resource-group --name --enable-secret-rotation --rotation-poll-interval -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e7bf6880-dc6f-4250-9b61-6795678626b5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d9fcdaac-aa69-4a40-a8e4-afdbab09da97\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T19:01:31.2370015Z\"\n }" + string: "{\n \"name\": \"8068bfe7-6fdc-5042-9b61-6795678626b5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:03:42.4526985Z\"\n }" headers: cache-control: - no-cache @@ -1377,7 +1735,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:01:31 GMT + - Thu, 29 Jun 2023 11:03:43 GMT expires: - '-1' pragma: @@ -1410,14 +1768,14 @@ interactions: - --resource-group --name --enable-secret-rotation --rotation-poll-interval -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e7bf6880-dc6f-4250-9b61-6795678626b5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d9fcdaac-aa69-4a40-a8e4-afdbab09da97\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T19:01:31.2370015Z\"\n }" + string: "{\n \"name\": \"8068bfe7-6fdc-5042-9b61-6795678626b5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:03:42.4526985Z\"\n }" headers: cache-control: - no-cache @@ -1426,7 +1784,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:02:02 GMT + - Thu, 29 Jun 2023 11:04:13 GMT expires: - '-1' pragma: @@ -1459,14 +1817,14 @@ interactions: - --resource-group --name --enable-secret-rotation --rotation-poll-interval -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e7bf6880-dc6f-4250-9b61-6795678626b5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d9fcdaac-aa69-4a40-a8e4-afdbab09da97\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T19:01:31.2370015Z\"\n }" + string: "{\n \"name\": \"8068bfe7-6fdc-5042-9b61-6795678626b5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:03:42.4526985Z\"\n }" headers: cache-control: - no-cache @@ -1475,7 +1833,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:02:32 GMT + - Thu, 29 Jun 2023 11:04:43 GMT expires: - '-1' pragma: @@ -1508,14 +1866,14 @@ interactions: - --resource-group --name --enable-secret-rotation --rotation-poll-interval -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e7bf6880-dc6f-4250-9b61-6795678626b5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d9fcdaac-aa69-4a40-a8e4-afdbab09da97\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T19:01:31.2370015Z\"\n }" + string: "{\n \"name\": \"8068bfe7-6fdc-5042-9b61-6795678626b5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:03:42.4526985Z\"\n }" headers: cache-control: - no-cache @@ -1524,7 +1882,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:03:02 GMT + - Thu, 29 Jun 2023 11:05:13 GMT expires: - '-1' pragma: @@ -1557,15 +1915,15 @@ interactions: - --resource-group --name --enable-secret-rotation --rotation-poll-interval -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e7bf6880-dc6f-4250-9b61-6795678626b5?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"8068bfe7-6fdc-5042-9b61-6795678626b5\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:03:42.4526985Z\",\n \"endTime\": + \"2023-06-29T11:05:28.5798502Z\"\n }" headers: cache-control: - no-cache @@ -1574,7 +1932,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:03:33 GMT + - Thu, 29 Jun 2023 11:05:44 GMT expires: - '-1' pragma: @@ -1607,72 +1965,67 @@ interactions: - --resource-group --name --enable-secret-rotation --rotation-poll-interval -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitest6trveodgz-79a739\",\n \"fqdn\": \"cliakstest-clitest6trveodgz-79a739-fd7klwud.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest6trveodgz-79a739-fd7klwud.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/7e93dc5e-b5c8-4878-8cf6-fccb006858a6\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4819' + - '4490' content-type: - application/json date: - - Thu, 15 Jun 2023 19:03:33 GMT + - Thu, 29 Jun 2023 11:05:44 GMT expires: - '-1' pragma: @@ -1704,72 +2057,67 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitest6trveodgz-79a739\",\n \"fqdn\": \"cliakstest-clitest6trveodgz-79a739-fd7klwud.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest6trveodgz-79a739-fd7klwud.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/7e93dc5e-b5c8-4878-8cf6-fccb006858a6\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4819' + - '4490' content-type: - application/json date: - - Thu, 15 Jun 2023 19:03:36 GMT + - Thu, 29 Jun 2023 11:05:45 GMT expires: - '-1' pragma: @@ -1790,23 +2138,22 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": - "cliakstest-clitestjwnqfyx7d-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-clitest6trveodgz-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.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"}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_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, "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"}]}, + "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": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/7e93dc5e-b5c8-4878-8cf6-fccb006858a6"}]}, "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"}}, @@ -1822,77 +2169,73 @@ interactions: Connection: - keep-alive Content-Length: - - '2959' + - '2593' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitest6trveodgz-79a739\",\n \"fqdn\": \"cliakstest-clitest6trveodgz-79a739-fd7klwud.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest6trveodgz-79a739-fd7klwud.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/7e93dc5e-b5c8-4878-8cf6-fccb006858a6\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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/7865c604-84b0-482a-b3d3-2d7d030f8738?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f3b0d325-0fd1-4436-842f-5381db3390e5?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4441' + - '4112' content-type: - application/json date: - - Thu, 15 Jun 2023 19:03:41 GMT + - Thu, 29 Jun 2023 11:05:50 GMT expires: - '-1' pragma: @@ -1908,7 +2251,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -1926,14 +2269,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f3b0d325-0fd1-4436-842f-5381db3390e5?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 }" + string: "{\n \"name\": \"25d3b0f3-d10f-3644-842f-5381db3390e5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:05:49.9686905Z\"\n }" headers: cache-control: - no-cache @@ -1942,7 +2285,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:03:41 GMT + - Thu, 29 Jun 2023 11:05:50 GMT expires: - '-1' pragma: @@ -1974,14 +2317,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f3b0d325-0fd1-4436-842f-5381db3390e5?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 }" + string: "{\n \"name\": \"25d3b0f3-d10f-3644-842f-5381db3390e5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:05:49.9686905Z\"\n }" headers: cache-control: - no-cache @@ -1990,7 +2333,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:04:11 GMT + - Thu, 29 Jun 2023 11:06:20 GMT expires: - '-1' pragma: @@ -2022,14 +2365,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f3b0d325-0fd1-4436-842f-5381db3390e5?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 }" + string: "{\n \"name\": \"25d3b0f3-d10f-3644-842f-5381db3390e5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:05:49.9686905Z\"\n }" headers: cache-control: - no-cache @@ -2038,7 +2381,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:04:42 GMT + - Thu, 29 Jun 2023 11:06:50 GMT expires: - '-1' pragma: @@ -2070,14 +2413,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f3b0d325-0fd1-4436-842f-5381db3390e5?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 }" + string: "{\n \"name\": \"25d3b0f3-d10f-3644-842f-5381db3390e5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:05:49.9686905Z\"\n }" headers: cache-control: - no-cache @@ -2086,7 +2429,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:05:12 GMT + - Thu, 29 Jun 2023 11:07:20 GMT expires: - '-1' pragma: @@ -2118,15 +2461,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f3b0d325-0fd1-4436-842f-5381db3390e5?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"25d3b0f3-d10f-3644-842f-5381db3390e5\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:05:49.9686905Z\",\n \"endTime\": + \"2023-06-29T11:07:35.8281885Z\"\n }" headers: cache-control: - no-cache @@ -2135,7 +2478,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:05:42 GMT + - Thu, 29 Jun 2023 11:07:50 GMT expires: - '-1' pragma: @@ -2167,72 +2510,67 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitest6trveodgz-79a739\",\n \"fqdn\": \"cliakstest-clitest6trveodgz-79a739-fd7klwud.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest6trveodgz-79a739-fd7klwud.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/7e93dc5e-b5c8-4878-8cf6-fccb006858a6\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4820' + - '4491' content-type: - application/json date: - - Thu, 15 Jun 2023 19:05:43 GMT + - Thu, 29 Jun 2023 11:07:51 GMT expires: - '-1' pragma: @@ -2264,72 +2602,67 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitest6trveodgz-79a739\",\n \"fqdn\": \"cliakstest-clitest6trveodgz-79a739-fd7klwud.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest6trveodgz-79a739-fd7klwud.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/7e93dc5e-b5c8-4878-8cf6-fccb006858a6\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4820' + - '4491' content-type: - application/json date: - - Thu, 15 Jun 2023 19:05:46 GMT + - Thu, 29 Jun 2023 11:07:52 GMT expires: - '-1' pragma: @@ -2350,21 +2683,21 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": - "cliakstest-clitestjwnqfyx7d-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-clitest6trveodgz-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.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": - 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"}]}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_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/7e93dc5e-b5c8-4878-8cf6-fccb006858a6"}]}, "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"}}, @@ -2381,76 +2714,72 @@ interactions: Connection: - keep-alive Content-Length: - - '2914' + - '2585' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitest6trveodgz-79a739\",\n \"fqdn\": \"cliakstest-clitest6trveodgz-79a739-fd7klwud.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest6trveodgz-79a739-fd7klwud.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/7e93dc5e-b5c8-4878-8cf6-fccb006858a6\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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/851fa44e-4306-491e-b2e9-df5c44eb8e07?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9cd6b12b-15f5-4ef6-adb4-261630cd5cba?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4362' + - '4033' content-type: - application/json date: - - Thu, 15 Jun 2023 19:05:52 GMT + - Thu, 29 Jun 2023 11:07:57 GMT expires: - '-1' pragma: @@ -2484,14 +2813,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9cd6b12b-15f5-4ef6-adb4-261630cd5cba?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4ea41f85-0643-1e49-b2e9-df5c44eb8e07\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T19:05:51.3314479Z\"\n }" + string: "{\n \"name\": \"2bb1d69c-f515-f64e-adb4-261630cd5cba\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:07:56.9846696Z\"\n }" headers: cache-control: - no-cache @@ -2500,7 +2829,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:05:52 GMT + - Thu, 29 Jun 2023 11:07:57 GMT expires: - '-1' pragma: @@ -2532,14 +2861,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9cd6b12b-15f5-4ef6-adb4-261630cd5cba?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4ea41f85-0643-1e49-b2e9-df5c44eb8e07\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T19:05:51.3314479Z\"\n }" + string: "{\n \"name\": \"2bb1d69c-f515-f64e-adb4-261630cd5cba\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:07:56.9846696Z\"\n }" headers: cache-control: - no-cache @@ -2548,7 +2877,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:06:22 GMT + - Thu, 29 Jun 2023 11:08:28 GMT expires: - '-1' pragma: @@ -2580,14 +2909,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9cd6b12b-15f5-4ef6-adb4-261630cd5cba?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4ea41f85-0643-1e49-b2e9-df5c44eb8e07\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T19:05:51.3314479Z\"\n }" + string: "{\n \"name\": \"2bb1d69c-f515-f64e-adb4-261630cd5cba\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:07:56.9846696Z\"\n }" headers: cache-control: - no-cache @@ -2596,7 +2925,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:06:52 GMT + - Thu, 29 Jun 2023 11:08:58 GMT expires: - '-1' pragma: @@ -2628,14 +2957,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9cd6b12b-15f5-4ef6-adb4-261630cd5cba?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4ea41f85-0643-1e49-b2e9-df5c44eb8e07\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T19:05:51.3314479Z\"\n }" + string: "{\n \"name\": \"2bb1d69c-f515-f64e-adb4-261630cd5cba\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:07:56.9846696Z\"\n }" headers: cache-control: - no-cache @@ -2644,7 +2973,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:07:22 GMT + - Thu, 29 Jun 2023 11:09:28 GMT expires: - '-1' pragma: @@ -2676,15 +3005,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9cd6b12b-15f5-4ef6-adb4-261630cd5cba?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 }" + string: "{\n \"name\": \"2bb1d69c-f515-f64e-adb4-261630cd5cba\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:07:56.9846696Z\",\n \"endTime\": + \"2023-06-29T11:09:45.2101007Z\"\n }" headers: cache-control: - no-cache @@ -2693,7 +3022,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:07:52 GMT + - Thu, 29 Jun 2023 11:09:58 GMT expires: - '-1' pragma: @@ -2725,68 +3054,64 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitest6trveodgz-79a739\",\n \"fqdn\": \"cliakstest-clitest6trveodgz-79a739-fd7klwud.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest6trveodgz-79a739-fd7klwud.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/7e93dc5e-b5c8-4878-8cf6-fccb006858a6\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4364' + - '4035' content-type: - application/json date: - - Thu, 15 Jun 2023 19:07:53 GMT + - Thu, 29 Jun 2023 11:09:58 GMT expires: - '-1' pragma: @@ -2819,68 +3144,64 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitest6trveodgz-79a739\",\n \"fqdn\": \"cliakstest-clitest6trveodgz-79a739-fd7klwud.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest6trveodgz-79a739-fd7klwud.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/7e93dc5e-b5c8-4878-8cf6-fccb006858a6\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4364' + - '4035' content-type: - application/json date: - - Thu, 15 Jun 2023 19:07:55 GMT + - Thu, 29 Jun 2023 11:09:59 GMT expires: - '-1' pragma: @@ -2901,22 +3222,22 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": - "cliakstest-clitestjwnqfyx7d-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-clitest6trveodgz-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.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": "true", "rotationPollInterval": "1h"}}}, - "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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, "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"}]}, + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/7e93dc5e-b5c8-4878-8cf6-fccb006858a6"}]}, "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"}}, @@ -2933,78 +3254,74 @@ interactions: Connection: - keep-alive Content-Length: - - '2987' + - '2658' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitest6trveodgz-79a739\",\n \"fqdn\": \"cliakstest-clitest6trveodgz-79a739-fd7klwud.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest6trveodgz-79a739-fd7klwud.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/7e93dc5e-b5c8-4878-8cf6-fccb006858a6\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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/b9ae5736-84d4-4350-8133-c3bbf99f9506?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/06f388a0-77a8-49d9-87f6-2e344b5372c9?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4438' + - '4109' content-type: - application/json date: - - Thu, 15 Jun 2023 19:08:00 GMT + - Thu, 29 Jun 2023 11:10:05 GMT expires: - '-1' pragma: @@ -3020,7 +3337,56 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' + 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/06f388a0-77a8-49d9-87f6-2e344b5372c9?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"a088f306-a877-d949-87f6-2e344b5372c9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:10:04.234984Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:10: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 @@ -3039,14 +3405,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/06f388a0-77a8-49d9-87f6-2e344b5372c9?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 }" + string: "{\n \"name\": \"a088f306-a877-d949-87f6-2e344b5372c9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:10:04.234984Z\"\n }" headers: cache-control: - no-cache @@ -3055,7 +3421,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:08:01 GMT + - Thu, 29 Jun 2023 11:10:35 GMT expires: - '-1' pragma: @@ -3088,14 +3454,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/06f388a0-77a8-49d9-87f6-2e344b5372c9?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 }" + string: "{\n \"name\": \"a088f306-a877-d949-87f6-2e344b5372c9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:10:04.234984Z\"\n }" headers: cache-control: - no-cache @@ -3104,7 +3470,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:08:31 GMT + - Thu, 29 Jun 2023 11:11:06 GMT expires: - '-1' pragma: @@ -3137,14 +3503,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/06f388a0-77a8-49d9-87f6-2e344b5372c9?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 }" + string: "{\n \"name\": \"a088f306-a877-d949-87f6-2e344b5372c9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:10:04.234984Z\"\n }" headers: cache-control: - no-cache @@ -3153,7 +3519,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:09:01 GMT + - Thu, 29 Jun 2023 11:11:36 GMT expires: - '-1' pragma: @@ -3186,14 +3552,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/06f388a0-77a8-49d9-87f6-2e344b5372c9?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 }" + string: "{\n \"name\": \"a088f306-a877-d949-87f6-2e344b5372c9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:10:04.234984Z\"\n }" headers: cache-control: - no-cache @@ -3202,7 +3568,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:09:31 GMT + - Thu, 29 Jun 2023 11:12:06 GMT expires: - '-1' pragma: @@ -3235,14 +3601,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/06f388a0-77a8-49d9-87f6-2e344b5372c9?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 }" + string: "{\n \"name\": \"a088f306-a877-d949-87f6-2e344b5372c9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:10:04.234984Z\"\n }" headers: cache-control: - no-cache @@ -3251,7 +3617,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:10:01 GMT + - Thu, 29 Jun 2023 11:12:36 GMT expires: - '-1' pragma: @@ -3284,15 +3650,15 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/06f388a0-77a8-49d9-87f6-2e344b5372c9?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 }" + string: "{\n \"name\": \"a088f306-a877-d949-87f6-2e344b5372c9\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:10:04.234984Z\",\n \"endTime\": + \"2023-06-29T11:12:41.0979918Z\"\n }" headers: cache-control: - no-cache @@ -3301,7 +3667,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:10:32 GMT + - Thu, 29 Jun 2023 11:13:06 GMT expires: - '-1' pragma: @@ -3334,72 +3700,67 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitest6trveodgz-79a739\",\n \"fqdn\": \"cliakstest-clitest6trveodgz-79a739-fd7klwud.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest6trveodgz-79a739-fd7klwud.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/7e93dc5e-b5c8-4878-8cf6-fccb006858a6\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4817' + - '4488' content-type: - application/json date: - - Thu, 15 Jun 2023 19:10:33 GMT + - Thu, 29 Jun 2023 11:13:07 GMT expires: - '-1' pragma: @@ -3433,8 +3794,8 @@ interactions: ParameterSetName: - --resource-group --name --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -3442,17 +3803,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/15c811f7-4f0b-4d3f-9bfb-cbbd38d2a7f6?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 15 Jun 2023 19:10:34 GMT + - Thu, 29 Jun 2023 11:13:09 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/15c811f7-4f0b-4d3f-9bfb-cbbd38d2a7f6?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_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 54e3dae4d04..de50469e837 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 19:10:39 GMT + - Thu, 29 Jun 2023 11:04:28 GMT expires: - '-1' pragma: @@ -58,12 +58,12 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1039-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_enable_addons_confcom_addon","date":"2023-06-15T19:10:37Z","module":"acs"},"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-29T11:04:26Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -72,15 +72,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 19:10:40 GMT + - Thu, 29 Jun 2023 11:04:28 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -88,18 +86,19 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestg2upyah4k-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestszxu7kszm-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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {}}}' headers: Accept: - application/json @@ -110,69 +109,67 @@ interactions: Connection: - keep-alive Content-Length: - - '1751' + - '1422' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestszxu7kszm-79a739\",\n \"fqdn\": \"cliakstest-clitestszxu7kszm-79a739-ugpa271p.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestszxu7kszm-79a739-ugpa271p.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"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/7f2c49f9-8d8a-4790-979b-0f409f927605?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d579c50b-2747-4105-b9f0-f10603543c9d?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3596' + - '3267' content-type: - application/json date: - - Thu, 15 Jun 2023 19:10:47 GMT + - Thu, 29 Jun 2023 11:04:50 GMT expires: - '-1' pragma: @@ -202,14 +199,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d579c50b-2747-4105-b9f0-f10603543c9d?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 }" + string: "{\n \"name\": \"0bc579d5-4727-0541-b9f0-f10603543c9d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:04:50.2498032Z\"\n }" headers: cache-control: - no-cache @@ -218,7 +215,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:10:47 GMT + - Thu, 29 Jun 2023 11:04:50 GMT expires: - '-1' pragma: @@ -250,14 +247,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d579c50b-2747-4105-b9f0-f10603543c9d?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 }" + string: "{\n \"name\": \"0bc579d5-4727-0541-b9f0-f10603543c9d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:04:50.2498032Z\"\n }" headers: cache-control: - no-cache @@ -266,7 +263,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:11:17 GMT + - Thu, 29 Jun 2023 11:05:21 GMT expires: - '-1' pragma: @@ -298,14 +295,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d579c50b-2747-4105-b9f0-f10603543c9d?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 }" + string: "{\n \"name\": \"0bc579d5-4727-0541-b9f0-f10603543c9d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:04:50.2498032Z\"\n }" headers: cache-control: - no-cache @@ -314,7 +311,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:11:47 GMT + - Thu, 29 Jun 2023 11:05:51 GMT expires: - '-1' pragma: @@ -346,14 +343,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d579c50b-2747-4105-b9f0-f10603543c9d?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 }" + string: "{\n \"name\": \"0bc579d5-4727-0541-b9f0-f10603543c9d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:04:50.2498032Z\"\n }" headers: cache-control: - no-cache @@ -362,7 +359,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:12:17 GMT + - Thu, 29 Jun 2023 11:06:21 GMT expires: - '-1' pragma: @@ -394,14 +391,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d579c50b-2747-4105-b9f0-f10603543c9d?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 }" + string: "{\n \"name\": \"0bc579d5-4727-0541-b9f0-f10603543c9d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:04:50.2498032Z\"\n }" headers: cache-control: - no-cache @@ -410,7 +407,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:12:48 GMT + - Thu, 29 Jun 2023 11:06:51 GMT expires: - '-1' pragma: @@ -442,14 +439,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d579c50b-2747-4105-b9f0-f10603543c9d?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 }" + string: "{\n \"name\": \"0bc579d5-4727-0541-b9f0-f10603543c9d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:04:50.2498032Z\"\n }" headers: cache-control: - no-cache @@ -458,7 +455,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:13:17 GMT + - Thu, 29 Jun 2023 11:07:21 GMT expires: - '-1' pragma: @@ -490,14 +487,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d579c50b-2747-4105-b9f0-f10603543c9d?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 }" + string: "{\n \"name\": \"0bc579d5-4727-0541-b9f0-f10603543c9d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:04:50.2498032Z\"\n }" headers: cache-control: - no-cache @@ -506,7 +503,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:13:47 GMT + - Thu, 29 Jun 2023 11:07:51 GMT expires: - '-1' pragma: @@ -538,14 +535,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d579c50b-2747-4105-b9f0-f10603543c9d?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 }" + string: "{\n \"name\": \"0bc579d5-4727-0541-b9f0-f10603543c9d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:04:50.2498032Z\"\n }" headers: cache-control: - no-cache @@ -554,7 +551,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:14:17 GMT + - Thu, 29 Jun 2023 11:08:21 GMT expires: - '-1' pragma: @@ -586,24 +583,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d579c50b-2747-4105-b9f0-f10603543c9d?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 }" + string: "{\n \"name\": \"0bc579d5-4727-0541-b9f0-f10603543c9d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:04:50.2498032Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 19:14:48 GMT + - Thu, 29 Jun 2023 11:08:52 GMT expires: - '-1' pragma: @@ -635,66 +631,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d579c50b-2747-4105-b9f0-f10603543c9d?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.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 }" + string: "{\n \"name\": \"0bc579d5-4727-0541-b9f0-f10603543c9d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:04:50.2498032Z\"\n }" headers: cache-control: - no-cache content-length: - - '4249' + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 19:14:49 GMT + - Thu, 29 Jun 2023 11:09:22 GMT expires: - '-1' pragma: @@ -716,76 +669,170 @@ interactions: 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d579c50b-2747-4105-b9f0-f10603543c9d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"0bc579d5-4727-0541-b9f0-f10603543c9d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:04:50.2498032Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: - application/json + date: + - Thu, 29 Jun 2023 11:09: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 enable-addons + - aks create Connection: - keep-alive ParameterSetName: - - --addons --resource-group --name -o + - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d579c50b-2747-4105-b9f0-f10603543c9d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"0bc579d5-4727-0541-b9f0-f10603543c9d\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:04:50.2498032Z\",\n \"endTime\": + \"2023-06-29T11:10:21.0905882Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:10: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 --enable-managed-identity --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestszxu7kszm-79a739\",\n \"fqdn\": \"cliakstest-clitestszxu7kszm-79a739-ugpa271p.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestszxu7kszm-79a739-ugpa271p.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d41b9a3b-3e54-4741-8e19-6ebaa50f1e64\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4249' + - '3920' content-type: - application/json date: - - Thu, 15 Jun 2023 19:14:51 GMT + - Thu, 29 Jun 2023 11:10:23 GMT expires: - '-1' pragma: @@ -804,30 +851,7 @@ interactions: code: 200 message: OK - request: - 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.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": {"ACCSGXDevicePlugin": {"enabled": - true, "config": {"ACCSGXQuoteHelperEnabled": "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/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"}}, - "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {"diskCSIDriver": - {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": - {"enabled": true}}, "workloadAutoScalerProfile": {}}}' + body: null headers: Accept: - application/json @@ -837,77 +861,66 @@ interactions: - aks enable-addons Connection: - keep-alive - Content-Length: - - '2952' - Content-Type: - - application/json 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: PUT + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestszxu7kszm-79a739\",\n \"fqdn\": \"cliakstest-clitestszxu7kszm-79a739-ugpa271p.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestszxu7kszm-79a739-ugpa271p.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d41b9a3b-3e54-4741-8e19-6ebaa50f1e64\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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/0253cd32-75b2-4d39-a179-d8f7ac76bfa6?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4397' + - '3920' content-type: - application/json date: - - Thu, 15 Jun 2023 19:14:56 GMT + - Thu, 29 Jun 2023 11:10:24 GMT expires: - '-1' pragma: @@ -922,42 +935,111 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: 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-clitestszxu7kszm-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.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": + false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"ACCSGXDevicePlugin": + {"enabled": true, "config": {"ACCSGXQuoteHelperEnabled": "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/d41b9a3b-3e54-4741-8e19-6ebaa50f1e64"}]}, + "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 enable-addons Connection: - keep-alive + Content-Length: + - '2623' + Content-Type: + - application/json 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 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"name\": \"32cd5302-b275-394d-a179-d8f7ac76bfa6\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T19:14:55.8482128Z\"\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-clitestszxu7kszm-79a739\",\n \"fqdn\": \"cliakstest-clitestszxu7kszm-79a739-ugpa271p.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestszxu7kszm-79a739-ugpa271p.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d41b9a3b-3e54-4741-8e19-6ebaa50f1e64\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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/172767ca-72f6-40c9-8bf5-cb23f91fb9e4?api-version=2016-03-30 cache-control: - no-cache content-length: - - '126' + - '4068' content-type: - application/json date: - - Thu, 15 Jun 2023 19:14:57 GMT + - Thu, 29 Jun 2023 11:10:28 GMT expires: - '-1' pragma: @@ -972,6 +1054,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1196' status: code: 200 message: OK @@ -989,14 +1073,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/172767ca-72f6-40c9-8bf5-cb23f91fb9e4?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 }" + string: "{\n \"name\": \"ca672717-f672-c940-8bf5-cb23f91fb9e4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:10:28.6256375Z\"\n }" headers: cache-control: - no-cache @@ -1005,7 +1089,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:15:26 GMT + - Thu, 29 Jun 2023 11:10:28 GMT expires: - '-1' pragma: @@ -1037,14 +1121,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/172767ca-72f6-40c9-8bf5-cb23f91fb9e4?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 }" + string: "{\n \"name\": \"ca672717-f672-c940-8bf5-cb23f91fb9e4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:10:28.6256375Z\"\n }" headers: cache-control: - no-cache @@ -1053,7 +1137,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:15:56 GMT + - Thu, 29 Jun 2023 11:10:59 GMT expires: - '-1' pragma: @@ -1085,14 +1169,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/172767ca-72f6-40c9-8bf5-cb23f91fb9e4?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 }" + string: "{\n \"name\": \"ca672717-f672-c940-8bf5-cb23f91fb9e4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:10:28.6256375Z\"\n }" headers: cache-control: - no-cache @@ -1101,7 +1185,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:16:26 GMT + - Thu, 29 Jun 2023 11:11:29 GMT expires: - '-1' pragma: @@ -1133,14 +1217,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/172767ca-72f6-40c9-8bf5-cb23f91fb9e4?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 }" + string: "{\n \"name\": \"ca672717-f672-c940-8bf5-cb23f91fb9e4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:10:28.6256375Z\"\n }" headers: cache-control: - no-cache @@ -1149,7 +1233,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:16:57 GMT + - Thu, 29 Jun 2023 11:12:00 GMT expires: - '-1' pragma: @@ -1181,15 +1265,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/172767ca-72f6-40c9-8bf5-cb23f91fb9e4?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"ca672717-f672-c940-8bf5-cb23f91fb9e4\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:10:28.6256375Z\",\n \"endTime\": + \"2023-06-29T11:12:05.3449229Z\"\n }" headers: cache-control: - no-cache @@ -1198,7 +1282,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:17:27 GMT + - Thu, 29 Jun 2023 11:12:30 GMT expires: - '-1' pragma: @@ -1230,68 +1314,65 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestszxu7kszm-79a739\",\n \"fqdn\": \"cliakstest-clitestszxu7kszm-79a739-ugpa271p.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestszxu7kszm-79a739-ugpa271p.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d41b9a3b-3e54-4741-8e19-6ebaa50f1e64\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4399' + - '4070' content-type: - application/json date: - - Thu, 15 Jun 2023 19:17:28 GMT + - Thu, 29 Jun 2023 11:12:30 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 28bfa1fcb55..895931bc92d 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 19:17:33 GMT + - Thu, 29 Jun 2023 11:07:49 GMT expires: - '-1' pragma: @@ -58,12 +58,12 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1039-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_enable_openservicemesh_addon","date":"2023-06-15T19:17:31Z","module":"acs"},"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-29T11:07:48Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -72,7 +72,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 19:17:33 GMT + - Thu, 29 Jun 2023 11:07:48 GMT expires: - '-1' pragma: @@ -88,18 +88,19 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestaxitz4hug-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestxh2wgb4ud-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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {}}}' headers: Accept: - application/json @@ -110,69 +111,67 @@ interactions: Connection: - keep-alive Content-Length: - - '1751' + - '1422' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestxh2wgb4ud-79a739\",\n \"fqdn\": \"cliakstest-clitestxh2wgb4ud-79a739-e0vocl8d.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestxh2wgb4ud-79a739-e0vocl8d.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"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/df5c0d8e-dfe5-45a9-8786-c5ac98ddfc4e?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ca416b1e-5c70-4690-9e98-c651991103ae?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3596' + - '3267' content-type: - application/json date: - - Thu, 15 Jun 2023 19:17:41 GMT + - Thu, 29 Jun 2023 11:07:55 GMT expires: - '-1' pragma: @@ -184,7 +183,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -202,14 +201,158 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ca416b1e-5c70-4690-9e98-c651991103ae?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"1e6b41ca-705c-9046-9e98-c651991103ae\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:07:54.9690768Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:07: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 --enable-managed-identity --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ca416b1e-5c70-4690-9e98-c651991103ae?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"1e6b41ca-705c-9046-9e98-c651991103ae\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:07:54.9690768Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:08: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 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ca416b1e-5c70-4690-9e98-c651991103ae?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"1e6b41ca-705c-9046-9e98-c651991103ae\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:07:54.9690768Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:08: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 --enable-managed-identity --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ca416b1e-5c70-4690-9e98-c651991103ae?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 }" + string: "{\n \"name\": \"1e6b41ca-705c-9046-9e98-c651991103ae\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:07:54.9690768Z\"\n }" headers: cache-control: - no-cache @@ -218,7 +361,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:17:41 GMT + - Thu, 29 Jun 2023 11:09:25 GMT expires: - '-1' pragma: @@ -250,14 +393,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ca416b1e-5c70-4690-9e98-c651991103ae?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 }" + string: "{\n \"name\": \"1e6b41ca-705c-9046-9e98-c651991103ae\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:07:54.9690768Z\"\n }" headers: cache-control: - no-cache @@ -266,7 +409,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:18:11 GMT + - Thu, 29 Jun 2023 11:09:56 GMT expires: - '-1' pragma: @@ -298,14 +441,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ca416b1e-5c70-4690-9e98-c651991103ae?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 }" + string: "{\n \"name\": \"1e6b41ca-705c-9046-9e98-c651991103ae\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:07:54.9690768Z\"\n }" headers: cache-control: - no-cache @@ -314,7 +457,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:18:41 GMT + - Thu, 29 Jun 2023 11:10:26 GMT expires: - '-1' pragma: @@ -346,14 +489,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ca416b1e-5c70-4690-9e98-c651991103ae?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 }" + string: "{\n \"name\": \"1e6b41ca-705c-9046-9e98-c651991103ae\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:07:54.9690768Z\"\n }" headers: cache-control: - no-cache @@ -362,7 +505,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:19:11 GMT + - Thu, 29 Jun 2023 11:10:56 GMT expires: - '-1' pragma: @@ -394,14 +537,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ca416b1e-5c70-4690-9e98-c651991103ae?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 }" + string: "{\n \"name\": \"1e6b41ca-705c-9046-9e98-c651991103ae\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:07:54.9690768Z\"\n }" headers: cache-control: - no-cache @@ -410,7 +553,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:19:41 GMT + - Thu, 29 Jun 2023 11:11:26 GMT expires: - '-1' pragma: @@ -442,14 +585,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ca416b1e-5c70-4690-9e98-c651991103ae?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 }" + string: "{\n \"name\": \"1e6b41ca-705c-9046-9e98-c651991103ae\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:07:54.9690768Z\"\n }" headers: cache-control: - no-cache @@ -458,7 +601,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:20:12 GMT + - Thu, 29 Jun 2023 11:11:56 GMT expires: - '-1' pragma: @@ -490,14 +633,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ca416b1e-5c70-4690-9e98-c651991103ae?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 }" + string: "{\n \"name\": \"1e6b41ca-705c-9046-9e98-c651991103ae\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:07:54.9690768Z\"\n }" headers: cache-control: - no-cache @@ -506,7 +649,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:20:42 GMT + - Thu, 29 Jun 2023 11:12:26 GMT expires: - '-1' pragma: @@ -538,14 +681,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ca416b1e-5c70-4690-9e98-c651991103ae?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 }" + string: "{\n \"name\": \"1e6b41ca-705c-9046-9e98-c651991103ae\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:07:54.9690768Z\"\n }" headers: cache-control: - no-cache @@ -554,7 +697,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:21:12 GMT + - Thu, 29 Jun 2023 11:12:56 GMT expires: - '-1' pragma: @@ -586,15 +729,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ca416b1e-5c70-4690-9e98-c651991103ae?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"1e6b41ca-705c-9046-9e98-c651991103ae\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:07:54.9690768Z\",\n \"endTime\": + \"2023-06-29T11:13:18.5523235Z\"\n }" headers: cache-control: - no-cache @@ -603,7 +746,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:21:42 GMT + - Thu, 29 Jun 2023 11:13:27 GMT expires: - '-1' pragma: @@ -635,66 +778,63 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestxh2wgb4ud-79a739\",\n \"fqdn\": \"cliakstest-clitestxh2wgb4ud-79a739-e0vocl8d.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestxh2wgb4ud-79a739-e0vocl8d.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/2d2ae839-ae48-4631-8b36-1ad12961392a\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4249' + - '3920' content-type: - application/json date: - - Thu, 15 Jun 2023 19:21:43 GMT + - Thu, 29 Jun 2023 11:13:27 GMT expires: - '-1' pragma: @@ -726,66 +866,63 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestxh2wgb4ud-79a739\",\n \"fqdn\": \"cliakstest-clitestxh2wgb4ud-79a739-e0vocl8d.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestxh2wgb4ud-79a739-e0vocl8d.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/2d2ae839-ae48-4631-8b36-1ad12961392a\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4249' + - '3920' content-type: - application/json date: - - Thu, 15 Jun 2023 19:21:44 GMT + - Thu, 29 Jun 2023 11:13:29 GMT expires: - '-1' pragma: @@ -806,21 +943,21 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": - "cliakstest-clitestaxitz4hug-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-clitestxh2wgb4ud-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.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": {"openServiceMesh": {"enabled": true, - "config": {}}}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_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"}]}, + {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/2d2ae839-ae48-4631-8b36-1ad12961392a"}]}, "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"}}, @@ -837,75 +974,72 @@ interactions: Connection: - keep-alive Content-Length: - - '2914' + - '2585' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestxh2wgb4ud-79a739\",\n \"fqdn\": \"cliakstest-clitestxh2wgb4ud-79a739-e0vocl8d.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestxh2wgb4ud-79a739-e0vocl8d.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/2d2ae839-ae48-4631-8b36-1ad12961392a\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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/b476745e-c469-46a4-9316-dd1bd5184ed3?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c362eea0-9e38-4963-87c7-2e1a4306aa31?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4348' + - '4019' content-type: - application/json date: - - Thu, 15 Jun 2023 19:21:50 GMT + - Thu, 29 Jun 2023 11:13:34 GMT expires: - '-1' pragma: @@ -939,14 +1073,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c362eea0-9e38-4963-87c7-2e1a4306aa31?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 }" + string: "{\n \"name\": \"a0ee62c3-389e-6349-87c7-2e1a4306aa31\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:13:32.9697009Z\"\n }" headers: cache-control: - no-cache @@ -955,7 +1089,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:21:50 GMT + - Thu, 29 Jun 2023 11:13:34 GMT expires: - '-1' pragma: @@ -987,14 +1121,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c362eea0-9e38-4963-87c7-2e1a4306aa31?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 }" + string: "{\n \"name\": \"a0ee62c3-389e-6349-87c7-2e1a4306aa31\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:13:32.9697009Z\"\n }" headers: cache-control: - no-cache @@ -1003,7 +1137,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:22:21 GMT + - Thu, 29 Jun 2023 11:14:04 GMT expires: - '-1' pragma: @@ -1035,14 +1169,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c362eea0-9e38-4963-87c7-2e1a4306aa31?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 }" + string: "{\n \"name\": \"a0ee62c3-389e-6349-87c7-2e1a4306aa31\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:13:32.9697009Z\"\n }" headers: cache-control: - no-cache @@ -1051,7 +1185,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:22:51 GMT + - Thu, 29 Jun 2023 11:14:34 GMT expires: - '-1' pragma: @@ -1083,14 +1217,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c362eea0-9e38-4963-87c7-2e1a4306aa31?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 }" + string: "{\n \"name\": \"a0ee62c3-389e-6349-87c7-2e1a4306aa31\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:13:32.9697009Z\"\n }" headers: cache-control: - no-cache @@ -1099,7 +1233,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:23:21 GMT + - Thu, 29 Jun 2023 11:15:03 GMT expires: - '-1' pragma: @@ -1131,15 +1265,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c362eea0-9e38-4963-87c7-2e1a4306aa31?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 }" + string: "{\n \"name\": \"a0ee62c3-389e-6349-87c7-2e1a4306aa31\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:13:32.9697009Z\",\n \"endTime\": + \"2023-06-29T11:15:11.5767716Z\"\n }" headers: cache-control: - no-cache @@ -1148,7 +1282,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:23:51 GMT + - Thu, 29 Jun 2023 11:15:34 GMT expires: - '-1' pragma: @@ -1180,67 +1314,64 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestxh2wgb4ud-79a739\",\n \"fqdn\": \"cliakstest-clitestxh2wgb4ud-79a739-e0vocl8d.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestxh2wgb4ud-79a739-e0vocl8d.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": + {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n + \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/2d2ae839-ae48-4631-8b36-1ad12961392a\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4350' + - '4021' content-type: - application/json date: - - Thu, 15 Jun 2023 19:23:52 GMT + - Thu, 29 Jun 2023 11:15:34 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 d14ea7170c2..2b65d033041 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 19:23:58 GMT + - Thu, 29 Jun 2023 11:07:28 GMT expires: - '-1' pragma: @@ -58,21 +58,23 @@ interactions: ParameterSetName: - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --ssh-key-value User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1039-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":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_aks_enable_utlra_ssd","date":"2023-06-15T19:23:57Z","module":"acs"},"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-29T11:07:28Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache + connection: + - close content-length: - '354' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 19:23:58 GMT + - Thu, 29 Jun 2023 11:07:28 GMT expires: - '-1' pragma: @@ -88,7 +90,7 @@ interactions: message: OK - request: body: '{"location": "eastus", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestokyyfhmzk-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestj5mpzhecq-79a739", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_D2s_v3", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "availabilityZones": @@ -96,11 +98,12 @@ interactions: "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": true, "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": {}}}' + {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {}}}' headers: Accept: - application/json @@ -111,71 +114,68 @@ interactions: Connection: - keep-alive Content-Length: - - '1787' + - '1458' Content-Type: - application/json ParameterSetName: - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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-clitestj5mpzhecq-79a739\",\n \"fqdn\": \"cliakstest-clitestj5mpzhecq-79a739-2eggw203.hcp.eastus.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestj5mpzhecq-79a739-2eggw203.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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"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/409d7b5f-d205-4591-a995-cf3bddb1136f?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/72ab93f6-6920-4d2c-a812-b63559a9d2b8?api-version=2017-08-31 cache-control: - no-cache content-length: - - '3659' + - '3330' content-type: - application/json date: - - Thu, 15 Jun 2023 19:24:03 GMT + - Thu, 29 Jun 2023 11:07:34 GMT expires: - '-1' pragma: @@ -205,14 +205,14 @@ interactions: ParameterSetName: - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/409d7b5f-d205-4591-a995-cf3bddb1136f?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/72ab93f6-6920-4d2c-a812-b63559a9d2b8?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"5f7b9d40-05d2-9145-a995-cf3bddb1136f\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T19:24:02.8130106Z\"\n }" + string: "{\n \"name\": \"f693ab72-2069-2c4d-a812-b63559a9d2b8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:07:34.3373166Z\"\n }" headers: cache-control: - no-cache @@ -221,7 +221,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:24:04 GMT + - Thu, 29 Jun 2023 11:07:34 GMT expires: - '-1' pragma: @@ -253,14 +253,14 @@ interactions: ParameterSetName: - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/409d7b5f-d205-4591-a995-cf3bddb1136f?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/72ab93f6-6920-4d2c-a812-b63559a9d2b8?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"5f7b9d40-05d2-9145-a995-cf3bddb1136f\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T19:24:02.8130106Z\"\n }" + string: "{\n \"name\": \"f693ab72-2069-2c4d-a812-b63559a9d2b8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:07:34.3373166Z\"\n }" headers: cache-control: - no-cache @@ -269,7 +269,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:24:34 GMT + - Thu, 29 Jun 2023 11:08:04 GMT expires: - '-1' pragma: @@ -301,14 +301,14 @@ interactions: ParameterSetName: - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/409d7b5f-d205-4591-a995-cf3bddb1136f?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/72ab93f6-6920-4d2c-a812-b63559a9d2b8?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"5f7b9d40-05d2-9145-a995-cf3bddb1136f\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T19:24:02.8130106Z\"\n }" + string: "{\n \"name\": \"f693ab72-2069-2c4d-a812-b63559a9d2b8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:07:34.3373166Z\"\n }" headers: cache-control: - no-cache @@ -317,7 +317,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:25:04 GMT + - Thu, 29 Jun 2023 11:08:34 GMT expires: - '-1' pragma: @@ -349,14 +349,14 @@ interactions: ParameterSetName: - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/409d7b5f-d205-4591-a995-cf3bddb1136f?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/72ab93f6-6920-4d2c-a812-b63559a9d2b8?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"5f7b9d40-05d2-9145-a995-cf3bddb1136f\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T19:24:02.8130106Z\"\n }" + string: "{\n \"name\": \"f693ab72-2069-2c4d-a812-b63559a9d2b8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:07:34.3373166Z\"\n }" headers: cache-control: - no-cache @@ -365,7 +365,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:25:34 GMT + - Thu, 29 Jun 2023 11:09:04 GMT expires: - '-1' pragma: @@ -397,14 +397,14 @@ interactions: ParameterSetName: - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/409d7b5f-d205-4591-a995-cf3bddb1136f?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/72ab93f6-6920-4d2c-a812-b63559a9d2b8?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"5f7b9d40-05d2-9145-a995-cf3bddb1136f\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T19:24:02.8130106Z\"\n }" + string: "{\n \"name\": \"f693ab72-2069-2c4d-a812-b63559a9d2b8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:07:34.3373166Z\"\n }" headers: cache-control: - no-cache @@ -413,7 +413,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:26:04 GMT + - Thu, 29 Jun 2023 11:09:34 GMT expires: - '-1' pragma: @@ -445,14 +445,14 @@ interactions: ParameterSetName: - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/409d7b5f-d205-4591-a995-cf3bddb1136f?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/72ab93f6-6920-4d2c-a812-b63559a9d2b8?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"5f7b9d40-05d2-9145-a995-cf3bddb1136f\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T19:24:02.8130106Z\"\n }" + string: "{\n \"name\": \"f693ab72-2069-2c4d-a812-b63559a9d2b8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:07:34.3373166Z\"\n }" headers: cache-control: - no-cache @@ -461,7 +461,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:26:34 GMT + - Thu, 29 Jun 2023 11:10:05 GMT expires: - '-1' pragma: @@ -493,14 +493,14 @@ interactions: ParameterSetName: - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/409d7b5f-d205-4591-a995-cf3bddb1136f?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/72ab93f6-6920-4d2c-a812-b63559a9d2b8?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"5f7b9d40-05d2-9145-a995-cf3bddb1136f\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T19:24:02.8130106Z\"\n }" + string: "{\n \"name\": \"f693ab72-2069-2c4d-a812-b63559a9d2b8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:07:34.3373166Z\"\n }" headers: cache-control: - no-cache @@ -509,7 +509,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:27:04 GMT + - Thu, 29 Jun 2023 11:10:35 GMT expires: - '-1' pragma: @@ -541,14 +541,14 @@ interactions: ParameterSetName: - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/409d7b5f-d205-4591-a995-cf3bddb1136f?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/72ab93f6-6920-4d2c-a812-b63559a9d2b8?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"5f7b9d40-05d2-9145-a995-cf3bddb1136f\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T19:24:02.8130106Z\"\n }" + string: "{\n \"name\": \"f693ab72-2069-2c4d-a812-b63559a9d2b8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:07:34.3373166Z\"\n }" headers: cache-control: - no-cache @@ -557,7 +557,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:27:34 GMT + - Thu, 29 Jun 2023 11:11:04 GMT expires: - '-1' pragma: @@ -589,24 +589,696 @@ interactions: ParameterSetName: - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/409d7b5f-d205-4591-a995-cf3bddb1136f?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/72ab93f6-6920-4d2c-a812-b63559a9d2b8?api-version=2017-08-31 response: body: - 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 }" + string: "{\n \"name\": \"f693ab72-2069-2c4d-a812-b63559a9d2b8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:07:34.3373166Z\"\n }" headers: cache-control: - no-cache content-length: - - '168' + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:11: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 --node-vm-size --zones --enable-ultra-ssd --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/72ab93f6-6920-4d2c-a812-b63559a9d2b8?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"f693ab72-2069-2c4d-a812-b63559a9d2b8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:07:34.3373166Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:12: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 --node-vm-size --zones --enable-ultra-ssd --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/72ab93f6-6920-4d2c-a812-b63559a9d2b8?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"f693ab72-2069-2c4d-a812-b63559a9d2b8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:07:34.3373166Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:12: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 --node-vm-size --zones --enable-ultra-ssd --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/72ab93f6-6920-4d2c-a812-b63559a9d2b8?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"f693ab72-2069-2c4d-a812-b63559a9d2b8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:07:34.3373166Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:13: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 --node-vm-size --zones --enable-ultra-ssd --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/72ab93f6-6920-4d2c-a812-b63559a9d2b8?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"f693ab72-2069-2c4d-a812-b63559a9d2b8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:07:34.3373166Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:13: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 --node-vm-size --zones --enable-ultra-ssd --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/72ab93f6-6920-4d2c-a812-b63559a9d2b8?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"f693ab72-2069-2c4d-a812-b63559a9d2b8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:07:34.3373166Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11: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 create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/72ab93f6-6920-4d2c-a812-b63559a9d2b8?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"f693ab72-2069-2c4d-a812-b63559a9d2b8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:07:34.3373166Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11: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 create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/72ab93f6-6920-4d2c-a812-b63559a9d2b8?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"f693ab72-2069-2c4d-a812-b63559a9d2b8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:07:34.3373166Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:15: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 --node-vm-size --zones --enable-ultra-ssd --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/72ab93f6-6920-4d2c-a812-b63559a9d2b8?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"f693ab72-2069-2c4d-a812-b63559a9d2b8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:07:34.3373166Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:15: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 --node-vm-size --zones --enable-ultra-ssd --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/72ab93f6-6920-4d2c-a812-b63559a9d2b8?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"f693ab72-2069-2c4d-a812-b63559a9d2b8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:07:34.3373166Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:16: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 --node-vm-size --zones --enable-ultra-ssd --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/72ab93f6-6920-4d2c-a812-b63559a9d2b8?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"f693ab72-2069-2c4d-a812-b63559a9d2b8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:07:34.3373166Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:16: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 --node-vm-size --zones --enable-ultra-ssd --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/72ab93f6-6920-4d2c-a812-b63559a9d2b8?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"f693ab72-2069-2c4d-a812-b63559a9d2b8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:07:34.3373166Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11: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 create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/72ab93f6-6920-4d2c-a812-b63559a9d2b8?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"f693ab72-2069-2c4d-a812-b63559a9d2b8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:07:34.3373166Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:17: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 --node-vm-size --zones --enable-ultra-ssd --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/72ab93f6-6920-4d2c-a812-b63559a9d2b8?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"f693ab72-2069-2c4d-a812-b63559a9d2b8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:07:34.3373166Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11: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 create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/72ab93f6-6920-4d2c-a812-b63559a9d2b8?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"f693ab72-2069-2c4d-a812-b63559a9d2b8\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:07:34.3373166Z\",\n \"endTime\": + \"2023-06-29T11:18:20.8884284Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' content-type: - application/json date: - - Thu, 15 Jun 2023 19:28:04 GMT + - Thu, 29 Jun 2023 11:18:36 GMT expires: - '-1' pragma: @@ -638,68 +1310,64 @@ interactions: ParameterSetName: - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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-clitestj5mpzhecq-79a739\",\n \"fqdn\": \"cliakstest-clitestj5mpzhecq-79a739-2eggw203.hcp.eastus.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestj5mpzhecq-79a739-2eggw203.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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"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/558a8df1-0f02-4d26-bff0-02c55a3999e4\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4310' + - '3981' content-type: - application/json date: - - Thu, 15 Jun 2023 19:28:05 GMT + - Thu, 29 Jun 2023 11:18:37 GMT expires: - '-1' pragma: @@ -733,8 +1401,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -742,17 +1410,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/60bc296f-7e0b-47b5-a57a-a889e48c4cc3?api-version=2017-08-31 cache-control: - no-cache content-length: - '0' date: - - Thu, 15 Jun 2023 19:28:07 GMT + - Thu, 29 Jun 2023 11:18:38 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operationresults/60bc296f-7e0b-47b5-a57a-a889e48c4cc3?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_managed_aad.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_managed_aad.yaml index d639505ecc5..d062ffc8ae6 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,8 +14,8 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 29 Apr 2023 10:54:39 GMT + - Thu, 29 Jun 2023 11:10:09 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.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/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1039-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_managed_aad","date":"2023-04-29T10:54:39Z"},"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-06-29T11:10:09Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '335' + - '350' content-type: - application/json; charset=utf-8 date: - - Sat, 29 Apr 2023 10:54:39 GMT + - Thu, 29 Jun 2023 11:10:09 GMT expires: - '-1' pragma: @@ -90,20 +90,20 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestwv7ylyarr-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestn3whmg2jg-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 AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT 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": false, "storageProfile": {}}}' + "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": + false, "storageProfile": {}}}' headers: Accept: - application/json @@ -114,15 +114,15 @@ interactions: Connection: - keep-alive Content-Length: - - '1583' + - '1546' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -132,8 +132,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-clitestwv7ylyarr-79a739\",\n \"fqdn\": \"cliakstest-clitestwv7ylyarr-79a739-99abojdr.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestwv7ylyarr-79a739-99abojdr.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-clitestn3whmg2jg-79a739\",\n \"fqdn\": \"cliakstest-clitestn3whmg2jg-79a739-2c9zhbvt.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestn3whmg2jg-79a739-2c9zhbvt.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n @@ -143,42 +143,42 @@ interactions: \"1.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 + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT azcli_aks_live_test@example.com\\n\"\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\": + \ \"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 \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"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\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \"10.0.0.10\",\n \"outboundType\": \"loadBalancer\",\n \"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\": false,\n \"securityProfile\": {},\n \"storageProfile\": + {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": + {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": + true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n + \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": + \"SystemAssigned\",\n \"principalId\":\"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/2a20234e-7c3f-459e-aeb5-f4e51fa9c302?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f5add8d7-b5e9-43d8-8d56-2cfcf56153ef?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3541' + - '3502' content-type: - application/json date: - - Sat, 29 Apr 2023 10:54:44 GMT + - Thu, 29 Jun 2023 11:10:15 GMT expires: - '-1' pragma: @@ -190,7 +190,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1196' status: code: 201 message: Created @@ -209,14 +209,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.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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f5add8d7-b5e9-43d8-8d56-2cfcf56153ef?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 }" + string: "{\n \"name\": \"d7d8adf5-e9b5-d843-8d56-2cfcf56153ef\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:10:15.4068421Z\"\n }" headers: cache-control: - no-cache @@ -225,7 +225,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 10:54:44 GMT + - Thu, 29 Jun 2023 11:10:15 GMT expires: - '-1' pragma: @@ -258,14 +258,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.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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f5add8d7-b5e9-43d8-8d56-2cfcf56153ef?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 }" + string: "{\n \"name\": \"d7d8adf5-e9b5-d843-8d56-2cfcf56153ef\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:10:15.4068421Z\"\n }" headers: cache-control: - no-cache @@ -274,7 +274,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 10:55:14 GMT + - Thu, 29 Jun 2023 11:10:45 GMT expires: - '-1' pragma: @@ -307,14 +307,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.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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f5add8d7-b5e9-43d8-8d56-2cfcf56153ef?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 }" + string: "{\n \"name\": \"d7d8adf5-e9b5-d843-8d56-2cfcf56153ef\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:10:15.4068421Z\"\n }" headers: cache-control: - no-cache @@ -323,7 +323,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 10:55:44 GMT + - Thu, 29 Jun 2023 11:11:15 GMT expires: - '-1' pragma: @@ -356,14 +356,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.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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f5add8d7-b5e9-43d8-8d56-2cfcf56153ef?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 }" + string: "{\n \"name\": \"d7d8adf5-e9b5-d843-8d56-2cfcf56153ef\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:10:15.4068421Z\"\n }" headers: cache-control: - no-cache @@ -372,7 +372,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 10:56:14 GMT + - Thu, 29 Jun 2023 11:11:46 GMT expires: - '-1' pragma: @@ -405,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.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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f5add8d7-b5e9-43d8-8d56-2cfcf56153ef?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 }" + string: "{\n \"name\": \"d7d8adf5-e9b5-d843-8d56-2cfcf56153ef\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:10:15.4068421Z\"\n }" headers: cache-control: - no-cache @@ -421,7 +421,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 10:56:44 GMT + - Thu, 29 Jun 2023 11:12:16 GMT expires: - '-1' pragma: @@ -454,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.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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f5add8d7-b5e9-43d8-8d56-2cfcf56153ef?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 }" + string: "{\n \"name\": \"d7d8adf5-e9b5-d843-8d56-2cfcf56153ef\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:10:15.4068421Z\"\n }" headers: cache-control: - no-cache @@ -470,7 +470,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 10:57:15 GMT + - Thu, 29 Jun 2023 11:12:46 GMT expires: - '-1' pragma: @@ -503,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.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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f5add8d7-b5e9-43d8-8d56-2cfcf56153ef?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 }" + string: "{\n \"name\": \"d7d8adf5-e9b5-d843-8d56-2cfcf56153ef\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:10:15.4068421Z\"\n }" headers: cache-control: - no-cache @@ -519,7 +519,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 10:57:45 GMT + - Thu, 29 Jun 2023 11:13:16 GMT expires: - '-1' pragma: @@ -552,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.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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f5add8d7-b5e9-43d8-8d56-2cfcf56153ef?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 }" + string: "{\n \"name\": \"d7d8adf5-e9b5-d843-8d56-2cfcf56153ef\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:10:15.4068421Z\"\n }" headers: cache-control: - no-cache @@ -568,7 +568,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 10:58:15 GMT + - Thu, 29 Jun 2023 11:13:46 GMT expires: - '-1' pragma: @@ -601,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.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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f5add8d7-b5e9-43d8-8d56-2cfcf56153ef?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 }" + string: "{\n \"name\": \"d7d8adf5-e9b5-d843-8d56-2cfcf56153ef\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:10:15.4068421Z\"\n }" headers: cache-control: - no-cache @@ -617,7 +617,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 10:58:45 GMT + - Thu, 29 Jun 2023 11:14:16 GMT expires: - '-1' pragma: @@ -650,14 +650,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.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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f5add8d7-b5e9-43d8-8d56-2cfcf56153ef?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 }" + string: "{\n \"name\": \"d7d8adf5-e9b5-d843-8d56-2cfcf56153ef\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:10:15.4068421Z\"\n }" headers: cache-control: - no-cache @@ -666,7 +666,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 10:59:15 GMT + - Thu, 29 Jun 2023 11:14:47 GMT expires: - '-1' pragma: @@ -699,14 +699,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.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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f5add8d7-b5e9-43d8-8d56-2cfcf56153ef?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 }" + string: "{\n \"name\": \"d7d8adf5-e9b5-d843-8d56-2cfcf56153ef\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:10:15.4068421Z\"\n }" headers: cache-control: - no-cache @@ -715,7 +715,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 10:59:44 GMT + - Thu, 29 Jun 2023 11:15:17 GMT expires: - '-1' pragma: @@ -748,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.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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f5add8d7-b5e9-43d8-8d56-2cfcf56153ef?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"d7d8adf5-e9b5-d843-8d56-2cfcf56153ef\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:10:15.4068421Z\",\n \"endTime\": + \"2023-06-29T11:15:26.2336676Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '170' content-type: - application/json date: - - Sat, 29 Apr 2023 11:00:14 GMT + - Thu, 29 Jun 2023 11:15:47 GMT expires: - '-1' pragma: @@ -798,8 +798,8 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -809,8 +809,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-clitestwv7ylyarr-79a739\",\n \"fqdn\": \"cliakstest-clitestwv7ylyarr-79a739-99abojdr.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestwv7ylyarr-79a739-99abojdr.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-clitestn3whmg2jg-79a739\",\n \"fqdn\": \"cliakstest-clitestn3whmg2jg-79a739-2c9zhbvt.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestn3whmg2jg-79a739-2c9zhbvt.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n @@ -820,27 +820,26 @@ interactions: \"1.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 + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT azcli_aks_live_test@example.com\\n\"\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\": + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\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 \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/8966223b-ce46-47ac-9ef2-20983c723d31\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"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_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"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_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": @@ -854,11 +853,11 @@ interactions: cache-control: - no-cache content-length: - - '4194' + - '4155' content-type: - application/json date: - - Sat, 29 Apr 2023 11:00:15 GMT + - Thu, 29 Jun 2023 11:15:47 GMT expires: - '-1' pragma: @@ -890,8 +889,8 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -901,8 +900,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-clitestwv7ylyarr-79a739\",\n \"fqdn\": \"cliakstest-clitestwv7ylyarr-79a739-99abojdr.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestwv7ylyarr-79a739-99abojdr.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-clitestn3whmg2jg-79a739\",\n \"fqdn\": \"cliakstest-clitestn3whmg2jg-79a739-2c9zhbvt.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestn3whmg2jg-79a739-2c9zhbvt.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n @@ -912,27 +911,26 @@ interactions: \"1.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 + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT azcli_aks_live_test@example.com\\n\"\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\": + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\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 \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/8966223b-ce46-47ac-9ef2-20983c723d31\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"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_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"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_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": @@ -946,11 +944,11 @@ interactions: cache-control: - no-cache content-length: - - '4194' + - '4155' content-type: - application/json date: - - Sat, 29 Apr 2023 11:00:16 GMT + - Thu, 29 Jun 2023 11:15:49 GMT expires: - '-1' pragma: @@ -971,21 +969,20 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": - "cliakstest-clitestwv7ylyarr-79a739", "agentPoolProfiles": [{"count": 1, "vmSize": + "cliakstest-clitestn3whmg2jg-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.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT 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/8a81d449-00c0-4c45-8b44-8945aebf4eba"}]}, + "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/8966223b-ce46-47ac-9ef2-20983c723d31"}]}, "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"}, @@ -1003,14 +1000,14 @@ interactions: Connection: - keep-alive Content-Length: - - '2659' + - '2622' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -1020,8 +1017,8 @@ interactions: \"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-clitestwv7ylyarr-79a739\",\n \"fqdn\": \"cliakstest-clitestwv7ylyarr-79a739-99abojdr.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestwv7ylyarr-79a739-99abojdr.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-clitestn3whmg2jg-79a739\",\n \"fqdn\": \"cliakstest-clitestn3whmg2jg-79a739-2c9zhbvt.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestn3whmg2jg-79a739-2c9zhbvt.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n @@ -1031,27 +1028,26 @@ interactions: \"1.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 + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT azcli_aks_live_test@example.com\\n\"\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\": + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\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 \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/8966223b-ce46-47ac-9ef2-20983c723d31\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"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-000000000002\"\n - \ ],\n \"adminUsers\": null,\n \"enableAzureRBAC\": false,\n \"tenantID\": - \"00000000-0000-0000-0000-000000000003\"\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 + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"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-000000000002\"\n ],\n \"adminUsers\": + null,\n \"enableAzureRBAC\": false,\n \"tenantID\": \"00000000-0000-0000-0000-000000000003\"\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\": @@ -1063,15 +1059,15 @@ 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/833a860f-4e87-4a05-a2b6-caa0a73e7007?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eed7266d-9ed6-43bc-86ab-97ba6b41ac8d?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4192' + - '4153' content-type: - application/json date: - - Sat, 29 Apr 2023 11:00:20 GMT + - Thu, 29 Jun 2023 11:15:53 GMT expires: - '-1' pragma: @@ -1087,7 +1083,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1196' status: code: 200 message: OK @@ -1105,14 +1101,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eed7266d-9ed6-43bc-86ab-97ba6b41ac8d?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 }" + string: "{\n \"name\": \"6d26d7ee-d69e-bc43-86ab-97ba6b41ac8d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:15:53.1418931Z\"\n }" headers: cache-control: - no-cache @@ -1121,7 +1117,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:00:20 GMT + - Thu, 29 Jun 2023 11:15:53 GMT expires: - '-1' pragma: @@ -1153,14 +1149,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eed7266d-9ed6-43bc-86ab-97ba6b41ac8d?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 }" + string: "{\n \"name\": \"6d26d7ee-d69e-bc43-86ab-97ba6b41ac8d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:15:53.1418931Z\"\n }" headers: cache-control: - no-cache @@ -1169,7 +1165,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:00:50 GMT + - Thu, 29 Jun 2023 11:16:23 GMT expires: - '-1' pragma: @@ -1201,14 +1197,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eed7266d-9ed6-43bc-86ab-97ba6b41ac8d?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 }" + string: "{\n \"name\": \"6d26d7ee-d69e-bc43-86ab-97ba6b41ac8d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:15:53.1418931Z\"\n }" headers: cache-control: - no-cache @@ -1217,7 +1213,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:01:21 GMT + - Thu, 29 Jun 2023 11:16:53 GMT expires: - '-1' pragma: @@ -1249,14 +1245,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eed7266d-9ed6-43bc-86ab-97ba6b41ac8d?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 }" + string: "{\n \"name\": \"6d26d7ee-d69e-bc43-86ab-97ba6b41ac8d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:15:53.1418931Z\"\n }" headers: cache-control: - no-cache @@ -1265,7 +1261,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:01:51 GMT + - Thu, 29 Jun 2023 11:17:23 GMT expires: - '-1' pragma: @@ -1297,14 +1293,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eed7266d-9ed6-43bc-86ab-97ba6b41ac8d?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 }" + string: "{\n \"name\": \"6d26d7ee-d69e-bc43-86ab-97ba6b41ac8d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:15:53.1418931Z\"\n }" headers: cache-control: - no-cache @@ -1313,7 +1309,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:02:21 GMT + - Thu, 29 Jun 2023 11:17:54 GMT expires: - '-1' pragma: @@ -1345,14 +1341,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eed7266d-9ed6-43bc-86ab-97ba6b41ac8d?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 }" + string: "{\n \"name\": \"6d26d7ee-d69e-bc43-86ab-97ba6b41ac8d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:15:53.1418931Z\"\n }" headers: cache-control: - no-cache @@ -1361,7 +1357,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:02:51 GMT + - Thu, 29 Jun 2023 11:18:24 GMT expires: - '-1' pragma: @@ -1393,15 +1389,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eed7266d-9ed6-43bc-86ab-97ba6b41ac8d?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"6d26d7ee-d69e-bc43-86ab-97ba6b41ac8d\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:15:53.1418931Z\",\n \"endTime\": + \"2023-06-29T11:18:49.3393531Z\"\n }" headers: cache-control: - no-cache @@ -1410,7 +1406,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:03:21 GMT + - Thu, 29 Jun 2023 11:18:54 GMT expires: - '-1' pragma: @@ -1442,8 +1438,8 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -1453,8 +1449,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-clitestwv7ylyarr-79a739\",\n \"fqdn\": \"cliakstest-clitestwv7ylyarr-79a739-99abojdr.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestwv7ylyarr-79a739-99abojdr.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-clitestn3whmg2jg-79a739\",\n \"fqdn\": \"cliakstest-clitestn3whmg2jg-79a739-2c9zhbvt.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestn3whmg2jg-79a739-2c9zhbvt.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n @@ -1464,27 +1460,26 @@ interactions: \"1.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 + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT azcli_aks_live_test@example.com\\n\"\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\": + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\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 \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/8966223b-ce46-47ac-9ef2-20983c723d31\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"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-000000000002\"\n - \ ],\n \"adminUsers\": null,\n \"enableAzureRBAC\": false,\n \"tenantID\": - \"00000000-0000-0000-0000-000000000003\"\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 + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"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-000000000002\"\n ],\n \"adminUsers\": + null,\n \"enableAzureRBAC\": false,\n \"tenantID\": \"00000000-0000-0000-0000-000000000003\"\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\": @@ -1498,11 +1493,11 @@ interactions: cache-control: - no-cache content-length: - - '4194' + - '4155' content-type: - application/json date: - - Sat, 29 Apr 2023 11:03:21 GMT + - Thu, 29 Jun 2023 11:18:54 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 034bf4afc33..39fe42eb519 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,8 +14,8 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 29 Apr 2023 10:59:56 GMT + - Thu, 29 Jun 2023 11:18: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.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/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1039-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_managed_aad_msi","date":"2023-04-29T10:59:56Z"},"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-06-29T11:18:39Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '339' + - '354' content-type: - application/json; charset=utf-8 date: - - Sat, 29 Apr 2023 10:59:56 GMT + - Thu, 29 Jun 2023 11:18:39 GMT expires: - '-1' pragma: @@ -90,20 +90,20 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestswihja7lb-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest3ga3hae3n-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 AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT 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": false, "storageProfile": {}}}' + "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": + false, "storageProfile": {}}}' headers: Accept: - application/json @@ -114,15 +114,15 @@ interactions: Connection: - keep-alive Content-Length: - - '1583' + - '1546' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -132,8 +132,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-clitestswihja7lb-79a739\",\n \"fqdn\": \"cliakstest-clitestswihja7lb-79a739-nlh7hu10.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestswihja7lb-79a739-nlh7hu10.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-clitest3ga3hae3n-79a739\",\n \"fqdn\": \"cliakstest-clitest3ga3hae3n-79a739-uegvtb6f.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest3ga3hae3n-79a739-uegvtb6f.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n @@ -143,42 +143,42 @@ interactions: \"1.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 + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT azcli_aks_live_test@example.com\\n\"\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\": + \ \"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 \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"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\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \"10.0.0.10\",\n \"outboundType\": \"loadBalancer\",\n \"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\": false,\n \"securityProfile\": {},\n \"storageProfile\": + {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": + {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": + true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n + \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": + \"SystemAssigned\",\n \"principalId\":\"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/e831f8df-0298-403b-82e5-c0c9f99fa547?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/60dec777-f444-41ab-aab6-703175bc6f35?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3541' + - '3502' content-type: - application/json date: - - Sat, 29 Apr 2023 11:00:00 GMT + - Thu, 29 Jun 2023 11:18:46 GMT expires: - '-1' pragma: @@ -190,7 +190,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 201 message: Created @@ -209,14 +209,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.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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/60dec777-f444-41ab-aab6-703175bc6f35?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 }" + string: "{\n \"name\": \"77c7de60-44f4-ab41-aab6-703175bc6f35\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:18:46.2517479Z\"\n }" headers: cache-control: - no-cache @@ -225,7 +225,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:00:00 GMT + - Thu, 29 Jun 2023 11:18:46 GMT expires: - '-1' pragma: @@ -258,14 +258,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.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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/60dec777-f444-41ab-aab6-703175bc6f35?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 }" + string: "{\n \"name\": \"77c7de60-44f4-ab41-aab6-703175bc6f35\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:18:46.2517479Z\"\n }" headers: cache-control: - no-cache @@ -274,7 +274,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:00:31 GMT + - Thu, 29 Jun 2023 11:19:16 GMT expires: - '-1' pragma: @@ -307,14 +307,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.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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/60dec777-f444-41ab-aab6-703175bc6f35?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 }" + string: "{\n \"name\": \"77c7de60-44f4-ab41-aab6-703175bc6f35\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:18:46.2517479Z\"\n }" headers: cache-control: - no-cache @@ -323,7 +323,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:01:01 GMT + - Thu, 29 Jun 2023 11:19:46 GMT expires: - '-1' pragma: @@ -356,14 +356,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.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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/60dec777-f444-41ab-aab6-703175bc6f35?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 }" + string: "{\n \"name\": \"77c7de60-44f4-ab41-aab6-703175bc6f35\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:18:46.2517479Z\"\n }" headers: cache-control: - no-cache @@ -372,7 +372,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:01:31 GMT + - Thu, 29 Jun 2023 11:20:16 GMT expires: - '-1' pragma: @@ -405,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.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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/60dec777-f444-41ab-aab6-703175bc6f35?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 }" + string: "{\n \"name\": \"77c7de60-44f4-ab41-aab6-703175bc6f35\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:18:46.2517479Z\"\n }" headers: cache-control: - no-cache @@ -421,7 +421,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:02:01 GMT + - Thu, 29 Jun 2023 11:20:46 GMT expires: - '-1' pragma: @@ -454,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.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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/60dec777-f444-41ab-aab6-703175bc6f35?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 }" + string: "{\n \"name\": \"77c7de60-44f4-ab41-aab6-703175bc6f35\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:18:46.2517479Z\"\n }" headers: cache-control: - no-cache @@ -470,7 +470,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:02:31 GMT + - Thu, 29 Jun 2023 11:21:17 GMT expires: - '-1' pragma: @@ -503,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.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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/60dec777-f444-41ab-aab6-703175bc6f35?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 }" + string: "{\n \"name\": \"77c7de60-44f4-ab41-aab6-703175bc6f35\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:18:46.2517479Z\"\n }" headers: cache-control: - no-cache @@ -519,7 +519,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:03:01 GMT + - Thu, 29 Jun 2023 11:21:47 GMT expires: - '-1' pragma: @@ -552,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.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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/60dec777-f444-41ab-aab6-703175bc6f35?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 }" + string: "{\n \"name\": \"77c7de60-44f4-ab41-aab6-703175bc6f35\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:18:46.2517479Z\"\n }" headers: cache-control: - no-cache @@ -568,7 +568,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:03:31 GMT + - Thu, 29 Jun 2023 11:22:17 GMT expires: - '-1' pragma: @@ -601,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.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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/60dec777-f444-41ab-aab6-703175bc6f35?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 }" + string: "{\n \"name\": \"77c7de60-44f4-ab41-aab6-703175bc6f35\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:18:46.2517479Z\"\n }" headers: cache-control: - no-cache @@ -617,7 +617,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:04:02 GMT + - Thu, 29 Jun 2023 11:22:47 GMT expires: - '-1' pragma: @@ -650,14 +650,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.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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/60dec777-f444-41ab-aab6-703175bc6f35?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 }" + string: "{\n \"name\": \"77c7de60-44f4-ab41-aab6-703175bc6f35\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:18:46.2517479Z\"\n }" headers: cache-control: - no-cache @@ -666,7 +666,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:04:31 GMT + - Thu, 29 Jun 2023 11:23:17 GMT expires: - '-1' pragma: @@ -699,64 +699,15 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/60dec777-f444-41ab-aab6-703175bc6f35?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: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 --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\": - \"Succeeded\",\n \"startTime\": \"2023-04-29T11:00:01.2929071Z\",\n \"endTime\": - \"2023-04-29T11:05:22.6949665Z\"\n }" + string: "{\n \"name\": \"77c7de60-44f4-ab41-aab6-703175bc6f35\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:18:46.2517479Z\",\n \"endTime\": + \"2023-06-29T11:23:41.4925685Z\"\n }" headers: cache-control: - no-cache @@ -765,7 +716,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:05:32 GMT + - Thu, 29 Jun 2023 11:23:48 GMT expires: - '-1' pragma: @@ -798,8 +749,8 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -809,8 +760,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-clitestswihja7lb-79a739\",\n \"fqdn\": \"cliakstest-clitestswihja7lb-79a739-nlh7hu10.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestswihja7lb-79a739-nlh7hu10.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-clitest3ga3hae3n-79a739\",\n \"fqdn\": \"cliakstest-clitest3ga3hae3n-79a739-uegvtb6f.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest3ga3hae3n-79a739-uegvtb6f.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n @@ -820,27 +771,26 @@ interactions: \"1.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 + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT azcli_aks_live_test@example.com\\n\"\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\": + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\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 \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/f23b2e6b-fd57-479a-837c-d6b22d44c115\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"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_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"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_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": @@ -854,11 +804,11 @@ interactions: cache-control: - no-cache content-length: - - '4194' + - '4155' content-type: - application/json date: - - Sat, 29 Apr 2023 11:05:32 GMT + - Thu, 29 Jun 2023 11:23:48 GMT expires: - '-1' pragma: @@ -890,8 +840,8 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -901,8 +851,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-clitestswihja7lb-79a739\",\n \"fqdn\": \"cliakstest-clitestswihja7lb-79a739-nlh7hu10.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestswihja7lb-79a739-nlh7hu10.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-clitest3ga3hae3n-79a739\",\n \"fqdn\": \"cliakstest-clitest3ga3hae3n-79a739-uegvtb6f.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest3ga3hae3n-79a739-uegvtb6f.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n @@ -912,27 +862,26 @@ interactions: \"1.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 + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT azcli_aks_live_test@example.com\\n\"\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\": + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\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 \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/f23b2e6b-fd57-479a-837c-d6b22d44c115\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"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_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"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_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": @@ -946,11 +895,11 @@ interactions: cache-control: - no-cache content-length: - - '4194' + - '4155' content-type: - application/json date: - - Sat, 29 Apr 2023 11:05:33 GMT + - Thu, 29 Jun 2023 11:23:49 GMT expires: - '-1' pragma: @@ -971,21 +920,20 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": - "cliakstest-clitestswihja7lb-79a739", "agentPoolProfiles": [{"count": 1, "vmSize": + "cliakstest-clitest3ga3hae3n-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.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT 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/211d5b82-4cd3-479b-a4d3-e553b57d28a8"}]}, + "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/f23b2e6b-fd57-479a-837c-d6b22d44c115"}]}, "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"}, @@ -1003,14 +951,14 @@ interactions: Connection: - keep-alive Content-Length: - - '2659' + - '2622' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -1020,8 +968,8 @@ interactions: \"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-clitestswihja7lb-79a739\",\n \"fqdn\": \"cliakstest-clitestswihja7lb-79a739-nlh7hu10.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestswihja7lb-79a739-nlh7hu10.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-clitest3ga3hae3n-79a739\",\n \"fqdn\": \"cliakstest-clitest3ga3hae3n-79a739-uegvtb6f.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest3ga3hae3n-79a739-uegvtb6f.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n @@ -1031,27 +979,26 @@ interactions: \"1.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 + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT azcli_aks_live_test@example.com\\n\"\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\": + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\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 \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/f23b2e6b-fd57-479a-837c-d6b22d44c115\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"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-000000000002\"\n - \ ],\n \"adminUsers\": null,\n \"enableAzureRBAC\": false,\n \"tenantID\": - \"00000000-0000-0000-0000-000000000003\"\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 + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"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-000000000002\"\n ],\n \"adminUsers\": + null,\n \"enableAzureRBAC\": false,\n \"tenantID\": \"00000000-0000-0000-0000-000000000003\"\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\": @@ -1063,15 +1010,15 @@ 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/bf2aa9e5-50f3-4306-bd3b-678cb153aa24?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e1bc5b1-fe9c-482c-9f9d-3ed4bdea59fb?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4192' + - '4153' content-type: - application/json date: - - Sat, 29 Apr 2023 11:05:36 GMT + - Thu, 29 Jun 2023 11:23:53 GMT expires: - '-1' pragma: @@ -1105,14 +1052,62 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e1bc5b1-fe9c-482c-9f9d-3ed4bdea59fb?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"b1c51b0e-9cfe-2c48-9f9d-3ed4bdea59fb\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:23:53.3774768Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:23: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 update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --aad-admin-group-object-ids --aad-tenant-id -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e1bc5b1-fe9c-482c-9f9d-3ed4bdea59fb?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 }" + string: "{\n \"name\": \"b1c51b0e-9cfe-2c48-9f9d-3ed4bdea59fb\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:23:53.3774768Z\"\n }" headers: cache-control: - no-cache @@ -1121,7 +1116,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:05:37 GMT + - Thu, 29 Jun 2023 11:24:23 GMT expires: - '-1' pragma: @@ -1153,14 +1148,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e1bc5b1-fe9c-482c-9f9d-3ed4bdea59fb?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 }" + string: "{\n \"name\": \"b1c51b0e-9cfe-2c48-9f9d-3ed4bdea59fb\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:23:53.3774768Z\"\n }" headers: cache-control: - no-cache @@ -1169,7 +1164,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:06:07 GMT + - Thu, 29 Jun 2023 11:24:54 GMT expires: - '-1' pragma: @@ -1201,14 +1196,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e1bc5b1-fe9c-482c-9f9d-3ed4bdea59fb?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 }" + string: "{\n \"name\": \"b1c51b0e-9cfe-2c48-9f9d-3ed4bdea59fb\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:23:53.3774768Z\"\n }" headers: cache-control: - no-cache @@ -1217,7 +1212,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:06:37 GMT + - Thu, 29 Jun 2023 11:25:24 GMT expires: - '-1' pragma: @@ -1249,14 +1244,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e1bc5b1-fe9c-482c-9f9d-3ed4bdea59fb?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 }" + string: "{\n \"name\": \"b1c51b0e-9cfe-2c48-9f9d-3ed4bdea59fb\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:23:53.3774768Z\"\n }" headers: cache-control: - no-cache @@ -1265,7 +1260,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:07:07 GMT + - Thu, 29 Jun 2023 11:25:54 GMT expires: - '-1' pragma: @@ -1297,14 +1292,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e1bc5b1-fe9c-482c-9f9d-3ed4bdea59fb?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 }" + string: "{\n \"name\": \"b1c51b0e-9cfe-2c48-9f9d-3ed4bdea59fb\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:23:53.3774768Z\"\n }" headers: cache-control: - no-cache @@ -1313,7 +1308,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:07:38 GMT + - Thu, 29 Jun 2023 11:26:24 GMT expires: - '-1' pragma: @@ -1345,14 +1340,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e1bc5b1-fe9c-482c-9f9d-3ed4bdea59fb?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 }" + string: "{\n \"name\": \"b1c51b0e-9cfe-2c48-9f9d-3ed4bdea59fb\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:23:53.3774768Z\"\n }" headers: cache-control: - no-cache @@ -1361,7 +1356,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:08:07 GMT + - Thu, 29 Jun 2023 11:26:54 GMT expires: - '-1' pragma: @@ -1393,15 +1388,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e1bc5b1-fe9c-482c-9f9d-3ed4bdea59fb?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"b1c51b0e-9cfe-2c48-9f9d-3ed4bdea59fb\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:23:53.3774768Z\",\n \"endTime\": + \"2023-06-29T11:26:58.6307356Z\"\n }" headers: cache-control: - no-cache @@ -1410,7 +1405,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:08:38 GMT + - Thu, 29 Jun 2023 11:27:24 GMT expires: - '-1' pragma: @@ -1442,8 +1437,8 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -1453,8 +1448,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-clitestswihja7lb-79a739\",\n \"fqdn\": \"cliakstest-clitestswihja7lb-79a739-nlh7hu10.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestswihja7lb-79a739-nlh7hu10.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-clitest3ga3hae3n-79a739\",\n \"fqdn\": \"cliakstest-clitest3ga3hae3n-79a739-uegvtb6f.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest3ga3hae3n-79a739-uegvtb6f.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n @@ -1464,27 +1459,26 @@ interactions: \"1.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 + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT azcli_aks_live_test@example.com\\n\"\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\": + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\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 \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/f23b2e6b-fd57-479a-837c-d6b22d44c115\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"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-000000000002\"\n - \ ],\n \"adminUsers\": null,\n \"enableAzureRBAC\": false,\n \"tenantID\": - \"00000000-0000-0000-0000-000000000003\"\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 + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"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-000000000002\"\n ],\n \"adminUsers\": + null,\n \"enableAzureRBAC\": false,\n \"tenantID\": \"00000000-0000-0000-0000-000000000003\"\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\": @@ -1498,11 +1492,11 @@ interactions: cache-control: - no-cache content-length: - - '4194' + - '4155' content-type: - application/json date: - - Sat, 29 Apr 2023 11:08:38 GMT + - Thu, 29 Jun 2023 11:27:25 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 index 0df7cf48693..05922014cef 100644 --- 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 19:31:35 GMT + - Thu, 29 Jun 2023 11:15:38 GMT expires: - '-1' pragma: @@ -53,8 +53,8 @@ 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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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", + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": @@ -69,33 +69,66 @@ interactions: Connection: - keep-alive Content-Length: - - '1796' + - '1467' 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - 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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-jy7sgrwv.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-jy7sgrwv.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/3161c246-7db8-4d3a-b5e5-3ea82bccc887?api-version=2016-03-30 cache-control: - no-cache content-length: - - '313' + - '3049' content-type: - application/json date: - - Thu, 15 Jun 2023 19:31:40 GMT + - Thu, 29 Jun 2023 11:15:43 GMT expires: - '-1' pragma: @@ -107,95 +140,140 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: - code: 404 - message: Not Found + code: 201 + message: Created - 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": {}}}' + 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3161c246-7db8-4d3a-b5e5-3ea82bccc887?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"46c26131-b87d-3a4d-b5e5-3ea82bccc887\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:15:43.3450054Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: - application/json + date: + - Thu, 29 Jun 2023 11:15: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 - Content-Length: - - '1796' - Content-Type: + 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3161c246-7db8-4d3a-b5e5-3ea82bccc887?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"46c26131-b87d-3a4d-b5e5-3ea82bccc887\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:15:43.3450054Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: - application/json + date: + - Thu, 29 Jun 2023 11: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 --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-05-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3161c246-7db8-4d3a-b5e5-3ea82bccc887?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\": \"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 }" + string: "{\n \"name\": \"46c26131-b87d-3a4d-b5e5-3ea82bccc887\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:15:43.3450054Z\"\n }" headers: - azure-asyncoperation: - - 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: - - '3378' + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 19:31:49 GMT + - Thu, 29 Jun 2023 11:16:43 GMT expires: - '-1' pragma: @@ -204,13 +282,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: @@ -226,14 +306,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3161c246-7db8-4d3a-b5e5-3ea82bccc887?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 }" + string: "{\n \"name\": \"46c26131-b87d-3a4d-b5e5-3ea82bccc887\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:15:43.3450054Z\"\n }" headers: cache-control: - no-cache @@ -242,7 +322,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:31:49 GMT + - Thu, 29 Jun 2023 11:17:13 GMT expires: - '-1' pragma: @@ -275,14 +355,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3161c246-7db8-4d3a-b5e5-3ea82bccc887?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 }" + string: "{\n \"name\": \"46c26131-b87d-3a4d-b5e5-3ea82bccc887\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:15:43.3450054Z\"\n }" headers: cache-control: - no-cache @@ -291,7 +371,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:32:20 GMT + - Thu, 29 Jun 2023 11:17:43 GMT expires: - '-1' pragma: @@ -324,14 +404,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3161c246-7db8-4d3a-b5e5-3ea82bccc887?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 }" + string: "{\n \"name\": \"46c26131-b87d-3a4d-b5e5-3ea82bccc887\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:15:43.3450054Z\"\n }" headers: cache-control: - no-cache @@ -340,7 +420,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:32:50 GMT + - Thu, 29 Jun 2023 11:18:14 GMT expires: - '-1' pragma: @@ -373,14 +453,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3161c246-7db8-4d3a-b5e5-3ea82bccc887?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 }" + string: "{\n \"name\": \"46c26131-b87d-3a4d-b5e5-3ea82bccc887\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:15:43.3450054Z\"\n }" headers: cache-control: - no-cache @@ -389,7 +469,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:33:20 GMT + - Thu, 29 Jun 2023 11:18:44 GMT expires: - '-1' pragma: @@ -422,14 +502,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3161c246-7db8-4d3a-b5e5-3ea82bccc887?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 }" + string: "{\n \"name\": \"46c26131-b87d-3a4d-b5e5-3ea82bccc887\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:15:43.3450054Z\"\n }" headers: cache-control: - no-cache @@ -438,7 +518,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:33:50 GMT + - Thu, 29 Jun 2023 11:19:14 GMT expires: - '-1' pragma: @@ -471,14 +551,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3161c246-7db8-4d3a-b5e5-3ea82bccc887?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 }" + string: "{\n \"name\": \"46c26131-b87d-3a4d-b5e5-3ea82bccc887\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:15:43.3450054Z\"\n }" headers: cache-control: - no-cache @@ -487,7 +567,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:34:20 GMT + - Thu, 29 Jun 2023 11:19:44 GMT expires: - '-1' pragma: @@ -520,14 +600,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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3161c246-7db8-4d3a-b5e5-3ea82bccc887?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 }" + string: "{\n \"name\": \"46c26131-b87d-3a4d-b5e5-3ea82bccc887\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:15:43.3450054Z\"\n }" headers: cache-control: - no-cache @@ -536,7 +616,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:34:51 GMT + - Thu, 29 Jun 2023 11:20:14 GMT expires: - '-1' pragma: @@ -569,24 +649,24 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3161c246-7db8-4d3a-b5e5-3ea82bccc887?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"46c26131-b87d-3a4d-b5e5-3ea82bccc887\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:15:43.3450054Z\",\n \"endTime\": + \"2023-06-29T11:20:29.0152985Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '170' content-type: - application/json date: - - Thu, 15 Jun 2023 19:35:21 GMT + - Thu, 29 Jun 2023 11:20:45 GMT expires: - '-1' pragma: @@ -619,60 +699,58 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-jy7sgrwv.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-jy7sgrwv.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/b258545a-7c62-4664-a564-43bffe8ad59b\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3642' + - '3313' content-type: - application/json date: - - Thu, 15 Jun 2023 19:35:22 GMT + - Thu, 29 Jun 2023 11:20:46 GMT expires: - '-1' pragma: @@ -704,65 +782,60 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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-jy7sgrwv.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-jy7sgrwv.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": + 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n + \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/b258545a-7c62-4664-a564-43bffe8ad59b\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": + [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": + false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": + {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\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: - - '3885' + - '3556' content-type: - application/json date: - - Thu, 15 Jun 2023 19:35:23 GMT + - Thu, 29 Jun 2023 11:20:46 GMT expires: - '-1' pragma: @@ -794,65 +867,60 @@ interactions: ParameterSetName: - -g -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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-jy7sgrwv.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-jy7sgrwv.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": + 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n + \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/b258545a-7c62-4664-a564-43bffe8ad59b\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": + [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": + false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": + {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\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: - - '3885' + - '3556' content-type: - application/json date: - - Thu, 15 Jun 2023 19:35:25 GMT + - Thu, 29 Jun 2023 11:20:48 GMT expires: - '-1' pragma: @@ -884,60 +952,58 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-jy7sgrwv.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-jy7sgrwv.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/b258545a-7c62-4664-a564-43bffe8ad59b\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3642' + - '3313' content-type: - application/json date: - - Thu, 15 Jun 2023 19:35:26 GMT + - Thu, 29 Jun 2023 11:20:48 GMT expires: - '-1' pragma: @@ -971,15 +1037,15 @@ interactions: ParameterSetName: - -g -n --file User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ - \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVU1TWQwaE1jV1ZXUmpnM0t6RmFjREowVlRWWVNEUjNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDA1cVJURk5WR3Q1VFdwSmVGZG9aMUJOYWtFeFRYcEJNazFVVlhoUFZFMTVUV3BHWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNucGtRV0l2U1ZwM1QzQk9WR1pzUVcxaU1rdGFTMjVGVmtKMFowNTROM0EyWVZWTGVrZENPRWxFYUdWQlExaHpPVmhTTlRWUVMwdE5SbTFWYlVwNGJERUtPWG8wWWtWV2NrRlZkVEJDZEhwMVRHcGtUM0pGT0RkSGFFRmliMGM1ZUhKelkzVnZSSFJLY2pkNllpOUNXbE12ZHpsbFdteFRRak01TTFWdGJWYzFlZ3BISzA5cWJuQndZbmx2TUZveldVMUhPWGxESzIxUVNUWmhVMWRyZGpOeWRGbG1lVU5wYm5sMVZXNDJNamhUUW01ak5qZGhjRTVOYjJFMVdtVnhibUUwQ2pCTldsVndRVkJpUldSUVMwOUJMMVk0ZWxBMUsyMWxaM3BZYkZRNU5YWnhTRWt2VlRaSWFUazNNRmMyZFhkemMwUjZkME5NVUZRNGVVRXdXbVY1UVZrS2EyNHdSR1I1WjFSQmFraFFPWFV5TDJWa2FrOVdUM2RQYW13elFVOUJVbkU1Ym00MFVFMUtUa05ZU0VSVFVrWnBTMlJUZDFKdVptVlBkWEJNYlhkWldnbzJaMGx1ZUd4alltVlVOa2xpV0RCeFZtRnBhMVJCUWtkNFExWjRUemwyY2tSNVRsRjNlVFk1WXl0clVUTllZbVZPYTBoUGNHdHNjWFZ4WkdaMGEzZEJDbXBGZVdSbWR6Tm1kMkp0Wm1kRWFrMWlUMlptYTFsQlJEWTFOblJ1Um1wMWNXdGtZbWxEYnpoNVNFUlRiVWhrUlZOR2RtMWpaMUpuUWxKNU9UUkZUVElLYW1obmRHcDRMMUI2Tm14VGNVTlhiRzVDVDJrMWMwazVNMlpETmpndk5td3dUbGw0VURaaE1qRkdUSHBWVlhGSGQwTlBTM0ZvV1hsWk0zazRNa0pVYkFveVdUUkxTbFpMUW5OVlJYcGhlR2xWZDNaWFNGUTNURkJtUTNWalNISlJRVEJVZVdOSWVpdExWa04xUzBWTE1YWlFRbGxTYkRaMVp6ZEpaRWh4TUd0VENrMXlaRUoyWldveFNERjBVU3RzWW10TmNqSnZTRTlwTTJNdmNXZE1NMGt5VlhkTU9XTkhXWGhSVlhsb1NWbzJOVFpLYjBKYVJXVkVRVlZXV2pJMWJrd0tRMjlpZFUxNlFVMUpaVmN5TWtwM00yWTJXbmNyZDNsUk15OVJLemxoZEZGVWJIaEZORnBaTm04dlZVTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1F6QnlVelZCVm5RM1V6bHVWRWQyQ2tFeFVsUjBZMHA0VUZSUE1FMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlFWTTFVMjl1VUZSWU1HbzVRMGRPV1RFelpqbEJaSEpEWVV3S1JubHVWSGxaVms1NlFreExZVk52ZERSWk9VTTFOM1k0TDFoRk9YQlFNMlpqV25kd05YUXdOVFZMV1ZCNlRpdFpVRk5xTlN0SVVGZzFjazF5TUVWeVRRcHJURTFTVkZSNVUzQnJUR3RxU1ZoM2NFZEljSEYwYm5kelJqUk5lV0p0SzNoc2J6SXJORWRKZUhvNVQweHJOa05wZUZVd1drY3JZa1Y0TkdkNGEyWktDa2huVmxsMWFXOVZWRVY0SzBSaFNHSkRUWGhTYnpKb1QxSkVjRGNyTDBKdE9HZDRNVmRDTDIxTldFTmhTMVozTURoc1pFeFVVRzVwVm5KdlpEWXdUa2NLYjNkVlN5dFlWa293YWtveVNsYzVRMlJwV2pGUGVtbDFPVzVxYUhwaFJuSjJSVVpKZUhseWFIazVhR3BQS3l0clJsZDRRa3hOZVdwVVkwc3lhMFpYV1FwQ04wOTJPVWxJYjNkdGVFOTRNakJaWTNaWEsxRndPVVpzZVhKTWF5c3pkMHhXUW1NMk9FbE5lV281VlRkRGRuVjVhazUzZFZBeVJrOVhSM1l5VmxSakNrWnVkMkY1VmtNclJEWnhXbTFCYm1kRlVVdHNTbkpXVkZSS1FWUTNWVkJ2Wm1SNWVFbFpVM0JVZGxCYU9HRllNWE4wTTJKVWF6Sk1Oa05TY1dFeFkzSUthR052VFdSU1dFcEdOSGN5V20xa1NrSlpNM1J5VkRGNUswMVBOME5tWldzeFpUVlFlakowTWxZMk9XSnRiMk41YkU1cldHc3hkM05tUTBkdmExTXZRUXBuTW1kMGJYRnlaSGsxUjNSc2RHZ3pVVzRyTm01amNEY3pRblV5YUdkaGVXNVBOa0Z4VFZFMldVaEtZM05YUTNVMVozRnhkQ3QzVERaUldrUjBiMUY2Q2tkUE9GVmxlbGRyVWtWT2F6SlNXRXREZFcwdmR6WnNjakk1ZW5nNGQzWjBlWEExTjJkSVdsWm1TSFJqWVZWT1RrUkdiVmszYVdWdVozbGpRek5EVEdJS1RVNTNVeXQzZFdzM2REWjNNa05WY0VJdlZUVjBNSFp0YVdSWlVqUndUbWd2VERkcldFd3hObTlZTmpVNVlrbHRaVEpUYkVwWWJqUkhSMms1VlUxYWRBcHBTVlJaVkZsdGFIbEdaRGxVZWtReWQwRTlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5zM3dkd3JlNC00dzEwY2p1YS5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdGtteGk3dwpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdGtteGk3dwogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdGU1ZnRydjZvdTZfY2xpYWtzdGVzdGtteGk3dwogIG5hbWU6IGNsaWFrc3Rlc3RrbXhpN3cKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0a214aTd3CmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdGU1ZnRydjZvdTZfY2xpYWtzdGVzdGtteGk3dwogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklha05EUVhkaFowRjNTVUpCWjBsU1FWQjBNRWxRZWxCWVVITkthakptTm1Wd1pWcFdkbFYzUkZGWlNrdHZXa2xvZG1OT1FWRkZURUpSUVhjS1JGUkZURTFCYTBkQk1WVkZRWGhOUTFreVJYZElhR05PVFdwTmQwNXFSVEZOVkd0NVRXcEplRmRvWTA1TmFsVjNUbXBGTVUxVWEzcE5ha2w0VjJwQmR3cE5VbU4zUmxGWlJGWlJVVXRGZHpWNlpWaE9NRnBYTURaaVYwWjZaRWRXZVdONlJWWk5RazFIUVRGVlJVRjRUVTFpVjBaNlpFZFdlVmt5ZUhCYVZ6VXdDazFKU1VOSmFrRk9RbWRyY1docmFVYzVkekJDUVZGRlJrRkJUME5CWnpoQlRVbEpRME5uUzBOQlowVkJkREkzVTNNd1VXSnlWRmxIVFdsWE9HSmpjekVLU1RJeE1UaHJNMEZYTkRFcmJGbzRlSFF5Tnk5WWFIVlBSazFJVmtOMFVXMTJhbUlyV0VzeGJubHdVVVZLUjIweFJrRkRkR3R3TkhaMFMwdDVUbUY2V2dweVZWQjJhMHhIYlZsdlIzSndlamwxUlRGNFJscDZiRGM0TjJ4SkwyWlBSbmd2VG5seVpUZFlkME1yTm5CRE1VUlpOMWxPVkZOd0swSnNlazkyTW5jekNrcE1RamQzVlVOcFZqRlJSbTgzYVROV01tMVphVGx1UzFKME1teGxSM1FyVjIwck5ubzNZVzl4VXpoREwxRjVTalJXTWpKVVlsaGhNR014UVZCRWVGQUtORVZVYTBremQydHhSaTgyVnl0RVoyaHFSMlpzYXpVd2NrZHhRV2xpVkhOdlJHNVZiVE5JWmtwelF5dG1ObTlaUkd0d2QwUk5TbFFyWlRoSVMzQjBPQXA1UkdWd1FXTkdSazFwTkU1d1p6TlJiVmMzUzNSRGNqWmtTWFJzTDA5WloyUXpNMHBKY20wdlFtbFlNMjlxZG5KQ2NucFRTVzkxVVdWVVJsTlNVRWxDQ25kbVNWRlRWR2swT1VWVlVuVnBNMWxVVVc1dFdHdEJiV3hoYlZKSmVtazRWV1ZMU1hOcWFrNTZTR2xsUTFGMVpucHRhR3BsVTI1QlkwTkJhVFYzVERrS1J5OHhZa2QyVW5Cc1IyRTBhWFZJYUROMWFHMVRZWEl3ZG10aVRpdENPV3BsWkhvell6YzBibUpaUTBsVVJVaEdRMnhaVmk5c1EzWklWVkJEV0hVNGJ3cFdaRk5XZUVjeVoyZzJTRnBSUVZWb2JFRnRTVUl6Wld0dk0wTjZVRUpPTTI0MlRqUjFXSEZvV1VOVFZIVk5SRlEzVVZaQ2EyVnZkbFIzTmxWYU5YbDVDbVZDTWpsc1MyNXlhbE5rYjFSMlJHWnpaVTVwSzNvME5WcFhNbWRWV213d1RVdzVSekp3TVhGSGRGRnFPRUpwWVVWcGJrdG1MM0F5YzI1c1VGTmlZbUVLYVdwNk4xZFFiRmhhVEZJeVYyMDBUbmhwSzJsWVJuUk5PREp4WmpsUGQxTlFSRUUxZDI1UWRXRjJZMUF4ZEVoS1FYRlZaMHRVZGpoRE5XaG9kVUpwYlFwcE1VbDJhbVZ2ZWpOV1pVZDFZblExWXpGdlNrUlZjME5CZDBWQlFXRk9WMDFHVVhkRVoxbEVWbEl3VUVGUlNDOUNRVkZFUVdkWFowMUNUVWRCTVZWa0NrcFJVVTFOUVc5SFEwTnpSMEZSVlVaQ2QwMURUVUYzUjBFeFZXUkZkMFZDTDNkUlEwMUJRWGRJZDFsRVZsSXdha0pDWjNkR2IwRlZURk4wVEd0Q1Z6TUtkRXd5WkUxaE9FUldSazh4ZDI1Rk9VMDNVWGRFVVZsS1MyOWFTV2gyWTA1QlVVVk1RbEZCUkdkblNVSkJTVEZ0V1VsMlZHUmFTbnB6YjBwalFuQlRWZ3BsVkhaM1RHY3hiVTV3VG5Sc1ZXMDVMMXBwVkRGQlRtVnFlVXhLYTNSak56QmhTRnBGU3pkaVdrVjRjM2MxT0N0TWQyWlBlVkkxYUdFMFZ6ZFNURWxUQ2tkVVMxaFRXbkZGTnpoRmREYzRNMDVqUW5VME1FODNLemh4TVdSRmRuZFRTR05EV2xWbk1HVk9ORWxtTkRreGExSjJlRGhUT1dkM2RYRjRlSEZQYlRZS1puVlpZMDl3TTNGYWNXUnBhMWxLTDBrdlRFcEdNall3YTJKV1dUZFJUREZ6Y1ZGcFFUTklhV0pXVERSNlFtSm1jbEJ2UXlzMVFrdGxlVlZuWlc1UGVBb3hTWGhJU0hKQksyeGhjVU5YZW14WlEwYzFlVmcwTWxGMFVIWTFlbkpyWjFSTllVOHJVbFF6TmxSbE9VRlFZVFF4ZVVobVVWbFBhV0ZzYVV4dlRFMW1DbEJRUzJGd09HUTBjbTU1Tm5CQ2J6ZHFObUZYYzFWU05HaFlha3hsYlZaQlFUTkVSRlY1UjIwMGNHTm9VV281WkVSV05reDBiRVF3ZGsxSlVrSnNXa2dLVmxKd1VVeDJkbUpYVEdoR2JHODVSVTkxT0RkaFVUa3dSMWg2WmtaSk0wVTRRWFZJTkRKdFdrRXZkbkZWVGxsTVExUnRSbGh1YUZORVZFaElObXBqVWdwRWNXVkpOMWQwVUdWVWVYWndjM0ZNV21OWU5rMDJjVGxLYjFaWVQzZFhjbTlwYjB4cFFrVjRhRlV4YVUwek4yWkdSVVUxZGpWVlZUVkRSMm8wY0N0UENtMDBZVzh6THpSalJTOUxabEJxVFVOclUyRlJjR2xuUjJGREsyUlBTemR2ZVVOck1IZEdhMWhTWTFoclJYaG1lR3RNYVd4RVJUTnFSMnhoVW1SM1ZFRUtVbVI1YVUxMVVtNHpSRVZQTDBkNkwxTnZRMlppUVcxTE1WWm9XV2RVWWxsR1RIaHpTRTlOZDB4Mk4yVlJZakozV1dOUlNEQkRPV2hwVUdFMllsZElSZ3BDVWxWSVdHMDJXbk5aVUVWc1ZrNVJUa3A0UWpKUE1EVmlZVXN2VmpsT2RrMDFZMW96TWs1NWQyTlFkemtyYmk5eWEyTjFia0ZUTlhoSWFuVjVRMEprQ21STmFqYzBWMUpsTTFSb2VsRmlNV0kzWkZwUFJVRktVUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MwRkpRa0ZCUzBOQlowVkJkREkzVTNNd1VXSnlWRmxIVFdsWE9HSmpjekZKTWpFeE9Hc3pRVmMwTVN0c1dqaDRkREkzTDFob2RVOUdUVWhXQ2tOMFVXMTJhbUlyV0VzeGJubHdVVVZLUjIweFJrRkRkR3R3TkhaMFMwdDVUbUY2V25KVlVIWnJURWR0V1c5SGNuQjZPWFZGTVhoR1ducHNOemczYkVrS0wyWlBSbmd2VG5seVpUZFlkME1yTm5CRE1VUlpOMWxPVkZOd0swSnNlazkyTW5jelNreENOM2RWUTJsV01WRkdiemRwTTFZeWJWbHBPVzVMVW5ReWJBcGxSM1FyVjIwck5ubzNZVzl4VXpoREwxRjVTalJXTWpKVVlsaGhNR014UVZCRWVGQTBSVlJyU1ROM2EzRkdMelpYSzBSbmFHcEhabXhyTlRCeVIzRkJDbWxpVkhOdlJHNVZiVE5JWmtwelF5dG1ObTlaUkd0d2QwUk5TbFFyWlRoSVMzQjBPSGxFWlhCQlkwWkdUV2swVG5Cbk0xRnRWemRMZEVOeU5tUkpkR3dLTDA5WloyUXpNMHBKY20wdlFtbFlNMjlxZG5KQ2NucFRTVzkxVVdWVVJsTlNVRWxDZDJaSlVWTlVhVFE1UlZWU2RXa3pXVlJSYm0xWWEwRnRiR0Z0VWdwSmVtazRWV1ZMU1hOcWFrNTZTR2xsUTFGMVpucHRhR3BsVTI1QlkwTkJhVFYzVERsSEx6RmlSM1pTY0d4SFlUUnBkVWhvTTNWb2JWTmhjakIyYTJKT0NpdENPV3BsWkhvell6YzBibUpaUTBsVVJVaEdRMnhaVmk5c1EzWklWVkJEV0hVNGIxWmtVMVo0UnpKbmFEWklXbEZCVldoc1FXMUpRak5sYTI4elEzb0tVRUpPTTI0MlRqUjFXSEZvV1VOVFZIVk5SRlEzVVZaQ2EyVnZkbFIzTmxWYU5YbDVaVUl5T1d4TGJuSnFVMlJ2VkhaRVpuTmxUbWtyZWpRMVdsY3lad3BWV213d1RVdzVSekp3TVhGSGRGRnFPRUpwWVVWcGJrdG1MM0F5YzI1c1VGTmlZbUZwYW5vM1YxQnNXRnBNVWpKWGJUUk9lR2tyYVZoR2RFMDRNbkZtQ2psUGQxTlFSRUUxZDI1UWRXRjJZMUF4ZEVoS1FYRlZaMHRVZGpoRE5XaG9kVUpwYldreFNYWnFaVzk2TTFabFIzVmlkRFZqTVc5S1JGVnpRMEYzUlVFS1FWRkxRMEZuUVN0TWQwdGpjRkZWWnpWblUxcHpXRTA0V1ZSM1JsazFSWFJqUkVFMmJWUkJSbVIxT0RaMVVsVXpRMDgxVlcxU1ZXOHdOWHBEZEZFdmNncDVVbXMzWTI5M2J6Y3ZSR281UVhKcVptdzJOM2hNTDFoT1JqWnBkbnB2VTJWcVltMW9RVVF4T1V0dVZGSkdPU3Q1T1hvMlZtRkRjQzl2YTIxeVNpOHJDakpOTkhCS09GVkZOMUprUVZWVVNWaExPRmRJVlV0VlFpOWhVaThyY0dkd1ptdHFTMmhCUWxwaVZVRjVSVTlyVnpFclJXSjJkak5sV1dOd01ucENUM1lLV1UxUGVXWjFOWEppU0cwNVptSkNWV3BqWVRsbmRrRTBkVEZXTUhWTldVTlNXVFpFZVdVeWMyZG5TamRYTkRBelVHbGxUbGcxYkhSc1dHb3lTa1ZUZGdvMFdqRTVia3NyTTNoaGFtTkNNVFJQTlZRemEzQTJVblJVUlV0NksxUkxRa1p6ZW01WmRtUmlhVXRzYW5GcmVISlpXSEZCVldSV2EwMHpkR3RLY1RoMENqVXpkMkpyU0d4MlpGSkxTM1ZUTkdaaFpVdDZVWGRaV25VeFZHVnZTVEJQZWpkTVIzbDZPSEZCZVRGWVVsUkZOWEp5YTNZMWREaHpNSFl4YW1GTFdIWUtTakZtY2tobFVuVmpVekUwU2tOUE1rNTRNekZ1VVUxNldFZHhSeXRxTms1UVF6TTVjVFpDVEZaWlNVRnlUVkJZYlZncldtNTJibVJIVnpOVVl6TXlXUXBxV0ZoRlQwRXhkSGhIWldScFVVNUROeTlYTTFsNlJuQm9jVXdyZW05TGNERlVVME5XYlhOWmNFbG9hbWxWU2xCbWNWWlNUbUZhYW5Cdk56WmlRMUJLQ2tvdldGaGFkVWxpT0RONmVtSlhhRUV3T0V0S1pVMW9NVE5QZFVvMVQwNXBNaTlTZW05TE1FMUZZMWtyZUVwaVJHdEhXRXBCVEVwNGVFcGFURW95UVVjS1MwSm5NRzVoUWxKMWNUUmxZV3B2UlVkU2JXaFljWE16TkhZNUt6UkpkRmR4TkhkQ2FYcFZTa1JMYnk5bWRWSnBia3BKWlRJemNtUm9RV1JJVDJ3d1V3cDBaSFV4Tm5Fd1NVRTVWWEpqWlRRclNEZEVZVWhaTnpGb2VESnZNVlZrYm5oalJ6ZEllRmhNTUM4clFrOVhOMk5KVVV0RFFWRkZRVFZpZDFGV2NVaHlDbVl3Y0ZBNVFWSjJVVmd3UWk4NVFrWnhNVWxoUWxkbk0zRmFabEJSU0ZGNVpHUnNUbEZRTlZVd2NuRm1iREF5ZUd0M2FFMVBNbXBNU1RKcVQwOU9VMkVLVTJkVFoxbFpTazFSUjFoalVGaG9ObXBtVG05VFppdFRNVlZaVmtodFUwOUtPR28xVXpWek9HeFBVRTV5YTJWVGIyeHZPQzhyU2pORVFVVXdXbVZXV2dvNFNtaFRZbEJZVm5neWIzVlJSMlJHUVRSNk5HRlFTSEpsYzJ0cVJYTnlNa1JSU0UxaGJXWnNiVEptU2tOQmJXSmFWemN5Tm5SblQwVlFjV3haTHpSMUNubGFMMWRNY0hNMlZGTlpRWGgxZEdsdlJXMXRNVU42WTJ4NllYa3habVpvVW5SdWQwSmhURGs1Y0ZKTk1rWlhNVVZISzA1VmNtZE1WUzk1YjNjMVluZ0tPVFkwVEdoMlQxa3lRVmd4WWtWamVtcEZaRVpOUlRjNVlub3JORXRQTm1GbGRIQndUbkpsYkZaRlNrdHFTMk16UjBwMlkzSlBibVZEVEdwSk1GZFZPQXAxYkRONU16RlRaV2x2TUZZd1VVdERRVkZGUVhwSFpWZGpNSEpaYjFkUlNGVndUVVl6VkRCd1NYZ3pOR2Q0WXpCc09XRjVUM05VYkV0MlNVVjVSWFpFQ25GdlIyOU9ZMGc1UWtwUlp6bEtaSFJCVW05ak5qZ3ZiVWxGYlhSb2JYbFBZbEF2ZUc1b2EwUlJUMkphU2taVU9WbEhZWEpXY200dk5rTkhNVkZhTUdvS1dtUk9VVzlyVmpsMVFVTkVWVE0wVjB0SGRHNDVOVU5FYjJnMk0yaDVTVlYzTmpSc1JqQnVXVlpFZFc1V1RHSnJNV0poZVRCcGFsUmtObGRSZHk5VFV3cE1Wa3BXYkVaUE9VRTRNRWxMYVVoYVdtRTNNakpxWnpaTGNsUXJTMWR4U0hKek1VNHJRVU5VUjBFelZFdFhUbTQxU0doTGNsWm5aWFp1Um1GUFNVWXpDbUpUU0ZGNGRGaDJZalpKT0VaQllVZDRaMUZJSzA5bEsyWTVkVzByY0hSTlRFOUdaVk5uUlVkTGNEYzFUMHczUzBOdUwzUk5SVFF2VkRCeVlWWlRhWEVLU0N0T1VrTjNWVVl2Vm1OcVEwZ3djblp4Ym5WR01sVm5lQzgwWVU1RFJqUTNlVzQ1Y1RkVFRWZDNTME5CVVVWQmVESlpWRkJGTlhkTE9YbG9VblZuZFFwa1RWZ3JNMVF5TVhGeWVYQk1lbHBGTUdWUFpFWktSMGRXY20xVmFubDJlRVJpVEVRMFJIbHJUM294UW1oWVRYZHNabmhoZFdkTU1ra3ZZV1ZEWlZKb0NrMUxaalJ2UkZsYVJWZHdTMmMyWm1Kc01XVnlOM1ZTVTJGdUwwdDFWeTh4UW1wdmRtaFBlRVZtY25kaFNTOU5OVnAxWTBsNGMxSndObmxWWVhKak5ESUthbXMwTHpsT1FuUnRNbHBhUjJsWFdWRk5kV2h6UzJOUVNucDZMMWwyTDI5Nk5XdHRZVTQyUm5wWFYyZ3hWRnBSUW5waE1rcFFUWHBSZG1WRWJrcEtTUW8yVkhSeFFYb3lPVXhsYVdaaU5YVTRiakZpZG5CRU0zaG1Na05qVEhob1NXNURVV1ZEYzNSb1V5OUhNakZUZHk5VlRtVkZNVGRqUmt3dloxWnplakYwQ2pGV2NHVnhWM1Z1WkRCT1NUY3lVWGRJYzFwTmJuVktlVzVPTVVRMGVWWkZlamQ0TWtoc2VtOTFiV2hYUVhCTksybzBNWEpoUTNkYWNVcDZkM1ZDTUc0S1QzQlROR05SUzBOQlVVSnNUaXRMVEc5M1QxWklPV2d3WW01UFdEZzRTbU5NYlc5NVYwSndiVWRvTTFZNWEzaGFUVTVHYm1OblZYQmxUakJaUTJORVJ3cE9TMmRDUm5JNFYzSmFlVzEwVTA5TE1UVkdSRWxLZVVOdk1XTTVXamQwZUhSNE4wNHlMM2hCWTFoaWJFVnRVVVI1YWxaamExaHFSelJ3V25GV1MydEdDbkJrVG1sVkszbGlRbFo2VG1aa1YwSlJWall5V0hjd1ZGQlVaMGQ1VkRKRWMwdHhVM2syUzFSd1l6TXhVR1I0UW5kck0yMXBNRk5pYUhOeU1FVlhaRzBLTmpJdloyeFVVak5KZFZsQlpEVnNkVXh2VVhoa1FuaFBWbXRKUjNwb2IwazNhMlZxYkdsTlRGRjJiMUI2Y2xGcGMwUlVlVU5GU21kWGVqbHpVblZKZWdwVlNUUmFhVWxZVTNCdmNHZEhhbTRyVkVsSWNWWldObkZXYzNRdlRDOVRhWGhIWnpkVWJHSXdWR2hpYUU1ak5IQTRURWxtVHpKNlRFdzJRMmhMVmt0dENpdHFRbEk0ZEVodWNqTlNSVkkwUzNSS2EzQkthVVV5TDJWUVlYaDNWVEZFUVc5SlFrRkNVMDVpVWpaUVRUTnlhVmhJZWt0c05tVXJiR1JMVmt4emJtVUtTV2xyTDFOMVFqTm9aR3htVXpWV09IWTRNR1owWldwcmVsQXJjeXRHVlVGdk9YYzFNek5NT0hCTGFXRTNTbTlxZERWU1dXcEdZMjh4YUROalVVcEZPUXBuU3pCTFl5ODRZV00xUW5GM1FucFlNVnBhVlZkeUszQk5Ra2RGTVROc1NUaDJlakJJVlZKUmFVbFNZVFl6WXpOd2FsSXpaWFJuV1ZSb05EVTRaa2x3Q25rNUsyWTRWR2hpV1cxQ1lYUkhLM1o1ZEhRNWMzWnliWEl3Y1dOT2JGSnJjV3RhZFdORmRXVmlOSFZyTUV4M2FrZHJlSGRIY2prNFpGcElTREZsU0ZZS2JubHhZamhaTmtGSFRGVTNZbGQxTW1wT2JuaHNUMVpJUWsxUmRIVk9VMnBXV0ZacWFXNVJWRUkwUW5KWE4wNW5NV1pqYXpocVRERk1iQzh3ZVVKWFRncDJiMDVuTVZSTVpFVkNkbkZyUmxSVWJtUkpNbEJSUld4VWRtaG1hVVpOYzJad2JHRlZWR3BPT0VOWWF6ZzFOMGxDTlVSS1JsQlhTR05JTUQwS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiB1bjJ1aWptbm1qbmd5aHA2YjBiZ3BobnhpdjF5cjlreHMwZTh4OXIyeHE2aWc2MjhmbTd3ZDIxaHVkbDMzN3Y3cGgwNzZ1bDVxOXB2aHZyeGxpa3p2N3Y5eWE0dWY0a3g0MHhyZzhudnV1Ymlra2ZnMzM1NHp4YXBybDBidjA4OQo=\"\ - \n }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": + \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVVsc1pVeFlWSHBSWW5rMlpUVjNRV3hsZGpKUVYyTjNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDA1cVNUVk5WRVYzVG1wQmVsZG9aMUJOYWtFeFRYcEJNazFxYTNoTlZFVXlUVVJPWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNqTmlja3RRYURCTWVITXdOV3A0VTFaVGRraEtZVTFOTTNGSVp6ZDJWMHRIU1haT1psZzFTM2x5ZFdaMGNYaGpWRlppVGxOMFlVTnBlbmRKTW5oaVFsVUtUM0JYYkV3MlIyUlBaMmRxVG1SbGQwWndTMDVVTTJ4R1FUQmxkMDFhZEdRdmMxUjFOR3RvT0M5bldpdGxXU3N3VEdwV2JrbFFhRVkxTkhaUGMwNVFkd3AzVnpSS1MxRTNPRTlDTURKa2NVZEtNSEZ2UWtsS01HeG1aMlpTVkRNclkybDRlSEpTVlV4S1IzZGxkMHBqV2xkSU0ybFVjM2t5VW5BMVNVaFdOa051Q2tSeloyTkxNalpITDFwSFFrMDNVbmhuUjBaV1RERmxkQzlCSzBGb1dWaG5aRFZyVTFselRtOTZlRXN3WWtwVFdVMVpVMlk1VkU5WFoxWktORkZUT1VNS1VFVlNjM1ZaVEhCVE1rMWxjM0ZZV1ZoRGIxQkhUbEp3VVU1dFpVSnNUa1JoYzBobFVtRTVPRFI0YVhkR1NsZGpWVU5LVURad1JIZENiR2hSYWt0Q1RncGlkRGsxV21Gdkx6VnpZM2xLYXpsVllVdDNiVk52UVdweVJGQlNSV3Q1YTJaNFluVm1ObHBCT0hoRFJ6aFZWbVpJY0Nzek1VVkNMMmRDY2xKS1dXSTNDbEphYkROc1YwRmxUMDlHZEZsVE5WcERMMkZWZUVZMU9FUnBOaXN4ZEVoRmVXRXdhbTUyUVUwMGNEWjZSRUYxVjBrNU9IQjNlRkZzVlM5NE9HSjZXRWdLU0hKU1RFeHdPRGd6TTBaTU1YRlpkVE5JVXpSUlpFOXBlRTlUY1VwSlJsQlJTV3NyYkhkblRIQndiblEzTkdGYWJ6VjZiR0ZWV1RORU5qVXhUazVxYUFwNE4wb3ZWWGhQTWpFek1VMTVXbWhwU0ZneWRXNHZWMmczZDBkUmQzQm9WMWswVjFkWFJXUkZaM1ZrYlhsWWQwdExSR0k0T0ZsYVRDdHhVREpWZVN0NkNraExiSEFyVlRoeVVFWnZZM0JWTUUxQk0wZDBja1k1UlVFclEyVkdaVVZDVGpsSllqWldNelJFY1RSWU5XTXJUbFpLZVRKRWVGVXpVRVZSVlRaTVlsZ0tRMFJ1WjJoV1YySjVUR0V3ZERSUGJFeHpOVXRUYVc5QmNEUm9hbkZKY21relVUZGhWR3RCT0ZWdFRVTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1NVaGFVSEpVV0V4WmFFMVBNSGxDQ21OSVFtRTRjMEV5YWxWa2FVMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlFWTm9MMGxOUzFaYWRGaFRWalE0VTBKdFVHOTBlbFJvSzJRS2RrbHpWRVZvVlhWNVdWaGtXbWQyTHpkWWNXNXFOWEZrYzFwWVRsQnNUVWROVUdnMWMzWnZaMFphV1ZFdk0xQlpiMDV1YzFCek9FbHZTaTlWWWpsUE1BcFpWa1JSV2poalRGSTVlazEwZVhFeWNrTldia3RZUms1aUwzZFVTVEJDUVRCTk5FZExNMDFhVERSUldXcHJVekpDYVdaYWQwMXFTVzFuTjFCSVUwVjVDa0pIYURGbmMzQm9ZbFZ5VFRoTmVIVlZNRkJ0YTFnd2MxWXZaamwyT1dKUE5EWk1hVTVOTldaTmVuQjRZa2hHVDFOc1QxTm5kMHBvZFZKNVRXeEtVR0lLTlhoUVVrZzFVMEp6UlVkMmJFWnlWRVV4VVVkelkwNVRZMEpaTlVaMlZucFZjVEZLYzNrMFJFbDNOazlJYm13NE1VazNhVTAxZFhWbk5rdEtZME5uS3dweVkxcG5aWEl2VkcxMFVrMVhOR2MwTTBJdlVVTlZlVlZxZGpWV1RuSjRaVlZSVVhNdlJ6RklLM1ZrTVV3NE5uVnhRbTlZV210RlVteGxjbTlYYVZvMkNqaHVVa2xOSzNObU5HbHJVVEZyZEVweFZIQlJhSHByUTJka2FUZFNSM0ZCS3poalNrMVhSbnBvUkc5aGNHOVFaalk1UlVaQlEyOXhVRlZhV1hKMVZta0tSbGR2YzJOSFJVb3JNbTF1TmpCSFdITk9kblYxYW5ZcmJDODJPR1I1VTBscFpIVm1hMFUzZGt3eWFVUmtLM05EVjFWalMwcEZLMmxNV0ZWVGEyNW5kUW8xVjBwbVprOUNiMHhUT0Rad1pUQjZWak5xY3lzeVZrWkZkSEJ5WkZGMGEycDVaRGhHZEN0eU9XUk1OSGQ2VTJsWEx6UjZkbmN5V0ROallUazRhbkoxQ2tSamIyMUVhVFpwV1ZwUGFuVnhaREJEVjJSMWVqQm9ObTA0YjBGRVYwbEhhV0ZwTWpSbmRsQXJNbHBKUVhsNFMwOVdWVk5DWVVsbVFXaE5TbkJaTDBNS1dHZHRhRGxHTjNsNlZUQkVVMUJLTlNzNGJreHJPVUZhZDBrek5EQnpkMVp1TlZOV0wxcHNWRVV2TjBGVVEzVXZkbUZtWkVGd1FTOXlOMk5HWW5Ga1l3bzNPRGhSYTNCV1MwRlhXbk40VXpsWWFGRTlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5za3B6YWR5Zy1qeTdzZ3J3di5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdG8zbjR4dQpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdG8zbjR4dQogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdHQ3a2NtYjJvMm9fY2xpYWtzdGVzdG8zbjR4dQogIG5hbWU6IGNsaWFrc3Rlc3RvM240eHUKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0bzNuNHh1CmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdHQ3a2NtYjJvMm9fY2xpYWtzdGVzdG8zbjR4dQogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklWRU5EUVhkWFowRjNTVUpCWjBsUlprZE9VRU5IUzFNNFRqVkJUSFZKUVZGS2MzbHRSRUZPUW1kcmNXaHJhVWM1ZHpCQ1FWRnpSa0ZFUVU0S1RWRnpkME5SV1VSV1VWRkVSWGRLYWxsVVFXVkdkekI1VFhwQk1rMXFhM2hOVkVFeVRVUk9ZVVozTUhsT1ZFRXlUV3ByZUUxVVJUSk5SRTVoVFVSQmVBcEdla0ZXUW1kT1ZrSkJiMVJFYms0MVl6TlNiR0pVY0hSWldFNHdXbGhLZWsxU1ZYZEZkMWxFVmxGUlJFVjNlSFJaV0U0d1dsaEthbUpIYkd4aWJsRjNDbWRuU1dsTlFUQkhRMU54UjFOSllqTkVVVVZDUVZGVlFVRTBTVU5FZDBGM1oyZEpTMEZ2U1VOQlVVTXdjbE5HYm5SSE0yWnBNekJXVURoclduUm9lSGtLVjFSUFNWSmlWbVowVml0VGN6aDJLMVUxTUVaaVFrVklRVUUwSzBJd01HWjNPSFUyTm01SmJYaHhZMmMzTDNCbFRqYzRiV2hxYTBWMk1ERmpNMmxrV2dwRWNrMXNRbU5WY1VGSU1HOXdXbVZOVFdkRFdWbGlaelJZTVcxdmJFWndTVFpKVEVsdllscE5OV3h5SzA5dldDOVVUeko2VkhwellWZGllVlJqZVdVd0NtdFdiR2hxUm5sRGJ6SlJSemRUZEVOeFpEQmpZVWR2ZVhkbmF6UkxkbEkwTXpGWGVWWTBNR01yY2t4SVMzSTRXSEp3TmxONFNYZEZUVU5SU0U0dlpEUUtSazFwU3pnd2VFb3pNSFV3WVZjNFQzUkZVMGxMVWtkdlJWVkVTVmxDZGtKaVdVbzFXRUpQZEROQmRrVjNhRFJSU0VSeVlsZFpVM1JqZUM5alQxQnljd3BNVDB4dFprRjVNRWxPVUVWWU5qVm5aV2xQVGpsNFJEWnllWGxPVGtsVGNIRmFhMDE1UjFGb2VqZGlZbFV2Y1ZVeFZURmFSazVIUkdoME9FcGpkbEpGQ21veU1tWjRZM2xVY1ZWelNXOHZORkkxYkdKeVluZGpWSE56TkZOalNsWnhXVGw2ZERKeFFrUmtXV0YzVjJGRGJuWmtRMFZYUVdKVlVrOHpWRWxIZEhZS2NHWklhakZOVjJJeFNXeFlkbE5WZVV0VlQyaHJVM0pMYldsNmNuQmhPVU5tT1VwNWNtRnBjM1ZVY0hNdmVWQnRUMFZ3Y2tKTlRrcFVkM1JoYUVWVVZnb3hWQ3N4UVhRME1URlhSakZ2VDA5clEycG1TbHA1T0RCV1puZHJXSEZQVWxWTWNVVk9RbE42WVc1WmNYRktURlYxTlZoQk9XMU1kVkZUY1RWV04wbFZDbmRGYjA0clFUQjVLMmRTV21Wc05teG9SVkp5ZFdSQk1XNVBiak5VUWxnMWRqaE1RVW8wVlRRdmVWQmFNRzF0Vkd3dllUQnVaVXAxZWk5TldYZENTMGdLVERsSmN6SkNabW80YlRSc2EyTkhaSGRRYTJKRE9HcEtWM0E1TTI1alNsUmxTMDFvV0UweVpHdFhUM2RtVmpSQlptZHZTVTFQV0cxMmJsVm5RblYxTXdwbFdWZGthMGQyTVdKU09WTk9XbXh4VmxacVYwdFJTVVJCVVVGQ2J6RlpkMVpFUVU5Q1owNVdTRkU0UWtGbU9FVkNRVTFEUW1GQmQwVjNXVVJXVWpCc0NrSkJkM2REWjFsSlMzZFpRa0pSVlVoQmQwbDNSRUZaUkZaU01GUkJVVWd2UWtGSmQwRkVRV1pDWjA1V1NGTk5SVWRFUVZkblFsTkNNbFEyTURGNU1ra0tWRVIwVFdkWVFuZFhka3hCVG04eFNGbHFRVTVDWjJ0eGFHdHBSemwzTUVKQlVYTkdRVUZQUTBGblJVRmlNMEp6VFcwdlEzTktSRmRZVWpkTmREY3JOQW93UXpSYWJIUjJSRGxEWTNWWkwwMXlPVzlzTkZNNGIyMVhTVVkyZFZBMllXeE9aRzl6YldvME4zRktSMmhWZVV4QlNHVnNURGRSYldoSVVVWndUMjFSQ25WSlMwSk1VakZSUjA5cFZIcDRlbUpLVkZoUGFsTmxWRWxPWXpWWmRFUTRPV2hEU2tOUksxVktNMHRJTjNkeVpHcFBSamxKVmsxNFdIWjJaR1Z5Vmk4S1dWVlNlWEpQTjI5S1ZVRnRXblJDWTI5a1FXUm5OblozTVdOMVpqTmlXWFIzV0VwNVpqbGpSak14YkhoSUwycExPVEJJY204MlMwaE5SbVIzWkZCblJ3cE1aREJoTUhwak9WRmxha3BYUldkYVpXRm1OU3RMUVdGWVJ5OXRUa1JYVVROeFNraHlUazFuV0d4RlMyZFpXRmRoVGpWaVFYSmFZVmhIYkhkRmNYaE1Da1JQUm1KWk9VZFNhMjFSVVdkWlQxa3dhVFp5WkZwclVERjVPVmhXZFd4SlJqaG9VVTlTUVdGWGVIZEpTV2R0YVVSclkxbEZiMEZzVERSb2JFcGlkRklLUlVwWFkxRmlTREpHU0ZWbldIVXJNbkIzTUVrNU0zcFRTbTlqYjJaUmRrRmxWVmRxV1RaRmEzaFVRMFp2WlhwQ1ZWQTBkbFJ5Wkd0ME4xbEpaMjlXZHdwMlEwaHpZVUp4VTI1QlZsVjZNSGcxYWpWMmJVTk1RakJUTXpndlFqQktSbXhIYWxaaWIxbEROVFJ1Y2pCTmRIbDNXRkZxV0dkVFVXOWplVk5ST1ZONENsUnZWMjFwU0hNd1pXTXZPREJNVmtsWlpYQjVkRFl2UVV4M1luSXhhVTgxY1M4d1lWcGtkVTQwYkRaTlRIRkZhbGRXYTB4UUwwUlVRbGRHVVd0b1Uwd0tkMHRYYkVsSlJrWTNUWFpqZWxOVFNIWlhjV1JTZWxSTk5IcE5jV05yU0ZNelZEUjJVa041Vm5KbWJtZFFlV3BsTUhaTVVUbE9VVzU1UmxVMGVTOHdTUW95YVVvd1RFaHdRUzlYTjFOQmIzRlBZMjh4ZFZSWWRreGpjalpwU25SS2RYSTNSSGR2UTB4WE5EYzRlRVJZYTBwWU5tUnhTMDgwVnpsaVQxTXlSa2RvQ2xCbVoySlNjVzA0WWpKelEwZFRjVEZvT0c1dU1EaHJQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MwRkpRa0ZCUzBOQlowVkJkRXN3YUZvM1VuUXpOSFE1UmxRdlNrZGlXV05qYkd0NmFVVlhNVmczVm1acmNsQk1MMnhQWkVKWGQxSkNkMEZQQ2xCblpFNUlPRkJNZFhWd2VVcHpZVzVKVHk4MldHcGxMMHB2V1RWQ1REbE9XRTQwYmxkUk5ucEtVVmhHUzJkQ09VdExWMWhxUkVsQmJVZEhORTlHT1ZvS2NVcFNZVk5QYVVONVMwY3lWRTlhWVM5cWNVWXZNSHAwY3pBNE4wZHNiVGhyTTAxdWRFcEdXbGxaZUdObmNVNXJRblV3Y2xGeGJtUklSMmh4VFhOSlNncFBRM0l3WlU0NVZuTnNaVTVJVUhGNWVIbHhMMFkyTm1WcmMxTk5Ra1JCYTBKNlpqTmxRbFJKYVhaT1RWTmtPVXgwUjJ4MlJISlNSV2xEYTFKeFFrWkJDbmxIUVdKM1Z6SkRaVlozVkhKa2QweDRUVWxsUlVKM05qSXhiVVZ5V0UxbU0wUnFOamREZW1rMWJuZE5kRU5FVkhoR0szVlpTRzlxYW1aalVTdHhPSE1LYWxSVFJYRmhiVnBFVFdoclNXTXJNakl4VURac1RsWk9WMUpVVW1jMFltWkRXRXd3VWtrNWRHNDRXRTFyTm14TVEwdFFLMFZsV2xjMk1qaElSVGRNVHdwRmJrTldZVzFRWXpka2NXZFJNMWRIYzBadFozQTNNMUZvUm1kSE1VVlVkREI1UW5KaU5saDRORGxVUm0wNVUwcFdOekJzVFdsc1JHOWFSWEY1Y0c5ekNqWTJWM1pSYmk5VFkzRXliM0pNYXpaaVVEaHFOV3BvUzJGM1ZFUlRWVGhNVjI5U1JURmtWUzkwVVV4bFRtUldhR1JoUkdwd1FXOHplVmRqZGs1R1dEZ0tTa1kyYW10V1F6Wm9SRkZWY3pKd01rdHhhVk14VEhWV2QxQmFhVGRyUlhGMVZtVjVSazFDUzBSbVowNU5kbTlGVjFod1pYQlpVa1ZoTjI1UlRscDZjQW81TUhkV0sySXZRM2REWlVaUFVEaHFNbVJLY0dzMVpqSjBTak5wWW5NdmVrZE5RVk5vZVM5VFRFNW5XRFF2U25WS1draENibU5FTlVkM2RrbDVWbkZtQ21RMU0wTlZNMmxxU1ZaNlRtNWFSbXB6U0RGbFFVZzBTME5FUkd3MWNqVXhTVUZpY25RemJVWnVXa0p5T1Zjd1psVnFWMXBoYkZaWk1XbHJRMEYzUlVFS1FWRkxRMEZuUWswNFlWcFhVMlZ4TkRGMWFYZEZabWROYzFKbGQxRjJha1pSYUhGYU5XUTBUREZtU1RoSU1VOTRjVmhKWlRkNFJXaHlWelZWTlhOa2RRcHNUVmRGWVdac2JUazBlRU5pTmpsRFRYTnpOV3RHWW1OQksyWjROekpoZG1vMlQwWXpZWFIyYTJkWVYwOU1NREJLTDIxVFYwWnJVV2xCTVdwSE1VbElDa3MwWXpsbVMxTnVka1JwZDI1M2VHb3piM2R1UkhGNFYyaDVXVlJ4WjNKTmJHdEJXR2x2Ym1kM1ZWRTFTV0Z1SzI1VFJVMHJUVWRCV1VKeE5VWjZUMmdLZG1ST2F6Qm5ZM001Y2tadE0yOURPWFJIUzBWeWFGQktNWHBZVjNRNVRXOURZa1ZzYWt0cWNUZHFVRlJ4VlZjclZIVTRjME5vZW5sMVMzUmFWbk12U0FvMk1GTmxUME5ZZVRVeFFubFFMMDQwTUhOcVJVeFdSVmROYkZnMlIzRjFUM2xMYlVsV1MzRmhOa3g1VldKaEsxTnNMMDUwVEhkcWEwbGpaVlpyV25GVENtSlJlbTV6VmxGSlZqa3hVbGxRTWs1M1IxaDRaelZEWTNJME5FTndVVW8wWjNaa09FUlZUbGxWTTJOU1pYRjBaMHMxVFdac1dETktkR3B0Ym5NNE5ub0tTRVl5Ym1sdFRTOURjMjVpZWtOc1J5OWtSMGxoVGpNeE16aFllSFY1VUV0dGExUkNXQ3RLUTJ3clIwZEpkM2g1V0VneGIxZEdTMVp2YlU1T1VHeEdTZ28xWlUxUFVtOVJVa2cxTVdoUGJYbHBWMUpSWkRFMVFUbHBRMmhJZURCTFlYZ3lNbkJJV1ZwbU0zSlNWMUphVmtwb2NIRXZkR05LTW5WYWEyVXJjVXBRQ21Gck9ESnZLMmhSVjNGWVdHNDJRelkxVEhGMU0yNUJRa012Y1VkSVkwa3dUak0zUlU1Q1VUSlhhbkZRZDB0RWJIRTNNRXBLYzJ4SWFIVXdOVk5QZGxJS05Ua3lRbEZOY21rM1VVbHVRalp6VkRkTVdscGhZakpsTVVScmJXOVRSRU5tU2xOclRYTmlNaloyZDAxVlYwTnRNMDgyYTBST1NXMVpTVmxQZVZWQ2RBcHhkak5RZDJ4R0wwSkJOakJJUWtWTVkxUlJMMjQ0T1d0VUsxTlNaVGRJVm04MVdVZ3JXWFY2Y2s5d2EzUnpOMWR0VVV0RFFWRkZRWGxEUWxORlVuZDZDbFZRU25ack1UQjZTWFpyYVhvMU5EWnRhMWhVVkZaVVpGTnRjMkUyWVUxbmNVSnVRa281ZEdaRFEyUlJWVGREUmt0SkwyMTRObUpUTTJGS01EQnFOM0VLZGpWU1V6TnVWVVkyZFZaUU5tdFRSRTFLTVRFM2VtMUZjRzVKWjJrMFVIQjJZbVp2YjIwMVVHdFRlbkUwY0RoVVdubzVNVFpzZDA5VVdrZEpjM0pZVkFwdFVHOUlhakpDYlRNeU5VSnhZVWhXVGxwNlFWbEJWMkZIUzBSaFpuTnBVVmhYTm5KdVZVTldkRGhTVTAxRFFubG9kV1JUWjFad2R5OU1abUZyY0dWS0NtNVliR0ZqTmtkS1duTXZUM0JtTlc5RllsRlBia1U0ZVV0NmJrWnRUbE5pT0hKQ1dYTmhVbGhWYzB4R1JVaFhPSGxMUzFOeWNrMVBUVTFaVGpGdk9URUtSbTU0T1RJMGRTdE5kMnB2VnpGdVJscERORlpaV1dGaFIxVjRTSEZJWVZWUksxQk1NSHBqUW01VmExQTBjVTFzUWt3eE1YVkpXVWREZGt4dk1qbGthZ3BqVm1WM1dVOU5iMUV4Vkd0RmQwdERRVkZGUVRWNE5tOVVRV2hhU0VWWVZuZ3dXVXBsVGt3eVQwRmhRMmxxTUVKRGJsTTFXSEp4VTBWS1lqQXJhQzlTQ21wS1IwdzRWazlMYXpBclQxaEJOV3RoYTFVdk9UTTVTRnA2Vlc1S1NFZEJZVFJVY1dWUlRGTk5Lemt2Y1U1MksyaE1aMHMyZVhCelJrazVUMWRrV0VVS2RrazBMemhJVm1ndmRWZHNhMjk0U1V4RFpXY3ZabUZrY1dsS2JDOUdiR1JsV2xORGRYaDJaV3BIWlVKWGJIWkxXazQ0YjFONGVXbFpaM05wUkUxNmJRcHdWMjkxT1RseGJuZG5kRmg0TjA5NGRVY3dWbU5ZTlRZdk5WVnJNRVF3ZUZKTVRHRTViRWxFVWxKSFN6UlpRVUZFYTNrM1FUQlhVMjk2TTBseE1tZFZDa05JTWxWeVRYUlhhakJ6VW1nM1prUkxSRnBYUWpGNmVtbFFLMEZVTWpWM1VFOW5WV052Y0hkR04yWXZMMG9yVERKdGNHTXhTRVJKUW05a2JtaFNTMHdLT1VSSGNuTnFVRzVaTnpkSVF6TXdZbTlNTUVweU5EVm9PVlJaZHpOMVVGSkdUVlppT0ZwWlRWVjNTME5CVVVFek0yTllja2gwY3pSamNWVjRSbmxvY1FwVUwwRnRNSG96Tm5sU2JFZHJhbFpCVkVGMk1GRjFVMlkyUzJscFRISjNiSE0wZG1GQlVVZzNTVGhxUWpOV1JYRkxLM0VyYzIwcmJqQlphMk55YzBKaUNrcFhObU56UlcxTVRHSnROV05YTkZaYVVFTjFOR05HUkdjck5TdFJXbk5YY0U1d2FFeDRWV3RyYms5b1Z6bGtiVlZuVlN0R2EwbGxhREZZU3poYVpHMEtUV2R3UldnelpsVm5jRU14WmxoeVdpdDZWbXBvVTNVdk1sZEJlRUYwUjBsMmJGcFFUbmNyYUd4NmRsSXZiVkpwVDBKVVpFeFZOWFZXYlRCdmMwZFRRZ292WlhKeVRHTjZlR1pFYkVRMk1YWlBPREEyTURkck1HMW1OVWxUTjFKVGRtUnpNalpZV2s4ME1IRkdkVUZZUVhCeU0wRXpaMFUyYjFjeFNuSkZiVk5xQ2t4Sk5XOTVaazkyYkhGdVJGVjFZamQyZFRaWFIxcDNhMGsxYUVoMWVXaEtUbmhqYmtwdVNEQkZPSFZyUjJzelptbHdXREJ2VUd0VGNpczNPVGRSZGxZS1YwRktaa0Z2U1VKQlVVTk1kSGR5UTA4clIzbHdOM3BsU2tWaGFHeGtXbTFqTDJ0RFNFaExLMjlYVmxkRlN6aDJMMFJJU0RaMWFFRmpPVkZJV2xKMFJ3cG9hbVJ1UTNkU1JrRmxkbnBqUTNZMFFtcG1UbGhvWm13MU5HNWxPRmxsYkVGamJFbHBVVlpLYzJkQ1dIWlhUbk0wYkhwYVJHUk9TM05UZFZJM01GQTBDbFpXWkUxVGFWWjJSemt6UlRaUmNsTjVUWGxwVTJ4MWNHNWpLMUl3VURCMVNETjNaelZhUW5GbWExUmlZekJ1ZFhaNFFYTmpUVzFXWjJGVk0wUkRWMUlLZEdzeWQxZGlOamMwUzFkMk5FZG1NbXBZUTJSMVowSkpjVlkyV1haWFpHZHVORkV6V1dGMWJTdFdaWE5YUzJsWGNXdHFaVFZoU1Vkd0wxQjVjVlpIUVFwbGFqY3djbTB2TlhCVE9VbGpSR0ZCZDFGUlQwRktUVEZJYnpoT01YZGhRVTFEYXpsNlF6QTVUV3ROTHpSYVdIQTNTSG95UVhkdk56WnlUVU51VlVoeENrZElRVE5VT0VGa05GZHJlbWxZTVV0UlUwa3hLemMxZGsxblpYTXJZVzlzUVc5SlFrRkdUVUprZDBrd1JFRmxNekJHTkUxd2JGQk5lRzR6VlhObGFpc0tNSFJZWWtGaWRFcGpkVEVyZW1SdFJXVTVhemRFYWxoT1RURlZVMFZPY1RseFozb3dORWhMVURjMFNGSXhSeXROVldSTlpHY3JlbkpHZFdjMVZUaEhZUXBVSzBSaVpWSmxaMjlvU3l0M2RHUllWVk5wV0M5SlNFZDZhMWhEYlRsaGQwUXpLMFl6ZFROYVFWWlFaRE4xUTJ4Q1NYZDZia3h1VlU5d1puZ3ZUMGxPQ2xWelRXRkxiVUZyUkZaeksyVjJibkpsUVdjMmVXbzNTVUYwVkdaRGVVbEJTWFl3TkcxSE5USk9jak00V1hWWE9TdDZhVkY2VXpkT1V6RkxRamhMUWs4S1FUUkxRbEV5VldwVGFVOUxjVmxpY3pGM1QxcERWemhDVkd4aVJXaFRObmhFVm1obFEzcG9SbGcwZWpVdmMwUk1PVzVoYVdwV01qQjZObVJJYlRKWFpBcGlaeTlxU2xjMGQxTlplRUpxY2tFMmRXSjRjRzgyV201TWFFaFVlVVpHUlM5V1JqbFFVM2hXU1dwWWFXUTNVR1pxTm5FelVIQmtiR2hWY3owS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiA3dXZxYWRqcHBrOXd3aDdsdzQ2MmJhZ3lidXJ0NTdxNDh6dGZuMmt2ZGZ3ZThlbXhwZTVpb3N0M3NzYTE1dnB4M2VuZTljeGRxdTBmOWF3OTd4NGJ2bnJoMXJ1d3R0c3NrMzBxZjB2ZzdwNGJyNzd4MmJvcnd4MXdhZmk4c3RxZwo=\"\n + \ }\n ]\n }" headers: cache-control: - no-cache @@ -988,7 +1054,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:35:28 GMT + - Thu, 29 Jun 2023 11:20:49 GMT expires: - '-1' pragma: @@ -1022,60 +1088,58 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-jy7sgrwv.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-jy7sgrwv.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/b258545a-7c62-4664-a564-43bffe8ad59b\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3642' + - '3313' content-type: - application/json date: - - Thu, 15 Jun 2023 19:35:30 GMT + - Thu, 29 Jun 2023 11:20:50 GMT expires: - '-1' pragma: @@ -1103,13 +1167,14 @@ interactions: {"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_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"}]}, + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_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/b258545a-7c62-4664-a564-43bffe8ad59b"}]}, "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": @@ -1124,68 +1189,66 @@ interactions: Connection: - keep-alive Content-Length: - - '2428' + - '2099' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-jy7sgrwv.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-jy7sgrwv.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/b258545a-7c62-4664-a564-43bffe8ad59b\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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/4d2ade49-8d1c-4d0a-a8e6-8e901d806109?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cacbd3e3-9568-4f10-bba0-25fecdd44215?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3640' + - '3311' content-type: - application/json date: - - Thu, 15 Jun 2023 19:35:37 GMT + - Thu, 29 Jun 2023 11:20:56 GMT expires: - '-1' pragma: @@ -1201,7 +1264,199 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' + 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cacbd3e3-9568-4f10-bba0-25fecdd44215?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"e3d3cbca-6895-104f-bba0-25fecdd44215\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:20:55.7677164Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:20: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 scale + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cacbd3e3-9568-4f10-bba0-25fecdd44215?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"e3d3cbca-6895-104f-bba0-25fecdd44215\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:20:55.7677164Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:21: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 scale + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cacbd3e3-9568-4f10-bba0-25fecdd44215?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"e3d3cbca-6895-104f-bba0-25fecdd44215\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:20:55.7677164Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:21: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 scale + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cacbd3e3-9568-4f10-bba0-25fecdd44215?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"e3d3cbca-6895-104f-bba0-25fecdd44215\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:20:55.7677164Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:22: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 @@ -1219,14 +1474,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cacbd3e3-9568-4f10-bba0-25fecdd44215?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 }" + string: "{\n \"name\": \"e3d3cbca-6895-104f-bba0-25fecdd44215\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:20:55.7677164Z\"\n }" headers: cache-control: - no-cache @@ -1235,7 +1490,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:35:37 GMT + - Thu, 29 Jun 2023 11:22:56 GMT expires: - '-1' pragma: @@ -1267,14 +1522,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cacbd3e3-9568-4f10-bba0-25fecdd44215?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 }" + string: "{\n \"name\": \"e3d3cbca-6895-104f-bba0-25fecdd44215\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:20:55.7677164Z\"\n }" headers: cache-control: - no-cache @@ -1283,7 +1538,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:36:07 GMT + - Thu, 29 Jun 2023 11:23:26 GMT expires: - '-1' pragma: @@ -1315,14 +1570,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cacbd3e3-9568-4f10-bba0-25fecdd44215?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 }" + string: "{\n \"name\": \"e3d3cbca-6895-104f-bba0-25fecdd44215\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:20:55.7677164Z\"\n }" headers: cache-control: - no-cache @@ -1331,7 +1586,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:36:38 GMT + - Thu, 29 Jun 2023 11:23:57 GMT expires: - '-1' pragma: @@ -1363,14 +1618,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cacbd3e3-9568-4f10-bba0-25fecdd44215?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 }" + string: "{\n \"name\": \"e3d3cbca-6895-104f-bba0-25fecdd44215\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:20:55.7677164Z\"\n }" headers: cache-control: - no-cache @@ -1379,7 +1634,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:37:08 GMT + - Thu, 29 Jun 2023 11:24:27 GMT expires: - '-1' pragma: @@ -1411,14 +1666,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cacbd3e3-9568-4f10-bba0-25fecdd44215?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 }" + string: "{\n \"name\": \"e3d3cbca-6895-104f-bba0-25fecdd44215\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:20:55.7677164Z\"\n }" headers: cache-control: - no-cache @@ -1427,7 +1682,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:37:38 GMT + - Thu, 29 Jun 2023 11:24:57 GMT expires: - '-1' pragma: @@ -1459,14 +1714,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cacbd3e3-9568-4f10-bba0-25fecdd44215?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 }" + string: "{\n \"name\": \"e3d3cbca-6895-104f-bba0-25fecdd44215\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:20:55.7677164Z\"\n }" headers: cache-control: - no-cache @@ -1475,7 +1730,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:38:08 GMT + - Thu, 29 Jun 2023 11:25:27 GMT expires: - '-1' pragma: @@ -1507,15 +1762,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cacbd3e3-9568-4f10-bba0-25fecdd44215?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"e3d3cbca-6895-104f-bba0-25fecdd44215\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:20:55.7677164Z\",\n \"endTime\": + \"2023-06-29T11:25:40.5528185Z\"\n }" headers: cache-control: - no-cache @@ -1524,7 +1779,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:38:38 GMT + - Thu, 29 Jun 2023 11:25:57 GMT expires: - '-1' pragma: @@ -1556,60 +1811,58 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-jy7sgrwv.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-jy7sgrwv.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/b258545a-7c62-4664-a564-43bffe8ad59b\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3642' + - '3313' content-type: - application/json date: - - Thu, 15 Jun 2023 19:38:39 GMT + - Thu, 29 Jun 2023 11:25:58 GMT expires: - '-1' pragma: @@ -1641,60 +1894,58 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-jy7sgrwv.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-jy7sgrwv.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/b258545a-7c62-4664-a564-43bffe8ad59b\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3642' + - '3313' content-type: - application/json date: - - Thu, 15 Jun 2023 19:38:41 GMT + - Thu, 29 Jun 2023 11:26:00 GMT expires: - '-1' pragma: @@ -1728,8 +1979,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/cliakstest000001?api-version=2023-05-01 response: @@ -1737,17 +1988,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/33d4ea55-3244-4887-9795-9a346e6d4626?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 15 Jun 2023 19:38:44 GMT + - Thu, 29 Jun 2023 11:26:01 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/33d4ea55-3244-4887-9795-9a346e6d4626?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_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 index 4747d2fd1eb..3fea5cfd23a 100644 --- 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 19:38:49 GMT + - Thu, 29 Jun 2023 11:18:56 GMT expires: - '-1' pragma: @@ -46,7 +46,7 @@ interactions: code: 404 message: Not Found - request: - body: '{"location": "eastus", "identity": {"type": "SystemAssigned"}, "properties": + body: '{"location": "westus2", "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,11 +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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {}}}' headers: Accept: - application/json @@ -69,69 +70,68 @@ interactions: Connection: - keep-alive Content-Length: - - '1731' + - '1403' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-pceg8oar.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-pceg8oar.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/eastus/operations/7969a8d3-1d98-4e60-9c3c-70a82ff6b2a2?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f1d02b19-0de5-4f99-874e-ca6b1676a5a1?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3535' + - '3210' content-type: - application/json date: - - Thu, 15 Jun 2023 19:38:54 GMT + - Thu, 29 Jun 2023 11:19:03 GMT expires: - '-1' pragma: @@ -162,14 +162,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/7969a8d3-1d98-4e60-9c3c-70a82ff6b2a2?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f1d02b19-0de5-4f99-874e-ca6b1676a5a1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d3a86979-981d-604e-9c3c-70a82ff6b2a2\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T19:38:54.7904069Z\"\n }" + string: "{\n \"name\": \"192bd0f1-e50d-994f-874e-ca6b1676a5a1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:19:03.0486185Z\"\n }" headers: cache-control: - no-cache @@ -178,7 +178,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:38:55 GMT + - Thu, 29 Jun 2023 11:19:03 GMT expires: - '-1' pragma: @@ -211,14 +211,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/7969a8d3-1d98-4e60-9c3c-70a82ff6b2a2?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f1d02b19-0de5-4f99-874e-ca6b1676a5a1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d3a86979-981d-604e-9c3c-70a82ff6b2a2\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T19:38:54.7904069Z\"\n }" + string: "{\n \"name\": \"192bd0f1-e50d-994f-874e-ca6b1676a5a1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:19:03.0486185Z\"\n }" headers: cache-control: - no-cache @@ -227,7 +227,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:39:25 GMT + - Thu, 29 Jun 2023 11:19:33 GMT expires: - '-1' pragma: @@ -260,14 +260,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/7969a8d3-1d98-4e60-9c3c-70a82ff6b2a2?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f1d02b19-0de5-4f99-874e-ca6b1676a5a1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d3a86979-981d-604e-9c3c-70a82ff6b2a2\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T19:38:54.7904069Z\"\n }" + string: "{\n \"name\": \"192bd0f1-e50d-994f-874e-ca6b1676a5a1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:19:03.0486185Z\"\n }" headers: cache-control: - no-cache @@ -276,7 +276,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:39:55 GMT + - Thu, 29 Jun 2023 11:20:03 GMT expires: - '-1' pragma: @@ -309,14 +309,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/7969a8d3-1d98-4e60-9c3c-70a82ff6b2a2?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f1d02b19-0de5-4f99-874e-ca6b1676a5a1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d3a86979-981d-604e-9c3c-70a82ff6b2a2\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T19:38:54.7904069Z\"\n }" + string: "{\n \"name\": \"192bd0f1-e50d-994f-874e-ca6b1676a5a1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:19:03.0486185Z\"\n }" headers: cache-control: - no-cache @@ -325,7 +325,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:40:25 GMT + - Thu, 29 Jun 2023 11:20:33 GMT expires: - '-1' pragma: @@ -358,14 +358,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/7969a8d3-1d98-4e60-9c3c-70a82ff6b2a2?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f1d02b19-0de5-4f99-874e-ca6b1676a5a1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d3a86979-981d-604e-9c3c-70a82ff6b2a2\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T19:38:54.7904069Z\"\n }" + string: "{\n \"name\": \"192bd0f1-e50d-994f-874e-ca6b1676a5a1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:19:03.0486185Z\"\n }" headers: cache-control: - no-cache @@ -374,7 +374,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:40:56 GMT + - Thu, 29 Jun 2023 11:21:03 GMT expires: - '-1' pragma: @@ -407,14 +407,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/7969a8d3-1d98-4e60-9c3c-70a82ff6b2a2?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f1d02b19-0de5-4f99-874e-ca6b1676a5a1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d3a86979-981d-604e-9c3c-70a82ff6b2a2\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T19:38:54.7904069Z\"\n }" + string: "{\n \"name\": \"192bd0f1-e50d-994f-874e-ca6b1676a5a1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:19:03.0486185Z\"\n }" headers: cache-control: - no-cache @@ -423,7 +423,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:41:26 GMT + - Thu, 29 Jun 2023 11:21:33 GMT expires: - '-1' pragma: @@ -456,14 +456,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/7969a8d3-1d98-4e60-9c3c-70a82ff6b2a2?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f1d02b19-0de5-4f99-874e-ca6b1676a5a1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d3a86979-981d-604e-9c3c-70a82ff6b2a2\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T19:38:54.7904069Z\"\n }" + string: "{\n \"name\": \"192bd0f1-e50d-994f-874e-ca6b1676a5a1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:19:03.0486185Z\"\n }" headers: cache-control: - no-cache @@ -472,7 +472,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:41:56 GMT + - Thu, 29 Jun 2023 11:22:04 GMT expires: - '-1' pragma: @@ -505,14 +505,14 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/7969a8d3-1d98-4e60-9c3c-70a82ff6b2a2?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f1d02b19-0de5-4f99-874e-ca6b1676a5a1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d3a86979-981d-604e-9c3c-70a82ff6b2a2\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T19:38:54.7904069Z\"\n }" + string: "{\n \"name\": \"192bd0f1-e50d-994f-874e-ca6b1676a5a1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:19:03.0486185Z\"\n }" headers: cache-control: - no-cache @@ -521,7 +521,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:42:27 GMT + - Thu, 29 Jun 2023 11:22:34 GMT expires: - '-1' pragma: @@ -554,15 +554,113 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/7969a8d3-1d98-4e60-9c3c-70a82ff6b2a2?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f1d02b19-0de5-4f99-874e-ca6b1676a5a1?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"192bd0f1-e50d-994f-874e-ca6b1676a5a1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:19:03.0486185Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:23: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 + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f1d02b19-0de5-4f99-874e-ca6b1676a5a1?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"192bd0f1-e50d-994f-874e-ca6b1676a5a1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:19:03.0486185Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:23: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 + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f1d02b19-0de5-4f99-874e-ca6b1676a5a1?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"192bd0f1-e50d-994f-874e-ca6b1676a5a1\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:19:03.0486185Z\",\n \"endTime\": + \"2023-06-29T11:23:50.3597118Z\"\n }" headers: cache-control: - no-cache @@ -571,7 +669,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:42:57 GMT + - Thu, 29 Jun 2023 11:24:04 GMT expires: - '-1' pragma: @@ -604,65 +702,63 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-pceg8oar.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-pceg8oar.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/ac278646-b05d-497f-b7fd-79c73e9acb8c\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4186' + - '3863' content-type: - application/json date: - - Thu, 15 Jun 2023 19:42:58 GMT + - Thu, 29 Jun 2023 11:24:05 GMT expires: - '-1' pragma: @@ -694,71 +790,64 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - 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 }" + 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-pceg8oar.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-pceg8oar.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": + 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n + \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/ac278646-b05d-497f-b7fd-79c73e9acb8c\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4453' + - '4130' content-type: - application/json date: - - Thu, 15 Jun 2023 19:43:01 GMT + - Thu, 29 Jun 2023 11:24:06 GMT expires: - '-1' pragma: @@ -790,71 +879,64 @@ interactions: ParameterSetName: - -g -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - 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 }" + 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-pceg8oar.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-pceg8oar.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": + 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n + \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": + \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/ac278646-b05d-497f-b7fd-79c73e9acb8c\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4453' + - '4130' content-type: - application/json date: - - Thu, 15 Jun 2023 19:43:03 GMT + - Thu, 29 Jun 2023 11:24:07 GMT expires: - '-1' pragma: @@ -886,65 +968,63 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-pceg8oar.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-pceg8oar.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/ac278646-b05d-497f-b7fd-79c73e9acb8c\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4186' + - '3863' content-type: - application/json date: - - Thu, 15 Jun 2023 19:43:04 GMT + - Thu, 29 Jun 2023 11:24:08 GMT expires: - '-1' pragma: @@ -953,10 +1033,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -978,15 +1054,15 @@ interactions: ParameterSetName: - -g -n --file User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ - \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVU5UFoyZDJjVlpCYmtjelpGQlRjVGR1ZWtsTVlYZDNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDA1cVJURk5WR3Q1VDFSUmVsZG9aMUJOYWtFeFRYcEJNazFVVlhoUFZFMDFUa1JPWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNuTlJTVXh3YXpSdFdsVlBjVzFFVTNoRVpuQkpabWxUY2xVdmNGUjJhVEZtZW5ZMVJrMW9aM2R4YTNGelZqSnFMMG93ZUVvd2JsaHVaRVJhVkdsUk4yVUtNalpvTkZKa04yUm9ObUl5VlhGTmJtWmtURTQ0TnpoUmVVTXZkMmROWmt0eFZWQlpNRE5qY2l0TGNrVTFUR05zY0d0bU4wTkVRMlZuTlVnNU1IcE5id3BUUm14Rk5rRkZPVXR5UjBGNWQyNVROVGR1UldOSlRVNWxjMnhhWjNSSVVHSkhjeXRCVW5sbmFsSXJUMGd6Y1dOc1kwNU9jR2ROZFhvM1lWQnFOMGxxQ2prM1lqZEpTR0pNU1RsMVNHWmtTV2hHWVM5MlJXeEVSelF2VEc1RVUyWjZRbmxRY1dzclluQk5XaTh4TmtrelJYTlhWVUZqWldOMmMybFFMMWRSU0d3S1REbFFlR3RRVkdOdGIwSkpOR1E1ZUZOWVJIVjVWMFZqTjFGVmFtWlVVbVkyVEZFMVEwVk9hSGxTVUdkdE1YWnVhMlZtYWxCbGRHZFlSMWRWYUVWRFR3cHhXVXBNYkhCRVFXSktaVTltY25kTllsRk5SMjFIYkZBNFpFeHlaRE5NZEN0M2JGbFBSREpEVFdkUFoydFFhMUpVVDJSSVkzaGhOMGdyYVhsTldsbDRDbTFJY0ZkemJEbFNNRlp1UW5oR2RsaEhhM0JDVlVScVkySmtSMVpMZDFBNGJIQmxUMnRrWjNSelNVWm1jMUJGVG5wU1FtOVpkR3BtVDBzeVJUUk1ha2tLVDBWdWJWTkdNVmxDUzFaWWFFTXdSR2xHYzBST1l6Tk9WMUJ3YVhCbFkwMVJOalpxVW00d2NsaEhlRk50UlRWcWIwcEhjMDlqZVhwYVMybE5VMlJpYndwcGNXMW9SbFV3VWl0NGRUQjFjblZPU0hNNVpsWlRhVVpqTTJvNFN6aEdUa3NyTm1SUmNFdDNla3BIUzA4eFprWjRUa00wSzJReFlrVldhbmd3ZWpnMUNtWTJVRWh5UzNZMFVtMXFRbG81ZGxSclYzRk9jRFJJVUhKNVZ6ZFFUVXRpVjBWSU4wa3JNMUJUZUN0Tk9HRkVhMVUzWkZSRE9XWlhTV3g0UlRVcmFtb0tRV2w1TVRWM01HNHpZV0kwYmxOa00yMXlRWEZwTDBGb09UQTJhR3QzTDB0U2FsZFROVU14ZEZWUlkwTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1FXRnpaSEpaTjBkV1ZqTjZlbms1Q21wcFUwWnJObWxrZVhkMWVVMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlFrcGFRV0pWWVVWcVRWVlpRbVV5WlVkc0wxcFZhRlpQTDFBS2EwcGlPWEZaZVhGTVQzcG9URTR2ZFdKTk4xQm5XRXhWUVhSamFGcDVVR1pqVURFMk1tWlJWVlV2TDBjNU9HTXJWelZZUzJGdFEwZE5ZbmhYVjBvNWJ3cG1Ra3N2ZEdKalJuTjZhVGxwV1cwdlduTjFTRkZtWkhSUmVtcFFhV3hNU0V4V1NHUjBPR3h4YzFVeFpFWmxMMUp3U21jdmRtZEdSMXBtV0Vsd2RGWmtDaTlRVERaSVVXOVROMDlWZFROTWQwRkRRVWxQWTB3M1NtUkhLek5wUVVacE5rNXNXVGhwZWxKaU0xTjZNbXhwUW5KUlV6aHhUMjByYUd4WmRXdExkWFlLV25JcllYZzVjbXBaVHpCUmJGZzNNSEprYlZKVWJXRlNWMUEwVFdaQ1kzQkhaRzVuVFZGRVRISkdNVWhETDFWR1JtUnNRbkJDVWxWclZtVklkMFZDT1FwVldrWnBRVTFHUzFWdU5YcGtTWFppV0d0VkswMVhXbTFhTnpoNVEwSkhPRkZLTVVKbldXSndORlZCWVdOUWQxVlFNMmRuYXpsbVVtVXdVSFJ2UjI1TkNtNTJPVXROVUV0UmMyMVJOa3hDU0M5cFRIZDZRbXRDTmtSUE9FdDVNbVJhUzNGMmFGRXZNQ3RLTmlzeWNqbHpNSGh4VTNwdE5YRlVjbU40TmtFNGVFb0tVamxoUTBWVWRtdGtlbVpRY0ZJd01IbHRlbGwwTms1b04zRnNZakpxUjJac1dHWXJNR1J4ZUZWSU5sVm1ibkEzVjBoalNEUlViVXRFTDFCb09XazNXUXBuUms1VWVXMURkVmxsTjBkYVVGaFdNVmh0Y2xWV2RqTlFTMWRvWVZNdmQxazFkV1JRUjBGR2QzSmtjR0pUUzBGeGIwMXhSMjk0ZUVwak5WcE9OM3ByQ25OUVpEWmFjMFI2TUVzNWRDOUhMMWxSYmtWdlVGWlJiVkZ5ZW01ck0yZDFaRk41WlVaV1ZXOXlUSEY0WjB4dlNYZFZiMFpOVkRKbU1YbFRXR2xtTTNrS1kxcEpkRzh6WjFwNWNTdGpkakpHTVc1NE1HOHJUbHBPWTJsMlkzYzFNRloyV0ZGemJrNWtjemhtVkU1cE4weFNkM0pFVVRKa2JsUjBVVFEwTm5KcFN3cGFibGNyZVdFM1RGWlVaRlppUTBKVFNFRTlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5zZ2VvdHZ0bS1tajRjaWlzZC5oY3AuZWFzdHVzLmF6bWs4cy5pbzo0NDMKICBuYW1lOiBjbGlha3N0ZXN0ejRyMmNpCmNvbnRleHRzOgotIGNvbnRleHQ6CiAgICBjbHVzdGVyOiBjbGlha3N0ZXN0ejRyMmNpCiAgICB1c2VyOiBjbHVzdGVyVXNlcl9jbGl0ZXN0bmo3a25xdDY0cl9jbGlha3N0ZXN0ejRyMmNpCiAgbmFtZTogY2xpYWtzdGVzdHo0cjJjaQpjdXJyZW50LWNvbnRleHQ6IGNsaWFrc3Rlc3R6NHIyY2kKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBjbHVzdGVyVXNlcl9jbGl0ZXN0bmo3a25xdDY0cl9jbGlha3N0ZXN0ejRyMmNpCiAgdXNlcjoKICAgIGNsaWVudC1jZXJ0aWZpY2F0ZS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VaSVZFTkRRWGRYWjBGM1NVSkJaMGxSWmpJMFNWcEVVVVp1Umtjd1dVNVNjeTlHWTNORVJFRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdWR2R6QjVUWHBCTWsxVVZYaFBWRWsxVGtST1lVWjNNSGxPVkVFeVRWUlZlRTlVVFRWT1JFNWhUVVJCZUFwR2VrRldRbWRPVmtKQmIxUkViazQxWXpOU2JHSlVjSFJaV0U0d1dsaEtlazFTVlhkRmQxbEVWbEZSUkVWM2VIUlpXRTR3V2xoS2FtSkhiR3hpYmxGM0NtZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVNMVZWb3libE54Tm1GbVJYcHhkek4zUkVOU2FIZ0tkak1yTUZsS0wwTlpjRkU1YTA5amVpOVBhVk5FVTAxaGVqWkZUWGRSVmpndlFqQkliR3RJU0RKVVMyOTFWMFJMV1ROV0syRjFlVlZsVlhveFpWb3lWZ3BIWkdwWlIyaEdaMkppV21kSlQzZ3ZhbmxtYkROMFFXd3phVlJJTVRsdlN6TlNTbVpPU2xrcmRETnhVMGRCV21ac2JHZE9TaTlNUlhGalpEWnRVbU5tQ2tSelkxaHNlVXhHVld4a1VrTktTR3hSTVZZcmJ5OHlVbGxvTWxGR05taE1ObkZRZUdKUWFIRkdORmRXVXpOb2J6TjVTMVZzVmxsTGNXMXZPSGhuY1hRS1NuZHNTeXMxWmxac2EyWmFaVFJMYzJrd2RIbHJVM2RJWlV4M2NFSjFTMHM0UVM5SmREUlpUalppZDB0YU5YRlVSM2RRVERaTlRpOVdNM051TjNod1ZRcGFja2hzWm1VeUwxVklTV055Y0RaR09Vd3hNV3R0VUZCUWJVbHVUblZEZUZOSVlrOVpWVU52Y0VWUVJtMXhNbGdyUzFKM1drWlJOMDAyU1ZSS1QyTnNDbWxTTDB4TVVqbEpkRlYxSzBodmFHbE9XamhIYTI1aE0xaHJNbkZzUVdSVFdEWk5VVGhLY2pZeE1tNUdRbGxUT1RkeVZEaEdWVkE1V21GamR6TkpVR1VLYnpFM1IxVTJTRXQzYjJJeWQyZzBkbTR6TVhsUVJqZzRhR0pWVkRsNWNuWXZNVnBHWVdoa09GWlZOVXgwU0ZOSmJXNVdXa0ZtWldoRGRrRnlhbVpXYlFwSVpuZFVPRVp1YzJGRlZreHViR0ZqVUVjcmMxRndjM0JDY0d0V1JXczRVMmd2VUM5R1RHcHJTQ3R1V1ZGdlpFVkVSVkExY2tNeFptODNaV0ZvSzB4dkNsZ3JaMVpzT0U5amVWTjVia1pYUW0xRGEzUlVkV1p2Um1kRGJYTnZWR1ExTWpod1JVSkxRMVJEVmtObU5tSjZWekUwYzJ4RU1WaFpOVFZLWWk5MVZFWUtXREZXWVdOM1RXWlBVblpsZUZseVZXbExlR1pWYzNkTVRsSlhPVEYyUzNsM1FYaENaVkJNTVRRMlYwZFFiQzlNWVUxclExUjJiMnBwU1ZGbVV5dExUZ3B2VUUxc1FqRjROQ3N6T1hJeE1HdzBjRU5yUm5SUlNVUkJVVUZDYnpGWmQxWkVRVTlDWjA1V1NGRTRRa0ZtT0VWQ1FVMURRbUZCZDBWM1dVUldVakJzQ2tKQmQzZERaMWxKUzNkWlFrSlJWVWhCZDBsM1JFRlpSRlpTTUZSQlVVZ3ZRa0ZKZDBGRVFXWkNaMDVXU0ZOTlJVZEVRVmRuUWxGSGNraGhNazk0YkZZS1pEZzRPSFpaTkd0b1drOXZibU56VEhOcVFVNUNaMnR4YUd0cFJ6bDNNRUpCVVhOR1FVRlBRMEZuUlVGWlpHbHhaelZZYWxoTFlpOVRhRlJFYlVGRWJRb3pXWGN6Wm00dmNHRk1ORlExVGpCck0wa3pRVFYzUTI5MVIzcHpLMHgxTUUxak5UTlpha3d4Y0RKMVZYVnBSWEF3YW1wa01GZG5WbUZJUjFWdk1XaE9DbTk2YzNsU1RIWnBUWEpzT0U1d1kxUXhaRGR0T1hkbVZrNXNhMVYwU2k4eWNqbHVZMFJHTnpaMFJ6TnBPVVZvVkRseU1HTlZOa3BTVWt3NVJ6ZzRhVzRLWWxwVlpHTTFZVkpVTnk5blkwOUZaREFyVkhCVFVUQlhiVlYxZVd3dlkyOURhbTlvTUZCTGJWQTVaeTlZVTFGcFNVNW5VMHRMV1ZSc09GaEJiR3hzTWdvcmVITkxSbHB1VmtvNVVGZHdVSEpNUTJFMmFFMHhSV281VFRsMVZXeFhVMU5YUWprNVFVOUhOakpNUldsSE0zTXhjWFptVUcxMlNteHlVME16UjNSb0NsSXdhMHR3TmsxU2NVSkxUMEZwU1doaGFtZGlXa3RXTTB0NllYVlFXWEprUnpKWmFIQlFTblJNZFU5clZGRldTbUpzU21sdksyeFVia3BuVG1oSWNWb0tMME5MWlc5TlpVd3ZjMEpKVEd0SVJHUTNRMFppWjJRclJ6Tk1aRVFyZGxoWmF6ZGFNbFl2YlVOaVUwTnJVRWtyYUdkVGFtMUxXWEZVZDJGYWJHTktZUXB2WldOc1UxSllSRWwzUWxGNllUVmpkemQ1YW5SdGQyRlBVWGxLTm5aSFFpdHZiRUYyYTI0NWQwWjJTbmRTWm1kWFkyNU1Za2RXTWk5T2JqSjJTWGR6Q25adWF6TkJTWGRhT0cweFYydzBRa3BIWTJoRVkwRm5lbGMyTDA1b2RUTTNNaXR4VkZCcVJIUXljR1p3UmpBcmFraFFUV0ZCVG13MVEycGFRV3BxYlVjS01WbENWa2wzVFRCR05sQmpVMkY0VXpWaVpGQlRWbFZ0TUdGamNWbFVRMUJNYld0a1pIRTBOamRpVFRWQmRUTkRlVXh1ZVZkQk5XdFZhRzAzZHpGcmRRcGxUMWhwWTBveGFITm9aV2w0TVZsNlJGTXhPVkJvVHpWNmNqVjJUbnBOYm1GcmQzaFhUekUwTkZkV2QyRjFSMUoxYlhkaVRUVTJOMDlzWjBwNVNUUkJDbGxMY1RaSU5UWlRPR2t2UlhsaVpFeGFiM1JDY0RoRlBRb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIGNsaWVudC1rZXktZGF0YTogTFMwdExTMUNSVWRKVGlCU1UwRWdVRkpKVmtGVVJTQkxSVmt0TFMwdExRcE5TVWxLUzFGSlFrRkJTME5CWjBWQmRWWkhaSEF3Y1hWdGJuaE5Obk5PT0VGM2ExbGpZamt2ZEVkRFpuZHRTMVZRV2tSdVRTOTZiMnRuTUdwSGN5dG9Da1JOUlVabVVIZGtRalZhUW5nNWEzbHhUR3huZVcxT01XWnRjbk5zU0d4Tk9WaHRaR3hTYmxreVFtOVNXVWN5TWxsRFJITm1ORGh1TldRM1VVcGtOR3NLZURsbVlVTjBNRk5ZZWxOWFVISmtObXRvWjBkWU5WcFpSRk5tZVhoTGJraGxjR3RZU0hjM1NFWTFZMmw0VmtwWVZWRnBValZWVGxabWNWQTVhMWRKWkFwclFtVnZVeXR4YWpoWGVqUmhhR1ZHYkZWME5HRk9PR2xzU2xaWFEzRndjVkJOV1V0eVUyTktVM1oxV0RGYVdrZ3lXSFZEY2tsMFRHTndSWE5DTTJrNENrdFJZbWxwZGtGUWVVeGxSMFJsYlRoRGJXVmhhM2h6UkhrcmFrUm1NV1EzU2lzNFlWWkhZWGcxV0ROMGRqRkNlVWhMTm1Wb1psTTVaRnBLYW5wNk5Xa0tTbnBpWjNOVmFESjZiVVpCY1V0U1JIaGFjWFJzTDJsclkwZFNWVTk2VDJsRmVWUnVTbGxyWm5sNU1HWlRURlpNZG1nMlNWbHFWMlpDY0VveWRERTFUZ3B4Y0ZGSVZXd3Jha1ZRUTJFcmRHUndlRkZYUlhabE5qQXZRbFpFTDFkWGJrMU9lVVF6Y1U1bGVHeFBhSGx6UzBjNWMwbGxURFU1T1dOcWVHWlFTVmN4Q2tVdlkzRTNMemxYVWxkdldHWkdWazlUTjFJd2FVcHdNVmRSU0ROdlVYSjNTelF6TVZwb016aEZMMEphTjBkb1JsTTFOVmR1UkhoMmNrVkxZa3RSWVZvS1JsSktVRVZ2Wm5vdmVGTTBOVUl2Y0RKRlMwaFNRWGhFSzJGM2RGZzJUek50YjJacE5rWXZiMFphWmtSdVRXdHpjSGhXWjFwbmNFeFZOMjQyUWxsQmNBcHlTMFV6WldSMlMxSkJVMmRyZDJ4UmJpdHRPREYwWlV4S1VUbFdNazlsVTFjdk4ydDRWamxXVjI1TlJFaDZhMkl6YzFkTE1VbHBjMWd4VEUxRGVsVldDblprWW5semMwRk5VVmhxZVRsbFQyeG9halZtZVRKcVNrRnJOelpKTkdsRlNEQjJhV3BoUkhwS1VXUmpaVkIwTDJFNVpFcGxTMUZ3UW1KVlEwRjNSVUVLUVZGTFEwRm5RakZzVGtaQmVXVlFTelZVT0hkWVYxRmlNRkJQVUdsSUsxRm9VbGxaYTJNcldUSkpNalZ6UzJkdWMzVnZjRWx5THl0b1lVaHFNRlp5YUFvMk0xcEdVbEYzWkdaaVJuQXJTREJrTDNReWIzWjFXVlJuYkhnemN5OVRaaXRNYnpWM2NVeExhakZyS3k5cFprVmtRVVZDV21Sa1ZXSlRTazVpYTAxMkNqUlFMMHhRTUUxdU1uUkxRVm8zV0hGamQxSllkalZzZG5Ob05qTmtMM0psWm5Wb2VUVnVSemhYYjBkdVVUTm1SbUZIZFVWcFVYQlZNa2t6VW5wVmFrUUtOeXMwVmpodFMzaG1WR05wTkhsRVpuZFlhbU5RTlVFd2FYcDBUemRqZFRWd1lsTkxjMnhXV1V0clQxcEZja05IVDNCSlJFVTFibVpPYURCaVNtOUlPUXBUYlZKdFFUTXhjRFZLTlhjME9UQmxlbU55YzNsNVlUZERZbmhqTDA5UE1uaHdXRWx2TVZGcU1uRTVLMDEyUkdFemF6QjRkVEZWZG5GSFVXTldLM1kxQ25WcU56WlJWemd5ZFRWUFZreDNLekoxUWtkNGJHMXpjRlp0Y2twcmNDdENPRzR2TW5GWk9EZEhkVWRYTVRGSmFIZHBhM1JFWlhsMFkzWkZka3RKYVd3S2RVcHdXVVZ6V2sxSGVTdDFSWElySzNGRFJIQllSRTg0TlRaQ01FODNhVk5VSzBGMFJHMXRWMmM0V2pZdmMyaE5jamhGUVVaRk1GRlZNRWRJTjNaU2FncDFUbkV2ZDIxdmMxUnhkSE5VYzFKS2JpOHZRMDQwWVVaaFYxWkZNVzVOZVVOVWVtTkRlWEp0VEd4WEswVnpSa2RZUXl0QmEzUlFOVXBtT1ZaTFNrZ3hDbVI2Tkdjd1NsaE1iVkZIZHpSbFN6aG9ZVzFSVTJWeFNESXhSR0poWmxCaldWUnZSRXh3V0RONVVYWkZWbWQ1TTFSM1Z6UTVXR1oxUVROdlZXVmlRek1LV2pZdlMyYzBUR2gwYlVaTU55OTFRM0UyVFhwNVptNVhTWEZPY0ZwRk5FNXRWMFJJTnpGSFJHUjZRVnBVTmpSWVowRlhTMjQzSzFCU1IzQkZjR3hQYXdvM2EyTnhjVmR3WW1wamNXTktibFY0TUV0U2RsaFFhVkpFVjBZMWExQTROVGxYYW5wT2VGZFNlWGN6UTJ0a1JYUlJVVXREUVZGRlFYZ3dZV2h4WVdWRENteHVaV1JuY1RCSWIydEtXRmcwVGtjMWR6aHRPVlpzZUVzelZXMXNWRFUwVDNkMVkxZGxRV0pyTjFKWFVVZFphelpQUWpGNlZEZDRkbmhWUnlzNWMwMEtlR3RrVVd0WlpHcDBWSHAzU0RNclppdFFNV1Y0VlROdGRVbFJVMmRKYWpNM2NtbzBNV05TWm5NdlZYWlNVbWxvV1Rsd1ZWcHlRVVJ0TmxWWlRuUnROd28wUkRSNVowNXJOemcxT0N0WldWVnVkRmd5V0dweWJWUkNWbmd4WWtwa1J6SnVSRk5CZWtoTVRFeFFjRTVDTmtsM1VrbzBPR2haTUhrNUswaFdiVm8yQ21SNlYyRkRlVFZHTm5SaVltMU9SVlY1ZWt0VmRHbG9ZM2RTSzFKaVVEVTJaWGhUY0N0eloxRXZiazFtY2pWYUszTkJXWHBETlN0eVZFWnRSbWh3U1ZRS1JsUnBXbFkwWkhONE5EWmxPREZ3UW1Gbk9YaE1SRVpKZVhkWlYzWnlVVmh3UTFWVU5HeEJOalpSU1d0MmNYWkhTa0ZvYWk5T1FsQlpNR1JJWWtodlZRcFhNakJoYTB4UlQwcG5TVFpVVVV0RFFWRkZRVGRvU0hJNGMzQmFjRlZ0VnpaWFFWaEJhWGhhV1VJNGEyNDBWMUZoYkdoUk16RkhORmMzY2pSMFpESnJDbVZCUkhOM2NYRXJWbU1yY1VOVGVrZE5ZM2xGV25kTGRFeGhlbFZpWVdwMWJtNURVRlU0VVM5dU1GVjRObFJIVlVKWlRraG5UeTlEU0djMU5GcHdTa2dLU2pZMWRVUTNkVE12VVU1MVpWZHNjVmQ1WkcxemIwbFVZa3Q1WldvelNscFBURTh5UVZNMVdXd3JXSGhYUlZWeWFGcE9hWEpJVFVob2JqWm5XbEF5UndwRlJqQXdiRzR2YjA5clNXdzFjbEZNVEZOcEwzaHZWbmd3Vmk5a1kzbFJPSGxLU0RKS2FEbEZXVk5uWVZwRVdVRXJOVWcyUkU5bWFUazNjV05KZDJSTENsWk9ZMVpxWm5wb1EzbFZMMEpqWmxWQmVIUXhaM2wyUzI5cFpXaEVZVVZXWlc5Q1lUQktTMlZxTkVsVVJFTTRXbEJHV0ZFNFNXTnplU3N3ZEdoQlVqSUtRVTUwTUhjek1UWmhOVnBRVkVSdmFqSXJjWEI1Y3l0RmNsTXdTRE4ySzJsSE1YSTNSVUZPWkVOUlMwTkJVVVZCY3psdmJXNURWVzlOYWpsbk9VbHFVUXBKTDNveVQwdHJWaTlCU25JMlprcEJkSEpWTUVSdGVtdFFTRFE1VEdONVltUjRURU0yWW5GSGR6TjFZVTV3VlVKM1RFUnpjbUpFUlRsamRERm9kazFJQ2pWYVNreE5iRXRSWjJwMlJFcG9XWEZFZDNnNFYyMHZSVkJVZGt0elluaGliQ3RNU2s0dllVUTJjMmR3WkhOcFZHRlJNVE5NYTBsVVZUZzRkVFkyVjJzS1pYcDFWa3BLVkRKQmRFdEpWQzlPYWtsMWNWRjJSMHBKVHpKNWNIcDFTa2tyYkRacFRXb3dRWFJwYWtNMlpFNXhPRlJ2WTFCeWJXTXZRM2gyYWtodVJnbzVjVGRYV1ZSVlRFeEdNMHBhUTBwSWJreEhkVWxuTkVoWk1FTkRURmR2VjBaSFF6VkVNVTl1YjFwNmJYZDVNMjVtTjBGdlYwRXhUV3hrUjFGaVJGRTBDakZHTnk5VVMyd3ZPRzlhWmxsVlFsWTNORGRsVW13emNVaEhZWFZpU1hBeWMwMW5WR1U1WTNseVIwTTJVbGh0U1haU1UyVXZUMDkwY21Sd2NIRkpTWEFLV25SeFNqTlJTME5CVVVWQmMyOXVNRTVzS3pCbVZGaEZTRWc0Tkc5cFQyRllNMFJpY1ZaeGExcEhlVnBOWmtZMldHbHFTa3h5VEhKRWFXYzNXblkxWmdwM1kwUTRWblZqYVU0clUxZEJlRGRLZFROQ1lUSXlZVTlzV0c0MmMzbHhRbEZFVUVoaE5HZElOVEUxT1hWR0sxZGFOalJaWXpKM1QwOTBPR2R2VjBnMUNtRkxSWHBNTlVKNk9UWnhSRFZUYlZJMFlsWlFUVWR5YTB0S1lqRjZjM0ozUnk5TFVsaGpOVFpDYWtoNlJsUnpja1ZLTVZWTmIycEVRM1pEY21GS1lrTUtSbFJpV1dJM2VtdHBUbWd2WjJsVkwzQXpURXRuTDJoUlRWZGlkR1k0WlVKSk5DOU5kM2Q1VWtSb2JEWjFhMVZLVUZKdVVUQkxRU3REV1ZKSlNWQlVaQW96VG5KM0syRm1WVUYzVTB4NU0xTkVRV0p5VVcxSlZVOXpOVVZvUTJwNE5qa3djbTlsUVVjeVdHbzFTbVJMYTJKWGJFRnJRekZpUWtoSlJqUm1jMlJUQ210UE4yNTRNVmgxTkVwWFRFRndUa0ZuUWswclZFOXVVSEU0TkN0aVRreHZObEZMUTBGUlFVaG5VRzFIV0hGVlYzcGhkMnRTVVVwSmEyTXhiM2xyVUhvS05sRkJjVlppVUdZeFExRkJORFZNYTJocVRURlhSMGRITVhkaEsxSnlUM1JUU21jck1XNUdiSGRFY1ZObFducE9USEJYU1RsSFQxbzJTV1ppUW5kNWFRcEtiRmQ1WkVOU09YbG5aM1l2Y2pCRk4yUm1UM2c0VTNOMGJURllORFozYm1OQ1QwdFVlRzA0UkVaUWRXb3hVVkZUV0hkeFRGTnlPRU12Y2pKeWVIaHpDa0pKWnpaSFNuTXhTbEpzVDJWSVNFZDNWMUo1UW5WeWF6aFpiVE51VFZjM1NsVlFkR1kyZFRFNWNrcHpTSE5aVVVadmVscFBkSEIyWWxoMGQyZExMelFLY0hFNWFVNUZTVFpJTkhZeFdtZHlVMVkzUWtwUWJubFhObFF3UTJVMmVGZG5ZVmczZUVJMVJXSXhTekpOV0dGVVFuVmtWVFZ4TVN0dU0xQkJSakIwVmdwak1GSllUaTl6V25neldrVXZjV28wTTJ0WkszUldMM0o2VGxkbWF5dHJNR3hOV2xGNFUxZzNlRVpOV0ZwQmNVcHVlbWxUYTBsVWJFeDBZVm9LTFMwdExTMUZUa1FnVWxOQklGQlNTVlpCVkVVZ1MwVlpMUzB0TFMwSwogICAgdG9rZW46IDRwcGR4Y3J4eHZlYXMxcTNpd3RjMjl5MmVoOXR5YjQwZjNiZjRkdXdhcHBmZmo4ZXV5N2VydWZjbnU2NjhxZnhodGp5Z3NyYXF6anlkeThuZ2x6OXF5cW5icms5dWVxdmtlZGpiMXVua2dzNDdrZXF3dXJpeGp5ZnRxbGplbzhqCg==\"\ - \n }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": + \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVVscmQwNU5ja1JuVFhkVE5VaDRVSFJZZDJkc2FVVjNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDA1cVNUVk5WRVYzVDFSUmVWZG9aMUJOYWtFeFRYcEJNazFxYTNoTlZFVTFUa1JLWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNuSlFSREJsYUdaWGNrZHNUbEpzVkVJdmJEUXZOMHR2Ym1FMU1XOXBla05JT0dNeFVXVTRXa1UxUTFGelVsTndWbUpVUlhNMVdTdEdhbGt3SzJSSVJUSUtkWGxJUTBSWmVqTkNiak4xYlZvMU4yWkllbXhJTmtOMVZ6VnRRVVpISzFkeFRUWlViamhGYlZWU2VIZHZSRkpETjFGRFpWWXJlak5rYmpOUVFXVlFUd3BNWnpaR1VYbFFkbXROWVVSNFpIcHRXbmRyU21Ga2QwdEJSWEJ3V25oUFpqaEdSVGsxWVRFclNtbExRV0pWVVVWSlFqRnFNV0pvVlRSdlVYWk5kWFpVQ2pNeFRERm9WVzVoVm1Ob1VYSnVlamhwY1RKak1rRkJRbVpETUhOWFVrNVVWazlVZVhJclExUkNRMGRaVkU5dmNXazNaa3RsZVdOS1NVSnpSMnhpUnpZS1ZtbE5NbEJNUVhKSVYwOW9kVlY1V1RneE1EQkVOMU0xVG5Kb2RYUjFVekV4Y0NzMlIwUTBVMlphTlVscWRHOTNWamMyY1hRNGQzVkdNREkxZFRCMFl3cEtTMlpoVFV0VFRYTnNiRFJYUjNsM2MyYzBTRFZ5TkdoaU0ySnJZbHBzV0Rod2FXeEhSbGROWlV3dlpWUnRWR2RuZHpWRFMxTkhOME5uWVhKNFV6QmtDbTFNU1N0YVVGVXhWM2hqWTB4cWJHZDFjbmRJSzJ4TGEyb3lkMU0zVFU0M00wOHhORVpaVHk5bWVtdDFURkl4ZFRCRFVuZDFORk5XT1U5eGR6SXJkM0lLZDFNclVrcDNaVmhEUjA1c05HOUJhRXRTYUVKeWEwaDVZVWRWZFVORFJYSmpWSEpwVDFkNWVYcDRlWFZDV0daa2FsSjBPU3RMSzBaVlltRnFTRFJtYVFwSWIzQnlSRFkzUXpWVlVXRnJNMHQxWkZGb0sySlRjakUxY0Zac1dYRnVVMEp2T0daU1QwSkhhSE41ZFRkVFdpOTZTbUZSZERSNWFsTnFWa2RVTDI5dkNtZElhbFZqVDJJMmIwUm1XRlZxZW5wWmRUUm1aVU5hWkVoblprdHJia1E1ZUZkWGRqZG9jVFppVURCYWRIaGxjMmsyY2tkSWFWSXhObXhDVDBveFFtUUtlVFJ6Tkc1VlYxSk1Mek12WVhrd2RGVTJLelJ0V1haMVNTdEpVRlZpVmtOSFNFMURheXR1YTAxaFJVTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1RHeEphbkp0WXpKSU1WZEtRWEJRQ2pkcGRHVjNNazl4V1VVMGMwMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlFqZE9kM1JPTUV0T1NrOXBWelJHY0VjdmVXVkJaMmR6YUdJS2FrTlhjSFY2Tm1kMlNYTkNUV2x2VFZwdlUySXdTakV5TUhSR05UTnlWVGxzVVhWWllUUnlXbVZzVDJSSFZtRllkRlprYWtWc1FXSXJkR1ZzTTNKSFRBcE9XSFJWWkc1bGRXSTFSSFZNVG1WdVlXdDBWVGRvY1RkeGNDdEtTakpYTkZGVVdVNUpWa3RvYTA5cFFWZFNWSGd6Y0RSWmRFUk9iRkZDVWxJM1NFeFhDamN2TTNaQ0wyZEpPV3BEUkVFNVJrSnVRVzF3TDAxdFFUWnRURkZaY1U1a00xaHFURE5HWnpGR2FXbHNXR2xUZVVkYVMzbFlRMmxPZUhVNFlYVm5iRkFLWkhKcmMxQndTVlo1YUd4aVJVTm1PWGh1VkdGaVpTOURhVzFaU1RadlNHWlZZbEJqY2pkbmFXSXJWa1ZwU2tadGJXaGFSRWN2TkZFNE5tb3ZTelp3Y2dwMWREUk5XSGR6VUdWcmFESTFhbVZtTUVOdlNqazJUWGRoUkhNMGFrSlRkMUJEVTNJM1dHaFpPVkJqUWs5c0x6QjBhMFJTZW5nclQxSTJiRVJ4VDJGRENrTnhOWGhzYTJOSWRubE1SVlF5ZFcweGMwdHRaRGR0ZEc1TU1YTkVhbGxSYkdKaldXeFpZVVpqU1ZsU05uRm1aa2xUWTFFd1dFRXdiMlE1VnpFNGRUY0tla05wTTFReldXcEVPVVV4Y25CSmVqZzFVV00zYzJGMVZ6QnFiRUpDTUhVd1NrUXpURTFSTTJGaE1YRjFNWGgxUm5sTVZFRm5NRkJMVERKVE1pdHRPUXBoUW5WUVluUjBSMDF5WjBSb2JHUlpWbkp6VFUwclJqZFVhM0pJUzBkc01raDJjRGxPWm1ablJYWTFVMVpVZUM5Q1FrOWhORzVGV21SNEsyWklVbWxUQ2k5M05uWjJZM0JtVjNoNk9FTklhR1ZSTjJOTFFUSjJiMEV6Umtwblp6aHZRVkZDWjFsamNsUnJLMHBsVm0xRFdtNVNWR1UzTTBwSU5qQlBTbE42YzJNS2FHMTZZemhKY3pGR1JUUnJiRlE1WXpnMVFWSjZOVEV2VlVSUFlqUTFTRmszYW5ab2VFdE5Na05wWmpWSksyNVJWR056YjAxeVVtOWhNWEl3Y3pWcmRncEdibTVLWlRkbllXUXhNeXRvU0d0YVJIYzlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5zZ29kY3o1eS1wY2VnOG9hci5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdGRjcnZyeQpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdGRjcnZyeQogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdDVuN2E1b2pydmFfY2xpYWtzdGVzdGRjcnZyeQogIG5hbWU6IGNsaWFrc3Rlc3RkY3J2cnkKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0ZGNydnJ5CmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdDVuN2E1b2pydmFfY2xpYWtzdGVzdGRjcnZyeQogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklWRU5EUVhkWFowRjNTVUpCWjBsUlFUY3ZWMlZMU2pkSU1HeEhla0ZCYTJrNVVVcEVWRUZPUW1kcmNXaHJhVWM1ZHpCQ1FWRnpSa0ZFUVU0S1RWRnpkME5SV1VSV1VWRkVSWGRLYWxsVVFXVkdkekI1VFhwQk1rMXFhM2hOVkVFMVRrUktZVVozTUhsT1ZFRXlUV3ByZUUxVVJUVk9SRXBoVFVSQmVBcEdla0ZXUW1kT1ZrSkJiMVJFYms0MVl6TlNiR0pVY0hSWldFNHdXbGhLZWsxU1ZYZEZkMWxFVmxGUlJFVjNlSFJaV0U0d1dsaEthbUpIYkd4aWJsRjNDbWRuU1dsTlFUQkhRMU54UjFOSllqTkVVVVZDUVZGVlFVRTBTVU5FZDBGM1oyZEpTMEZ2U1VOQlVVTTVVMU5zV0hGcFlsQnZkREZtVW5CdVFtcHlhbklLY25kTWFYb3dNa3BzT0VwVlRHMUVaamd2UTBWM1NFWnRORkpMUm0xWk1sWjFVMDF0VlZWRlJtVTFhVE5PYUhjMmFFaHZUbWxWY2t0eE9XaFpWbXQzV2dvdlNreHFNa1l5Umt4MFlsTlFZM0pLUzNoTWQwWkljMmxVV25Gek0zUndUREZQVEhoQ2QycHRWRXRXWlVsVVQxVkpkSGxpUm00dllraDVWMGxEY2pVd0NtbE9UQzlGYm1SV1J6SnJRMElyVFRoWWNuaDBUMVZPYWt4UFYwbGlNRkpQV25Cb05HZHFkbVo0VWpZeU1XeHZiRk5sVlZWS1JFSmFTRGRxUm5kQmRtY0tRVk5ITVZWWE0yTkdNSGROYm1wWmJqWmhVWFI0TmpodVdVbFJVM3B5TjFOaWVYUnZlRTlwZW05cFJXSnZaV1JqZFN0U2RGTXdlREJDU0dWcGNXZ3ZiUXBSYzFCbVdXNVZjalExT0ROcFMxQkdXRXBXYlUxQmJETk1iRzVsUVVsR1JrNXdUbFpaZURCRmRtUTVaR3hWWjBNNWQyZHhka1pMYTJWc1ZYSndZbFZyQ2xwSVFsUXllRUlyVm01MlJtcEpLMWxSVXl0QlJVTnpVM2g0U2poNmJVdE5Va2RtVDB4b1kwTk5PR3NyY0RSSVp5OVJWbWxJYjJGeVRsRmpWMFV6VnpnS2NsQnBlR05MY25CRlNEVTJSVXhOYUdsWGJ5OWlORVpxZVZWSVJVeEtPRlZ4U2pkd1p6UnlMMWhUUjFRM1VrWndPWEZWYUVaUVIyMWFSM0JFTm5oWGN3cEplbVYyYTFGMlVIQk5ZMUJHVmtkMU9HOVROR05ZUTJGQmIwWXhjM2RIVld3M00xRjVjRzkyZG1zeFJWSm5hR3QzY1VKV1pGQkthVk51TWs4clEzUlhDbmh3VVVWd2NGRlJlV1IwYjFGeFMzcE1RbFVyTkZaQlJGTjJPRUUxVUdwNlJYTkZTM0JGUTNRd2QxSllWUzlHZFVvMk1HZFdlRlJFUW5adFdYVlRXakFLYWl0NlpFTmtaUzgxVEZWMFpsZ3hPRTE1UjJjeVRqRlVUbEpvTkUxcVNGaElTMUF2ZGpoME5UbGlTbVE0WTNCd1JIZEdlbTk0VGpWWlpFSmFkR1V2TkFwallqSm5aM0Z2Tm5wS01FUnFXSEZGYTFWUVpWWjNTVVJCVVVGQ2J6RlpkMVpFUVU5Q1owNVdTRkU0UWtGbU9FVkNRVTFEUW1GQmQwVjNXVVJXVWpCc0NrSkJkM2REWjFsSlMzZFpRa0pSVlVoQmQwbDNSRUZaUkZaU01GUkJVVWd2UWtGSmQwRkVRV1pDWjA1V1NGTk5SVWRFUVZkblFsTTFVMGsyTlc1T2FEa0tWbWxSUzFRck5ISlljMDVxY1cxQ1QweEVRVTVDWjJ0eGFHdHBSemwzTUVKQlVYTkdRVUZQUTBGblJVRnRTa01yU21kdVVrRm9OMUpGYlZZd1pYbGpjd3BJV0VOc1lUSTNNaTlpTTNGM2RHZEtjek01UzJKV1RtaDZNMHRFV0V0dGNYbFlLM2RGTVRsRGJXdHJaR1ZpVlZsU1Fsb3ZUbWwxUzAxb1dFSkljRFpTQ2pNMFNsUkpUMDVLUWxCME1WWjNRME5DV0VsQmRXWlZObG9yTlU5UE0yaHlNSGRYVDBwUVowOVpOMEZHVW5Wa05uRlFOR3RrUWs1TVVFczJkbXBUT1VzS1UzUklObkp2YkRkekszSlZZbmRMYkVkc09XOXhTWEpVUm5kUVpUZGtZeTlVWjNwUVpIWndUMjVXWjJneVYycDBTMDQzTWxRMU9WWm1NekZ6Tnk5TFJ3cHBPRE54VDA4d1RTOUtSVVYwTVV3MmQyWllSRWxaV0hSV1JsbFNUbmwwWjA1Nk9GbGhVRzByVkVKcU5tSkNiVzh4Y2xObFZqSkZZaTlMV1ZneFJ6Vm9DbGM1YUc1bVJsZHJibWx1T1VkdGNHOXRZMUJ3VG5KUU9UWm5NSFJpWW1GUWFEWTNNbW93UmpCclRua3pjSFl5YVhOeVRWTndabUo1VGxSVk1XeGtheklLVVVWQmVXSjFRVWhIWkVKVE5FMW1RbmQyUkRSeU1VaHhkVFV2Y0UxUVF6ZHFWbTlQTmxOUlRrSllRVzltYjNoaVEwVk5kREZ3UjA5UFZrOVlTa1IyWVFwS1VXTkhUa1E1SzNSWVUya3pSSEpXVmxGUVluUldhV1pNYm1acmRGQTVlV2hoVmk5dVRWSktTa3QxVVRndmNtVlRORlZ1UldoRlpIbDFaM1Z5WWt4VENqTlBLMkp6VjNOTmJqTlNZa2N6UTJWcE1rTkRXVnBtTUZNMGRXWk9aSGhUVWtaclJFRnZOWEIwWTFwRVQyWjVjM1IzTWpONE0ySlFWVkJJYTNwRFEzY0tOSFptVDI5WE0zWnlVUzlOTDIwd2FYZENkWE4wVjJ4S01IUXhjVkJoTjNRclNEVXlSVVZRTkZwRk9WVTRRVzF4WVhGc2IwWlVValZJTHpJeWJXdHJWZ3BVYkVkSlluaDNVVlJvYVRNemRuRTBaVWhSY0ZOTVdTOUVWbXNyU1hSVlEzSkRSRmxOUlRKbWEwSkdlVWxCY1dSbU9ISllVWGhtYzJoU1dWVjNTbE5vQ21neVJUaFpiVVJVZVRsU1JUQnFUa0pSTUhSMGFsWnZQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MwRkpRa0ZCUzBOQlowVkJkbFZyY0ZZMmIyMTZOa3hrV0RCaFduZFpOalEyTmpoRE5ITTVUbWxhWmtOV1F6Vm5NeTlRZDJoTlFuaGFkVVZUQ21oYWJVNXNZbXRxU214R1FrSllkVmwwZWxsalQyOVNOa1JaYkV0NWNYWlpWMFphVFVkbWVWTTBPV2hrYUZNM1Z6QnFNMHQ1VTNOVE9FSlNOMGxyTW1FS2NrNDNZVk01VkdrNFVXTkpOV3Q1YkZocFJYcHNRMHhqYlhoYUx6SjRPR3hwUVhFclpFbHFVeTk0U2pOV1VuUndRV2RtYWxCR05qaGlWR3hFV1hsNmJBcHBSemxGVkcxaFdXVkpTVGN6T0ZWbGRIUmFZVXBWYm14R1ExRjNWMUlyTkhoalFVdzBRVVZvZEZaR2RETkNaRTFFU2pReVNpdHRhMHhqWlhaS01rTkZDa1Z6Tmlzd2JUaHlZVTFVYjNNMlNXaEhOa2h1V0V4MmEySlZkRTFrUVZJemIzRnZaalZyVEVRek1rb3hTeXRQWms0MGFXcDRWbmxXV21wQlNtUjVOVm9LTTJkRFFsSlVZVlJXVjAxa1Frd3pabGhhVmtsQmRtTkpTM0o0VTNCSWNGWkxObGN4U2tkU2QxVTVjMUZtYkZvM2VGbDVVRzFGUlhablFrRnlSWE5qVXdwbVRUVnBha1ZTYm5wcE5GaEJhbEJLVUhGbFFqUlFNRVpaYURaSGNYcFZTRVpvVGpGMlMzbzBjMWhEY1RaU1FpdGxhRU42U1Zsc2NWQXlLMEpaT0d4Q0NuaERlV1pHUzJsbE5sbFBTeTh4TUdockt6QlNZV1poYkVsU1ZIaHdiVkp4VVN0elZuSkRUVE55TlVWTWVqWlVTRVI0VmxKeWRrdEZkVWhHZDIxblMwSUtaR0pOUW14S1pUa3dUWEZoVERjMVRsSkZXVWxhVFV0blZsaFVlVmxyY0RscWRtZHlWbk5oVlVKTFlWVkZUVzVpWVVWTGFYTjVkMVpRZFVaUlFUQnlMd3BCVDFRME9IaE1Ra054VWtGeVpFMUZWakZRZUdKcFpYUkpSbU5WZDNkaU5XMU1hMjFrU1M5ek0xRnVXSFlyVXpGTVdERTVaa1JOYUc5T2FtUlZlbFZaQ21WRVNYZ3hlSGxxTHpjdlRHVm1WM2xZWmtoTFlWRTRRbU0yVFZSbFYwaFJWMkpZZGl0SVJ6bHZTVXR4VDNONVpFRTBNVFpvU2taRU0yeGpRMEYzUlVFS1FWRkxRMEZuUVc1RVNVUkxOVkE0T0hSdmVWVnhlWFowUld4U2VubHdZamt3TWxwaWFrVk5OblZ3WVdodVQwWjRaMWxJYW1neWMyRjRTMHhCTUVsREx3b3hkVTVxUkdsNGFrZ3pZVlJYSzBWVFEyUkRNRWgwT1hreVpIRTFVV0pJVERjd1ltSjNkRE4xV1ZoRlJVeDVObThyU2tOMVkzWlJSakZpVDFSRlZXZEJDa1ZWVGpCMmVuTmxVVUp6ZWpWRU1DdG5WbGN2UkhBelptZDBabTVyY0Vvd2NrbHhVblJEV0d4c1ZuSTNhVlVyTVN0TGJ5dFBNMVJsZDBwWFJ6RjNUamtLVjA5RGFFOVVhM016ZFhWYU5XSlRjMmQzY1RKWFExUXlTbkpvVFdKbE9WZFRTVmw0WTFaNmRTOVlVMDl3TVZOSVdGUndNVVpUVVhBdlVucEJjazAxTXdwMmNXVkROVEVyVGtrNGJHNURRbmRJYzBKRlJtNXBXbEZIUjJsalUwRnVRV1UzT1ZGWWNGUnhSQzlaTlUxUVFtaE9SMlV2Wm05Q2NtNUJPRkJEUlUwNENubHJWMmxTVFd4bWRGQjNNa2xIUVNzNFRISmlNRFpFWldORlJEazVaMkpGVXk5dllVOHhXVXd3YWtZMVMwUkhhbFZtTWpacVJsVkxRM2hKZDBKVVdrTUtRazk2WkVsemR6UldWRGhzVm5Bck5rTkVWWEZ1ZVUxbmF6RTVOREpZVkZWSk56RkdUamQ1WXpCSVZsSkRTRUZHTmk5blFtTTVTMDlyYkRJeU1ERkZWZ3BOVDI5bFNYQm5Uek16Y21acWRFeGphR2xHVlhaUFRuRkxRblJ2ZHpCdWFVTlBOak5HTVhsNlVqWlBOR1p5YlRBeWRVMVJSV1l5Vld0cFEwdFdlak5pQ25OM2JsbE9VVzh5T1doM09XRnRiVXQwSzAxaWJEY3ZSMHhoVDBOck5ERkRZMGgyYlRJNU5rOU9jRWwzWXpsdFFVSjFOVlZtY0V0dVNIaFVkbEJ6TTNVS1pGRnRWVWh6YjNCaWRUSkxNRzV5YVdsRUswRk1SMVowSzA4MGVWZGpaMlpZUVVGRFZWTXJVbWxDT1ZkbGJuUk9ZblZvZGtac2VtWjBNRWg1TUZoclV3b3hTazEyY0haU1dHRnlkM1ZJYm1KYU1GbEhibXRTT0VkVVdFRnBXVXRoY1ZWSFRGcGpja05UVlZGcVp6QjVTbXhCVVV0RFFWRkZRVEJOZUcxaE0yUTNDbmhKVWtZNFl6ZGFTbG8yUlhSNlQyTlRVbWRzUTNSb1owdHVaMnAzSzJaNFpDOUJVbmxqS3pOekswSnRkMnd4TVVFMGVGTk1TMVpOWWpGSlZqVkVNM01LTUVnd1kwTmxabFV4ZVVORU1sQXdjVmgyVGl0a01HOTJTMnR0Y0hWUE1sUkZOMkkxVTJ4d1YyMHlNVWxDT1dOd0syVXpNbVpWV2pOYVJVaHZaM3BNTVFveWRIVm1kWFJNYVdGa1MwTmxhUzlyTjJaT1ZqZE1OSGt5Y25ZemJGQlJRWEpEV0RKa1RqRXJXR3h6V1RoRk5IaFBSbkpYUkZGWWNtNUNibFJYTjBZMkNuWk9OREpsYjJscVFuTkxOV1Y1VEhKMmNVTnJTM0J0VTFCTmRGZGtSblZyZFd4SlZXMXNaM2hFV0VoV1puUXZia3h1VjNobUx5dDZOVEJrUVhneFRIa0tjQ3N6UWxrMGVtUm5iVWwyT1hob2JYTmhNSFJDU2xoaFozWm9aMk5qV0N0blZYY3ZZMlZNZFRkQ1lXMVNkbkU0WVhKeU5YUjBNRll6TUZKclRYVXlNd3BLUzBObE5IcENRblZ4ZVRnclVVdERRVkZGUVRaQ1QwZEZlbTVFWXpad2NGWlNLM0JJU2t4cFlqWnpkWHBoYm5kS2JVRnVZWEpWVDNsUlpuZ3hjVXAxQ214SmNWUm5PVXRSYTFnNGVYZ3plVmR2TUVSdlYwdG9OR2s0YzBwTWNrODFVbU5VYjNkNmRsUTFiMnh6V2tOMWQycDZjWEpCVFVsdVRuTnFSRzFsVEZvS2VqWjJhVnBZYTFOalYzaG9lV2hFY2psbmEwNHZaWHByUm1KWE1VSkJVVlJsV2taSE5HZGlOSEp0VTA1VVFYRkZSSGt6ZDFOT1IyWlZPV05OTWpWTk53cHZhVmc0V1dKalRrOXpTelZtSzFReFVWcDJaa1ZNY1dJcloySk9WMFpMT1hCelZFMWxUVUZsV1hCS1pEVk1TalpHVVdkdllXbHFNSEZVY1ZwamQwdDRDa2xtZVRaUFZsRkxVVlYwY2pGRGNuZHdWMFpSU0VNelJYaDZiMEYwTnpaV2R6VlRUVUpwV0N0bFUwMTFiRTFQYTJWUlR6RTRhbHBNZFRWUldXWTBhR2tLV1ZSNUsxb3djWFUxT1dscldETnhOWFpVVnpaclVtTnpTSGRQUml0YWFGTmtVVGw2YzB0cVducDNTME5CVVVGRU5VdDJUVTlVUVdadEt5OUtPRWhrZHdwRmFVdGlXQ3RVT0Vnck1HYzFTMUF5V25OTlZEbG9SVEJyVlRscWJXWkljemh5VVRONk5VcE5MMHRNVkc1cmJITnJabFpEYVdvd1QweHBZMFp6UlV4NENuUXZUamxoYTNOT09XcENXR1pTVTJkRWVuVlJOMU13WlRSMmVVY3ZSMUU1UW1FMlowcHplbkpyYUhCVlpqWnVaVkJ5VW1STVpXZFVjWEZEZURGU2FsQUtja1pOZFdkQ1NXVjBZbXBYWW5veE0yZHhWemxMTUdWUU4ya3hTVkpLUlVWd1YwbDZjVTlIVjBWWGRVbFdjVWh6UTFSak9YTklUaTlpWnpGS0x6VTBOZ3BzUVhKMFZuUjBZV1JLYUdKRGRqUkdSVU15VDJka04zbGpia1ppTlRKVlUzZFNjV2RCVVVSSmFIWXhSMU0zYUVwRFlsVldaMjFDZGpkVGFqY3JSRnA0Q2twbEsweENaazR3VVV0NGEwNHpPRnBxYUZGUFUzZHFVakZIUVdsbFdEZEhMME13YUdsaE9WWjBhVXhPTTBKV05sVnJXV3RDVUdGNlVXbE9NRlJSVVUwS2RsRm1Va0Z2U1VKQlJXOUlSMFZvTDNJemJuZDZUMHR5VlRjeFlXMVZTVE51Tld4Wk9FNUxPRGQ2V0Zwb1ZuSlpNM1Z4ZUVzMFlsVlpWazh5VldkcmJncFJkVXBvVDI5bVpYZ3pObTlXY2s0ME1ETm5SRTlyUlc5SE0zUlVWbFJrTDJSSlZFeGlkV3g0VGtkVWMybGhaWFpEVEROSmJpdFFabXg2Y2pWRlRXNHZDbGxZTkdOUlltaGphMUZ6UkdsdmJtMVRWbEkzYmtZMk1USmFPVEY1T1U5T1NGbHJOQzlaUkN0RVZubGtRMU0yYzA1V2VrSk1WVGtyZDBjdlJ5OVZRbGNLU25WbVJqa3ZiWGx3T0dac1ZIRllSbW8zUkhoNU5qaHljbGhIUkVSMU5IZGtRMVJyVkZrM2VEWkVjR013UWxrdlN5OHlSWGxWTTI1SFRuWTJhemMzWVFwUFVUUlliVWRYV1d0bU5EZEdlamRhYjB0eU56ZDZabEUxV1RFNGFIaDZTeTlUZGxVNFJucDBjM2hqVFM5TlJtSTNlV2xZVERWTFJ6RjBSMHRCUW5KVENtWjZVVFZ4U1M5VVYwdDVOV05KYVVGRWFtUmpkMFZwTkRSb1ZtazVkamhEWjJkRlFrRktaazVwTkhWdWEwczFhSEJTV25SWE1tRlVkWFoyYzJjdk1IQUtNRTlIUmtjdlVYVXhhVzV4YmtGVlNuRmlVMVZLT0ZVMlRVbERPVWhMUjBVeE5sTmpLMVF2YlU5aFkzTlJjM0ZFTUhOb1dWbzJZWHBzVmxGaWNHdFBZUXB0WVVzeWMwWXpZbEF4TUdFMWFIWllhRlpOY0ZscVUyeGhUSEp3UVhCbU5rUjFXVlJrWVRkcFUxbzNUVEpYSzFvdk5VRlFVMnR3UmxScVVHRXZaV3RIQ2tWTE9GSkdVelpSYW0xa2VYQjFlVmhHT0RoVVJYZ3JOV2xrTURrNFpHRjJiVnBIWm1KSFQxTjNRalJSUlVRMVZ6Z3JNREl3VHk5NVRFMU1aVlphY0VVS2NHZ3hWbEJ5VmpWV09WUTFia3hNYnpSalNUSnplVE5RWWk5bWFqVXdTbUV3ZUhneFZFbDNSVVI0VEZCQ04zcHVlR3RYYkdGV1NqRk5ka2h0WWpWc2JBcDBjMUZOU1c1TlJuUTJWamgwVHpoUU9VZEpZVkJWUkZkblNTczRXV1J4ZUZSSEx6WnVUV3RpVUhkRWRFcDNRMjlIUTFsbFlVSjBTMDQyVVQwS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiBod3psN3pkbXFkdDc4YzVlNGZ3NjB5cXluY3N0bTF3YWtkMXFncTJkNmpjMWVuNGpvbDB4eHIydHRlaGZ0ZzQzODlyamhub2F2Z2Fkc2lwd3plMGFoYXpyODdvdnVkYmlqYzdmenlkMGQ4aGx4b2U4eDNtemU0OWNkazl6aTE4OQo=\"\n + \ }\n ]\n }" headers: cache-control: - no-cache @@ -995,7 +1071,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:43:04 GMT + - Thu, 29 Jun 2023 11:24:09 GMT expires: - '-1' pragma: @@ -1031,15 +1107,15 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ - \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVU5UFoyZDJjVlpCYmtjelpGQlRjVGR1ZWtsTVlYZDNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDA1cVJURk5WR3Q1VDFSUmVsZG9aMUJOYWtFeFRYcEJNazFVVlhoUFZFMDFUa1JPWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNuTlJTVXh3YXpSdFdsVlBjVzFFVTNoRVpuQkpabWxUY2xVdmNGUjJhVEZtZW5ZMVJrMW9aM2R4YTNGelZqSnFMMG93ZUVvd2JsaHVaRVJhVkdsUk4yVUtNalpvTkZKa04yUm9ObUl5VlhGTmJtWmtURTQ0TnpoUmVVTXZkMmROWmt0eFZWQlpNRE5qY2l0TGNrVTFUR05zY0d0bU4wTkVRMlZuTlVnNU1IcE5id3BUUm14Rk5rRkZPVXR5UjBGNWQyNVROVGR1UldOSlRVNWxjMnhhWjNSSVVHSkhjeXRCVW5sbmFsSXJUMGd6Y1dOc1kwNU9jR2ROZFhvM1lWQnFOMGxxQ2prM1lqZEpTR0pNU1RsMVNHWmtTV2hHWVM5MlJXeEVSelF2VEc1RVUyWjZRbmxRY1dzclluQk5XaTh4TmtrelJYTlhWVUZqWldOMmMybFFMMWRSU0d3S1REbFFlR3RRVkdOdGIwSkpOR1E1ZUZOWVJIVjVWMFZqTjFGVmFtWlVVbVkyVEZFMVEwVk9hSGxTVUdkdE1YWnVhMlZtYWxCbGRHZFlSMWRWYUVWRFR3cHhXVXBNYkhCRVFXSktaVTltY25kTllsRk5SMjFIYkZBNFpFeHlaRE5NZEN0M2JGbFBSREpEVFdkUFoydFFhMUpVVDJSSVkzaGhOMGdyYVhsTldsbDRDbTFJY0ZkemJEbFNNRlp1UW5oR2RsaEhhM0JDVlVScVkySmtSMVpMZDFBNGJIQmxUMnRrWjNSelNVWm1jMUJGVG5wU1FtOVpkR3BtVDBzeVJUUk1ha2tLVDBWdWJWTkdNVmxDUzFaWWFFTXdSR2xHYzBST1l6Tk9WMUJ3YVhCbFkwMVJOalpxVW00d2NsaEhlRk50UlRWcWIwcEhjMDlqZVhwYVMybE5VMlJpYndwcGNXMW9SbFV3VWl0NGRUQjFjblZPU0hNNVpsWlRhVVpqTTJvNFN6aEdUa3NyTm1SUmNFdDNla3BIUzA4eFprWjRUa00wSzJReFlrVldhbmd3ZWpnMUNtWTJVRWh5UzNZMFVtMXFRbG81ZGxSclYzRk9jRFJJVUhKNVZ6ZFFUVXRpVjBWSU4wa3JNMUJUZUN0Tk9HRkVhMVUzWkZSRE9XWlhTV3g0UlRVcmFtb0tRV2w1TVRWM01HNHpZV0kwYmxOa00yMXlRWEZwTDBGb09UQTJhR3QzTDB0U2FsZFROVU14ZEZWUlkwTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1FXRnpaSEpaTjBkV1ZqTjZlbms1Q21wcFUwWnJObWxrZVhkMWVVMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlFrcGFRV0pWWVVWcVRWVlpRbVV5WlVkc0wxcFZhRlpQTDFBS2EwcGlPWEZaZVhGTVQzcG9URTR2ZFdKTk4xQm5XRXhWUVhSamFGcDVVR1pqVURFMk1tWlJWVlV2TDBjNU9HTXJWelZZUzJGdFEwZE5ZbmhYVjBvNWJ3cG1Ra3N2ZEdKalJuTjZhVGxwV1cwdlduTjFTRkZtWkhSUmVtcFFhV3hNU0V4V1NHUjBPR3h4YzFVeFpFWmxMMUp3U21jdmRtZEdSMXBtV0Vsd2RGWmtDaTlRVERaSVVXOVROMDlWZFROTWQwRkRRVWxQWTB3M1NtUkhLek5wUVVacE5rNXNXVGhwZWxKaU0xTjZNbXhwUW5KUlV6aHhUMjByYUd4WmRXdExkWFlLV25JcllYZzVjbXBaVHpCUmJGZzNNSEprYlZKVWJXRlNWMUEwVFdaQ1kzQkhaRzVuVFZGRVRISkdNVWhETDFWR1JtUnNRbkJDVWxWclZtVklkMFZDT1FwVldrWnBRVTFHUzFWdU5YcGtTWFppV0d0VkswMVhXbTFhTnpoNVEwSkhPRkZLTVVKbldXSndORlZCWVdOUWQxVlFNMmRuYXpsbVVtVXdVSFJ2UjI1TkNtNTJPVXROVUV0UmMyMVJOa3hDU0M5cFRIZDZRbXRDTmtSUE9FdDVNbVJhUzNGMmFGRXZNQ3RLTmlzeWNqbHpNSGh4VTNwdE5YRlVjbU40TmtFNGVFb0tVamxoUTBWVWRtdGtlbVpRY0ZJd01IbHRlbGwwTms1b04zRnNZakpxUjJac1dHWXJNR1J4ZUZWSU5sVm1ibkEzVjBoalNEUlViVXRFTDFCb09XazNXUXBuUms1VWVXMURkVmxsTjBkYVVGaFdNVmh0Y2xWV2RqTlFTMWRvWVZNdmQxazFkV1JRUjBGR2QzSmtjR0pUUzBGeGIwMXhSMjk0ZUVwak5WcE9OM3ByQ25OUVpEWmFjMFI2TUVzNWRDOUhMMWxSYmtWdlVGWlJiVkZ5ZW01ck0yZDFaRk41WlVaV1ZXOXlUSEY0WjB4dlNYZFZiMFpOVkRKbU1YbFRXR2xtTTNrS1kxcEpkRzh6WjFwNWNTdGpkakpHTVc1NE1HOHJUbHBPWTJsMlkzYzFNRloyV0ZGemJrNWtjemhtVkU1cE4weFNkM0pFVVRKa2JsUjBVVFEwTm5KcFN3cGFibGNyZVdFM1RGWlVaRlppUTBKVFNFRTlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5zZ2VvdHZ0bS1tajRjaWlzZC5oY3AuZWFzdHVzLmF6bWs4cy5pbzo0NDMKICBuYW1lOiBjbGlha3N0ZXN0ejRyMmNpCmNvbnRleHRzOgotIGNvbnRleHQ6CiAgICBjbHVzdGVyOiBjbGlha3N0ZXN0ejRyMmNpCiAgICB1c2VyOiBjbHVzdGVyVXNlcl9jbGl0ZXN0bmo3a25xdDY0cl9jbGlha3N0ZXN0ejRyMmNpCiAgbmFtZTogY2xpYWtzdGVzdHo0cjJjaQpjdXJyZW50LWNvbnRleHQ6IGNsaWFrc3Rlc3R6NHIyY2kKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBjbHVzdGVyVXNlcl9jbGl0ZXN0bmo3a25xdDY0cl9jbGlha3N0ZXN0ejRyMmNpCiAgdXNlcjoKICAgIGNsaWVudC1jZXJ0aWZpY2F0ZS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VaSVZFTkRRWGRYWjBGM1NVSkJaMGxSWmpJMFNWcEVVVVp1Umtjd1dVNVNjeTlHWTNORVJFRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdWR2R6QjVUWHBCTWsxVVZYaFBWRWsxVGtST1lVWjNNSGxPVkVFeVRWUlZlRTlVVFRWT1JFNWhUVVJCZUFwR2VrRldRbWRPVmtKQmIxUkViazQxWXpOU2JHSlVjSFJaV0U0d1dsaEtlazFTVlhkRmQxbEVWbEZSUkVWM2VIUlpXRTR3V2xoS2FtSkhiR3hpYmxGM0NtZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVNMVZWb3libE54Tm1GbVJYcHhkek4zUkVOU2FIZ0tkak1yTUZsS0wwTlpjRkU1YTA5amVpOVBhVk5FVTAxaGVqWkZUWGRSVmpndlFqQkliR3RJU0RKVVMyOTFWMFJMV1ROV0syRjFlVlZsVlhveFpWb3lWZ3BIWkdwWlIyaEdaMkppV21kSlQzZ3ZhbmxtYkROMFFXd3phVlJJTVRsdlN6TlNTbVpPU2xrcmRETnhVMGRCV21ac2JHZE9TaTlNUlhGalpEWnRVbU5tQ2tSelkxaHNlVXhHVld4a1VrTktTR3hSTVZZcmJ5OHlVbGxvTWxGR05taE1ObkZRZUdKUWFIRkdORmRXVXpOb2J6TjVTMVZzVmxsTGNXMXZPSGhuY1hRS1NuZHNTeXMxWmxac2EyWmFaVFJMYzJrd2RIbHJVM2RJWlV4M2NFSjFTMHM0UVM5SmREUlpUalppZDB0YU5YRlVSM2RRVERaTlRpOVdNM051TjNod1ZRcGFja2hzWm1VeUwxVklTV055Y0RaR09Vd3hNV3R0VUZCUWJVbHVUblZEZUZOSVlrOVpWVU52Y0VWUVJtMXhNbGdyUzFKM1drWlJOMDAyU1ZSS1QyTnNDbWxTTDB4TVVqbEpkRlYxSzBodmFHbE9XamhIYTI1aE0xaHJNbkZzUVdSVFdEWk5VVGhLY2pZeE1tNUdRbGxUT1RkeVZEaEdWVkE1V21GamR6TkpVR1VLYnpFM1IxVTJTRXQzYjJJeWQyZzBkbTR6TVhsUVJqZzRhR0pWVkRsNWNuWXZNVnBHWVdoa09GWlZOVXgwU0ZOSmJXNVdXa0ZtWldoRGRrRnlhbVpXYlFwSVpuZFVPRVp1YzJGRlZreHViR0ZqVUVjcmMxRndjM0JDY0d0V1JXczRVMmd2VUM5R1RHcHJTQ3R1V1ZGdlpFVkVSVkExY2tNeFptODNaV0ZvSzB4dkNsZ3JaMVpzT0U5amVWTjVia1pYUW0xRGEzUlVkV1p2Um1kRGJYTnZWR1ExTWpod1JVSkxRMVJEVmtObU5tSjZWekUwYzJ4RU1WaFpOVFZLWWk5MVZFWUtXREZXWVdOM1RXWlBVblpsZUZseVZXbExlR1pWYzNkTVRsSlhPVEYyUzNsM1FYaENaVkJNTVRRMlYwZFFiQzlNWVUxclExUjJiMnBwU1ZGbVV5dExUZ3B2VUUxc1FqRjROQ3N6T1hJeE1HdzBjRU5yUm5SUlNVUkJVVUZDYnpGWmQxWkVRVTlDWjA1V1NGRTRRa0ZtT0VWQ1FVMURRbUZCZDBWM1dVUldVakJzQ2tKQmQzZERaMWxKUzNkWlFrSlJWVWhCZDBsM1JFRlpSRlpTTUZSQlVVZ3ZRa0ZKZDBGRVFXWkNaMDVXU0ZOTlJVZEVRVmRuUWxGSGNraGhNazk0YkZZS1pEZzRPSFpaTkd0b1drOXZibU56VEhOcVFVNUNaMnR4YUd0cFJ6bDNNRUpCVVhOR1FVRlBRMEZuUlVGWlpHbHhaelZZYWxoTFlpOVRhRlJFYlVGRWJRb3pXWGN6Wm00dmNHRk1ORlExVGpCck0wa3pRVFYzUTI5MVIzcHpLMHgxTUUxak5UTlpha3d4Y0RKMVZYVnBSWEF3YW1wa01GZG5WbUZJUjFWdk1XaE9DbTk2YzNsU1RIWnBUWEpzT0U1d1kxUXhaRGR0T1hkbVZrNXNhMVYwU2k4eWNqbHVZMFJHTnpaMFJ6TnBPVVZvVkRseU1HTlZOa3BTVWt3NVJ6ZzRhVzRLWWxwVlpHTTFZVkpVTnk5blkwOUZaREFyVkhCVFVUQlhiVlYxZVd3dlkyOURhbTlvTUZCTGJWQTVaeTlZVTFGcFNVNW5VMHRMV1ZSc09GaEJiR3hzTWdvcmVITkxSbHB1VmtvNVVGZHdVSEpNUTJFMmFFMHhSV281VFRsMVZXeFhVMU5YUWprNVFVOUhOakpNUldsSE0zTXhjWFptVUcxMlNteHlVME16UjNSb0NsSXdhMHR3TmsxU2NVSkxUMEZwU1doaGFtZGlXa3RXTTB0NllYVlFXWEprUnpKWmFIQlFTblJNZFU5clZGRldTbUpzU21sdksyeFVia3BuVG1oSWNWb0tMME5MWlc5TlpVd3ZjMEpKVEd0SVJHUTNRMFppWjJRclJ6Tk1aRVFyZGxoWmF6ZGFNbFl2YlVOaVUwTnJVRWtyYUdkVGFtMUxXWEZVZDJGYWJHTktZUXB2WldOc1UxSllSRWwzUWxGNllUVmpkemQ1YW5SdGQyRlBVWGxLTm5aSFFpdHZiRUYyYTI0NWQwWjJTbmRTWm1kWFkyNU1Za2RXTWk5T2JqSjJTWGR6Q25adWF6TkJTWGRhT0cweFYydzBRa3BIWTJoRVkwRm5lbGMyTDA1b2RUTTNNaXR4VkZCcVJIUXljR1p3UmpBcmFraFFUV0ZCVG13MVEycGFRV3BxYlVjS01WbENWa2wzVFRCR05sQmpVMkY0VXpWaVpGQlRWbFZ0TUdGamNWbFVRMUJNYld0a1pIRTBOamRpVFRWQmRUTkRlVXh1ZVZkQk5XdFZhRzAzZHpGcmRRcGxUMWhwWTBveGFITm9aV2w0TVZsNlJGTXhPVkJvVHpWNmNqVjJUbnBOYm1GcmQzaFhUekUwTkZkV2QyRjFSMUoxYlhkaVRUVTJOMDlzWjBwNVNUUkJDbGxMY1RaSU5UWlRPR2t2UlhsaVpFeGFiM1JDY0RoRlBRb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIGNsaWVudC1rZXktZGF0YTogTFMwdExTMUNSVWRKVGlCU1UwRWdVRkpKVmtGVVJTQkxSVmt0TFMwdExRcE5TVWxLUzFGSlFrRkJTME5CWjBWQmRWWkhaSEF3Y1hWdGJuaE5Obk5PT0VGM2ExbGpZamt2ZEVkRFpuZHRTMVZRV2tSdVRTOTZiMnRuTUdwSGN5dG9Da1JOUlVabVVIZGtRalZhUW5nNWEzbHhUR3huZVcxT01XWnRjbk5zU0d4Tk9WaHRaR3hTYmxreVFtOVNXVWN5TWxsRFJITm1ORGh1TldRM1VVcGtOR3NLZURsbVlVTjBNRk5ZZWxOWFVISmtObXRvWjBkWU5WcFpSRk5tZVhoTGJraGxjR3RZU0hjM1NFWTFZMmw0VmtwWVZWRnBValZWVGxabWNWQTVhMWRKWkFwclFtVnZVeXR4YWpoWGVqUmhhR1ZHYkZWME5HRk9PR2xzU2xaWFEzRndjVkJOV1V0eVUyTktVM1oxV0RGYVdrZ3lXSFZEY2tsMFRHTndSWE5DTTJrNENrdFJZbWxwZGtGUWVVeGxSMFJsYlRoRGJXVmhhM2h6UkhrcmFrUm1NV1EzU2lzNFlWWkhZWGcxV0ROMGRqRkNlVWhMTm1Wb1psTTVaRnBLYW5wNk5Xa0tTbnBpWjNOVmFESjZiVVpCY1V0U1JIaGFjWFJzTDJsclkwZFNWVTk2VDJsRmVWUnVTbGxyWm5sNU1HWlRURlpNZG1nMlNWbHFWMlpDY0VveWRERTFUZ3B4Y0ZGSVZXd3Jha1ZRUTJFcmRHUndlRkZYUlhabE5qQXZRbFpFTDFkWGJrMU9lVVF6Y1U1bGVHeFBhSGx6UzBjNWMwbGxURFU1T1dOcWVHWlFTVmN4Q2tVdlkzRTNMemxYVWxkdldHWkdWazlUTjFJd2FVcHdNVmRSU0ROdlVYSjNTelF6TVZwb016aEZMMEphTjBkb1JsTTFOVmR1UkhoMmNrVkxZa3RSWVZvS1JsSktVRVZ2Wm5vdmVGTTBOVUl2Y0RKRlMwaFNRWGhFSzJGM2RGZzJUek50YjJacE5rWXZiMFphWmtSdVRXdHpjSGhXWjFwbmNFeFZOMjQyUWxsQmNBcHlTMFV6WldSMlMxSkJVMmRyZDJ4UmJpdHRPREYwWlV4S1VUbFdNazlsVTFjdk4ydDRWamxXVjI1TlJFaDZhMkl6YzFkTE1VbHBjMWd4VEUxRGVsVldDblprWW5semMwRk5VVmhxZVRsbFQyeG9halZtZVRKcVNrRnJOelpKTkdsRlNEQjJhV3BoUkhwS1VXUmpaVkIwTDJFNVpFcGxTMUZ3UW1KVlEwRjNSVUVLUVZGTFEwRm5RakZzVGtaQmVXVlFTelZVT0hkWVYxRmlNRkJQVUdsSUsxRm9VbGxaYTJNcldUSkpNalZ6UzJkdWMzVnZjRWx5THl0b1lVaHFNRlp5YUFvMk0xcEdVbEYzWkdaaVJuQXJTREJrTDNReWIzWjFXVlJuYkhnemN5OVRaaXRNYnpWM2NVeExhakZyS3k5cFprVmtRVVZDV21Sa1ZXSlRTazVpYTAxMkNqUlFMMHhRTUUxdU1uUkxRVm8zV0hGamQxSllkalZzZG5Ob05qTmtMM0psWm5Wb2VUVnVSemhYYjBkdVVUTm1SbUZIZFVWcFVYQlZNa2t6VW5wVmFrUUtOeXMwVmpodFMzaG1WR05wTkhsRVpuZFlhbU5RTlVFd2FYcDBUemRqZFRWd1lsTkxjMnhXV1V0clQxcEZja05IVDNCSlJFVTFibVpPYURCaVNtOUlPUXBUYlZKdFFUTXhjRFZLTlhjME9UQmxlbU55YzNsNVlUZERZbmhqTDA5UE1uaHdXRWx2TVZGcU1uRTVLMDEyUkdFemF6QjRkVEZWZG5GSFVXTldLM1kxQ25WcU56WlJWemd5ZFRWUFZreDNLekoxUWtkNGJHMXpjRlp0Y2twcmNDdENPRzR2TW5GWk9EZEhkVWRYTVRGSmFIZHBhM1JFWlhsMFkzWkZka3RKYVd3S2RVcHdXVVZ6V2sxSGVTdDFSWElySzNGRFJIQllSRTg0TlRaQ01FODNhVk5VSzBGMFJHMXRWMmM0V2pZdmMyaE5jamhGUVVaRk1GRlZNRWRJTjNaU2FncDFUbkV2ZDIxdmMxUnhkSE5VYzFKS2JpOHZRMDQwWVVaaFYxWkZNVzVOZVVOVWVtTkRlWEp0VEd4WEswVnpSa2RZUXl0QmEzUlFOVXBtT1ZaTFNrZ3hDbVI2Tkdjd1NsaE1iVkZIZHpSbFN6aG9ZVzFSVTJWeFNESXhSR0poWmxCaldWUnZSRXh3V0RONVVYWkZWbWQ1TTFSM1Z6UTVXR1oxUVROdlZXVmlRek1LV2pZdlMyYzBUR2gwYlVaTU55OTFRM0UyVFhwNVptNVhTWEZPY0ZwRk5FNXRWMFJJTnpGSFJHUjZRVnBVTmpSWVowRlhTMjQzSzFCU1IzQkZjR3hQYXdvM2EyTnhjVmR3WW1wamNXTktibFY0TUV0U2RsaFFhVkpFVjBZMWExQTROVGxYYW5wT2VGZFNlWGN6UTJ0a1JYUlJVVXREUVZGRlFYZ3dZV2h4WVdWRENteHVaV1JuY1RCSWIydEtXRmcwVGtjMWR6aHRPVlpzZUVzelZXMXNWRFUwVDNkMVkxZGxRV0pyTjFKWFVVZFphelpQUWpGNlZEZDRkbmhWUnlzNWMwMEtlR3RrVVd0WlpHcDBWSHAzU0RNclppdFFNV1Y0VlROdGRVbFJVMmRKYWpNM2NtbzBNV05TWm5NdlZYWlNVbWxvV1Rsd1ZWcHlRVVJ0TmxWWlRuUnROd28wUkRSNVowNXJOemcxT0N0WldWVnVkRmd5V0dweWJWUkNWbmd4WWtwa1J6SnVSRk5CZWtoTVRFeFFjRTVDTmtsM1VrbzBPR2haTUhrNUswaFdiVm8yQ21SNlYyRkRlVFZHTm5SaVltMU9SVlY1ZWt0VmRHbG9ZM2RTSzFKaVVEVTJaWGhUY0N0eloxRXZiazFtY2pWYUszTkJXWHBETlN0eVZFWnRSbWh3U1ZRS1JsUnBXbFkwWkhONE5EWmxPREZ3UW1Gbk9YaE1SRVpKZVhkWlYzWnlVVmh3UTFWVU5HeEJOalpSU1d0MmNYWkhTa0ZvYWk5T1FsQlpNR1JJWWtodlZRcFhNakJoYTB4UlQwcG5TVFpVVVV0RFFWRkZRVGRvU0hJNGMzQmFjRlZ0VnpaWFFWaEJhWGhhV1VJNGEyNDBWMUZoYkdoUk16RkhORmMzY2pSMFpESnJDbVZCUkhOM2NYRXJWbU1yY1VOVGVrZE5ZM2xGV25kTGRFeGhlbFZpWVdwMWJtNURVRlU0VVM5dU1GVjRObFJIVlVKWlRraG5UeTlEU0djMU5GcHdTa2dLU2pZMWRVUTNkVE12VVU1MVpWZHNjVmQ1WkcxemIwbFVZa3Q1WldvelNscFBURTh5UVZNMVdXd3JXSGhYUlZWeWFGcE9hWEpJVFVob2JqWm5XbEF5UndwRlJqQXdiRzR2YjA5clNXdzFjbEZNVEZOcEwzaHZWbmd3Vmk5a1kzbFJPSGxLU0RKS2FEbEZXVk5uWVZwRVdVRXJOVWcyUkU5bWFUazNjV05KZDJSTENsWk9ZMVpxWm5wb1EzbFZMMEpqWmxWQmVIUXhaM2wyUzI5cFpXaEVZVVZXWlc5Q1lUQktTMlZxTkVsVVJFTTRXbEJHV0ZFNFNXTnplU3N3ZEdoQlVqSUtRVTUwTUhjek1UWmhOVnBRVkVSdmFqSXJjWEI1Y3l0RmNsTXdTRE4ySzJsSE1YSTNSVUZPWkVOUlMwTkJVVVZCY3psdmJXNURWVzlOYWpsbk9VbHFVUXBKTDNveVQwdHJWaTlCU25JMlprcEJkSEpWTUVSdGVtdFFTRFE1VEdONVltUjRURU0yWW5GSGR6TjFZVTV3VlVKM1RFUnpjbUpFUlRsamRERm9kazFJQ2pWYVNreE5iRXRSWjJwMlJFcG9XWEZFZDNnNFYyMHZSVkJVZGt0elluaGliQ3RNU2s0dllVUTJjMmR3WkhOcFZHRlJNVE5NYTBsVVZUZzRkVFkyVjJzS1pYcDFWa3BLVkRKQmRFdEpWQzlPYWtsMWNWRjJSMHBKVHpKNWNIcDFTa2tyYkRacFRXb3dRWFJwYWtNMlpFNXhPRlJ2WTFCeWJXTXZRM2gyYWtodVJnbzVjVGRYV1ZSVlRFeEdNMHBhUTBwSWJreEhkVWxuTkVoWk1FTkRURmR2VjBaSFF6VkVNVTl1YjFwNmJYZDVNMjVtTjBGdlYwRXhUV3hrUjFGaVJGRTBDakZHTnk5VVMyd3ZPRzlhWmxsVlFsWTNORGRsVW13emNVaEhZWFZpU1hBeWMwMW5WR1U1WTNseVIwTTJVbGh0U1haU1UyVXZUMDkwY21Sd2NIRkpTWEFLV25SeFNqTlJTME5CVVVWQmMyOXVNRTVzS3pCbVZGaEZTRWc0Tkc5cFQyRllNMFJpY1ZaeGExcEhlVnBOWmtZMldHbHFTa3h5VEhKRWFXYzNXblkxWmdwM1kwUTRWblZqYVU0clUxZEJlRGRLZFROQ1lUSXlZVTlzV0c0MmMzbHhRbEZFVUVoaE5HZElOVEUxT1hWR0sxZGFOalJaWXpKM1QwOTBPR2R2VjBnMUNtRkxSWHBNTlVKNk9UWnhSRFZUYlZJMFlsWlFUVWR5YTB0S1lqRjZjM0ozUnk5TFVsaGpOVFpDYWtoNlJsUnpja1ZLTVZWTmIycEVRM1pEY21GS1lrTUtSbFJpV1dJM2VtdHBUbWd2WjJsVkwzQXpURXRuTDJoUlRWZGlkR1k0WlVKSk5DOU5kM2Q1VWtSb2JEWjFhMVZLVUZKdVVUQkxRU3REV1ZKSlNWQlVaQW96VG5KM0syRm1WVUYzVTB4NU0xTkVRV0p5VVcxSlZVOXpOVVZvUTJwNE5qa3djbTlsUVVjeVdHbzFTbVJMYTJKWGJFRnJRekZpUWtoSlJqUm1jMlJUQ210UE4yNTRNVmgxTkVwWFRFRndUa0ZuUWswclZFOXVVSEU0TkN0aVRreHZObEZMUTBGUlFVaG5VRzFIV0hGVlYzcGhkMnRTVVVwSmEyTXhiM2xyVUhvS05sRkJjVlppVUdZeFExRkJORFZNYTJocVRURlhSMGRITVhkaEsxSnlUM1JUU21jck1XNUdiSGRFY1ZObFducE9USEJYU1RsSFQxbzJTV1ppUW5kNWFRcEtiRmQ1WkVOU09YbG5aM1l2Y2pCRk4yUm1UM2c0VTNOMGJURllORFozYm1OQ1QwdFVlRzA0UkVaUWRXb3hVVkZUV0hkeFRGTnlPRU12Y2pKeWVIaHpDa0pKWnpaSFNuTXhTbEpzVDJWSVNFZDNWMUo1UW5WeWF6aFpiVE51VFZjM1NsVlFkR1kyZFRFNWNrcHpTSE5aVVVadmVscFBkSEIyWWxoMGQyZExMelFLY0hFNWFVNUZTVFpJTkhZeFdtZHlVMVkzUWtwUWJubFhObFF3UTJVMmVGZG5ZVmczZUVJMVJXSXhTekpOV0dGVVFuVmtWVFZ4TVN0dU0xQkJSakIwVmdwak1GSllUaTl6V25neldrVXZjV28wTTJ0WkszUldMM0o2VGxkbWF5dHJNR3hOV2xGNFUxZzNlRVpOV0ZwQmNVcHVlbWxUYTBsVWJFeDBZVm9LTFMwdExTMUZUa1FnVWxOQklGQlNTVlpCVkVVZ1MwVlpMUzB0TFMwSwogICAgdG9rZW46IDRwcGR4Y3J4eHZlYXMxcTNpd3RjMjl5MmVoOXR5YjQwZjNiZjRkdXdhcHBmZmo4ZXV5N2VydWZjbnU2NjhxZnhodGp5Z3NyYXF6anlkeThuZ2x6OXF5cW5icms5dWVxdmtlZGpiMXVua2dzNDdrZXF3dXJpeGp5ZnRxbGplbzhqCg==\"\ - \n }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": + \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVVscmQwNU5ja1JuVFhkVE5VaDRVSFJZZDJkc2FVVjNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDA1cVNUVk5WRVYzVDFSUmVWZG9aMUJOYWtFeFRYcEJNazFxYTNoTlZFVTFUa1JLWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNuSlFSREJsYUdaWGNrZHNUbEpzVkVJdmJEUXZOMHR2Ym1FMU1XOXBla05JT0dNeFVXVTRXa1UxUTFGelVsTndWbUpVUlhNMVdTdEdhbGt3SzJSSVJUSUtkWGxJUTBSWmVqTkNiak4xYlZvMU4yWkllbXhJTmtOMVZ6VnRRVVpISzFkeFRUWlViamhGYlZWU2VIZHZSRkpETjFGRFpWWXJlak5rYmpOUVFXVlFUd3BNWnpaR1VYbFFkbXROWVVSNFpIcHRXbmRyU21Ga2QwdEJSWEJ3V25oUFpqaEdSVGsxWVRFclNtbExRV0pWVVVWSlFqRnFNV0pvVlRSdlVYWk5kWFpVQ2pNeFRERm9WVzVoVm1Ob1VYSnVlamhwY1RKak1rRkJRbVpETUhOWFVrNVVWazlVZVhJclExUkNRMGRaVkU5dmNXazNaa3RsZVdOS1NVSnpSMnhpUnpZS1ZtbE5NbEJNUVhKSVYwOW9kVlY1V1RneE1EQkVOMU0xVG5Kb2RYUjFVekV4Y0NzMlIwUTBVMlphTlVscWRHOTNWamMyY1hRNGQzVkdNREkxZFRCMFl3cEtTMlpoVFV0VFRYTnNiRFJYUjNsM2MyYzBTRFZ5TkdoaU0ySnJZbHBzV0Rod2FXeEhSbGROWlV3dlpWUnRWR2RuZHpWRFMxTkhOME5uWVhKNFV6QmtDbTFNU1N0YVVGVXhWM2hqWTB4cWJHZDFjbmRJSzJ4TGEyb3lkMU0zVFU0M00wOHhORVpaVHk5bWVtdDFURkl4ZFRCRFVuZDFORk5XT1U5eGR6SXJkM0lLZDFNclVrcDNaVmhEUjA1c05HOUJhRXRTYUVKeWEwaDVZVWRWZFVORFJYSmpWSEpwVDFkNWVYcDRlWFZDV0daa2FsSjBPU3RMSzBaVlltRnFTRFJtYVFwSWIzQnlSRFkzUXpWVlVXRnJNMHQxWkZGb0sySlRjakUxY0Zac1dYRnVVMEp2T0daU1QwSkhhSE41ZFRkVFdpOTZTbUZSZERSNWFsTnFWa2RVTDI5dkNtZElhbFZqVDJJMmIwUm1XRlZxZW5wWmRUUm1aVU5hWkVoblprdHJia1E1ZUZkWGRqZG9jVFppVURCYWRIaGxjMmsyY2tkSWFWSXhObXhDVDBveFFtUUtlVFJ6Tkc1VlYxSk1Mek12WVhrd2RGVTJLelJ0V1haMVNTdEpVRlZpVmtOSFNFMURheXR1YTAxaFJVTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1RHeEphbkp0WXpKSU1WZEtRWEJRQ2pkcGRHVjNNazl4V1VVMGMwMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlFqZE9kM1JPTUV0T1NrOXBWelJHY0VjdmVXVkJaMmR6YUdJS2FrTlhjSFY2Tm1kMlNYTkNUV2x2VFZwdlUySXdTakV5TUhSR05UTnlWVGxzVVhWWllUUnlXbVZzVDJSSFZtRllkRlprYWtWc1FXSXJkR1ZzTTNKSFRBcE9XSFJWWkc1bGRXSTFSSFZNVG1WdVlXdDBWVGRvY1RkeGNDdEtTakpYTkZGVVdVNUpWa3RvYTA5cFFWZFNWSGd6Y0RSWmRFUk9iRkZDVWxJM1NFeFhDamN2TTNaQ0wyZEpPV3BEUkVFNVJrSnVRVzF3TDAxdFFUWnRURkZaY1U1a00xaHFURE5HWnpGR2FXbHNXR2xUZVVkYVMzbFlRMmxPZUhVNFlYVm5iRkFLWkhKcmMxQndTVlo1YUd4aVJVTm1PWGh1VkdGaVpTOURhVzFaU1RadlNHWlZZbEJqY2pkbmFXSXJWa1ZwU2tadGJXaGFSRWN2TkZFNE5tb3ZTelp3Y2dwMWREUk5XSGR6VUdWcmFESTFhbVZtTUVOdlNqazJUWGRoUkhNMGFrSlRkMUJEVTNJM1dHaFpPVkJqUWs5c0x6QjBhMFJTZW5nclQxSTJiRVJ4VDJGRENrTnhOWGhzYTJOSWRubE1SVlF5ZFcweGMwdHRaRGR0ZEc1TU1YTkVhbGxSYkdKaldXeFpZVVpqU1ZsU05uRm1aa2xUWTFFd1dFRXdiMlE1VnpFNGRUY0tla05wTTFReldXcEVPVVV4Y25CSmVqZzFVV00zYzJGMVZ6QnFiRUpDTUhVd1NrUXpURTFSTTJGaE1YRjFNWGgxUm5sTVZFRm5NRkJMVERKVE1pdHRPUXBoUW5WUVluUjBSMDF5WjBSb2JHUlpWbkp6VFUwclJqZFVhM0pJUzBkc01raDJjRGxPWm1ablJYWTFVMVpVZUM5Q1FrOWhORzVGV21SNEsyWklVbWxUQ2k5M05uWjJZM0JtVjNoNk9FTklhR1ZSTjJOTFFUSjJiMEV6Umtwblp6aHZRVkZDWjFsamNsUnJLMHBsVm0xRFdtNVNWR1UzTTBwSU5qQlBTbE42YzJNS2FHMTZZemhKY3pGR1JUUnJiRlE1WXpnMVFWSjZOVEV2VlVSUFlqUTFTRmszYW5ab2VFdE5Na05wWmpWSksyNVJWR056YjAxeVVtOWhNWEl3Y3pWcmRncEdibTVLWlRkbllXUXhNeXRvU0d0YVJIYzlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5zZ29kY3o1eS1wY2VnOG9hci5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdGRjcnZyeQpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdGRjcnZyeQogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdDVuN2E1b2pydmFfY2xpYWtzdGVzdGRjcnZyeQogIG5hbWU6IGNsaWFrc3Rlc3RkY3J2cnkKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0ZGNydnJ5CmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdDVuN2E1b2pydmFfY2xpYWtzdGVzdGRjcnZyeQogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklWRU5EUVhkWFowRjNTVUpCWjBsUlFUY3ZWMlZMU2pkSU1HeEhla0ZCYTJrNVVVcEVWRUZPUW1kcmNXaHJhVWM1ZHpCQ1FWRnpSa0ZFUVU0S1RWRnpkME5SV1VSV1VWRkVSWGRLYWxsVVFXVkdkekI1VFhwQk1rMXFhM2hOVkVFMVRrUktZVVozTUhsT1ZFRXlUV3ByZUUxVVJUVk9SRXBoVFVSQmVBcEdla0ZXUW1kT1ZrSkJiMVJFYms0MVl6TlNiR0pVY0hSWldFNHdXbGhLZWsxU1ZYZEZkMWxFVmxGUlJFVjNlSFJaV0U0d1dsaEthbUpIYkd4aWJsRjNDbWRuU1dsTlFUQkhRMU54UjFOSllqTkVVVVZDUVZGVlFVRTBTVU5FZDBGM1oyZEpTMEZ2U1VOQlVVTTVVMU5zV0hGcFlsQnZkREZtVW5CdVFtcHlhbklLY25kTWFYb3dNa3BzT0VwVlRHMUVaamd2UTBWM1NFWnRORkpMUm0xWk1sWjFVMDF0VlZWRlJtVTFhVE5PYUhjMmFFaHZUbWxWY2t0eE9XaFpWbXQzV2dvdlNreHFNa1l5Umt4MFlsTlFZM0pLUzNoTWQwWkljMmxVV25Gek0zUndUREZQVEhoQ2QycHRWRXRXWlVsVVQxVkpkSGxpUm00dllraDVWMGxEY2pVd0NtbE9UQzlGYm1SV1J6SnJRMElyVFRoWWNuaDBUMVZPYWt4UFYwbGlNRkpQV25Cb05HZHFkbVo0VWpZeU1XeHZiRk5sVlZWS1JFSmFTRGRxUm5kQmRtY0tRVk5ITVZWWE0yTkdNSGROYm1wWmJqWmhVWFI0TmpodVdVbFJVM3B5TjFOaWVYUnZlRTlwZW05cFJXSnZaV1JqZFN0U2RGTXdlREJDU0dWcGNXZ3ZiUXBSYzFCbVdXNVZjalExT0ROcFMxQkdXRXBXYlUxQmJETk1iRzVsUVVsR1JrNXdUbFpaZURCRmRtUTVaR3hWWjBNNWQyZHhka1pMYTJWc1ZYSndZbFZyQ2xwSVFsUXllRUlyVm01MlJtcEpLMWxSVXl0QlJVTnpVM2g0U2poNmJVdE5Va2RtVDB4b1kwTk5PR3NyY0RSSVp5OVJWbWxJYjJGeVRsRmpWMFV6VnpnS2NsQnBlR05MY25CRlNEVTJSVXhOYUdsWGJ5OWlORVpxZVZWSVJVeEtPRlZ4U2pkd1p6UnlMMWhUUjFRM1VrWndPWEZWYUVaUVIyMWFSM0JFTm5oWGN3cEplbVYyYTFGMlVIQk5ZMUJHVmtkMU9HOVROR05ZUTJGQmIwWXhjM2RIVld3M00xRjVjRzkyZG1zeFJWSm5hR3QzY1VKV1pGQkthVk51TWs4clEzUlhDbmh3VVVWd2NGRlJlV1IwYjFGeFMzcE1RbFVyTkZaQlJGTjJPRUUxVUdwNlJYTkZTM0JGUTNRd2QxSllWUzlHZFVvMk1HZFdlRlJFUW5adFdYVlRXakFLYWl0NlpFTmtaUzgxVEZWMFpsZ3hPRTE1UjJjeVRqRlVUbEpvTkUxcVNGaElTMUF2ZGpoME5UbGlTbVE0WTNCd1JIZEdlbTk0VGpWWlpFSmFkR1V2TkFwallqSm5aM0Z2Tm5wS01FUnFXSEZGYTFWUVpWWjNTVVJCVVVGQ2J6RlpkMVpFUVU5Q1owNVdTRkU0UWtGbU9FVkNRVTFEUW1GQmQwVjNXVVJXVWpCc0NrSkJkM2REWjFsSlMzZFpRa0pSVlVoQmQwbDNSRUZaUkZaU01GUkJVVWd2UWtGSmQwRkVRV1pDWjA1V1NGTk5SVWRFUVZkblFsTTFVMGsyTlc1T2FEa0tWbWxSUzFRck5ISlljMDVxY1cxQ1QweEVRVTVDWjJ0eGFHdHBSemwzTUVKQlVYTkdRVUZQUTBGblJVRnRTa01yU21kdVVrRm9OMUpGYlZZd1pYbGpjd3BJV0VOc1lUSTNNaTlpTTNGM2RHZEtjek01UzJKV1RtaDZNMHRFV0V0dGNYbFlLM2RGTVRsRGJXdHJaR1ZpVlZsU1Fsb3ZUbWwxUzAxb1dFSkljRFpTQ2pNMFNsUkpUMDVLUWxCME1WWjNRME5DV0VsQmRXWlZObG9yTlU5UE0yaHlNSGRYVDBwUVowOVpOMEZHVW5Wa05uRlFOR3RrUWs1TVVFczJkbXBUT1VzS1UzUklObkp2YkRkekszSlZZbmRMYkVkc09XOXhTWEpVUm5kUVpUZGtZeTlVWjNwUVpIWndUMjVXWjJneVYycDBTMDQzTWxRMU9WWm1NekZ6Tnk5TFJ3cHBPRE54VDA4d1RTOUtSVVYwTVV3MmQyWllSRWxaV0hSV1JsbFNUbmwwWjA1Nk9GbGhVRzByVkVKcU5tSkNiVzh4Y2xObFZqSkZZaTlMV1ZneFJ6Vm9DbGM1YUc1bVJsZHJibWx1T1VkdGNHOXRZMUJ3VG5KUU9UWm5NSFJpWW1GUWFEWTNNbW93UmpCclRua3pjSFl5YVhOeVRWTndabUo1VGxSVk1XeGtheklLVVVWQmVXSjFRVWhIWkVKVE5FMW1RbmQyUkRSeU1VaHhkVFV2Y0UxUVF6ZHFWbTlQTmxOUlRrSllRVzltYjNoaVEwVk5kREZ3UjA5UFZrOVlTa1IyWVFwS1VXTkhUa1E1SzNSWVUya3pSSEpXVmxGUVluUldhV1pNYm1acmRGQTVlV2hoVmk5dVRWSktTa3QxVVRndmNtVlRORlZ1UldoRlpIbDFaM1Z5WWt4VENqTlBLMkp6VjNOTmJqTlNZa2N6UTJWcE1rTkRXVnBtTUZNMGRXWk9aSGhUVWtaclJFRnZOWEIwWTFwRVQyWjVjM1IzTWpONE0ySlFWVkJJYTNwRFEzY0tOSFptVDI5WE0zWnlVUzlOTDIwd2FYZENkWE4wVjJ4S01IUXhjVkJoTjNRclNEVXlSVVZRTkZwRk9WVTRRVzF4WVhGc2IwWlVValZJTHpJeWJXdHJWZ3BVYkVkSlluaDNVVlJvYVRNemRuRTBaVWhSY0ZOTVdTOUVWbXNyU1hSVlEzSkRSRmxOUlRKbWEwSkdlVWxCY1dSbU9ISllVWGhtYzJoU1dWVjNTbE5vQ21neVJUaFpiVVJVZVRsU1JUQnFUa0pSTUhSMGFsWnZQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MwRkpRa0ZCUzBOQlowVkJkbFZyY0ZZMmIyMTZOa3hrV0RCaFduZFpOalEyTmpoRE5ITTVUbWxhWmtOV1F6Vm5NeTlRZDJoTlFuaGFkVVZUQ21oYWJVNXNZbXRxU214R1FrSllkVmwwZWxsalQyOVNOa1JaYkV0NWNYWlpWMFphVFVkbWVWTTBPV2hrYUZNM1Z6QnFNMHQ1VTNOVE9FSlNOMGxyTW1FS2NrNDNZVk01VkdrNFVXTkpOV3Q1YkZocFJYcHNRMHhqYlhoYUx6SjRPR3hwUVhFclpFbHFVeTk0U2pOV1VuUndRV2RtYWxCR05qaGlWR3hFV1hsNmJBcHBSemxGVkcxaFdXVkpTVGN6T0ZWbGRIUmFZVXBWYm14R1ExRjNWMUlyTkhoalFVdzBRVVZvZEZaR2RETkNaRTFFU2pReVNpdHRhMHhqWlhaS01rTkZDa1Z6Tmlzd2JUaHlZVTFVYjNNMlNXaEhOa2h1V0V4MmEySlZkRTFrUVZJemIzRnZaalZyVEVRek1rb3hTeXRQWms0MGFXcDRWbmxXV21wQlNtUjVOVm9LTTJkRFFsSlVZVlJXVjAxa1Frd3pabGhhVmtsQmRtTkpTM0o0VTNCSWNGWkxObGN4U2tkU2QxVTVjMUZtYkZvM2VGbDVVRzFGUlhablFrRnlSWE5qVXdwbVRUVnBha1ZTYm5wcE5GaEJhbEJLVUhGbFFqUlFNRVpaYURaSGNYcFZTRVpvVGpGMlMzbzBjMWhEY1RaU1FpdGxhRU42U1Zsc2NWQXlLMEpaT0d4Q0NuaERlV1pHUzJsbE5sbFBTeTh4TUdockt6QlNZV1poYkVsU1ZIaHdiVkp4VVN0elZuSkRUVE55TlVWTWVqWlVTRVI0VmxKeWRrdEZkVWhHZDIxblMwSUtaR0pOUW14S1pUa3dUWEZoVERjMVRsSkZXVWxhVFV0blZsaFVlVmxyY0RscWRtZHlWbk5oVlVKTFlWVkZUVzVpWVVWTGFYTjVkMVpRZFVaUlFUQnlMd3BCVDFRME9IaE1Ra054VWtGeVpFMUZWakZRZUdKcFpYUkpSbU5WZDNkaU5XMU1hMjFrU1M5ek0xRnVXSFlyVXpGTVdERTVaa1JOYUc5T2FtUlZlbFZaQ21WRVNYZ3hlSGxxTHpjdlRHVm1WM2xZWmtoTFlWRTRRbU0yVFZSbFYwaFJWMkpZZGl0SVJ6bHZTVXR4VDNONVpFRTBNVFpvU2taRU0yeGpRMEYzUlVFS1FWRkxRMEZuUVc1RVNVUkxOVkE0T0hSdmVWVnhlWFowUld4U2VubHdZamt3TWxwaWFrVk5OblZ3WVdodVQwWjRaMWxJYW1neWMyRjRTMHhCTUVsREx3b3hkVTVxUkdsNGFrZ3pZVlJYSzBWVFEyUkRNRWgwT1hreVpIRTFVV0pJVERjd1ltSjNkRE4xV1ZoRlJVeDVObThyU2tOMVkzWlJSakZpVDFSRlZXZEJDa1ZWVGpCMmVuTmxVVUp6ZWpWRU1DdG5WbGN2UkhBelptZDBabTVyY0Vvd2NrbHhVblJEV0d4c1ZuSTNhVlVyTVN0TGJ5dFBNMVJsZDBwWFJ6RjNUamtLVjA5RGFFOVVhM016ZFhWYU5XSlRjMmQzY1RKWFExUXlTbkpvVFdKbE9WZFRTVmw0WTFaNmRTOVlVMDl3TVZOSVdGUndNVVpUVVhBdlVucEJjazAxTXdwMmNXVkROVEVyVGtrNGJHNURRbmRJYzBKRlJtNXBXbEZIUjJsalUwRnVRV1UzT1ZGWWNGUnhSQzlaTlUxUVFtaE9SMlV2Wm05Q2NtNUJPRkJEUlUwNENubHJWMmxTVFd4bWRGQjNNa2xIUVNzNFRISmlNRFpFWldORlJEazVaMkpGVXk5dllVOHhXVXd3YWtZMVMwUkhhbFZtTWpacVJsVkxRM2hKZDBKVVdrTUtRazk2WkVsemR6UldWRGhzVm5Bck5rTkVWWEZ1ZVUxbmF6RTVOREpZVkZWSk56RkdUamQ1WXpCSVZsSkRTRUZHTmk5blFtTTVTMDlyYkRJeU1ERkZWZ3BOVDI5bFNYQm5Uek16Y21acWRFeGphR2xHVlhaUFRuRkxRblJ2ZHpCdWFVTlBOak5HTVhsNlVqWlBOR1p5YlRBeWRVMVJSV1l5Vld0cFEwdFdlak5pQ25OM2JsbE9VVzh5T1doM09XRnRiVXQwSzAxaWJEY3ZSMHhoVDBOck5ERkRZMGgyYlRJNU5rOU9jRWwzWXpsdFFVSjFOVlZtY0V0dVNIaFVkbEJ6TTNVS1pGRnRWVWh6YjNCaWRUSkxNRzV5YVdsRUswRk1SMVowSzA4MGVWZGpaMlpZUVVGRFZWTXJVbWxDT1ZkbGJuUk9ZblZvZGtac2VtWjBNRWg1TUZoclV3b3hTazEyY0haU1dHRnlkM1ZJYm1KYU1GbEhibXRTT0VkVVdFRnBXVXRoY1ZWSFRGcGpja05UVlZGcVp6QjVTbXhCVVV0RFFWRkZRVEJOZUcxaE0yUTNDbmhKVWtZNFl6ZGFTbG8yUlhSNlQyTlRVbWRzUTNSb1owdHVaMnAzSzJaNFpDOUJVbmxqS3pOekswSnRkMnd4TVVFMGVGTk1TMVpOWWpGSlZqVkVNM01LTUVnd1kwTmxabFV4ZVVORU1sQXdjVmgyVGl0a01HOTJTMnR0Y0hWUE1sUkZOMkkxVTJ4d1YyMHlNVWxDT1dOd0syVXpNbVpWV2pOYVJVaHZaM3BNTVFveWRIVm1kWFJNYVdGa1MwTmxhUzlyTjJaT1ZqZE1OSGt5Y25ZemJGQlJRWEpEV0RKa1RqRXJXR3h6V1RoRk5IaFBSbkpYUkZGWWNtNUNibFJYTjBZMkNuWk9OREpsYjJscVFuTkxOV1Y1VEhKMmNVTnJTM0J0VTFCTmRGZGtSblZyZFd4SlZXMXNaM2hFV0VoV1puUXZia3h1VjNobUx5dDZOVEJrUVhneFRIa0tjQ3N6UWxrMGVtUm5iVWwyT1hob2JYTmhNSFJDU2xoaFozWm9aMk5qV0N0blZYY3ZZMlZNZFRkQ1lXMVNkbkU0WVhKeU5YUjBNRll6TUZKclRYVXlNd3BLUzBObE5IcENRblZ4ZVRnclVVdERRVkZGUVRaQ1QwZEZlbTVFWXpad2NGWlNLM0JJU2t4cFlqWnpkWHBoYm5kS2JVRnVZWEpWVDNsUlpuZ3hjVXAxQ214SmNWUm5PVXRSYTFnNGVYZ3plVmR2TUVSdlYwdG9OR2s0YzBwTWNrODFVbU5VYjNkNmRsUTFiMnh6V2tOMWQycDZjWEpCVFVsdVRuTnFSRzFsVEZvS2VqWjJhVnBZYTFOalYzaG9lV2hFY2psbmEwNHZaWHByUm1KWE1VSkJVVlJsV2taSE5HZGlOSEp0VTA1VVFYRkZSSGt6ZDFOT1IyWlZPV05OTWpWTk53cHZhVmc0V1dKalRrOXpTelZtSzFReFVWcDJaa1ZNY1dJcloySk9WMFpMT1hCelZFMWxUVUZsV1hCS1pEVk1TalpHVVdkdllXbHFNSEZVY1ZwamQwdDRDa2xtZVRaUFZsRkxVVlYwY2pGRGNuZHdWMFpSU0VNelJYaDZiMEYwTnpaV2R6VlRUVUpwV0N0bFUwMTFiRTFQYTJWUlR6RTRhbHBNZFRWUldXWTBhR2tLV1ZSNUsxb3djWFUxT1dscldETnhOWFpVVnpaclVtTnpTSGRQUml0YWFGTmtVVGw2YzB0cVducDNTME5CVVVGRU5VdDJUVTlVUVdadEt5OUtPRWhrZHdwRmFVdGlXQ3RVT0Vnck1HYzFTMUF5V25OTlZEbG9SVEJyVlRscWJXWkljemh5VVRONk5VcE5MMHRNVkc1cmJITnJabFpEYVdvd1QweHBZMFp6UlV4NENuUXZUamxoYTNOT09XcENXR1pTVTJkRWVuVlJOMU13WlRSMmVVY3ZSMUU1UW1FMlowcHplbkpyYUhCVlpqWnVaVkJ5VW1STVpXZFVjWEZEZURGU2FsQUtja1pOZFdkQ1NXVjBZbXBYWW5veE0yZHhWemxMTUdWUU4ya3hTVkpLUlVWd1YwbDZjVTlIVjBWWGRVbFdjVWh6UTFSak9YTklUaTlpWnpGS0x6VTBOZ3BzUVhKMFZuUjBZV1JLYUdKRGRqUkdSVU15VDJka04zbGpia1ppTlRKVlUzZFNjV2RCVVVSSmFIWXhSMU0zYUVwRFlsVldaMjFDZGpkVGFqY3JSRnA0Q2twbEsweENaazR3VVV0NGEwNHpPRnBxYUZGUFUzZHFVakZIUVdsbFdEZEhMME13YUdsaE9WWjBhVXhPTTBKV05sVnJXV3RDVUdGNlVXbE9NRlJSVVUwS2RsRm1Va0Z2U1VKQlJXOUlSMFZvTDNJemJuZDZUMHR5VlRjeFlXMVZTVE51Tld4Wk9FNUxPRGQ2V0Zwb1ZuSlpNM1Z4ZUVzMFlsVlpWazh5VldkcmJncFJkVXBvVDI5bVpYZ3pObTlXY2s0ME1ETm5SRTlyUlc5SE0zUlVWbFJrTDJSSlZFeGlkV3g0VGtkVWMybGhaWFpEVEROSmJpdFFabXg2Y2pWRlRXNHZDbGxZTkdOUlltaGphMUZ6UkdsdmJtMVRWbEkzYmtZMk1USmFPVEY1T1U5T1NGbHJOQzlaUkN0RVZubGtRMU0yYzA1V2VrSk1WVGtyZDBjdlJ5OVZRbGNLU25WbVJqa3ZiWGx3T0dac1ZIRllSbW8zUkhoNU5qaHljbGhIUkVSMU5IZGtRMVJyVkZrM2VEWkVjR013UWxrdlN5OHlSWGxWTTI1SFRuWTJhemMzWVFwUFVUUlliVWRYV1d0bU5EZEdlamRhYjB0eU56ZDZabEUxV1RFNGFIaDZTeTlUZGxVNFJucDBjM2hqVFM5TlJtSTNlV2xZVERWTFJ6RjBSMHRCUW5KVENtWjZVVFZ4U1M5VVYwdDVOV05KYVVGRWFtUmpkMFZwTkRSb1ZtazVkamhEWjJkRlFrRktaazVwTkhWdWEwczFhSEJTV25SWE1tRlVkWFoyYzJjdk1IQUtNRTlIUmtjdlVYVXhhVzV4YmtGVlNuRmlVMVZLT0ZVMlRVbERPVWhMUjBVeE5sTmpLMVF2YlU5aFkzTlJjM0ZFTUhOb1dWbzJZWHBzVmxGaWNHdFBZUXB0WVVzeWMwWXpZbEF4TUdFMWFIWllhRlpOY0ZscVUyeGhUSEp3UVhCbU5rUjFXVlJrWVRkcFUxbzNUVEpYSzFvdk5VRlFVMnR3UmxScVVHRXZaV3RIQ2tWTE9GSkdVelpSYW0xa2VYQjFlVmhHT0RoVVJYZ3JOV2xrTURrNFpHRjJiVnBIWm1KSFQxTjNRalJSUlVRMVZ6Z3JNREl3VHk5NVRFMU1aVlphY0VVS2NHZ3hWbEJ5VmpWV09WUTFia3hNYnpSalNUSnplVE5RWWk5bWFqVXdTbUV3ZUhneFZFbDNSVVI0VEZCQ04zcHVlR3RYYkdGV1NqRk5ka2h0WWpWc2JBcDBjMUZOU1c1TlJuUTJWamgwVHpoUU9VZEpZVkJWUkZkblNTczRXV1J4ZUZSSEx6WnVUV3RpVUhkRWRFcDNRMjlIUTFsbFlVSjBTMDQyVVQwS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiBod3psN3pkbXFkdDc4YzVlNGZ3NjB5cXluY3N0bTF3YWtkMXFncTJkNmpjMWVuNGpvbDB4eHIydHRlaGZ0ZzQzODlyamhub2F2Z2Fkc2lwd3plMGFoYXpyODdvdnVkYmlqYzdmenlkMGQ4aGx4b2U4eDNtemU0OWNkazl6aTE4OQo=\"\n + \ }\n ]\n }" headers: cache-control: - no-cache @@ -1048,7 +1124,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:43:13 GMT + - Thu, 29 Jun 2023 11:24:10 GMT expires: - '-1' pragma: @@ -1084,15 +1160,15 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ - \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVU5UFoyZDJjVlpCYmtjelpGQlRjVGR1ZWtsTVlYZDNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDA1cVJURk5WR3Q1VDFSUmVsZG9aMUJOYWtFeFRYcEJNazFVVlhoUFZFMDFUa1JPWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNuTlJTVXh3YXpSdFdsVlBjVzFFVTNoRVpuQkpabWxUY2xVdmNGUjJhVEZtZW5ZMVJrMW9aM2R4YTNGelZqSnFMMG93ZUVvd2JsaHVaRVJhVkdsUk4yVUtNalpvTkZKa04yUm9ObUl5VlhGTmJtWmtURTQ0TnpoUmVVTXZkMmROWmt0eFZWQlpNRE5qY2l0TGNrVTFUR05zY0d0bU4wTkVRMlZuTlVnNU1IcE5id3BUUm14Rk5rRkZPVXR5UjBGNWQyNVROVGR1UldOSlRVNWxjMnhhWjNSSVVHSkhjeXRCVW5sbmFsSXJUMGd6Y1dOc1kwNU9jR2ROZFhvM1lWQnFOMGxxQ2prM1lqZEpTR0pNU1RsMVNHWmtTV2hHWVM5MlJXeEVSelF2VEc1RVUyWjZRbmxRY1dzclluQk5XaTh4TmtrelJYTlhWVUZqWldOMmMybFFMMWRSU0d3S1REbFFlR3RRVkdOdGIwSkpOR1E1ZUZOWVJIVjVWMFZqTjFGVmFtWlVVbVkyVEZFMVEwVk9hSGxTVUdkdE1YWnVhMlZtYWxCbGRHZFlSMWRWYUVWRFR3cHhXVXBNYkhCRVFXSktaVTltY25kTllsRk5SMjFIYkZBNFpFeHlaRE5NZEN0M2JGbFBSREpEVFdkUFoydFFhMUpVVDJSSVkzaGhOMGdyYVhsTldsbDRDbTFJY0ZkemJEbFNNRlp1UW5oR2RsaEhhM0JDVlVScVkySmtSMVpMZDFBNGJIQmxUMnRrWjNSelNVWm1jMUJGVG5wU1FtOVpkR3BtVDBzeVJUUk1ha2tLVDBWdWJWTkdNVmxDUzFaWWFFTXdSR2xHYzBST1l6Tk9WMUJ3YVhCbFkwMVJOalpxVW00d2NsaEhlRk50UlRWcWIwcEhjMDlqZVhwYVMybE5VMlJpYndwcGNXMW9SbFV3VWl0NGRUQjFjblZPU0hNNVpsWlRhVVpqTTJvNFN6aEdUa3NyTm1SUmNFdDNla3BIUzA4eFprWjRUa00wSzJReFlrVldhbmd3ZWpnMUNtWTJVRWh5UzNZMFVtMXFRbG81ZGxSclYzRk9jRFJJVUhKNVZ6ZFFUVXRpVjBWSU4wa3JNMUJUZUN0Tk9HRkVhMVUzWkZSRE9XWlhTV3g0UlRVcmFtb0tRV2w1TVRWM01HNHpZV0kwYmxOa00yMXlRWEZwTDBGb09UQTJhR3QzTDB0U2FsZFROVU14ZEZWUlkwTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1FXRnpaSEpaTjBkV1ZqTjZlbms1Q21wcFUwWnJObWxrZVhkMWVVMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlFrcGFRV0pWWVVWcVRWVlpRbVV5WlVkc0wxcFZhRlpQTDFBS2EwcGlPWEZaZVhGTVQzcG9URTR2ZFdKTk4xQm5XRXhWUVhSamFGcDVVR1pqVURFMk1tWlJWVlV2TDBjNU9HTXJWelZZUzJGdFEwZE5ZbmhYVjBvNWJ3cG1Ra3N2ZEdKalJuTjZhVGxwV1cwdlduTjFTRkZtWkhSUmVtcFFhV3hNU0V4V1NHUjBPR3h4YzFVeFpFWmxMMUp3U21jdmRtZEdSMXBtV0Vsd2RGWmtDaTlRVERaSVVXOVROMDlWZFROTWQwRkRRVWxQWTB3M1NtUkhLek5wUVVacE5rNXNXVGhwZWxKaU0xTjZNbXhwUW5KUlV6aHhUMjByYUd4WmRXdExkWFlLV25JcllYZzVjbXBaVHpCUmJGZzNNSEprYlZKVWJXRlNWMUEwVFdaQ1kzQkhaRzVuVFZGRVRISkdNVWhETDFWR1JtUnNRbkJDVWxWclZtVklkMFZDT1FwVldrWnBRVTFHUzFWdU5YcGtTWFppV0d0VkswMVhXbTFhTnpoNVEwSkhPRkZLTVVKbldXSndORlZCWVdOUWQxVlFNMmRuYXpsbVVtVXdVSFJ2UjI1TkNtNTJPVXROVUV0UmMyMVJOa3hDU0M5cFRIZDZRbXRDTmtSUE9FdDVNbVJhUzNGMmFGRXZNQ3RLTmlzeWNqbHpNSGh4VTNwdE5YRlVjbU40TmtFNGVFb0tVamxoUTBWVWRtdGtlbVpRY0ZJd01IbHRlbGwwTms1b04zRnNZakpxUjJac1dHWXJNR1J4ZUZWSU5sVm1ibkEzVjBoalNEUlViVXRFTDFCb09XazNXUXBuUms1VWVXMURkVmxsTjBkYVVGaFdNVmh0Y2xWV2RqTlFTMWRvWVZNdmQxazFkV1JRUjBGR2QzSmtjR0pUUzBGeGIwMXhSMjk0ZUVwak5WcE9OM3ByQ25OUVpEWmFjMFI2TUVzNWRDOUhMMWxSYmtWdlVGWlJiVkZ5ZW01ck0yZDFaRk41WlVaV1ZXOXlUSEY0WjB4dlNYZFZiMFpOVkRKbU1YbFRXR2xtTTNrS1kxcEpkRzh6WjFwNWNTdGpkakpHTVc1NE1HOHJUbHBPWTJsMlkzYzFNRloyV0ZGemJrNWtjemhtVkU1cE4weFNkM0pFVVRKa2JsUjBVVFEwTm5KcFN3cGFibGNyZVdFM1RGWlVaRlppUTBKVFNFRTlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5zZ2VvdHZ0bS1tajRjaWlzZC5oY3AuZWFzdHVzLmF6bWs4cy5pbzo0NDMKICBuYW1lOiBjbGlha3N0ZXN0ejRyMmNpCmNvbnRleHRzOgotIGNvbnRleHQ6CiAgICBjbHVzdGVyOiBjbGlha3N0ZXN0ejRyMmNpCiAgICB1c2VyOiBjbHVzdGVyVXNlcl9jbGl0ZXN0bmo3a25xdDY0cl9jbGlha3N0ZXN0ejRyMmNpCiAgbmFtZTogY2xpYWtzdGVzdHo0cjJjaQpjdXJyZW50LWNvbnRleHQ6IGNsaWFrc3Rlc3R6NHIyY2kKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBjbHVzdGVyVXNlcl9jbGl0ZXN0bmo3a25xdDY0cl9jbGlha3N0ZXN0ejRyMmNpCiAgdXNlcjoKICAgIGNsaWVudC1jZXJ0aWZpY2F0ZS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VaSVZFTkRRWGRYWjBGM1NVSkJaMGxSWmpJMFNWcEVVVVp1Umtjd1dVNVNjeTlHWTNORVJFRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdWR2R6QjVUWHBCTWsxVVZYaFBWRWsxVGtST1lVWjNNSGxPVkVFeVRWUlZlRTlVVFRWT1JFNWhUVVJCZUFwR2VrRldRbWRPVmtKQmIxUkViazQxWXpOU2JHSlVjSFJaV0U0d1dsaEtlazFTVlhkRmQxbEVWbEZSUkVWM2VIUlpXRTR3V2xoS2FtSkhiR3hpYmxGM0NtZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVNMVZWb3libE54Tm1GbVJYcHhkek4zUkVOU2FIZ0tkak1yTUZsS0wwTlpjRkU1YTA5amVpOVBhVk5FVTAxaGVqWkZUWGRSVmpndlFqQkliR3RJU0RKVVMyOTFWMFJMV1ROV0syRjFlVlZsVlhveFpWb3lWZ3BIWkdwWlIyaEdaMkppV21kSlQzZ3ZhbmxtYkROMFFXd3phVlJJTVRsdlN6TlNTbVpPU2xrcmRETnhVMGRCV21ac2JHZE9TaTlNUlhGalpEWnRVbU5tQ2tSelkxaHNlVXhHVld4a1VrTktTR3hSTVZZcmJ5OHlVbGxvTWxGR05taE1ObkZRZUdKUWFIRkdORmRXVXpOb2J6TjVTMVZzVmxsTGNXMXZPSGhuY1hRS1NuZHNTeXMxWmxac2EyWmFaVFJMYzJrd2RIbHJVM2RJWlV4M2NFSjFTMHM0UVM5SmREUlpUalppZDB0YU5YRlVSM2RRVERaTlRpOVdNM051TjNod1ZRcGFja2hzWm1VeUwxVklTV055Y0RaR09Vd3hNV3R0VUZCUWJVbHVUblZEZUZOSVlrOVpWVU52Y0VWUVJtMXhNbGdyUzFKM1drWlJOMDAyU1ZSS1QyTnNDbWxTTDB4TVVqbEpkRlYxSzBodmFHbE9XamhIYTI1aE0xaHJNbkZzUVdSVFdEWk5VVGhLY2pZeE1tNUdRbGxUT1RkeVZEaEdWVkE1V21GamR6TkpVR1VLYnpFM1IxVTJTRXQzYjJJeWQyZzBkbTR6TVhsUVJqZzRhR0pWVkRsNWNuWXZNVnBHWVdoa09GWlZOVXgwU0ZOSmJXNVdXa0ZtWldoRGRrRnlhbVpXYlFwSVpuZFVPRVp1YzJGRlZreHViR0ZqVUVjcmMxRndjM0JDY0d0V1JXczRVMmd2VUM5R1RHcHJTQ3R1V1ZGdlpFVkVSVkExY2tNeFptODNaV0ZvSzB4dkNsZ3JaMVpzT0U5amVWTjVia1pYUW0xRGEzUlVkV1p2Um1kRGJYTnZWR1ExTWpod1JVSkxRMVJEVmtObU5tSjZWekUwYzJ4RU1WaFpOVFZLWWk5MVZFWUtXREZXWVdOM1RXWlBVblpsZUZseVZXbExlR1pWYzNkTVRsSlhPVEYyUzNsM1FYaENaVkJNTVRRMlYwZFFiQzlNWVUxclExUjJiMnBwU1ZGbVV5dExUZ3B2VUUxc1FqRjROQ3N6T1hJeE1HdzBjRU5yUm5SUlNVUkJVVUZDYnpGWmQxWkVRVTlDWjA1V1NGRTRRa0ZtT0VWQ1FVMURRbUZCZDBWM1dVUldVakJzQ2tKQmQzZERaMWxKUzNkWlFrSlJWVWhCZDBsM1JFRlpSRlpTTUZSQlVVZ3ZRa0ZKZDBGRVFXWkNaMDVXU0ZOTlJVZEVRVmRuUWxGSGNraGhNazk0YkZZS1pEZzRPSFpaTkd0b1drOXZibU56VEhOcVFVNUNaMnR4YUd0cFJ6bDNNRUpCVVhOR1FVRlBRMEZuUlVGWlpHbHhaelZZYWxoTFlpOVRhRlJFYlVGRWJRb3pXWGN6Wm00dmNHRk1ORlExVGpCck0wa3pRVFYzUTI5MVIzcHpLMHgxTUUxak5UTlpha3d4Y0RKMVZYVnBSWEF3YW1wa01GZG5WbUZJUjFWdk1XaE9DbTk2YzNsU1RIWnBUWEpzT0U1d1kxUXhaRGR0T1hkbVZrNXNhMVYwU2k4eWNqbHVZMFJHTnpaMFJ6TnBPVVZvVkRseU1HTlZOa3BTVWt3NVJ6ZzRhVzRLWWxwVlpHTTFZVkpVTnk5blkwOUZaREFyVkhCVFVUQlhiVlYxZVd3dlkyOURhbTlvTUZCTGJWQTVaeTlZVTFGcFNVNW5VMHRMV1ZSc09GaEJiR3hzTWdvcmVITkxSbHB1VmtvNVVGZHdVSEpNUTJFMmFFMHhSV281VFRsMVZXeFhVMU5YUWprNVFVOUhOakpNUldsSE0zTXhjWFptVUcxMlNteHlVME16UjNSb0NsSXdhMHR3TmsxU2NVSkxUMEZwU1doaGFtZGlXa3RXTTB0NllYVlFXWEprUnpKWmFIQlFTblJNZFU5clZGRldTbUpzU21sdksyeFVia3BuVG1oSWNWb0tMME5MWlc5TlpVd3ZjMEpKVEd0SVJHUTNRMFppWjJRclJ6Tk1aRVFyZGxoWmF6ZGFNbFl2YlVOaVUwTnJVRWtyYUdkVGFtMUxXWEZVZDJGYWJHTktZUXB2WldOc1UxSllSRWwzUWxGNllUVmpkemQ1YW5SdGQyRlBVWGxLTm5aSFFpdHZiRUYyYTI0NWQwWjJTbmRTWm1kWFkyNU1Za2RXTWk5T2JqSjJTWGR6Q25adWF6TkJTWGRhT0cweFYydzBRa3BIWTJoRVkwRm5lbGMyTDA1b2RUTTNNaXR4VkZCcVJIUXljR1p3UmpBcmFraFFUV0ZCVG13MVEycGFRV3BxYlVjS01WbENWa2wzVFRCR05sQmpVMkY0VXpWaVpGQlRWbFZ0TUdGamNWbFVRMUJNYld0a1pIRTBOamRpVFRWQmRUTkRlVXh1ZVZkQk5XdFZhRzAzZHpGcmRRcGxUMWhwWTBveGFITm9aV2w0TVZsNlJGTXhPVkJvVHpWNmNqVjJUbnBOYm1GcmQzaFhUekUwTkZkV2QyRjFSMUoxYlhkaVRUVTJOMDlzWjBwNVNUUkJDbGxMY1RaSU5UWlRPR2t2UlhsaVpFeGFiM1JDY0RoRlBRb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIGNsaWVudC1rZXktZGF0YTogTFMwdExTMUNSVWRKVGlCU1UwRWdVRkpKVmtGVVJTQkxSVmt0TFMwdExRcE5TVWxLUzFGSlFrRkJTME5CWjBWQmRWWkhaSEF3Y1hWdGJuaE5Obk5PT0VGM2ExbGpZamt2ZEVkRFpuZHRTMVZRV2tSdVRTOTZiMnRuTUdwSGN5dG9Da1JOUlVabVVIZGtRalZhUW5nNWEzbHhUR3huZVcxT01XWnRjbk5zU0d4Tk9WaHRaR3hTYmxreVFtOVNXVWN5TWxsRFJITm1ORGh1TldRM1VVcGtOR3NLZURsbVlVTjBNRk5ZZWxOWFVISmtObXRvWjBkWU5WcFpSRk5tZVhoTGJraGxjR3RZU0hjM1NFWTFZMmw0VmtwWVZWRnBValZWVGxabWNWQTVhMWRKWkFwclFtVnZVeXR4YWpoWGVqUmhhR1ZHYkZWME5HRk9PR2xzU2xaWFEzRndjVkJOV1V0eVUyTktVM1oxV0RGYVdrZ3lXSFZEY2tsMFRHTndSWE5DTTJrNENrdFJZbWxwZGtGUWVVeGxSMFJsYlRoRGJXVmhhM2h6UkhrcmFrUm1NV1EzU2lzNFlWWkhZWGcxV0ROMGRqRkNlVWhMTm1Wb1psTTVaRnBLYW5wNk5Xa0tTbnBpWjNOVmFESjZiVVpCY1V0U1JIaGFjWFJzTDJsclkwZFNWVTk2VDJsRmVWUnVTbGxyWm5sNU1HWlRURlpNZG1nMlNWbHFWMlpDY0VveWRERTFUZ3B4Y0ZGSVZXd3Jha1ZRUTJFcmRHUndlRkZYUlhabE5qQXZRbFpFTDFkWGJrMU9lVVF6Y1U1bGVHeFBhSGx6UzBjNWMwbGxURFU1T1dOcWVHWlFTVmN4Q2tVdlkzRTNMemxYVWxkdldHWkdWazlUTjFJd2FVcHdNVmRSU0ROdlVYSjNTelF6TVZwb016aEZMMEphTjBkb1JsTTFOVmR1UkhoMmNrVkxZa3RSWVZvS1JsSktVRVZ2Wm5vdmVGTTBOVUl2Y0RKRlMwaFNRWGhFSzJGM2RGZzJUek50YjJacE5rWXZiMFphWmtSdVRXdHpjSGhXWjFwbmNFeFZOMjQyUWxsQmNBcHlTMFV6WldSMlMxSkJVMmRyZDJ4UmJpdHRPREYwWlV4S1VUbFdNazlsVTFjdk4ydDRWamxXVjI1TlJFaDZhMkl6YzFkTE1VbHBjMWd4VEUxRGVsVldDblprWW5semMwRk5VVmhxZVRsbFQyeG9halZtZVRKcVNrRnJOelpKTkdsRlNEQjJhV3BoUkhwS1VXUmpaVkIwTDJFNVpFcGxTMUZ3UW1KVlEwRjNSVUVLUVZGTFEwRm5RakZzVGtaQmVXVlFTelZVT0hkWVYxRmlNRkJQVUdsSUsxRm9VbGxaYTJNcldUSkpNalZ6UzJkdWMzVnZjRWx5THl0b1lVaHFNRlp5YUFvMk0xcEdVbEYzWkdaaVJuQXJTREJrTDNReWIzWjFXVlJuYkhnemN5OVRaaXRNYnpWM2NVeExhakZyS3k5cFprVmtRVVZDV21Sa1ZXSlRTazVpYTAxMkNqUlFMMHhRTUUxdU1uUkxRVm8zV0hGamQxSllkalZzZG5Ob05qTmtMM0psWm5Wb2VUVnVSemhYYjBkdVVUTm1SbUZIZFVWcFVYQlZNa2t6VW5wVmFrUUtOeXMwVmpodFMzaG1WR05wTkhsRVpuZFlhbU5RTlVFd2FYcDBUemRqZFRWd1lsTkxjMnhXV1V0clQxcEZja05IVDNCSlJFVTFibVpPYURCaVNtOUlPUXBUYlZKdFFUTXhjRFZLTlhjME9UQmxlbU55YzNsNVlUZERZbmhqTDA5UE1uaHdXRWx2TVZGcU1uRTVLMDEyUkdFemF6QjRkVEZWZG5GSFVXTldLM1kxQ25WcU56WlJWemd5ZFRWUFZreDNLekoxUWtkNGJHMXpjRlp0Y2twcmNDdENPRzR2TW5GWk9EZEhkVWRYTVRGSmFIZHBhM1JFWlhsMFkzWkZka3RKYVd3S2RVcHdXVVZ6V2sxSGVTdDFSWElySzNGRFJIQllSRTg0TlRaQ01FODNhVk5VSzBGMFJHMXRWMmM0V2pZdmMyaE5jamhGUVVaRk1GRlZNRWRJTjNaU2FncDFUbkV2ZDIxdmMxUnhkSE5VYzFKS2JpOHZRMDQwWVVaaFYxWkZNVzVOZVVOVWVtTkRlWEp0VEd4WEswVnpSa2RZUXl0QmEzUlFOVXBtT1ZaTFNrZ3hDbVI2Tkdjd1NsaE1iVkZIZHpSbFN6aG9ZVzFSVTJWeFNESXhSR0poWmxCaldWUnZSRXh3V0RONVVYWkZWbWQ1TTFSM1Z6UTVXR1oxUVROdlZXVmlRek1LV2pZdlMyYzBUR2gwYlVaTU55OTFRM0UyVFhwNVptNVhTWEZPY0ZwRk5FNXRWMFJJTnpGSFJHUjZRVnBVTmpSWVowRlhTMjQzSzFCU1IzQkZjR3hQYXdvM2EyTnhjVmR3WW1wamNXTktibFY0TUV0U2RsaFFhVkpFVjBZMWExQTROVGxYYW5wT2VGZFNlWGN6UTJ0a1JYUlJVVXREUVZGRlFYZ3dZV2h4WVdWRENteHVaV1JuY1RCSWIydEtXRmcwVGtjMWR6aHRPVlpzZUVzelZXMXNWRFUwVDNkMVkxZGxRV0pyTjFKWFVVZFphelpQUWpGNlZEZDRkbmhWUnlzNWMwMEtlR3RrVVd0WlpHcDBWSHAzU0RNclppdFFNV1Y0VlROdGRVbFJVMmRKYWpNM2NtbzBNV05TWm5NdlZYWlNVbWxvV1Rsd1ZWcHlRVVJ0TmxWWlRuUnROd28wUkRSNVowNXJOemcxT0N0WldWVnVkRmd5V0dweWJWUkNWbmd4WWtwa1J6SnVSRk5CZWtoTVRFeFFjRTVDTmtsM1VrbzBPR2haTUhrNUswaFdiVm8yQ21SNlYyRkRlVFZHTm5SaVltMU9SVlY1ZWt0VmRHbG9ZM2RTSzFKaVVEVTJaWGhUY0N0eloxRXZiazFtY2pWYUszTkJXWHBETlN0eVZFWnRSbWh3U1ZRS1JsUnBXbFkwWkhONE5EWmxPREZ3UW1Gbk9YaE1SRVpKZVhkWlYzWnlVVmh3UTFWVU5HeEJOalpSU1d0MmNYWkhTa0ZvYWk5T1FsQlpNR1JJWWtodlZRcFhNakJoYTB4UlQwcG5TVFpVVVV0RFFWRkZRVGRvU0hJNGMzQmFjRlZ0VnpaWFFWaEJhWGhhV1VJNGEyNDBWMUZoYkdoUk16RkhORmMzY2pSMFpESnJDbVZCUkhOM2NYRXJWbU1yY1VOVGVrZE5ZM2xGV25kTGRFeGhlbFZpWVdwMWJtNURVRlU0VVM5dU1GVjRObFJIVlVKWlRraG5UeTlEU0djMU5GcHdTa2dLU2pZMWRVUTNkVE12VVU1MVpWZHNjVmQ1WkcxemIwbFVZa3Q1WldvelNscFBURTh5UVZNMVdXd3JXSGhYUlZWeWFGcE9hWEpJVFVob2JqWm5XbEF5UndwRlJqQXdiRzR2YjA5clNXdzFjbEZNVEZOcEwzaHZWbmd3Vmk5a1kzbFJPSGxLU0RKS2FEbEZXVk5uWVZwRVdVRXJOVWcyUkU5bWFUazNjV05KZDJSTENsWk9ZMVpxWm5wb1EzbFZMMEpqWmxWQmVIUXhaM2wyUzI5cFpXaEVZVVZXWlc5Q1lUQktTMlZxTkVsVVJFTTRXbEJHV0ZFNFNXTnplU3N3ZEdoQlVqSUtRVTUwTUhjek1UWmhOVnBRVkVSdmFqSXJjWEI1Y3l0RmNsTXdTRE4ySzJsSE1YSTNSVUZPWkVOUlMwTkJVVVZCY3psdmJXNURWVzlOYWpsbk9VbHFVUXBKTDNveVQwdHJWaTlCU25JMlprcEJkSEpWTUVSdGVtdFFTRFE1VEdONVltUjRURU0yWW5GSGR6TjFZVTV3VlVKM1RFUnpjbUpFUlRsamRERm9kazFJQ2pWYVNreE5iRXRSWjJwMlJFcG9XWEZFZDNnNFYyMHZSVkJVZGt0elluaGliQ3RNU2s0dllVUTJjMmR3WkhOcFZHRlJNVE5NYTBsVVZUZzRkVFkyVjJzS1pYcDFWa3BLVkRKQmRFdEpWQzlPYWtsMWNWRjJSMHBKVHpKNWNIcDFTa2tyYkRacFRXb3dRWFJwYWtNMlpFNXhPRlJ2WTFCeWJXTXZRM2gyYWtodVJnbzVjVGRYV1ZSVlRFeEdNMHBhUTBwSWJreEhkVWxuTkVoWk1FTkRURmR2VjBaSFF6VkVNVTl1YjFwNmJYZDVNMjVtTjBGdlYwRXhUV3hrUjFGaVJGRTBDakZHTnk5VVMyd3ZPRzlhWmxsVlFsWTNORGRsVW13emNVaEhZWFZpU1hBeWMwMW5WR1U1WTNseVIwTTJVbGh0U1haU1UyVXZUMDkwY21Sd2NIRkpTWEFLV25SeFNqTlJTME5CVVVWQmMyOXVNRTVzS3pCbVZGaEZTRWc0Tkc5cFQyRllNMFJpY1ZaeGExcEhlVnBOWmtZMldHbHFTa3h5VEhKRWFXYzNXblkxWmdwM1kwUTRWblZqYVU0clUxZEJlRGRLZFROQ1lUSXlZVTlzV0c0MmMzbHhRbEZFVUVoaE5HZElOVEUxT1hWR0sxZGFOalJaWXpKM1QwOTBPR2R2VjBnMUNtRkxSWHBNTlVKNk9UWnhSRFZUYlZJMFlsWlFUVWR5YTB0S1lqRjZjM0ozUnk5TFVsaGpOVFpDYWtoNlJsUnpja1ZLTVZWTmIycEVRM1pEY21GS1lrTUtSbFJpV1dJM2VtdHBUbWd2WjJsVkwzQXpURXRuTDJoUlRWZGlkR1k0WlVKSk5DOU5kM2Q1VWtSb2JEWjFhMVZLVUZKdVVUQkxRU3REV1ZKSlNWQlVaQW96VG5KM0syRm1WVUYzVTB4NU0xTkVRV0p5VVcxSlZVOXpOVVZvUTJwNE5qa3djbTlsUVVjeVdHbzFTbVJMYTJKWGJFRnJRekZpUWtoSlJqUm1jMlJUQ210UE4yNTRNVmgxTkVwWFRFRndUa0ZuUWswclZFOXVVSEU0TkN0aVRreHZObEZMUTBGUlFVaG5VRzFIV0hGVlYzcGhkMnRTVVVwSmEyTXhiM2xyVUhvS05sRkJjVlppVUdZeFExRkJORFZNYTJocVRURlhSMGRITVhkaEsxSnlUM1JUU21jck1XNUdiSGRFY1ZObFducE9USEJYU1RsSFQxbzJTV1ppUW5kNWFRcEtiRmQ1WkVOU09YbG5aM1l2Y2pCRk4yUm1UM2c0VTNOMGJURllORFozYm1OQ1QwdFVlRzA0UkVaUWRXb3hVVkZUV0hkeFRGTnlPRU12Y2pKeWVIaHpDa0pKWnpaSFNuTXhTbEpzVDJWSVNFZDNWMUo1UW5WeWF6aFpiVE51VFZjM1NsVlFkR1kyZFRFNWNrcHpTSE5aVVVadmVscFBkSEIyWWxoMGQyZExMelFLY0hFNWFVNUZTVFpJTkhZeFdtZHlVMVkzUWtwUWJubFhObFF3UTJVMmVGZG5ZVmczZUVJMVJXSXhTekpOV0dGVVFuVmtWVFZ4TVN0dU0xQkJSakIwVmdwak1GSllUaTl6V25neldrVXZjV28wTTJ0WkszUldMM0o2VGxkbWF5dHJNR3hOV2xGNFUxZzNlRVpOV0ZwQmNVcHVlbWxUYTBsVWJFeDBZVm9LTFMwdExTMUZUa1FnVWxOQklGQlNTVlpCVkVVZ1MwVlpMUzB0TFMwSwogICAgdG9rZW46IDRwcGR4Y3J4eHZlYXMxcTNpd3RjMjl5MmVoOXR5YjQwZjNiZjRkdXdhcHBmZmo4ZXV5N2VydWZjbnU2NjhxZnhodGp5Z3NyYXF6anlkeThuZ2x6OXF5cW5icms5dWVxdmtlZGpiMXVua2dzNDdrZXF3dXJpeGp5ZnRxbGplbzhqCg==\"\ - \n }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": + \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVVscmQwNU5ja1JuVFhkVE5VaDRVSFJZZDJkc2FVVjNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDA1cVNUVk5WRVYzVDFSUmVWZG9aMUJOYWtFeFRYcEJNazFxYTNoTlZFVTFUa1JLWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNuSlFSREJsYUdaWGNrZHNUbEpzVkVJdmJEUXZOMHR2Ym1FMU1XOXBla05JT0dNeFVXVTRXa1UxUTFGelVsTndWbUpVUlhNMVdTdEdhbGt3SzJSSVJUSUtkWGxJUTBSWmVqTkNiak4xYlZvMU4yWkllbXhJTmtOMVZ6VnRRVVpISzFkeFRUWlViamhGYlZWU2VIZHZSRkpETjFGRFpWWXJlak5rYmpOUVFXVlFUd3BNWnpaR1VYbFFkbXROWVVSNFpIcHRXbmRyU21Ga2QwdEJSWEJ3V25oUFpqaEdSVGsxWVRFclNtbExRV0pWVVVWSlFqRnFNV0pvVlRSdlVYWk5kWFpVQ2pNeFRERm9WVzVoVm1Ob1VYSnVlamhwY1RKak1rRkJRbVpETUhOWFVrNVVWazlVZVhJclExUkNRMGRaVkU5dmNXazNaa3RsZVdOS1NVSnpSMnhpUnpZS1ZtbE5NbEJNUVhKSVYwOW9kVlY1V1RneE1EQkVOMU0xVG5Kb2RYUjFVekV4Y0NzMlIwUTBVMlphTlVscWRHOTNWamMyY1hRNGQzVkdNREkxZFRCMFl3cEtTMlpoVFV0VFRYTnNiRFJYUjNsM2MyYzBTRFZ5TkdoaU0ySnJZbHBzV0Rod2FXeEhSbGROWlV3dlpWUnRWR2RuZHpWRFMxTkhOME5uWVhKNFV6QmtDbTFNU1N0YVVGVXhWM2hqWTB4cWJHZDFjbmRJSzJ4TGEyb3lkMU0zVFU0M00wOHhORVpaVHk5bWVtdDFURkl4ZFRCRFVuZDFORk5XT1U5eGR6SXJkM0lLZDFNclVrcDNaVmhEUjA1c05HOUJhRXRTYUVKeWEwaDVZVWRWZFVORFJYSmpWSEpwVDFkNWVYcDRlWFZDV0daa2FsSjBPU3RMSzBaVlltRnFTRFJtYVFwSWIzQnlSRFkzUXpWVlVXRnJNMHQxWkZGb0sySlRjakUxY0Zac1dYRnVVMEp2T0daU1QwSkhhSE41ZFRkVFdpOTZTbUZSZERSNWFsTnFWa2RVTDI5dkNtZElhbFZqVDJJMmIwUm1XRlZxZW5wWmRUUm1aVU5hWkVoblprdHJia1E1ZUZkWGRqZG9jVFppVURCYWRIaGxjMmsyY2tkSWFWSXhObXhDVDBveFFtUUtlVFJ6Tkc1VlYxSk1Mek12WVhrd2RGVTJLelJ0V1haMVNTdEpVRlZpVmtOSFNFMURheXR1YTAxaFJVTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1RHeEphbkp0WXpKSU1WZEtRWEJRQ2pkcGRHVjNNazl4V1VVMGMwMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlFqZE9kM1JPTUV0T1NrOXBWelJHY0VjdmVXVkJaMmR6YUdJS2FrTlhjSFY2Tm1kMlNYTkNUV2x2VFZwdlUySXdTakV5TUhSR05UTnlWVGxzVVhWWllUUnlXbVZzVDJSSFZtRllkRlprYWtWc1FXSXJkR1ZzTTNKSFRBcE9XSFJWWkc1bGRXSTFSSFZNVG1WdVlXdDBWVGRvY1RkeGNDdEtTakpYTkZGVVdVNUpWa3RvYTA5cFFWZFNWSGd6Y0RSWmRFUk9iRkZDVWxJM1NFeFhDamN2TTNaQ0wyZEpPV3BEUkVFNVJrSnVRVzF3TDAxdFFUWnRURkZaY1U1a00xaHFURE5HWnpGR2FXbHNXR2xUZVVkYVMzbFlRMmxPZUhVNFlYVm5iRkFLWkhKcmMxQndTVlo1YUd4aVJVTm1PWGh1VkdGaVpTOURhVzFaU1RadlNHWlZZbEJqY2pkbmFXSXJWa1ZwU2tadGJXaGFSRWN2TkZFNE5tb3ZTelp3Y2dwMWREUk5XSGR6VUdWcmFESTFhbVZtTUVOdlNqazJUWGRoUkhNMGFrSlRkMUJEVTNJM1dHaFpPVkJqUWs5c0x6QjBhMFJTZW5nclQxSTJiRVJ4VDJGRENrTnhOWGhzYTJOSWRubE1SVlF5ZFcweGMwdHRaRGR0ZEc1TU1YTkVhbGxSYkdKaldXeFpZVVpqU1ZsU05uRm1aa2xUWTFFd1dFRXdiMlE1VnpFNGRUY0tla05wTTFReldXcEVPVVV4Y25CSmVqZzFVV00zYzJGMVZ6QnFiRUpDTUhVd1NrUXpURTFSTTJGaE1YRjFNWGgxUm5sTVZFRm5NRkJMVERKVE1pdHRPUXBoUW5WUVluUjBSMDF5WjBSb2JHUlpWbkp6VFUwclJqZFVhM0pJUzBkc01raDJjRGxPWm1ablJYWTFVMVpVZUM5Q1FrOWhORzVGV21SNEsyWklVbWxUQ2k5M05uWjJZM0JtVjNoNk9FTklhR1ZSTjJOTFFUSjJiMEV6Umtwblp6aHZRVkZDWjFsamNsUnJLMHBsVm0xRFdtNVNWR1UzTTBwSU5qQlBTbE42YzJNS2FHMTZZemhKY3pGR1JUUnJiRlE1WXpnMVFWSjZOVEV2VlVSUFlqUTFTRmszYW5ab2VFdE5Na05wWmpWSksyNVJWR056YjAxeVVtOWhNWEl3Y3pWcmRncEdibTVLWlRkbllXUXhNeXRvU0d0YVJIYzlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5zZ29kY3o1eS1wY2VnOG9hci5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdGRjcnZyeQpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdGRjcnZyeQogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdDVuN2E1b2pydmFfY2xpYWtzdGVzdGRjcnZyeQogIG5hbWU6IGNsaWFrc3Rlc3RkY3J2cnkKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0ZGNydnJ5CmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdDVuN2E1b2pydmFfY2xpYWtzdGVzdGRjcnZyeQogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklWRU5EUVhkWFowRjNTVUpCWjBsUlFUY3ZWMlZMU2pkSU1HeEhla0ZCYTJrNVVVcEVWRUZPUW1kcmNXaHJhVWM1ZHpCQ1FWRnpSa0ZFUVU0S1RWRnpkME5SV1VSV1VWRkVSWGRLYWxsVVFXVkdkekI1VFhwQk1rMXFhM2hOVkVFMVRrUktZVVozTUhsT1ZFRXlUV3ByZUUxVVJUVk9SRXBoVFVSQmVBcEdla0ZXUW1kT1ZrSkJiMVJFYms0MVl6TlNiR0pVY0hSWldFNHdXbGhLZWsxU1ZYZEZkMWxFVmxGUlJFVjNlSFJaV0U0d1dsaEthbUpIYkd4aWJsRjNDbWRuU1dsTlFUQkhRMU54UjFOSllqTkVVVVZDUVZGVlFVRTBTVU5FZDBGM1oyZEpTMEZ2U1VOQlVVTTVVMU5zV0hGcFlsQnZkREZtVW5CdVFtcHlhbklLY25kTWFYb3dNa3BzT0VwVlRHMUVaamd2UTBWM1NFWnRORkpMUm0xWk1sWjFVMDF0VlZWRlJtVTFhVE5PYUhjMmFFaHZUbWxWY2t0eE9XaFpWbXQzV2dvdlNreHFNa1l5Umt4MFlsTlFZM0pLUzNoTWQwWkljMmxVV25Gek0zUndUREZQVEhoQ2QycHRWRXRXWlVsVVQxVkpkSGxpUm00dllraDVWMGxEY2pVd0NtbE9UQzlGYm1SV1J6SnJRMElyVFRoWWNuaDBUMVZPYWt4UFYwbGlNRkpQV25Cb05HZHFkbVo0VWpZeU1XeHZiRk5sVlZWS1JFSmFTRGRxUm5kQmRtY0tRVk5ITVZWWE0yTkdNSGROYm1wWmJqWmhVWFI0TmpodVdVbFJVM3B5TjFOaWVYUnZlRTlwZW05cFJXSnZaV1JqZFN0U2RGTXdlREJDU0dWcGNXZ3ZiUXBSYzFCbVdXNVZjalExT0ROcFMxQkdXRXBXYlUxQmJETk1iRzVsUVVsR1JrNXdUbFpaZURCRmRtUTVaR3hWWjBNNWQyZHhka1pMYTJWc1ZYSndZbFZyQ2xwSVFsUXllRUlyVm01MlJtcEpLMWxSVXl0QlJVTnpVM2g0U2poNmJVdE5Va2RtVDB4b1kwTk5PR3NyY0RSSVp5OVJWbWxJYjJGeVRsRmpWMFV6VnpnS2NsQnBlR05MY25CRlNEVTJSVXhOYUdsWGJ5OWlORVpxZVZWSVJVeEtPRlZ4U2pkd1p6UnlMMWhUUjFRM1VrWndPWEZWYUVaUVIyMWFSM0JFTm5oWGN3cEplbVYyYTFGMlVIQk5ZMUJHVmtkMU9HOVROR05ZUTJGQmIwWXhjM2RIVld3M00xRjVjRzkyZG1zeFJWSm5hR3QzY1VKV1pGQkthVk51TWs4clEzUlhDbmh3VVVWd2NGRlJlV1IwYjFGeFMzcE1RbFVyTkZaQlJGTjJPRUUxVUdwNlJYTkZTM0JGUTNRd2QxSllWUzlHZFVvMk1HZFdlRlJFUW5adFdYVlRXakFLYWl0NlpFTmtaUzgxVEZWMFpsZ3hPRTE1UjJjeVRqRlVUbEpvTkUxcVNGaElTMUF2ZGpoME5UbGlTbVE0WTNCd1JIZEdlbTk0VGpWWlpFSmFkR1V2TkFwallqSm5aM0Z2Tm5wS01FUnFXSEZGYTFWUVpWWjNTVVJCVVVGQ2J6RlpkMVpFUVU5Q1owNVdTRkU0UWtGbU9FVkNRVTFEUW1GQmQwVjNXVVJXVWpCc0NrSkJkM2REWjFsSlMzZFpRa0pSVlVoQmQwbDNSRUZaUkZaU01GUkJVVWd2UWtGSmQwRkVRV1pDWjA1V1NGTk5SVWRFUVZkblFsTTFVMGsyTlc1T2FEa0tWbWxSUzFRck5ISlljMDVxY1cxQ1QweEVRVTVDWjJ0eGFHdHBSemwzTUVKQlVYTkdRVUZQUTBGblJVRnRTa01yU21kdVVrRm9OMUpGYlZZd1pYbGpjd3BJV0VOc1lUSTNNaTlpTTNGM2RHZEtjek01UzJKV1RtaDZNMHRFV0V0dGNYbFlLM2RGTVRsRGJXdHJaR1ZpVlZsU1Fsb3ZUbWwxUzAxb1dFSkljRFpTQ2pNMFNsUkpUMDVLUWxCME1WWjNRME5DV0VsQmRXWlZObG9yTlU5UE0yaHlNSGRYVDBwUVowOVpOMEZHVW5Wa05uRlFOR3RrUWs1TVVFczJkbXBUT1VzS1UzUklObkp2YkRkekszSlZZbmRMYkVkc09XOXhTWEpVUm5kUVpUZGtZeTlVWjNwUVpIWndUMjVXWjJneVYycDBTMDQzTWxRMU9WWm1NekZ6Tnk5TFJ3cHBPRE54VDA4d1RTOUtSVVYwTVV3MmQyWllSRWxaV0hSV1JsbFNUbmwwWjA1Nk9GbGhVRzByVkVKcU5tSkNiVzh4Y2xObFZqSkZZaTlMV1ZneFJ6Vm9DbGM1YUc1bVJsZHJibWx1T1VkdGNHOXRZMUJ3VG5KUU9UWm5NSFJpWW1GUWFEWTNNbW93UmpCclRua3pjSFl5YVhOeVRWTndabUo1VGxSVk1XeGtheklLVVVWQmVXSjFRVWhIWkVKVE5FMW1RbmQyUkRSeU1VaHhkVFV2Y0UxUVF6ZHFWbTlQTmxOUlRrSllRVzltYjNoaVEwVk5kREZ3UjA5UFZrOVlTa1IyWVFwS1VXTkhUa1E1SzNSWVUya3pSSEpXVmxGUVluUldhV1pNYm1acmRGQTVlV2hoVmk5dVRWSktTa3QxVVRndmNtVlRORlZ1UldoRlpIbDFaM1Z5WWt4VENqTlBLMkp6VjNOTmJqTlNZa2N6UTJWcE1rTkRXVnBtTUZNMGRXWk9aSGhUVWtaclJFRnZOWEIwWTFwRVQyWjVjM1IzTWpONE0ySlFWVkJJYTNwRFEzY0tOSFptVDI5WE0zWnlVUzlOTDIwd2FYZENkWE4wVjJ4S01IUXhjVkJoTjNRclNEVXlSVVZRTkZwRk9WVTRRVzF4WVhGc2IwWlVValZJTHpJeWJXdHJWZ3BVYkVkSlluaDNVVlJvYVRNemRuRTBaVWhSY0ZOTVdTOUVWbXNyU1hSVlEzSkRSRmxOUlRKbWEwSkdlVWxCY1dSbU9ISllVWGhtYzJoU1dWVjNTbE5vQ21neVJUaFpiVVJVZVRsU1JUQnFUa0pSTUhSMGFsWnZQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MwRkpRa0ZCUzBOQlowVkJkbFZyY0ZZMmIyMTZOa3hrV0RCaFduZFpOalEyTmpoRE5ITTVUbWxhWmtOV1F6Vm5NeTlRZDJoTlFuaGFkVVZUQ21oYWJVNXNZbXRxU214R1FrSllkVmwwZWxsalQyOVNOa1JaYkV0NWNYWlpWMFphVFVkbWVWTTBPV2hrYUZNM1Z6QnFNMHQ1VTNOVE9FSlNOMGxyTW1FS2NrNDNZVk01VkdrNFVXTkpOV3Q1YkZocFJYcHNRMHhqYlhoYUx6SjRPR3hwUVhFclpFbHFVeTk0U2pOV1VuUndRV2RtYWxCR05qaGlWR3hFV1hsNmJBcHBSemxGVkcxaFdXVkpTVGN6T0ZWbGRIUmFZVXBWYm14R1ExRjNWMUlyTkhoalFVdzBRVVZvZEZaR2RETkNaRTFFU2pReVNpdHRhMHhqWlhaS01rTkZDa1Z6Tmlzd2JUaHlZVTFVYjNNMlNXaEhOa2h1V0V4MmEySlZkRTFrUVZJemIzRnZaalZyVEVRek1rb3hTeXRQWms0MGFXcDRWbmxXV21wQlNtUjVOVm9LTTJkRFFsSlVZVlJXVjAxa1Frd3pabGhhVmtsQmRtTkpTM0o0VTNCSWNGWkxObGN4U2tkU2QxVTVjMUZtYkZvM2VGbDVVRzFGUlhablFrRnlSWE5qVXdwbVRUVnBha1ZTYm5wcE5GaEJhbEJLVUhGbFFqUlFNRVpaYURaSGNYcFZTRVpvVGpGMlMzbzBjMWhEY1RaU1FpdGxhRU42U1Zsc2NWQXlLMEpaT0d4Q0NuaERlV1pHUzJsbE5sbFBTeTh4TUdockt6QlNZV1poYkVsU1ZIaHdiVkp4VVN0elZuSkRUVE55TlVWTWVqWlVTRVI0VmxKeWRrdEZkVWhHZDIxblMwSUtaR0pOUW14S1pUa3dUWEZoVERjMVRsSkZXVWxhVFV0blZsaFVlVmxyY0RscWRtZHlWbk5oVlVKTFlWVkZUVzVpWVVWTGFYTjVkMVpRZFVaUlFUQnlMd3BCVDFRME9IaE1Ra054VWtGeVpFMUZWakZRZUdKcFpYUkpSbU5WZDNkaU5XMU1hMjFrU1M5ek0xRnVXSFlyVXpGTVdERTVaa1JOYUc5T2FtUlZlbFZaQ21WRVNYZ3hlSGxxTHpjdlRHVm1WM2xZWmtoTFlWRTRRbU0yVFZSbFYwaFJWMkpZZGl0SVJ6bHZTVXR4VDNONVpFRTBNVFpvU2taRU0yeGpRMEYzUlVFS1FWRkxRMEZuUVc1RVNVUkxOVkE0T0hSdmVWVnhlWFowUld4U2VubHdZamt3TWxwaWFrVk5OblZ3WVdodVQwWjRaMWxJYW1neWMyRjRTMHhCTUVsREx3b3hkVTVxUkdsNGFrZ3pZVlJYSzBWVFEyUkRNRWgwT1hreVpIRTFVV0pJVERjd1ltSjNkRE4xV1ZoRlJVeDVObThyU2tOMVkzWlJSakZpVDFSRlZXZEJDa1ZWVGpCMmVuTmxVVUp6ZWpWRU1DdG5WbGN2UkhBelptZDBabTVyY0Vvd2NrbHhVblJEV0d4c1ZuSTNhVlVyTVN0TGJ5dFBNMVJsZDBwWFJ6RjNUamtLVjA5RGFFOVVhM016ZFhWYU5XSlRjMmQzY1RKWFExUXlTbkpvVFdKbE9WZFRTVmw0WTFaNmRTOVlVMDl3TVZOSVdGUndNVVpUVVhBdlVucEJjazAxTXdwMmNXVkROVEVyVGtrNGJHNURRbmRJYzBKRlJtNXBXbEZIUjJsalUwRnVRV1UzT1ZGWWNGUnhSQzlaTlUxUVFtaE9SMlV2Wm05Q2NtNUJPRkJEUlUwNENubHJWMmxTVFd4bWRGQjNNa2xIUVNzNFRISmlNRFpFWldORlJEazVaMkpGVXk5dllVOHhXVXd3YWtZMVMwUkhhbFZtTWpacVJsVkxRM2hKZDBKVVdrTUtRazk2WkVsemR6UldWRGhzVm5Bck5rTkVWWEZ1ZVUxbmF6RTVOREpZVkZWSk56RkdUamQ1WXpCSVZsSkRTRUZHTmk5blFtTTVTMDlyYkRJeU1ERkZWZ3BOVDI5bFNYQm5Uek16Y21acWRFeGphR2xHVlhaUFRuRkxRblJ2ZHpCdWFVTlBOak5HTVhsNlVqWlBOR1p5YlRBeWRVMVJSV1l5Vld0cFEwdFdlak5pQ25OM2JsbE9VVzh5T1doM09XRnRiVXQwSzAxaWJEY3ZSMHhoVDBOck5ERkRZMGgyYlRJNU5rOU9jRWwzWXpsdFFVSjFOVlZtY0V0dVNIaFVkbEJ6TTNVS1pGRnRWVWh6YjNCaWRUSkxNRzV5YVdsRUswRk1SMVowSzA4MGVWZGpaMlpZUVVGRFZWTXJVbWxDT1ZkbGJuUk9ZblZvZGtac2VtWjBNRWg1TUZoclV3b3hTazEyY0haU1dHRnlkM1ZJYm1KYU1GbEhibXRTT0VkVVdFRnBXVXRoY1ZWSFRGcGpja05UVlZGcVp6QjVTbXhCVVV0RFFWRkZRVEJOZUcxaE0yUTNDbmhKVWtZNFl6ZGFTbG8yUlhSNlQyTlRVbWRzUTNSb1owdHVaMnAzSzJaNFpDOUJVbmxqS3pOekswSnRkMnd4TVVFMGVGTk1TMVpOWWpGSlZqVkVNM01LTUVnd1kwTmxabFV4ZVVORU1sQXdjVmgyVGl0a01HOTJTMnR0Y0hWUE1sUkZOMkkxVTJ4d1YyMHlNVWxDT1dOd0syVXpNbVpWV2pOYVJVaHZaM3BNTVFveWRIVm1kWFJNYVdGa1MwTmxhUzlyTjJaT1ZqZE1OSGt5Y25ZemJGQlJRWEpEV0RKa1RqRXJXR3h6V1RoRk5IaFBSbkpYUkZGWWNtNUNibFJYTjBZMkNuWk9OREpsYjJscVFuTkxOV1Y1VEhKMmNVTnJTM0J0VTFCTmRGZGtSblZyZFd4SlZXMXNaM2hFV0VoV1puUXZia3h1VjNobUx5dDZOVEJrUVhneFRIa0tjQ3N6UWxrMGVtUm5iVWwyT1hob2JYTmhNSFJDU2xoaFozWm9aMk5qV0N0blZYY3ZZMlZNZFRkQ1lXMVNkbkU0WVhKeU5YUjBNRll6TUZKclRYVXlNd3BLUzBObE5IcENRblZ4ZVRnclVVdERRVkZGUVRaQ1QwZEZlbTVFWXpad2NGWlNLM0JJU2t4cFlqWnpkWHBoYm5kS2JVRnVZWEpWVDNsUlpuZ3hjVXAxQ214SmNWUm5PVXRSYTFnNGVYZ3plVmR2TUVSdlYwdG9OR2s0YzBwTWNrODFVbU5VYjNkNmRsUTFiMnh6V2tOMWQycDZjWEpCVFVsdVRuTnFSRzFsVEZvS2VqWjJhVnBZYTFOalYzaG9lV2hFY2psbmEwNHZaWHByUm1KWE1VSkJVVlJsV2taSE5HZGlOSEp0VTA1VVFYRkZSSGt6ZDFOT1IyWlZPV05OTWpWTk53cHZhVmc0V1dKalRrOXpTelZtSzFReFVWcDJaa1ZNY1dJcloySk9WMFpMT1hCelZFMWxUVUZsV1hCS1pEVk1TalpHVVdkdllXbHFNSEZVY1ZwamQwdDRDa2xtZVRaUFZsRkxVVlYwY2pGRGNuZHdWMFpSU0VNelJYaDZiMEYwTnpaV2R6VlRUVUpwV0N0bFUwMTFiRTFQYTJWUlR6RTRhbHBNZFRWUldXWTBhR2tLV1ZSNUsxb3djWFUxT1dscldETnhOWFpVVnpaclVtTnpTSGRQUml0YWFGTmtVVGw2YzB0cVducDNTME5CVVVGRU5VdDJUVTlVUVdadEt5OUtPRWhrZHdwRmFVdGlXQ3RVT0Vnck1HYzFTMUF5V25OTlZEbG9SVEJyVlRscWJXWkljemh5VVRONk5VcE5MMHRNVkc1cmJITnJabFpEYVdvd1QweHBZMFp6UlV4NENuUXZUamxoYTNOT09XcENXR1pTVTJkRWVuVlJOMU13WlRSMmVVY3ZSMUU1UW1FMlowcHplbkpyYUhCVlpqWnVaVkJ5VW1STVpXZFVjWEZEZURGU2FsQUtja1pOZFdkQ1NXVjBZbXBYWW5veE0yZHhWemxMTUdWUU4ya3hTVkpLUlVWd1YwbDZjVTlIVjBWWGRVbFdjVWh6UTFSak9YTklUaTlpWnpGS0x6VTBOZ3BzUVhKMFZuUjBZV1JLYUdKRGRqUkdSVU15VDJka04zbGpia1ppTlRKVlUzZFNjV2RCVVVSSmFIWXhSMU0zYUVwRFlsVldaMjFDZGpkVGFqY3JSRnA0Q2twbEsweENaazR3VVV0NGEwNHpPRnBxYUZGUFUzZHFVakZIUVdsbFdEZEhMME13YUdsaE9WWjBhVXhPTTBKV05sVnJXV3RDVUdGNlVXbE9NRlJSVVUwS2RsRm1Va0Z2U1VKQlJXOUlSMFZvTDNJemJuZDZUMHR5VlRjeFlXMVZTVE51Tld4Wk9FNUxPRGQ2V0Zwb1ZuSlpNM1Z4ZUVzMFlsVlpWazh5VldkcmJncFJkVXBvVDI5bVpYZ3pObTlXY2s0ME1ETm5SRTlyUlc5SE0zUlVWbFJrTDJSSlZFeGlkV3g0VGtkVWMybGhaWFpEVEROSmJpdFFabXg2Y2pWRlRXNHZDbGxZTkdOUlltaGphMUZ6UkdsdmJtMVRWbEkzYmtZMk1USmFPVEY1T1U5T1NGbHJOQzlaUkN0RVZubGtRMU0yYzA1V2VrSk1WVGtyZDBjdlJ5OVZRbGNLU25WbVJqa3ZiWGx3T0dac1ZIRllSbW8zUkhoNU5qaHljbGhIUkVSMU5IZGtRMVJyVkZrM2VEWkVjR013UWxrdlN5OHlSWGxWTTI1SFRuWTJhemMzWVFwUFVUUlliVWRYV1d0bU5EZEdlamRhYjB0eU56ZDZabEUxV1RFNGFIaDZTeTlUZGxVNFJucDBjM2hqVFM5TlJtSTNlV2xZVERWTFJ6RjBSMHRCUW5KVENtWjZVVFZ4U1M5VVYwdDVOV05KYVVGRWFtUmpkMFZwTkRSb1ZtazVkamhEWjJkRlFrRktaazVwTkhWdWEwczFhSEJTV25SWE1tRlVkWFoyYzJjdk1IQUtNRTlIUmtjdlVYVXhhVzV4YmtGVlNuRmlVMVZLT0ZVMlRVbERPVWhMUjBVeE5sTmpLMVF2YlU5aFkzTlJjM0ZFTUhOb1dWbzJZWHBzVmxGaWNHdFBZUXB0WVVzeWMwWXpZbEF4TUdFMWFIWllhRlpOY0ZscVUyeGhUSEp3UVhCbU5rUjFXVlJrWVRkcFUxbzNUVEpYSzFvdk5VRlFVMnR3UmxScVVHRXZaV3RIQ2tWTE9GSkdVelpSYW0xa2VYQjFlVmhHT0RoVVJYZ3JOV2xrTURrNFpHRjJiVnBIWm1KSFQxTjNRalJSUlVRMVZ6Z3JNREl3VHk5NVRFMU1aVlphY0VVS2NHZ3hWbEJ5VmpWV09WUTFia3hNYnpSalNUSnplVE5RWWk5bWFqVXdTbUV3ZUhneFZFbDNSVVI0VEZCQ04zcHVlR3RYYkdGV1NqRk5ka2h0WWpWc2JBcDBjMUZOU1c1TlJuUTJWamgwVHpoUU9VZEpZVkJWUkZkblNTczRXV1J4ZUZSSEx6WnVUV3RpVUhkRWRFcDNRMjlIUTFsbFlVSjBTMDQyVVQwS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiBod3psN3pkbXFkdDc4YzVlNGZ3NjB5cXluY3N0bTF3YWtkMXFncTJkNmpjMWVuNGpvbDB4eHIydHRlaGZ0ZzQzODlyamhub2F2Z2Fkc2lwd3plMGFoYXpyODdvdnVkYmlqYzdmenlkMGQ4aGx4b2U4eDNtemU0OWNkazl6aTE4OQo=\"\n + \ }\n ]\n }" headers: cache-control: - no-cache @@ -1101,7 +1177,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:43:13 GMT + - Thu, 29 Jun 2023 11:24:10 GMT expires: - '-1' pragma: @@ -1135,65 +1211,63 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-pceg8oar.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-pceg8oar.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/ac278646-b05d-497f-b7fd-79c73e9acb8c\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4186' + - '3863' content-type: - application/json date: - - Thu, 15 Jun 2023 19:43:14 GMT + - Thu, 29 Jun 2023 11:24:11 GMT expires: - '-1' pragma: @@ -1212,7 +1286,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "eastus", "sku": {"name": "Base", "tier": "Free"}, "identity": + 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": @@ -1221,15 +1295,16 @@ interactions: "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_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"}]}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_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/ac278646-b05d-497f-b7fd-79c73e9acb8c"}]}, "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_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool", + ["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": @@ -1244,73 +1319,71 @@ interactions: Connection: - keep-alive Content-Length: - - '2820' + - '2495' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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\": \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-pceg8oar.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-pceg8oar.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/ac278646-b05d-497f-b7fd-79c73e9acb8c\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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/eastus/operations/18c8f123-4bec-40b6-b54c-625832add559?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e0f4360a-e6db-4f34-9bc9-e34f8b0b4b07?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4184' + - '3861' content-type: - application/json date: - - Thu, 15 Jun 2023 19:43:20 GMT + - Thu, 29 Jun 2023 11:24:17 GMT expires: - '-1' pragma: @@ -1326,7 +1399,247 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' + 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e0f4360a-e6db-4f34-9bc9-e34f8b0b4b07?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"0a36f4e0-dbe6-344f-9bc9-e34f8b0b4b07\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:24:16.6275463Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 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 scale + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e0f4360a-e6db-4f34-9bc9-e34f8b0b4b07?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"0a36f4e0-dbe6-344f-9bc9-e34f8b0b4b07\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:24:16.6275463Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 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 scale + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e0f4360a-e6db-4f34-9bc9-e34f8b0b4b07?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"0a36f4e0-dbe6-344f-9bc9-e34f8b0b4b07\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:24:16.6275463Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:25: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 scale + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e0f4360a-e6db-4f34-9bc9-e34f8b0b4b07?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"0a36f4e0-dbe6-344f-9bc9-e34f8b0b4b07\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:24:16.6275463Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11: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 scale + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e0f4360a-e6db-4f34-9bc9-e34f8b0b4b07?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"0a36f4e0-dbe6-344f-9bc9-e34f8b0b4b07\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:24:16.6275463Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:26: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 @@ -1344,14 +1657,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/18c8f123-4bec-40b6-b54c-625832add559?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e0f4360a-e6db-4f34-9bc9-e34f8b0b4b07?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"23f1c818-ec4b-b640-b54c-625832add559\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T19:43:21.3397116Z\"\n }" + string: "{\n \"name\": \"0a36f4e0-dbe6-344f-9bc9-e34f8b0b4b07\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:24:16.6275463Z\"\n }" headers: cache-control: - no-cache @@ -1360,7 +1673,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:43:21 GMT + - Thu, 29 Jun 2023 11:26:48 GMT expires: - '-1' pragma: @@ -1392,14 +1705,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/18c8f123-4bec-40b6-b54c-625832add559?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e0f4360a-e6db-4f34-9bc9-e34f8b0b4b07?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"23f1c818-ec4b-b640-b54c-625832add559\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T19:43:21.3397116Z\"\n }" + string: "{\n \"name\": \"0a36f4e0-dbe6-344f-9bc9-e34f8b0b4b07\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:24:16.6275463Z\"\n }" headers: cache-control: - no-cache @@ -1408,7 +1721,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:43:52 GMT + - Thu, 29 Jun 2023 11:27:18 GMT expires: - '-1' pragma: @@ -1440,14 +1753,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/18c8f123-4bec-40b6-b54c-625832add559?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e0f4360a-e6db-4f34-9bc9-e34f8b0b4b07?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"23f1c818-ec4b-b640-b54c-625832add559\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T19:43:21.3397116Z\"\n }" + string: "{\n \"name\": \"0a36f4e0-dbe6-344f-9bc9-e34f8b0b4b07\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:24:16.6275463Z\"\n }" headers: cache-control: - no-cache @@ -1456,7 +1769,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:45:05 GMT + - Thu, 29 Jun 2023 11:27:48 GMT expires: - '-1' pragma: @@ -1488,14 +1801,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/18c8f123-4bec-40b6-b54c-625832add559?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e0f4360a-e6db-4f34-9bc9-e34f8b0b4b07?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"23f1c818-ec4b-b640-b54c-625832add559\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T19:43:21.3397116Z\"\n }" + string: "{\n \"name\": \"0a36f4e0-dbe6-344f-9bc9-e34f8b0b4b07\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:24:16.6275463Z\"\n }" headers: cache-control: - no-cache @@ -1504,7 +1817,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:45:50 GMT + - Thu, 29 Jun 2023 11:28:18 GMT expires: - '-1' pragma: @@ -1536,14 +1849,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/18c8f123-4bec-40b6-b54c-625832add559?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e0f4360a-e6db-4f34-9bc9-e34f8b0b4b07?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"23f1c818-ec4b-b640-b54c-625832add559\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T19:43:21.3397116Z\"\n }" + string: "{\n \"name\": \"0a36f4e0-dbe6-344f-9bc9-e34f8b0b4b07\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:24:16.6275463Z\"\n }" headers: cache-control: - no-cache @@ -1552,7 +1865,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:46:20 GMT + - Thu, 29 Jun 2023 11:28:48 GMT expires: - '-1' pragma: @@ -1584,15 +1897,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/18c8f123-4bec-40b6-b54c-625832add559?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e0f4360a-e6db-4f34-9bc9-e34f8b0b4b07?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"0a36f4e0-dbe6-344f-9bc9-e34f8b0b4b07\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:24:16.6275463Z\",\n \"endTime\": + \"2023-06-29T11:28:57.3231854Z\"\n }" headers: cache-control: - no-cache @@ -1601,7 +1914,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:46:51 GMT + - Thu, 29 Jun 2023 11:29:19 GMT expires: - '-1' pragma: @@ -1633,65 +1946,63 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-pceg8oar.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-pceg8oar.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/ac278646-b05d-497f-b7fd-79c73e9acb8c\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4186' + - '3863' content-type: - application/json date: - - Thu, 15 Jun 2023 19:46:51 GMT + - Thu, 29 Jun 2023 11:29:19 GMT expires: - '-1' pragma: @@ -1723,65 +2034,63 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-pceg8oar.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-pceg8oar.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/ac278646-b05d-497f-b7fd-79c73e9acb8c\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4186' + - '3863' content-type: - application/json date: - - Thu, 15 Jun 2023 19:46:53 GMT + - Thu, 29 Jun 2023 11:29:20 GMT expires: - '-1' pragma: @@ -1815,8 +2124,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/cliakstest000001?api-version=2023-05-01 response: @@ -1824,17 +2133,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4bc35c05-eecb-49b3-8102-a16ba214360d?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 15 Jun 2023 19:46:54 GMT + - Thu, 29 Jun 2023 11:29:21 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/4bc35c05-eecb-49b3-8102-a16ba214360d?api-version=2016-03-30 pragma: - no-cache server: @@ -1844,7 +2153,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14996' 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 index e706759e0a2..1b6f6af098e 100644 --- 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 19:46:58 GMT + - Thu, 29 Jun 2023 11:12:40 GMT expires: - '-1' pragma: @@ -60,12 +60,12 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --node-vm-size -o User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1039-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_nodepool_abort","date":"2023-06-15T19:46:57Z","module":"acs"},"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-29T11:12:38Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -74,7 +74,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 19:46:58 GMT + - Thu, 29 Jun 2023 11:12:39 GMT expires: - '-1' pragma: @@ -90,18 +90,19 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestvcxxvs2qj-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestftrkbwghl-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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {}}}' headers: Accept: - application/json @@ -112,70 +113,68 @@ interactions: Connection: - keep-alive Content-Length: - - '1751' + - '1422' Content-Type: - application/json ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value --node-vm-size -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestftrkbwghl-79a739\",\n \"fqdn\": \"cliakstest-clitestftrkbwghl-79a739-zt0wfpno.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestftrkbwghl-79a739-zt0wfpno.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"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/8b10d8f1-53b7-4ce2-a311-522c1229cee6?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c295e898-b952-4b2c-b470-a27ac0c1e414?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3596' + - '3267' content-type: - application/json date: - - Thu, 15 Jun 2023 19:47:06 GMT + - Thu, 29 Jun 2023 11:12:46 GMT expires: - '-1' pragma: @@ -206,14 +205,14 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --node-vm-size -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c295e898-b952-4b2c-b470-a27ac0c1e414?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f1d8108b-b753-e24c-a311-522c1229cee6\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T19:47:06.2589108Z\"\n }" + string: "{\n \"name\": \"98e895c2-52b9-2c4b-b470-a27ac0c1e414\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:12:45.7508884Z\"\n }" headers: cache-control: - no-cache @@ -222,7 +221,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:47:06 GMT + - Thu, 29 Jun 2023 11:12:46 GMT expires: - '-1' pragma: @@ -231,10 +230,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -255,14 +250,14 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --node-vm-size -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c295e898-b952-4b2c-b470-a27ac0c1e414?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f1d8108b-b753-e24c-a311-522c1229cee6\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T19:47:06.2589108Z\"\n }" + string: "{\n \"name\": \"98e895c2-52b9-2c4b-b470-a27ac0c1e414\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:12:45.7508884Z\"\n }" headers: cache-control: - no-cache @@ -271,7 +266,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:47:36 GMT + - Thu, 29 Jun 2023 11:13:16 GMT expires: - '-1' pragma: @@ -280,10 +275,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -304,14 +295,14 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --node-vm-size -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c295e898-b952-4b2c-b470-a27ac0c1e414?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f1d8108b-b753-e24c-a311-522c1229cee6\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T19:47:06.2589108Z\"\n }" + string: "{\n \"name\": \"98e895c2-52b9-2c4b-b470-a27ac0c1e414\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:12:45.7508884Z\"\n }" headers: cache-control: - no-cache @@ -320,7 +311,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:48:07 GMT + - Thu, 29 Jun 2023 11:13:46 GMT expires: - '-1' pragma: @@ -329,10 +320,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -353,14 +340,14 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --node-vm-size -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c295e898-b952-4b2c-b470-a27ac0c1e414?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f1d8108b-b753-e24c-a311-522c1229cee6\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T19:47:06.2589108Z\"\n }" + string: "{\n \"name\": \"98e895c2-52b9-2c4b-b470-a27ac0c1e414\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:12:45.7508884Z\"\n }" headers: cache-control: - no-cache @@ -369,7 +356,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:48:37 GMT + - Thu, 29 Jun 2023 11:14:16 GMT expires: - '-1' pragma: @@ -378,10 +365,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -402,14 +385,14 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --node-vm-size -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c295e898-b952-4b2c-b470-a27ac0c1e414?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f1d8108b-b753-e24c-a311-522c1229cee6\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T19:47:06.2589108Z\"\n }" + string: "{\n \"name\": \"98e895c2-52b9-2c4b-b470-a27ac0c1e414\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:12:45.7508884Z\"\n }" headers: cache-control: - no-cache @@ -418,7 +401,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:49:07 GMT + - Thu, 29 Jun 2023 11:14:46 GMT expires: - '-1' pragma: @@ -427,10 +410,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -451,14 +430,14 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --node-vm-size -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c295e898-b952-4b2c-b470-a27ac0c1e414?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f1d8108b-b753-e24c-a311-522c1229cee6\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T19:47:06.2589108Z\"\n }" + string: "{\n \"name\": \"98e895c2-52b9-2c4b-b470-a27ac0c1e414\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:12:45.7508884Z\"\n }" headers: cache-control: - no-cache @@ -467,7 +446,97 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:49:37 GMT + - Thu, 29 Jun 2023 11:15:16 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 --node-vm-size + -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c295e898-b952-4b2c-b470-a27ac0c1e414?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"98e895c2-52b9-2c4b-b470-a27ac0c1e414\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:12:45.7508884Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:15:47 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 --node-vm-size + -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c295e898-b952-4b2c-b470-a27ac0c1e414?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"98e895c2-52b9-2c4b-b470-a27ac0c1e414\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:12:45.7508884Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:16:17 GMT expires: - '-1' pragma: @@ -476,10 +545,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -500,15 +565,150 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --node-vm-size -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c295e898-b952-4b2c-b470-a27ac0c1e414?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"98e895c2-52b9-2c4b-b470-a27ac0c1e414\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:12:45.7508884Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:16:47 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 --node-vm-size + -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c295e898-b952-4b2c-b470-a27ac0c1e414?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"98e895c2-52b9-2c4b-b470-a27ac0c1e414\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:12:45.7508884Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:17:17 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 --node-vm-size + -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c295e898-b952-4b2c-b470-a27ac0c1e414?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"98e895c2-52b9-2c4b-b470-a27ac0c1e414\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:12:45.7508884Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:17:47 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 --node-vm-size + -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c295e898-b952-4b2c-b470-a27ac0c1e414?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"98e895c2-52b9-2c4b-b470-a27ac0c1e414\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:12:45.7508884Z\",\n \"endTime\": + \"2023-06-29T11:18:07.2500044Z\"\n }" headers: cache-control: - no-cache @@ -517,7 +717,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:50:08 GMT + - Thu, 29 Jun 2023 11:18:17 GMT expires: - '-1' pragma: @@ -526,10 +726,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -550,66 +746,63 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --node-vm-size -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestftrkbwghl-79a739\",\n \"fqdn\": \"cliakstest-clitestftrkbwghl-79a739-zt0wfpno.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestftrkbwghl-79a739-zt0wfpno.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/68783542-5cb5-4442-aa42-1ebbc211f71c\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4249' + - '3920' content-type: - application/json date: - - Thu, 15 Jun 2023 19:50:08 GMT + - Thu, 29 Jun 2023 11:18:17 GMT expires: - '-1' pragma: @@ -618,10 +811,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -641,25 +830,25 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-vm-size --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ - : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\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 }" + 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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n + }" headers: cache-control: - no-cache @@ -668,7 +857,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:50:12 GMT + - Thu, 29 Jun 2023 11:18:19 GMT expires: - '-1' pragma: @@ -709,28 +898,27 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-vm-size --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.19.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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2e90e7b9-0b54-4452-8316-ede5d89c58ee?api-version=2016-03-30 cache-control: - no-cache content-length: @@ -738,7 +926,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:50:18 GMT + - Thu, 29 Jun 2023 11:18:23 GMT expires: - '-1' pragma: @@ -768,14 +956,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-vm-size --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2e90e7b9-0b54-4452-8316-ede5d89c58ee?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f560b5a6-c59c-f743-8975-602bc00610dd\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T19:50:18.7281504Z\"\n }" + string: "{\n \"name\": \"b9e7902e-540b-5244-8316-ede5d89c58ee\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:18:23.8922878Z\"\n }" headers: cache-control: - no-cache @@ -784,7 +972,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:50:18 GMT + - Thu, 29 Jun 2023 11:18:23 GMT expires: - '-1' pragma: @@ -816,14 +1004,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-vm-size --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2e90e7b9-0b54-4452-8316-ede5d89c58ee?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f560b5a6-c59c-f743-8975-602bc00610dd\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T19:50:18.7281504Z\"\n }" + string: "{\n \"name\": \"b9e7902e-540b-5244-8316-ede5d89c58ee\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:18:23.8922878Z\"\n }" headers: cache-control: - no-cache @@ -832,7 +1020,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:50:48 GMT + - Thu, 29 Jun 2023 11:18:54 GMT expires: - '-1' pragma: @@ -864,14 +1052,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-vm-size --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2e90e7b9-0b54-4452-8316-ede5d89c58ee?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f560b5a6-c59c-f743-8975-602bc00610dd\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T19:50:18.7281504Z\"\n }" + string: "{\n \"name\": \"b9e7902e-540b-5244-8316-ede5d89c58ee\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:18:23.8922878Z\"\n }" headers: cache-control: - no-cache @@ -880,7 +1068,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:51:19 GMT + - Thu, 29 Jun 2023 11:19:23 GMT expires: - '-1' pragma: @@ -912,14 +1100,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-vm-size --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2e90e7b9-0b54-4452-8316-ede5d89c58ee?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f560b5a6-c59c-f743-8975-602bc00610dd\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T19:50:18.7281504Z\"\n }" + string: "{\n \"name\": \"b9e7902e-540b-5244-8316-ede5d89c58ee\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:18:23.8922878Z\"\n }" headers: cache-control: - no-cache @@ -928,7 +1116,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:51:49 GMT + - Thu, 29 Jun 2023 11:19:53 GMT expires: - '-1' pragma: @@ -960,14 +1148,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-vm-size --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2e90e7b9-0b54-4452-8316-ede5d89c58ee?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f560b5a6-c59c-f743-8975-602bc00610dd\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T19:50:18.7281504Z\"\n }" + string: "{\n \"name\": \"b9e7902e-540b-5244-8316-ede5d89c58ee\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:18:23.8922878Z\"\n }" headers: cache-control: - no-cache @@ -976,7 +1164,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:52:19 GMT + - Thu, 29 Jun 2023 11:20:24 GMT expires: - '-1' pragma: @@ -1008,14 +1196,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-vm-size --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2e90e7b9-0b54-4452-8316-ede5d89c58ee?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f560b5a6-c59c-f743-8975-602bc00610dd\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T19:50:18.7281504Z\"\n }" + string: "{\n \"name\": \"b9e7902e-540b-5244-8316-ede5d89c58ee\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:18:23.8922878Z\"\n }" headers: cache-control: - no-cache @@ -1024,7 +1212,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:52:49 GMT + - Thu, 29 Jun 2023 11:20:54 GMT expires: - '-1' pragma: @@ -1056,14 +1244,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-vm-size --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2e90e7b9-0b54-4452-8316-ede5d89c58ee?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f560b5a6-c59c-f743-8975-602bc00610dd\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T19:50:18.7281504Z\"\n }" + string: "{\n \"name\": \"b9e7902e-540b-5244-8316-ede5d89c58ee\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:18:23.8922878Z\"\n }" headers: cache-control: - no-cache @@ -1072,7 +1260,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:53:20 GMT + - Thu, 29 Jun 2023 11:21:24 GMT expires: - '-1' pragma: @@ -1104,15 +1292,63 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-vm-size --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2e90e7b9-0b54-4452-8316-ede5d89c58ee?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"b9e7902e-540b-5244-8316-ede5d89c58ee\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:18:23.8922878Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:21: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 nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --node-vm-size --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2e90e7b9-0b54-4452-8316-ede5d89c58ee?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"b9e7902e-540b-5244-8316-ede5d89c58ee\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:18:23.8922878Z\",\n \"endTime\": + \"2023-06-29T11:22:23.5342031Z\"\n }" headers: cache-control: - no-cache @@ -1121,7 +1357,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:53:49 GMT + - Thu, 29 Jun 2023 11:22:24 GMT expires: - '-1' pragma: @@ -1153,25 +1389,24 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-vm-size --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/c000003?api-version=2023-05-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.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 }" + 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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -1180,7 +1415,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:53:50 GMT + - Thu, 29 Jun 2023 11:22:24 GMT expires: - '-1' pragma: @@ -1212,38 +1447,37 @@ interactions: ParameterSetName: - --no-wait --resource-group --cluster-name --nodepool-name --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.19.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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n + }" headers: cache-control: - no-cache @@ -1252,7 +1486,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:53:51 GMT + - Thu, 29 Jun 2023 11:22:26 GMT expires: - '-1' pragma: @@ -1284,25 +1518,24 @@ interactions: ParameterSetName: - --no-wait --resource-group --cluster-name --nodepool-name --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/c000003?api-version=2023-05-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.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 }" + 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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -1311,7 +1544,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:53:52 GMT + - Thu, 29 Jun 2023 11:22:26 GMT expires: - '-1' pragma: @@ -1353,28 +1586,27 @@ interactions: ParameterSetName: - --no-wait --resource-group --cluster-name --nodepool-name --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.19.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/32566619-401a-4fa4-965a-eaf6542e20fa?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0a7bdd49-8028-4d8a-99fc-5f7521aaaa57?api-version=2016-03-30 cache-control: - no-cache content-length: @@ -1382,7 +1614,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:53:55 GMT + - Thu, 29 Jun 2023 11:22:30 GMT expires: - '-1' pragma: @@ -1398,7 +1630,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -1416,38 +1648,37 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.19.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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n + }" headers: cache-control: - no-cache @@ -1456,7 +1687,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:53:57 GMT + - Thu, 29 Jun 2023 11:22:30 GMT expires: - '-1' pragma: @@ -1488,25 +1719,24 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/c000003?api-version=2023-05-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.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 }" + 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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -1515,7 +1745,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:53:58 GMT + - Thu, 29 Jun 2023 11:22:31 GMT expires: - '-1' pragma: @@ -1549,28 +1779,27 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/agentPools/c000003/abort?api-version=2023-05-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.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 }" + 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.19.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/b6ef49e6-7281-4ac4-bab5-980e11411b93?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0bb44895-38a9-4e31-af9f-a9732e1bb6f6?api-version=2016-03-30 cache-control: - no-cache content-length: @@ -1578,11 +1807,11 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:53:58 GMT + - Thu, 29 Jun 2023 11:22:31 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/0bb44895-38a9-4e31-af9f-a9732e1bb6f6?api-version=2016-03-30 pragma: - no-cache server: @@ -1610,14 +1839,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0bb44895-38a9-4e31-af9f-a9732e1bb6f6?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 }" + string: "{\n \"name\": \"9548b40b-a938-314e-af9f-a9732e1bb6f6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:22:32.5022841Z\"\n }" headers: cache-control: - no-cache @@ -1626,7 +1855,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:53:58 GMT + - Thu, 29 Jun 2023 11:22:31 GMT expires: - '-1' pragma: @@ -1658,15 +1887,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0bb44895-38a9-4e31-af9f-a9732e1bb6f6?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"9548b40b-a938-314e-af9f-a9732e1bb6f6\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:22:32.5022841Z\",\n \"endTime\": + \"2023-06-29T11:22:41.8628987Z\"\n }" headers: cache-control: - no-cache @@ -1675,7 +1904,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:54:28 GMT + - Thu, 29 Jun 2023 11:23:02 GMT expires: - '-1' pragma: @@ -1707,10 +1936,10 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/0bb44895-38a9-4e31-af9f-a9732e1bb6f6?api-version=2016-03-30 response: body: string: '' @@ -1720,11 +1949,11 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:54:28 GMT + - Thu, 29 Jun 2023 11:23:02 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/0bb44895-38a9-4e31-af9f-a9732e1bb6f6?api-version=2016-03-30 pragma: - no-cache server: @@ -1750,25 +1979,24 @@ interactions: ParameterSetName: - --resource-group --cluster-name -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/c000003?api-version=2023-05-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.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 }" + 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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -1777,7 +2005,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 19:54:41 GMT + - Thu, 29 Jun 2023 11:23:13 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 b481a8536ab..d5d551f8005 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 23:02:35 GMT + - Thu, 29 Jun 2023 11:23:16 GMT expires: - '-1' pragma: @@ -58,23 +58,21 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1039-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":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_aks_nodepool_add_with_ossku","date":"2023-06-15T23:02:34Z","module":"acs"},"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_add_with_ossku","date":"2023-06-29T11:23:15Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache - connection: - - close content-length: - - '361' + - '362' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 23:02:36 GMT + - Thu, 29 Jun 2023 11:23:16 GMT expires: - '-1' pragma: @@ -89,19 +87,20 @@ interactions: code: 200 message: OK - request: - body: '{"location": "eastus", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestafsznnmbk-8ecadf", + body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestrddpwjbwc-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": "c000003"}], "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": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {}}}' headers: Accept: - application/json @@ -112,69 +111,67 @@ interactions: Connection: - keep-alive Content-Length: - - '1748' + - '1420' Content-Type: - application/json ParameterSetName: - --resource-group --name --nodepool-name -c --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestrddpwjbwc-79a739\",\n \"fqdn\": \"cliakstest-clitestrddpwjbwc-79a739-d7l58mqg.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestrddpwjbwc-79a739-d7l58mqg.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"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/2ec1c735-0c73-442c-a0fe-0d010c64d41d?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/63b80316-b5fe-428e-9cd1-85d6323588cc?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3590' + - '3265' content-type: - application/json date: - - Thu, 15 Jun 2023 23:02:42 GMT + - Thu, 29 Jun 2023 11:23:22 GMT expires: - '-1' pragma: @@ -186,7 +183,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 201 message: Created @@ -204,23 +201,23 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/2ec1c735-0c73-442c-a0fe-0d010c64d41d?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/63b80316-b5fe-428e-9cd1-85d6323588cc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"35c7c12e-730c-2c44-a0fe-0d010c64d41d\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T23:02:41.8616356Z\"\n }" + string: "{\n \"name\": \"1603b863-feb5-8e42-9cd1-85d6323588cc\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:23:22.018025Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 23:02:42 GMT + - Thu, 29 Jun 2023 11:23:22 GMT expires: - '-1' pragma: @@ -252,23 +249,23 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/2ec1c735-0c73-442c-a0fe-0d010c64d41d?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/63b80316-b5fe-428e-9cd1-85d6323588cc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"35c7c12e-730c-2c44-a0fe-0d010c64d41d\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T23:02:41.8616356Z\"\n }" + string: "{\n \"name\": \"1603b863-feb5-8e42-9cd1-85d6323588cc\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:23:22.018025Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 23:03:12 GMT + - Thu, 29 Jun 2023 11:23:52 GMT expires: - '-1' pragma: @@ -300,23 +297,23 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/2ec1c735-0c73-442c-a0fe-0d010c64d41d?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/63b80316-b5fe-428e-9cd1-85d6323588cc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"35c7c12e-730c-2c44-a0fe-0d010c64d41d\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T23:02:41.8616356Z\"\n }" + string: "{\n \"name\": \"1603b863-feb5-8e42-9cd1-85d6323588cc\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:23:22.018025Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 23:03:42 GMT + - Thu, 29 Jun 2023 11:24:22 GMT expires: - '-1' pragma: @@ -348,23 +345,23 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/2ec1c735-0c73-442c-a0fe-0d010c64d41d?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/63b80316-b5fe-428e-9cd1-85d6323588cc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"35c7c12e-730c-2c44-a0fe-0d010c64d41d\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T23:02:41.8616356Z\"\n }" + string: "{\n \"name\": \"1603b863-feb5-8e42-9cd1-85d6323588cc\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:23:22.018025Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 23:04:12 GMT + - Thu, 29 Jun 2023 11:24:52 GMT expires: - '-1' pragma: @@ -396,23 +393,23 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/2ec1c735-0c73-442c-a0fe-0d010c64d41d?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/63b80316-b5fe-428e-9cd1-85d6323588cc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"35c7c12e-730c-2c44-a0fe-0d010c64d41d\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T23:02:41.8616356Z\"\n }" + string: "{\n \"name\": \"1603b863-feb5-8e42-9cd1-85d6323588cc\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:23:22.018025Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 23:04:42 GMT + - Thu, 29 Jun 2023 11:25:23 GMT expires: - '-1' pragma: @@ -444,23 +441,23 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/2ec1c735-0c73-442c-a0fe-0d010c64d41d?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/63b80316-b5fe-428e-9cd1-85d6323588cc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"35c7c12e-730c-2c44-a0fe-0d010c64d41d\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T23:02:41.8616356Z\"\n }" + string: "{\n \"name\": \"1603b863-feb5-8e42-9cd1-85d6323588cc\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:23:22.018025Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 23:05:13 GMT + - Thu, 29 Jun 2023 11:25:52 GMT expires: - '-1' pragma: @@ -492,23 +489,23 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/2ec1c735-0c73-442c-a0fe-0d010c64d41d?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/63b80316-b5fe-428e-9cd1-85d6323588cc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"35c7c12e-730c-2c44-a0fe-0d010c64d41d\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T23:02:41.8616356Z\"\n }" + string: "{\n \"name\": \"1603b863-feb5-8e42-9cd1-85d6323588cc\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:23:22.018025Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 23:05:43 GMT + - Thu, 29 Jun 2023 11:26:22 GMT expires: - '-1' pragma: @@ -540,23 +537,23 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/2ec1c735-0c73-442c-a0fe-0d010c64d41d?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/63b80316-b5fe-428e-9cd1-85d6323588cc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"35c7c12e-730c-2c44-a0fe-0d010c64d41d\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T23:02:41.8616356Z\"\n }" + string: "{\n \"name\": \"1603b863-feb5-8e42-9cd1-85d6323588cc\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:23:22.018025Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 15 Jun 2023 23:06:13 GMT + - Thu, 29 Jun 2023 11:26:52 GMT expires: - '-1' pragma: @@ -588,24 +585,120 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/2ec1c735-0c73-442c-a0fe-0d010c64d41d?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/63b80316-b5fe-428e-9cd1-85d6323588cc?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"1603b863-feb5-8e42-9cd1-85d6323588cc\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:23:22.018025Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '125' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:27: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 --nodepool-name -c --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/63b80316-b5fe-428e-9cd1-85d6323588cc?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"1603b863-feb5-8e42-9cd1-85d6323588cc\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:23:22.018025Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:27: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 --nodepool-name -c --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/63b80316-b5fe-428e-9cd1-85d6323588cc?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"1603b863-feb5-8e42-9cd1-85d6323588cc\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:23:22.018025Z\",\n \"endTime\": + \"2023-06-29T11:28:18.9447803Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '169' content-type: - application/json date: - - Thu, 15 Jun 2023 23:06:43 GMT + - Thu, 29 Jun 2023 11:28:23 GMT expires: - '-1' pragma: @@ -637,66 +730,63 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestrddpwjbwc-79a739\",\n \"fqdn\": \"cliakstest-clitestrddpwjbwc-79a739-d7l58mqg.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestrddpwjbwc-79a739-d7l58mqg.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/c5745197-4860-4e46-97ca-0106c556bb34\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4241' + - '3918' content-type: - application/json date: - - Thu, 15 Jun 2023 23:06:43 GMT + - Thu, 29 Jun 2023 11:28:24 GMT expires: - '-1' pragma: @@ -728,25 +818,25 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-sku User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ - ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ - kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ - ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ - ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ - : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ - : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\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 }" + 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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n + }" headers: cache-control: - no-cache @@ -755,7 +845,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 23:06:45 GMT + - Thu, 29 Jun 2023 11:28:25 GMT expires: - '-1' pragma: @@ -796,28 +886,27 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-sku User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.19.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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d9c431b8-bebd-46fb-86a1-4534fc68a11e?api-version=2016-03-30 cache-control: - no-cache content-length: @@ -825,7 +914,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 23:06:49 GMT + - Thu, 29 Jun 2023 11:28:29 GMT expires: - '-1' pragma: @@ -837,7 +926,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -855,14 +944,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-sku User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/65923729-0c5d-4d2c-b324-d109ac12f53c?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d9c431b8-bebd-46fb-86a1-4534fc68a11e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"29379265-5d0c-2c4d-b324-d109ac12f53c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T23:06:50.3796384Z\"\n }" + string: "{\n \"name\": \"b831c4d9-bdbe-fb46-86a1-4534fc68a11e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:28:29.9249036Z\"\n }" headers: cache-control: - no-cache @@ -871,7 +960,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 23:06:49 GMT + - Thu, 29 Jun 2023 11:28:29 GMT expires: - '-1' pragma: @@ -903,14 +992,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-sku User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/65923729-0c5d-4d2c-b324-d109ac12f53c?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d9c431b8-bebd-46fb-86a1-4534fc68a11e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"29379265-5d0c-2c4d-b324-d109ac12f53c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T23:06:50.3796384Z\"\n }" + string: "{\n \"name\": \"b831c4d9-bdbe-fb46-86a1-4534fc68a11e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:28:29.9249036Z\"\n }" headers: cache-control: - no-cache @@ -919,7 +1008,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 23:07:20 GMT + - Thu, 29 Jun 2023 11:29:00 GMT expires: - '-1' pragma: @@ -951,14 +1040,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-sku User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/65923729-0c5d-4d2c-b324-d109ac12f53c?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d9c431b8-bebd-46fb-86a1-4534fc68a11e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"29379265-5d0c-2c4d-b324-d109ac12f53c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T23:06:50.3796384Z\"\n }" + string: "{\n \"name\": \"b831c4d9-bdbe-fb46-86a1-4534fc68a11e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:28:29.9249036Z\"\n }" headers: cache-control: - no-cache @@ -967,7 +1056,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 23:07:50 GMT + - Thu, 29 Jun 2023 11:29:30 GMT expires: - '-1' pragma: @@ -999,14 +1088,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-sku User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/65923729-0c5d-4d2c-b324-d109ac12f53c?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d9c431b8-bebd-46fb-86a1-4534fc68a11e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"29379265-5d0c-2c4d-b324-d109ac12f53c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T23:06:50.3796384Z\"\n }" + string: "{\n \"name\": \"b831c4d9-bdbe-fb46-86a1-4534fc68a11e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:28:29.9249036Z\"\n }" headers: cache-control: - no-cache @@ -1015,7 +1104,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 23:08:20 GMT + - Thu, 29 Jun 2023 11:30:00 GMT expires: - '-1' pragma: @@ -1047,15 +1136,15 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-sku User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/65923729-0c5d-4d2c-b324-d109ac12f53c?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d9c431b8-bebd-46fb-86a1-4534fc68a11e?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"b831c4d9-bdbe-fb46-86a1-4534fc68a11e\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:28:29.9249036Z\",\n \"endTime\": + \"2023-06-29T11:30:30.0160019Z\"\n }" headers: cache-control: - no-cache @@ -1064,7 +1153,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 23:11:03 GMT + - Thu, 29 Jun 2023 11:30:30 GMT expires: - '-1' pragma: @@ -1096,25 +1185,24 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-sku User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/c000004?api-version=2023-05-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.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 }" + 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.19.0\",\n \"upgradeSettings\": {},\n \"enableFIPS\": + false\n }\n }" headers: cache-control: - no-cache @@ -1123,7 +1211,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 23:11:04 GMT + - Thu, 29 Jun 2023 11:30:30 GMT expires: - '-1' pragma: @@ -1157,8 +1245,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -1166,17 +1254,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3f459099-8abe-40cc-b15b-bec4dbc8ddf5?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 15 Jun 2023 23:11:06 GMT + - Thu, 29 Jun 2023 11:30:31 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/3f459099-8abe-40cc-b15b-bec4dbc8ddf5?api-version=2016-03-30 pragma: - no-cache server: @@ -1186,7 +1274,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_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 index 8ecad748ff5..3866c84f0dc 100644 --- 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,36 +13,39 @@ interactions: ParameterSetName: - -l --query User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/kubernetesVersions?api-version=2023-05-01 response: body: - 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 }" + string: "{\n \"values\": [\n {\n \"version\": \"1.27\",\n \"capabilities\": + {\n \"supportPlan\": [\n \"KubernetesOfficial\",\n \"AKSLongTermSupport\"\n + \ ]\n },\n \"patchVersions\": {\n \"1.27.1\": {\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.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.27.1\",\n \"1.26.3\"\n + \ ]\n },\n \"1.26.3\": {\n \"upgrades\": [\n \"1.27.1\"\n + \ ]\n }\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '957' + - '1218' content-type: - application/json date: - - Thu, 15 Jun 2023 23:11:10 GMT + - Thu, 29 Jun 2023 11:22:57 GMT expires: - '-1' pragma: @@ -76,8 +79,8 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value --kubernetes-version User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -93,7 +96,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 23:11:11 GMT + - Thu, 29 Jun 2023 11:22:58 GMT expires: - '-1' pragma: @@ -109,18 +112,19 @@ interactions: message: Not Found - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "1.26.3", "dnsPrefix": "cliaksdns000002", "agentPoolProfiles": + {"kubernetesVersion": "1.27.1", "dnsPrefix": "cliaksdns000002", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", - "orchestratorVersion": "1.26.3", "upgradeSettings": {}, "enableNodePublicIP": + "orchestratorVersion": "1.27.1", "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": - "replace-Password1234$"}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": - {"networkPlugin": "azure", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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": {}}}' headers: Accept: - application/json @@ -131,7 +135,7 @@ interactions: Connection: - keep-alive Content-Length: - - '1748' + - '1419' Content-Type: - application/json ParameterSetName: @@ -139,63 +143,61 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value --kubernetes-version User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.27.1\",\n \"currentKubernetesVersion\": \"1.27.1\",\n \"dnsPrefix\": + \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-rplyvkol.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-rplyvkol.portal.hcp.westus2.azmk8s.io\",\n + \ \"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.27.1\",\n \"currentOrchestratorVersion\": + \"1.27.1\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"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/91766903-a51f-473e-9a96-a6ab4b038342?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bd677cea-9c33-488b-9c55-26168fee7a8c?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3582' + - '3253' content-type: - application/json date: - - Thu, 15 Jun 2023 23:11:18 GMT + - Thu, 29 Jun 2023 11:23:04 GMT expires: - '-1' pragma: @@ -227,14 +229,14 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value --kubernetes-version User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bd677cea-9c33-488b-9c55-26168fee7a8c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"03697691-1fa5-3e47-9a96-a6ab4b038342\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T23:11:18.5230376Z\"\n }" + string: "{\n \"name\": \"ea7c67bd-339c-8b48-9c55-26168fee7a8c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:23:03.8929938Z\"\n }" headers: cache-control: - no-cache @@ -243,7 +245,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 23:11:18 GMT + - Thu, 29 Jun 2023 11:23:04 GMT expires: - '-1' pragma: @@ -277,15 +279,515 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value --kubernetes-version User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bd677cea-9c33-488b-9c55-26168fee7a8c?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"ea7c67bd-339c-8b48-9c55-26168fee7a8c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:23:03.8929938Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:23: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 --windows-admin-username + --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin + --ssh-key-value --kubernetes-version + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bd677cea-9c33-488b-9c55-26168fee7a8c?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ea7c67bd-339c-8b48-9c55-26168fee7a8c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:23:03.8929938Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:24: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 --windows-admin-username + --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin + --ssh-key-value --kubernetes-version + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bd677cea-9c33-488b-9c55-26168fee7a8c?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ea7c67bd-339c-8b48-9c55-26168fee7a8c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:23:03.8929938Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:24: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 --windows-admin-username + --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin + --ssh-key-value --kubernetes-version + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bd677cea-9c33-488b-9c55-26168fee7a8c?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ea7c67bd-339c-8b48-9c55-26168fee7a8c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:23:03.8929938Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:25: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 --windows-admin-username + --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin + --ssh-key-value --kubernetes-version + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bd677cea-9c33-488b-9c55-26168fee7a8c?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ea7c67bd-339c-8b48-9c55-26168fee7a8c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:23:03.8929938Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:25: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 --windows-admin-username + --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin + --ssh-key-value --kubernetes-version + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bd677cea-9c33-488b-9c55-26168fee7a8c?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ea7c67bd-339c-8b48-9c55-26168fee7a8c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:23:03.8929938Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:26: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 --windows-admin-username + --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin + --ssh-key-value --kubernetes-version + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bd677cea-9c33-488b-9c55-26168fee7a8c?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ea7c67bd-339c-8b48-9c55-26168fee7a8c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:23:03.8929938Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:26: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 --windows-admin-username + --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin + --ssh-key-value --kubernetes-version + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bd677cea-9c33-488b-9c55-26168fee7a8c?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ea7c67bd-339c-8b48-9c55-26168fee7a8c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:23:03.8929938Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:27: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 --windows-admin-username + --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin + --ssh-key-value --kubernetes-version + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bd677cea-9c33-488b-9c55-26168fee7a8c?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ea7c67bd-339c-8b48-9c55-26168fee7a8c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:23:03.8929938Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:27: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 --windows-admin-username + --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin + --ssh-key-value --kubernetes-version + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bd677cea-9c33-488b-9c55-26168fee7a8c?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ea7c67bd-339c-8b48-9c55-26168fee7a8c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:23:03.8929938Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:28: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 --windows-admin-username + --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin + --ssh-key-value --kubernetes-version + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bd677cea-9c33-488b-9c55-26168fee7a8c?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ea7c67bd-339c-8b48-9c55-26168fee7a8c\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:23:03.8929938Z\",\n \"endTime\": + \"2023-06-29T11:28:23.8331835Z\"\n }" headers: cache-control: - no-cache @@ -294,7 +796,418 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 23:25:45 GMT + - Thu, 29 Jun 2023 11:28: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 --windows-admin-username + --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin + --ssh-key-value --kubernetes-version + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.27.1\",\n \"currentKubernetesVersion\": \"1.27.1\",\n \"dnsPrefix\": + \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-rplyvkol.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-rplyvkol.portal.hcp.westus2.azmk8s.io\",\n + \ \"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.27.1\",\n \"currentOrchestratorVersion\": + \"1.27.1\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"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/ec818d5b-bade-4379-9721-40a4c9621461\"\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: + - '3906' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:28: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: + - application/json + 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.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-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.27.1\",\n \"currentOrchestratorVersion\": \"1.27.1\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n + }" + headers: + cache-control: + - no-cache + content-length: + - '1036' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:28: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: '{"properties": {"count": 1, "vmSize": "Standard_D2s_v3", "osDiskSizeGB": + 0, "osType": "Windows", "osSKU": "Windows2022", "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: + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKSWindows2022Preview + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + Content-Length: + - '465' + Content-Type: + - application/json + ParameterSetName: + - --resource-group --cluster-name --name --node-count --os-type --os-sku --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.27.1\",\n \"currentOrchestratorVersion\": \"1.27.1\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": + false,\n \"osType\": \"Windows\",\n \"osSKU\": \"Windows2022\",\n \"nodeImageVersion\": + \"AKSWindows-2022-containerd-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/d2ced3b5-36a2-4cf3-936b-40c9f68be7f6?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '983' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:28:41 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 nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --node-count --os-type --os-sku --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d2ced3b5-36a2-4cf3-936b-40c9f68be7f6?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"b5d3ced2-a236-f34c-936b-40c9f68be7f6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:28:42.5343039Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:28: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 nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --node-count --os-type --os-sku --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d2ced3b5-36a2-4cf3-936b-40c9f68be7f6?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"b5d3ced2-a236-f34c-936b-40c9f68be7f6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:28:42.5343039Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:29: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 --node-count --os-type --os-sku --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d2ced3b5-36a2-4cf3-936b-40c9f68be7f6?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"b5d3ced2-a236-f34c-936b-40c9f68be7f6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:28:42.5343039Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:29: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 --node-count --os-type --os-sku --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d2ced3b5-36a2-4cf3-936b-40c9f68be7f6?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"b5d3ced2-a236-f34c-936b-40c9f68be7f6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:28:42.5343039Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:30:12 GMT expires: - '-1' pragma: @@ -320,73 +1233,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 --windows-admin-username - --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin - --ssh-key-value --kubernetes-version + - --resource-group --cluster-name --name --node-count --os-type --os-sku --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d2ced3b5-36a2-4cf3-936b-40c9f68be7f6?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.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 }" + string: "{\n \"name\": \"b5d3ced2-a236-f34c-936b-40c9f68be7f6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:28:42.5343039Z\"\n }" headers: cache-control: - no-cache content-length: - - '4235' + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 23:25:47 GMT + - Thu, 29 Jun 2023 11:30:42 GMT expires: - '-1' pragma: @@ -408,7 +1277,55 @@ interactions: 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.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d2ced3b5-36a2-4cf3-936b-40c9f68be7f6?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"b5d3ced2-a236-f34c-936b-40c9f68be7f6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:28:42.5343039Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: - application/json + date: + - Thu, 29 Jun 2023 11:31: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: @@ -418,34 +1335,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count --os-type --os-sku --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d2ced3b5-36a2-4cf3-936b-40c9f68be7f6?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.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 }" + string: "{\n \"name\": \"b5d3ced2-a236-f34c-936b-40c9f68be7f6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:28:42.5343039Z\"\n }" headers: cache-control: - no-cache content-length: - - '1036' + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 23:25:48 GMT + - Thu, 29 Jun 2023 11:31:43 GMT expires: - '-1' pragma: @@ -464,60 +1370,228 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"count": 1, "vmSize": "Standard_D2s_v3", "osDiskSizeGB": - 0, "osType": "Windows", "osSKU": "Windows2022", "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: - AKSHTTPCustomFeatures: - - Microsoft.ContainerService/AKSWindows2022Preview 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.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d2ced3b5-36a2-4cf3-936b-40c9f68be7f6?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"b5d3ced2-a236-f34c-936b-40c9f68be7f6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:28:42.5343039Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: - application/json + date: + - Thu, 29 Jun 2023 11:32: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 - Content-Length: - - '465' - Content-Type: + ParameterSetName: + - --resource-group --cluster-name --name --node-count --os-type --os-sku --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d2ced3b5-36a2-4cf3-936b-40c9f68be7f6?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"b5d3ced2-a236-f34c-936b-40c9f68be7f6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:28:42.5343039Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:32: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 --node-count --os-type --os-sku --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d2ced3b5-36a2-4cf3-936b-40c9f68be7f6?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"b5d3ced2-a236-f34c-936b-40c9f68be7f6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:28:42.5343039Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:33: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 --node-count --os-type --os-sku --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d2ced3b5-36a2-4cf3-936b-40c9f68be7f6?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"b5d3ced2-a236-f34c-936b-40c9f68be7f6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:28:42.5343039Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: - application/json + date: + - Thu, 29 Jun 2023 11:33: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 --node-count --os-type --os-sku --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: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2023-05-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d2ced3b5-36a2-4cf3-936b-40c9f68be7f6?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\": \"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 }" + string: "{\n \"name\": \"b5d3ced2-a236-f34c-936b-40c9f68be7f6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:28:42.5343039Z\"\n }" headers: - azure-asyncoperation: - - 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: - - '988' + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 23:25:55 GMT + - Thu, 29 Jun 2023 11:34:14 GMT expires: - '-1' pragma: @@ -526,13 +1600,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: - - '1199' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -547,23 +1623,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count --os-type --os-sku --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d2ced3b5-36a2-4cf3-936b-40c9f68be7f6?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"979805e9-84ab-424d-ad57-a189de3c6f21\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T23:25:55.384468Z\"\n }" + string: "{\n \"name\": \"b5d3ced2-a236-f34c-936b-40c9f68be7f6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:28:42.5343039Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 23:25:55 GMT + - Thu, 29 Jun 2023 11:34:44 GMT expires: - '-1' pragma: @@ -595,23 +1671,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count --os-type --os-sku --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d2ced3b5-36a2-4cf3-936b-40c9f68be7f6?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"979805e9-84ab-424d-ad57-a189de3c6f21\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T23:25:55.384468Z\"\n }" + string: "{\n \"name\": \"b5d3ced2-a236-f34c-936b-40c9f68be7f6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:28:42.5343039Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Thu, 15 Jun 2023 23:26:25 GMT + - Thu, 29 Jun 2023 11:35:14 GMT expires: - '-1' pragma: @@ -643,24 +1719,24 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count --os-type --os-sku --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d2ced3b5-36a2-4cf3-936b-40c9f68be7f6?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"b5d3ced2-a236-f34c-936b-40c9f68be7f6\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:28:42.5343039Z\",\n \"endTime\": + \"2023-06-29T11:35:20.2656616Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '170' content-type: - application/json date: - - Thu, 15 Jun 2023 23:53:57 GMT + - Thu, 29 Jun 2023 11:35:44 GMT expires: - '-1' pragma: @@ -692,34 +1768,33 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count --os-type --os-sku --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/npwin?api-version=2023-05-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.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 }" + 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.27.1\",\n \"currentOrchestratorVersion\": \"1.27.1\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": + false,\n \"osType\": \"Windows\",\n \"osSKU\": \"Windows2022\",\n \"nodeImageVersion\": + \"AKSWindows-2022-containerd-20348.1787.230614\",\n \"upgradeSettings\": + {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '989' + - '984' content-type: - application/json date: - - Thu, 15 Jun 2023 23:53:58 GMT + - Thu, 29 Jun 2023 11:35:44 GMT expires: - '-1' pragma: @@ -753,8 +1828,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/cliakstest000001?api-version=2023-05-01 response: @@ -762,17 +1837,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/09f77d91-b826-4d0b-a07f-70c107dbccf9?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 15 Jun 2023 23:54:01 GMT + - Thu, 29 Jun 2023 11:35:46 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/09f77d91-b826-4d0b-a07f-70c107dbccf9?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_autoscaler_then_update.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_autoscaler_then_update.yaml index c94d3a4e2e4..332a19c109e 100644 --- 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 23:54:06 GMT + - Thu, 29 Jun 2023 11:23:38 GMT expires: - '-1' pragma: @@ -58,12 +58,12 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -c User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1039-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_nodepool_autoscaler_then_update","date":"2023-06-15T23:54:04Z","module":"acs"},"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-29T11:23:37Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -72,15 +72,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 15 Jun 2023 23:54:06 GMT + - Thu, 29 Jun 2023 11:23:39 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -88,18 +86,19 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitesttlmxgr4tc-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestrzmljvwvl-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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {}}}' headers: Accept: - application/json @@ -110,69 +109,67 @@ interactions: Connection: - keep-alive Content-Length: - - '1751' + - '1422' Content-Type: - application/json ParameterSetName: - --resource-group --name --ssh-key-value -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestrzmljvwvl-79a739\",\n \"fqdn\": \"cliakstest-clitestrzmljvwvl-79a739-qo3lnuit.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestrzmljvwvl-79a739-qo3lnuit.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"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/67a9a471-6dd6-48ea-844f-e47b7d33f2c4?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6484d5c1-b0e3-4881-8de9-c669247e7e38?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3596' + - '3267' content-type: - application/json date: - - Thu, 15 Jun 2023 23:54:14 GMT + - Thu, 29 Jun 2023 11:23:45 GMT expires: - '-1' pragma: @@ -202,14 +199,194 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6484d5c1-b0e3-4881-8de9-c669247e7e38?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"c1d58464-e3b0-8148-8de9-c669247e7e38\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:23:45.1125363Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:23:45 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 --ssh-key-value -c + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6484d5c1-b0e3-4881-8de9-c669247e7e38?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"c1d58464-e3b0-8148-8de9-c669247e7e38\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:23:45.1125363Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:24:15 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 --ssh-key-value -c + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6484d5c1-b0e3-4881-8de9-c669247e7e38?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"c1d58464-e3b0-8148-8de9-c669247e7e38\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:23:45.1125363Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:24:45 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 --ssh-key-value -c + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6484d5c1-b0e3-4881-8de9-c669247e7e38?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"c1d58464-e3b0-8148-8de9-c669247e7e38\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:23:45.1125363Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:25: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 --ssh-key-value -c + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6484d5c1-b0e3-4881-8de9-c669247e7e38?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"71a4a967-d66d-ea48-844f-e47b7d33f2c4\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T23:54:13.9979076Z\"\n }" + string: "{\n \"name\": \"c1d58464-e3b0-8148-8de9-c669247e7e38\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:23:45.1125363Z\"\n }" headers: cache-control: - no-cache @@ -218,7 +395,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 23:54:14 GMT + - Thu, 29 Jun 2023 11:25:46 GMT expires: - '-1' pragma: @@ -250,14 +427,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6484d5c1-b0e3-4881-8de9-c669247e7e38?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"71a4a967-d66d-ea48-844f-e47b7d33f2c4\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T23:54:13.9979076Z\"\n }" + string: "{\n \"name\": \"c1d58464-e3b0-8148-8de9-c669247e7e38\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:23:45.1125363Z\"\n }" headers: cache-control: - no-cache @@ -266,7 +443,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 23:55:52 GMT + - Thu, 29 Jun 2023 11:26:16 GMT expires: - '-1' pragma: @@ -298,14 +475,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6484d5c1-b0e3-4881-8de9-c669247e7e38?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"71a4a967-d66d-ea48-844f-e47b7d33f2c4\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T23:54:13.9979076Z\"\n }" + string: "{\n \"name\": \"c1d58464-e3b0-8148-8de9-c669247e7e38\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:23:45.1125363Z\"\n }" headers: cache-control: - no-cache @@ -314,7 +491,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 23:56:22 GMT + - Thu, 29 Jun 2023 11:26:46 GMT expires: - '-1' pragma: @@ -346,14 +523,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6484d5c1-b0e3-4881-8de9-c669247e7e38?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"71a4a967-d66d-ea48-844f-e47b7d33f2c4\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T23:54:13.9979076Z\"\n }" + string: "{\n \"name\": \"c1d58464-e3b0-8148-8de9-c669247e7e38\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:23:45.1125363Z\"\n }" headers: cache-control: - no-cache @@ -362,7 +539,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 23:56:53 GMT + - Thu, 29 Jun 2023 11:27:17 GMT expires: - '-1' pragma: @@ -394,14 +571,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6484d5c1-b0e3-4881-8de9-c669247e7e38?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"71a4a967-d66d-ea48-844f-e47b7d33f2c4\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T23:54:13.9979076Z\"\n }" + string: "{\n \"name\": \"c1d58464-e3b0-8148-8de9-c669247e7e38\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:23:45.1125363Z\"\n }" headers: cache-control: - no-cache @@ -410,7 +587,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 23:57:23 GMT + - Thu, 29 Jun 2023 11:27:47 GMT expires: - '-1' pragma: @@ -442,15 +619,63 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6484d5c1-b0e3-4881-8de9-c669247e7e38?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"c1d58464-e3b0-8148-8de9-c669247e7e38\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:23:45.1125363Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:28: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 --ssh-key-value -c + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6484d5c1-b0e3-4881-8de9-c669247e7e38?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"c1d58464-e3b0-8148-8de9-c669247e7e38\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:23:45.1125363Z\",\n \"endTime\": + \"2023-06-29T11:28:42.8321245Z\"\n }" headers: cache-control: - no-cache @@ -459,7 +684,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 23:57:53 GMT + - Thu, 29 Jun 2023 11:28:47 GMT expires: - '-1' pragma: @@ -491,66 +716,63 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestrzmljvwvl-79a739\",\n \"fqdn\": \"cliakstest-clitestrzmljvwvl-79a739-qo3lnuit.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestrzmljvwvl-79a739-qo3lnuit.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4db3942b-3c26-4240-b559-c013afaea159\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4249' + - '3920' content-type: - application/json date: - - Thu, 15 Jun 2023 23:57:54 GMT + - Thu, 29 Jun 2023 11:28:48 GMT expires: - '-1' pragma: @@ -582,25 +804,25 @@ interactions: ParameterSetName: - -g --cluster-name -n --mode --enable-cluster-autoscaler -c --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ - : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\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 }" + 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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n + }" headers: cache-control: - no-cache @@ -609,7 +831,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 23:57:56 GMT + - Thu, 29 Jun 2023 11:28:49 GMT expires: - '-1' pragma: @@ -650,28 +872,28 @@ interactions: ParameterSetName: - -g --cluster-name -n --mode --enable-cluster-autoscaler -c --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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\": \"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 }" + 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.19.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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ca21ba99-c30d-4db3-885a-37c2c8752cb1?api-version=2016-03-30 cache-control: - no-cache content-length: @@ -679,7 +901,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 23:58:00 GMT + - Thu, 29 Jun 2023 11:28:52 GMT expires: - '-1' pragma: @@ -691,7 +913,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -709,14 +931,14 @@ interactions: ParameterSetName: - -g --cluster-name -n --mode --enable-cluster-autoscaler -c --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ca21ba99-c30d-4db3-885a-37c2c8752cb1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"59d1a7d7-02f9-4446-9962-8cccb6e078c2\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T23:58:01.1703327Z\"\n }" + string: "{\n \"name\": \"99ba21ca-0dc3-b34d-885a-37c2c8752cb1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:28:53.1282344Z\"\n }" headers: cache-control: - no-cache @@ -725,7 +947,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 23:58:00 GMT + - Thu, 29 Jun 2023 11:28:52 GMT expires: - '-1' pragma: @@ -757,14 +979,14 @@ interactions: ParameterSetName: - -g --cluster-name -n --mode --enable-cluster-autoscaler -c --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ca21ba99-c30d-4db3-885a-37c2c8752cb1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"59d1a7d7-02f9-4446-9962-8cccb6e078c2\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T23:58:01.1703327Z\"\n }" + string: "{\n \"name\": \"99ba21ca-0dc3-b34d-885a-37c2c8752cb1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:28:53.1282344Z\"\n }" headers: cache-control: - no-cache @@ -773,7 +995,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 23:58:30 GMT + - Thu, 29 Jun 2023 11:29:23 GMT expires: - '-1' pragma: @@ -805,14 +1027,14 @@ interactions: ParameterSetName: - -g --cluster-name -n --mode --enable-cluster-autoscaler -c --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ca21ba99-c30d-4db3-885a-37c2c8752cb1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"59d1a7d7-02f9-4446-9962-8cccb6e078c2\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T23:58:01.1703327Z\"\n }" + string: "{\n \"name\": \"99ba21ca-0dc3-b34d-885a-37c2c8752cb1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:28:53.1282344Z\"\n }" headers: cache-control: - no-cache @@ -821,7 +1043,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 23:59:01 GMT + - Thu, 29 Jun 2023 11:29:53 GMT expires: - '-1' pragma: @@ -853,24 +1075,24 @@ interactions: ParameterSetName: - -g --cluster-name -n --mode --enable-cluster-autoscaler -c --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ca21ba99-c30d-4db3-885a-37c2c8752cb1?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"99ba21ca-0dc3-b34d-885a-37c2c8752cb1\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:28:53.1282344Z\",\n \"endTime\": + \"2023-06-29T11:30:05.248511Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '169' content-type: - application/json date: - - Thu, 15 Jun 2023 23:59:31 GMT + - Thu, 29 Jun 2023 11:30:22 GMT expires: - '-1' pragma: @@ -902,25 +1124,25 @@ interactions: ParameterSetName: - -g --cluster-name -n --mode --enable-cluster-autoscaler -c --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/clinp000003?api-version=2023-05-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.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 }" + 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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -929,7 +1151,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 23:59:32 GMT + - Thu, 29 Jun 2023 11:30:23 GMT expires: - '-1' pragma: @@ -961,25 +1183,25 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/clinp000003?api-version=2023-05-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.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 }" + 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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -988,7 +1210,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 23:59:34 GMT + - Thu, 29 Jun 2023 11:30:25 GMT expires: - '-1' pragma: @@ -997,10 +1219,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -1030,28 +1248,28 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.19.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/017c7fd6-c828-409d-ac2c-923689d6eb61?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/221b6f5d-9c3e-4588-a5ab-3aaa0ba2ad98?api-version=2016-03-30 cache-control: - no-cache content-length: @@ -1059,7 +1277,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 23:59:38 GMT + - Thu, 29 Jun 2023 11:30:28 GMT expires: - '-1' pragma: @@ -1068,10 +1286,6 @@ 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: @@ -1093,14 +1307,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/221b6f5d-9c3e-4588-a5ab-3aaa0ba2ad98?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d67f7c01-28c8-9d40-ac2c-923689d6eb61\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-15T23:59:38.6548865Z\"\n }" + string: "{\n \"name\": \"5d6f1b22-3e9c-8845-a5ab-3aaa0ba2ad98\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:30:28.5813262Z\"\n }" headers: cache-control: - no-cache @@ -1109,7 +1323,7 @@ interactions: content-type: - application/json date: - - Thu, 15 Jun 2023 23:59:38 GMT + - Thu, 29 Jun 2023 11:30:28 GMT expires: - '-1' pragma: @@ -1118,10 +1332,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -1141,15 +1351,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/221b6f5d-9c3e-4588-a5ab-3aaa0ba2ad98?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 }" + string: "{\n \"name\": \"5d6f1b22-3e9c-8845-a5ab-3aaa0ba2ad98\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:30:28.5813262Z\",\n \"endTime\": + \"2023-06-29T11:30:36.4891217Z\"\n }" headers: cache-control: - no-cache @@ -1158,7 +1368,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:00:08 GMT + - Thu, 29 Jun 2023 11:30:58 GMT expires: - '-1' pragma: @@ -1167,10 +1377,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -1190,25 +1396,25 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/clinp000003?api-version=2023-05-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.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 }" + 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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -1217,7 +1423,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:00:09 GMT + - Thu, 29 Jun 2023 11:30:58 GMT expires: - '-1' pragma: @@ -1226,10 +1432,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -1251,8 +1453,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -1260,17 +1462,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b395f9f8-78af-47cb-ac20-490dc59a1498?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Fri, 16 Jun 2023 00:00:10 GMT + - Thu, 29 Jun 2023 11:31:00 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/b395f9f8-78af-47cb-ac20-490dc59a1498?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_create_scale_delete.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_create_scale_delete.yaml index 4e0d48b2bc4..aafb947c69b 100644 --- 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 Jun 2023 00:00:21 GMT + - Thu, 29 Jun 2023 11:20:53 GMT expires: - '-1' pragma: @@ -53,8 +53,8 @@ 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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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", + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": @@ -69,33 +69,66 @@ interactions: Connection: - keep-alive Content-Length: - - '1796' + - '1467' 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - 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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-n19rh81b.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-n19rh81b.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/ca39582e-8d77-4a87-801d-c21692f0706b?api-version=2016-03-30 cache-control: - no-cache content-length: - - '313' + - '3049' content-type: - application/json date: - - Fri, 16 Jun 2023 00:00:26 GMT + - Thu, 29 Jun 2023 11:21:05 GMT expires: - '-1' pragma: @@ -109,93 +142,40 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' status: - code: 404 - message: Not Found + code: 201 + message: Created - 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": {}}}' + body: null 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-05-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ca39582e-8d77-4a87-801d-c21692f0706b?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\": \"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 }" + string: "{\n \"name\": \"2e5839ca-778d-874a-801d-c21692f0706b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:21:05.5958342Z\"\n }" headers: - azure-asyncoperation: - - 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: - - '3378' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 00:00:38 GMT + - Thu, 29 Jun 2023 11:21:05 GMT expires: - '-1' pragma: @@ -204,13 +184,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: @@ -226,23 +208,23 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ca39582e-8d77-4a87-801d-c21692f0706b?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 }" + string: "{\n \"name\": \"2e5839ca-778d-874a-801d-c21692f0706b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:21:05.5958342Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 00:00:38 GMT + - Thu, 29 Jun 2023 11:21:35 GMT expires: - '-1' pragma: @@ -275,23 +257,23 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ca39582e-8d77-4a87-801d-c21692f0706b?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 }" + string: "{\n \"name\": \"2e5839ca-778d-874a-801d-c21692f0706b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:21:05.5958342Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 00:01:08 GMT + - Thu, 29 Jun 2023 11:22:05 GMT expires: - '-1' pragma: @@ -324,23 +306,23 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ca39582e-8d77-4a87-801d-c21692f0706b?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 }" + string: "{\n \"name\": \"2e5839ca-778d-874a-801d-c21692f0706b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:21:05.5958342Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 00:01:38 GMT + - Thu, 29 Jun 2023 11:22:35 GMT expires: - '-1' pragma: @@ -373,23 +355,23 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ca39582e-8d77-4a87-801d-c21692f0706b?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 }" + string: "{\n \"name\": \"2e5839ca-778d-874a-801d-c21692f0706b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:21:05.5958342Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 00:02:09 GMT + - Thu, 29 Jun 2023 11:23:06 GMT expires: - '-1' pragma: @@ -422,23 +404,23 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ca39582e-8d77-4a87-801d-c21692f0706b?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 }" + string: "{\n \"name\": \"2e5839ca-778d-874a-801d-c21692f0706b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:21:05.5958342Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 00:02:39 GMT + - Thu, 29 Jun 2023 11:23:36 GMT expires: - '-1' pragma: @@ -471,23 +453,23 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ca39582e-8d77-4a87-801d-c21692f0706b?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 }" + string: "{\n \"name\": \"2e5839ca-778d-874a-801d-c21692f0706b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:21:05.5958342Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 00:03:09 GMT + - Thu, 29 Jun 2023 11:24:06 GMT expires: - '-1' pragma: @@ -520,23 +502,23 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ca39582e-8d77-4a87-801d-c21692f0706b?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 }" + string: "{\n \"name\": \"2e5839ca-778d-874a-801d-c21692f0706b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:21:05.5958342Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 00:03:39 GMT + - Thu, 29 Jun 2023 11:24:36 GMT expires: - '-1' pragma: @@ -569,23 +551,23 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ca39582e-8d77-4a87-801d-c21692f0706b?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 }" + string: "{\n \"name\": \"2e5839ca-778d-874a-801d-c21692f0706b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:21:05.5958342Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 00:04:09 GMT + - Thu, 29 Jun 2023 11:25:07 GMT expires: - '-1' pragma: @@ -618,24 +600,24 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ca39582e-8d77-4a87-801d-c21692f0706b?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 }" + string: "{\n \"name\": \"2e5839ca-778d-874a-801d-c21692f0706b\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:21:05.5958342Z\",\n \"endTime\": + \"2023-06-29T11:25:19.5507603Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '170' content-type: - application/json date: - - Fri, 16 Jun 2023 00:04:39 GMT + - Thu, 29 Jun 2023 11:25:37 GMT expires: - '-1' pragma: @@ -668,60 +650,58 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-n19rh81b.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-n19rh81b.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/14319a1f-5f03-4c56-bfa6-c11af8cf2a77\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3642' + - '3313' content-type: - application/json date: - - Fri, 16 Jun 2023 00:04:40 GMT + - Thu, 29 Jun 2023 11:25:37 GMT expires: - '-1' pragma: @@ -753,60 +733,58 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-n19rh81b.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-n19rh81b.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/14319a1f-5f03-4c56-bfa6-c11af8cf2a77\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3642' + - '3313' content-type: - application/json date: - - Fri, 16 Jun 2023 00:04:42 GMT + - Thu, 29 Jun 2023 11:25:38 GMT expires: - '-1' pragma: @@ -840,24 +818,24 @@ interactions: ParameterSetName: - -g -n --file User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ - \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVU5MVQwbExWRkZQYjJKQldIcG9hM3BJVFdwV1FXZDNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDA1cVJURk5hazB4VFZSQmVsZG9aMUJOYWtFeFRYcEJNazFVV1hkTlJFRjRUVVJPWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNqVnBlVnBpUVhGb00wSkVRekp2VURoT2QyWmhXRVIwV0RSNVVUUjVSbXhGU1ZnMGNEUnhNRzVUVmxOR1VDdFhiVFF6VXpKNlkyVjJVbUZLZVRreVJHWUtUVEpLVkU1aU56aDNkMnBYTmxSSksxQmxiRGxxVUdnMmRXZGlXRkYwYzJkWVltMDBkekJGYkV0alFpdDNVMDlOZVdGWVRpdFNWemhUT0dJNU1YSjFOd3BIYW01dU9FZzVjalpSVm1oTVJWTm5jRTg1Y1dsRE5VMWxVWFZVUXpGTFkxYzBlSGxvWnpkbVdraHdka0ZNVUNzM1JGQjJTMVI2YVVSSGMxQmtaVFpqQ2xoT2JIaGlkRUlyUlZwVVEwUnNTa3N4V0Voa2VuSlZkblJLZWpCM1JrWTNMMnN3VFVkTk4ySkphVVZKUW1WcVpFbHRTVzlOVjJwMlFtaDVVMDFsSzFRS1NuSlRNR3BMYmpCSWNURnJWMDAzZVRRdk5scDJWbXBYVjJocldYaGpjbGRhTlhSR1RHZHVTa3hTV0hWNWVGTjJaMHQyV2tOWFprOVNTbTlsZDFCSVZ3cFlhMlIxVTJwSGIyVTRWMnBhYVVsRlNERnRhVXg2YmxsemFYWnZPRFp6YkZKMFExSkJXR1UxVUZFNGMwZ3hORzFwZGsxSVJFdDVVVWx1ZWpGemEybE5DbFIxTDJGclZITlNTMDg1YzBsaVRtcGFWMFpEVmpKQ05DOUVhWFppWm01V2VrUlJlbFJzVlRWeFpXTmxPVGwyYUZkMlFqRnFXa2M1Wm5NNFNXSndTVFVLVDJWVWFVOXJUME14VlhaSWFqRkNkWEp1UkM5VWNqaHRjMFI2U0RkVWRXbDZlR3BoVTNac1JuQnVheThyYnpOalNWZERWbmhPZGtGQ1NscFNiWHB3Umdvdk0yZExTV3g1VFdwaEwyRndjbkZ6VkZKNlkzWXpWSFp3UmxCdFNrcEJjSEYzWlZCc015dG5iVEpoTkRaTlJUWTRhRmxvY2xnMFJrZGhVbVZOVkRRNUNucE5jVUZaS3pkclFXbFpUSGxzUlhGS1JsY3pSalJITWxaa2JXbHhkMU54VlU5U01YVXpiMlpSZEZSaU1YSXdXazVYTUM5dldXWmtaVEZpWXk5NEwyUUtWRU12UW1sSldGRjVlV0pZYmtGNE4weFBSR0ZXV2tneFRUSkxaRTl0UjFNNVlXcFFjVlJUWmtSVU1FTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1JsSk5RbVpJVEZKdlZFTnlkRGxCQ2pOSVJtUmtkR2w2WlZFcmFVMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlFuZ3hjRXgyV1VwcVp5dGthRGRyVVVaWldEbHJORUZKUkZNS1RXWkljbFJhWWxnMFR6aGtPV2w0Y1haYVJUbDZaVmQyYURoeldHOWlkamxQUlc1SFFqWXlXRXRsYTI4emJETlVTRWxIVmtwcVZIQjJRbTA0ZVRCYU9RbzFhVXhtZUZGbFJWRjZiVGx0VUM5c1pVWXJRVVp4TW1oM2FqQmxUSFpNVTFKdFp5OTNXRWQzZDBzMFdFRTVVVWgxWTJFMGNuSlpNRFpIVldoT056TlpDa293UlhkbE4ydHNRbWt6ZG5SUGR6QjZXWFJEVkdFNU1DdGhSbnBGUTFndlJVaFFkMnh1WTNoamEzZFRiMGt6U1hjMFNrMUtZMGg0S3l0Vk5rVXlaVWdLWW1KME1HSnBhalJpTVRseFpUazJNRnBGYTA1RU1ITmphREV4VUVKVU9YVkhTMnh5WVRWaUwxVndkM1JhVjFZMlRUa3dkVlpwZUVwM2JEQnhhRWg1VGdwcVVVVk1NM05MTkRSeGFIYzJOVXB6VTBwQlpHOHhSMEkyYUV0aFNpczBUekpKSzNoVmFFRmFSSE4yVlVWUFlrVk9ZbmwzY2xaWlYxSTFOM0k0ZVVrckNscDZXbXB3TUVsSGRGZzBWRkpITVV0cE5uaGFZbmhLVERkdmNuUTFiR0UwWXpGclJGaEJVMXBOZG5GWVRHUjNMMWxHTms5dldpdHZjbTVtUkZwc1pHY0tWVk40VUdSVWFXcEhaRzlTV1dGMU9ETnRSMkYwYkdVNGIyWmlXaTlzU0hGeGNsaHJUbEZNUmxsaFJsSTFibUY1WTFRMVIwWkpWMUJ0TkhSWVoxRkVNUW8wVTNOMFJuRXpNRTVDU21SMlFYaENjMUZ5T0U1cWEzTkdVRmxQS3pCNlJXazFiR042V210NlNVSTJTa0ZyUWl0YVVWaDRkVXh3TVdoMVMxSkJNQ3RYQ2sxUmRFSlljWGRVVVdrNVdsZzBiakZtUlRNell5dHlRVmRxWkRkc1pHOXdZa3RLVFd0eE1YaEZSRWQyUjJkRlFrMWtRMjg1YkZKV09HMXpjREY1Y1ZNS1YwcEdWbkZOVWs1UFJEZHVObmRrWVdGa2RIbHZNSEpYVjBaaGVIcHJUbmNyWjBaRldtSTJTakpqV1c5NmJXMXROV1pLUzJsbFNVWnBZMHBOYWtoaE53cGpjbGd6Y0VaNlZXUlBaMEZ5VUZaUU9XYzlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5zM2htZ25tNy1ndGI2bHVscS5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdHJmZzI1eApjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdHJmZzI1eAogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdDJjdzV0YW0yM2ZfY2xpYWtzdGVzdHJmZzI1eAogIG5hbWU6IGNsaWFrc3Rlc3RyZmcyNXgKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0cmZnMjV4CmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdDJjdzV0YW0yM2ZfY2xpYWtzdGVzdHJmZzI1eAogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklWRU5EUVhkWFowRjNTVUpCWjBsUlJEUnRLME16T1ZOV2JFOTBNRWR5VGtsVE5YaGtla0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRnpSa0ZFUVU0S1RWRnpkME5SV1VSV1VWRkVSWGRLYWxsVVFXVkdkekI1VFhwQk1rMVVWWGxOZWxWNFRVUk9ZVVozTUhsT1ZFRXlUVlJaZDAxRVFYaE5SRTVoVFVSQmVBcEdla0ZXUW1kT1ZrSkJiMVJFYms0MVl6TlNiR0pVY0hSWldFNHdXbGhLZWsxU1ZYZEZkMWxFVmxGUlJFVjNlSFJaV0U0d1dsaEthbUpIYkd4aWJsRjNDbWRuU1dsTlFUQkhRMU54UjFOSllqTkVVVVZDUVZGVlFVRTBTVU5FZDBGM1oyZEpTMEZ2U1VOQlVVTjVSVFZCUlZWUVNUWjRTekpIWkRFNFJYQnNZbUVLZEc4NFJGRllWR1I1Y21ablFrZzNSRTFuVlN0V1FWWkVVSGxtV2tsUE5uQnZaMnd2Y1dWdVlWcGFNVTl2VW5CV2JrcDVMeTgxUVVsSlJFNUVaM0JzU0FwbmVXZDFRWGxUV0hsTlVsVjFjeThyVUdoaU9FWTRhM0l4VjFkQlVYVmxaRnBNZFZOSU1IVlVMMjh3U1VWTFVFRldhalk1VEVWcVpUVjZWWEYyYkRoMkNqSlVVSGhzZFRKbk5uZ3pTVFp6VEVWTFEweDRSamhTUnpJcmNISmhNMnBpWWxobFN5dE5WVmRhTTJsNFRWY3lZVmhhYjI4NFFVMVRMMmhWTTBoQ1duY0tPRXcwTkd4a1NrcG5aRkpsVFdKcllYUlVVSEJsTTB0UGFrODRZa0UxTVc5U1RETk5ZekIzUzJkS1ZVSTRkMHd4VkdsdFRsSnRRM0VyUVhKamIyb3lSQXB6Wm1ZM0szVm5Oa0Z3YTJoaFVrNU1XVlZsYjFZd1FXVkhWeTg1ZURsUWFuSlRSblp0T0Vaa01sTlRjMkprVVZWRlRWbENkREoxVDNKRlNUSjJUM1pxQ2t3dlpXWkpTSGQ1T0U0MFEzVkZSWG95ZG13M1ltWTBVRFp0TTNkaldrWTROSHA0TjFoSFkxSTFlR05RU2s1VlYwcERSbXRPWTFOdmMzVjRhMHR1TTFNS1VXWjBaU3RFZUhCNWEzUjFabFZ2ZUhkWVF6QjBhazU2TDJVemFYZzFVM2RrUTIxc1FqbHhaU3N3ZEZkS2NVUlhiUzhyYmprdlJISlNiMFZrWjBsME5RcDFRakpIVW5oTFlrMUNWbTU0VmtGbWMxaElabEp1WVVJeVJrMUdTakpSU3k5d2RIUmlSbGhDYlZWbFNXUmFORUZtVUVodVNYbGhhRk5CYTNSck1WVnpDbHBWYUZJME1tMVBVVUZZV0V4cU5HVmFXbkkyZVZsT2RFcHRiRXBJZVRKbWRXVmhabTVrUVhvM2QwVlBOVlpKT0dnMFNYcFdabWN6UlZKNk9YUkxjRkFLYjBSbGNHNVJOWGhUV2tvelpXNW9ZVlJYWkc5R1YxWmhTMVJwYkRWcVVVNXNjRlZGTVRsaFJrRlhlbkJsVmxscmEyVjNTM0ZhZEN0VGFHTndiekJXYWdvMVVHTnNXR3hyZWl0TmJ6YzVlREZyZDNwUU5rTlJTVVJCVVVGQ2J6RlpkMVpFUVU5Q1owNVdTRkU0UWtGbU9FVkNRVTFEUW1GQmQwVjNXVVJXVWpCc0NrSkJkM2REWjFsSlMzZFpRa0pSVlVoQmQwbDNSRUZaUkZaU01GUkJVVWd2UWtGSmQwRkVRV1pDWjA1V1NGTk5SVWRFUVZkblFsSlZWRUZZZUhrd1lVVUtkM0UzWmxGT2VIaFlXR0paY3pOclVHOXFRVTVDWjJ0eGFHdHBSemwzTUVKQlVYTkdRVUZQUTBGblJVRk1URFJtTVZGaU9VMVdkRXh1TUVSTmFHOUdMd3A0YzFaTU4zWnNha1YxVUhscGVYUjFZM2RRVTB4NGNXRjBXWEpoZFVSRWFHaFJjVU5YWVhCUFYwcDJUR1F3ZUVOYVV5dDNUME50WXpaM2VYQTFTelpaQ25CV05HSjJWRk52VjBsTWJuTkRTRmhOT1M5cGRHdElUMkpQYVZWaVVqWkplbVJaUW01NE0zbE5PRGN2TUdoWlFWSkJWazlFYjNwR1pUQXpkVVZYUmxnS1dETlpVRFpQWkZOUFZtaHZPQ3REVUZCM1kyaFdSR0paTWs5UFZXaDJVSEZSY1ZGck1rbGxORUZaTm5jdlZEQjNPSHB6U0dKeWJHbDNjemwxWTFNNGVRcHRXWE53WkdvNU1VSnhRalpqVEd0NlkxQlFSbFpIYjFKNmNFVjFkRTFJZGs0dldURlhTVVpQZFVaTGVFeEVhMnRJYUVodEsyaHFSM2hEVFRkWU1pc3dDamhFZUZORWVtbHZkbk5EVms1V1JXbE5VR2czVURZMU1XcExWRVpYY3pJd2JEUTRTRGRSY2pkeFowTkpORkZTVG5wUFZVUm1hVzB2VTB4d00ybzNiV2NLTkhscWFWZFdlWFpsUmxwclEwMXBRME5aVW1ZeU9FcFlWRXQ1WVc1REsyeDBTMDVsZW5FNVNuTm5hRVo0ZEZOWlNFY3lTSE5HTDNSM1ExWjFkRTAwUkFwQk9URTVXamN5VGxOQ1dqUTBVR1ZQV0ZOUVdVZFZRMjB2YUVwRWVqQkNPRkkwU1dSc1Vrd3dORlV4WVN0T2N6Tm5hRmQ0VDI4d2FrbG5RVkJqTVRGbkNrMWhaVEZFVGxwd01tVlFVSEZ0Vm1ORWRtUjZWR1ZCVlhFNVF6RlhVWEZRTHk5clVFNUNkazFzUVc1a2VqaG1kRGRhYTFCWFNtVjRVRTFYVkROTk1rWUtObmd2TjIwMVlVbGljVnBOWlRONlNXNWxNMjFqTVZrelZDOUtTR3RWTDNkb1JtTkdjMGhzT1VjNFdrNVlUV2R1TlZwS1ZEQk5Rak5VZERsME9VMTJVZ3BqYUZCd1JYVk9TSFoyVFdjeVRqVnlVek5MWVhGUWRscENlbnBPV0RoNmVWUlBkVzVDWmpkQ1dWSnpTSHBMVEhoeWFVaEJkbmRVVUhCbVlYTktRbEZWQ2xGU2NrMU5TVzFYTUc1c05VWnNXRXBUU1ZsM1NqQTRQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MxRkpRa0ZCUzBOQlowVkJjMmhQVVVKR1JIbFBjMU4wYUc1a1prSkxXbGN5Y21GUVFUQkdNRE5qY1RNMFFWSXJkM3BKUmxCc1VVWlJlamh1Q2pKVFJIVnhZVWxLWmpadWNESnRWMlJVY1VWaFZscDVZM1l2SzFGRFEwRjZVVFJMV2xJMFRXOU1aMDFyYkRocVJWWk1jbEF2YWpSWEwwSm1Ta3M1Vm13S1owVk1ibTVYVXpkcmFEbE1heTgyVGtOQ1EycDNSbGtyZGxONFNUTjFZekZMY2pWbVREbHJlamhhWW5SdlQzTmtlVTl5UTNoRFoyazRVbVpGVW5SMmNRcGhNblEwTWpJeE0ybDJha1pHYldRMGMxUkdkRzFzTW1GTFVFRkVSWFkwVms1NGQxZGpVRU1yVDBwWVUxTlpTRlZZYWtjMVIzSlZlalpZZEhscWIzcDJDa2QzVDJSaFJWTTVla2hPVFVOdlExWkJaazFET1ZVMGNHcFZXbWR4ZG1kTE0wdEpPV2MzU0RNckwzSnZUMmRMV2tsWGExUlRNa1pJY1Vaa1FVaG9iSFlLTDJObVZEUTJNR2hpTlhaQ1dHUnJhM0pITTFWR1FrUkhRV0prY21weGVFTk9jbnB5Tkhrdk0yNTVRamhOZGtSbFFYSm9RazA1Y2pWbE1qTXJSQ3R3ZEFvNFNFZFNaazlOT0dVeGVHNUZaV05ZUkhsVVZrWnBVV2hhUkZoRmNVeE1jMXBEY0Rrd2EwZzNXSFpuT0dGamNFeGliakZMVFdOR2QzUk1XWHBqTHpOMENqUnpaVlZ6U0ZGd2NGRm1ZVzUyZEV4V2FXRm5NWEIyTDNBdlpuYzJNR0ZDU0ZsRFRHVmlaMlJvYTJOVGJYcEJWbG80VmxGSU4wWjRNekJhTW1ka2FGUUtRbE5rYTBOMk5tSmlWM2hXZDFwc1NHbElWMlZCU0hwNE5YbE5iVzlWWjBwTVdrNVdURWRXU1ZWbFRuQnFhMEZHTVhrMEswaHRWMkVyYzIxRVlsTmFjQXBUVWpoMGJqZHViVzQxTTFGTkt6aENSSFZXVTFCSlpVTk5NVmcwVG5oRll5OWlVM0ZVTmtFemNWb3dUMk5WYlZOa00zQTBWMnN4Ym1GQ1ZteFhhV3MwQ25CbFdUQkVXbUZXUWs1bVYyaFJSbk0yV0d4WFNrcEljME54YldKbWEyOVlTMkZPUmxrclZETktWalZhVFM5cVMwOHZZMlJhVFUxNksyZHJRMEYzUlVFS1FWRkxRMEZuUW01MWIzUXlZVU40YUZoVVZucEZWU3QzTlhFdlRFbFFTVE5TUldGME9YbHhZV1pEVUZjd1pXeExRVU5yT0c1aGJ6VnBWSGhqV2xnelFRbzVjRzAwTVU0MFNEaHJTR3AzY1VaM1IxazJkRzVSZDJaa1FrTlVTRzEzYlU5VlFqQm9ZMk5RVkNzMVpVODBObkE0TjFWRlMyNDNRV055YURFM2VuQjJDbWxJYXlzd1RsVllPRXBHYVU1U2NrRnRUelIwYjFkS1VEZHhjVVowWWtSVVRtdGFaa3RRVjJ4c2JFbDZZblZ1UkhCRlRqVjJlSEJUZW1wNVRraE1kVFFLYjA5Wk1VRmlja1pDU0ZSRGNWZHNiVVpWUkVaTVIyNTRUM2hSTjFnMVFpdGFORGhvYzBaWGFrNU1WMDVSUTFodlEwUmxXRzQzUzJJcmMxRlRLelF2VUFwaGR6Tk9Va1U0U0ROeFZraG1UM053Vm5Wb2VWUnhRVTVIZUdoWlFWTXZhR2RMYzB4T016UTFablp3TVU4d2NFSllaVzFGV0hVM2ExWnBWWGRDZVZwc0NqSTRWMDFTUkU1bWJWYzBhVGRuTlZrMk5UTnJZM0ZVZWs4MlRIWk1kMUE1UkZseE5uazJjMHBoVkU5alZ6aFhkalJQT0ZWQlpraDZVaTlUYldGMFlYVUtXamRaVURWdlNGZFhaV05rYVhnNFluaEpiVk01VkVaell6TkpOREZoZG5WbmMxVmhNbkZSYkUwemQwVlZhRzFVWWpGS2JrdFVablYxTmxBcllUQmllQXB0YjNkTFRITkJSSFo2TmxoV2FqWkxiRVZVWlVkcVQwWjFXV1ZzTjNSWlIxVjVObEE1TkdWblMwOUVaV2xOVkZBMFpWaEhWRTVSWm1wR2REWllWRGwyQ2taRWJGb3JZV00zU2pGdFJHUkRLMEowUVRWTFJpdGhhelF5TVhFd1NFa3hUbmMxZDBsb01qSmhObWxOWlZkc1YxVlZaMjFJVDBoVFlXMVlaR1ZTUmxVS1oyNXlWSGhNZDFOUWF6VjFhMDlDTWtGMksxSlBNRnBoWlhVeVQyMXNTM0JOZG1OWldXbE9TVmxNY2tOT1RrRTJORFZpVjFka1VHVlhUWGxLVVRjMlZRb3dVbXg2UkhaTGNVeFBOMlpHUVhWUmQwWkpUMmsxVDI1dFkxTnlVeTlsVWtZMk9FTXJWazlXYlRac01YUkdiMnRtVVV0RFFWRkZRVFZ3VUd0NWFqSkNDbE56U0cxc1NXMXlOUzl3T1dwbFkzUm1Uak5tWmpnd1FUVjFPWEpwZVhOMGRHVkViM050YWxsMWFsUm1UWFYyYkV0TlltaHJjRk13V0RoblZGSkZRelFLU2t0elEzWlJNVWRRYmtJeE5qSkJSSGxaWkdVdlZtMWhOSFJQYUd4MGVqVndSRXRTVERsSVpVZ3JhbE5UU1dkcVJXaHJWbTR4YVVZeGNHcGhZa0V4Y2dvNU0wVXhZWFZqT1VWNlFVdExhRmxuT0V4MmFuSjVMMjQ1TXpFeGJXOUJVMEo1TmtOdGQzWTJXbE0wSzIwM1V6azFSM05uV2xseFJTdExhR3gzWlRWc0NrSjNlVVZ1U0V3ck9IRnBPV3hWTURkVVVuTlhNVlJoZFdGTGFtWlRhbTVSV2pCTVpEbERUMnRUYzFGRVNFdFFTemhSTjJGRE5rZzBUVGRaUjJaNFlWVUtUbmxYVFhnemNqZENjMnB2TjJwalIwRkRlREZHUjNoU1VuWXpWV3BWYkhOUlJVVk1TbmgwTlRWaFJHeHBURTVwYm1WTlpYWk5Uakl6VEhCMFNFcGthUXA1TTNNMlRubFZSekJ0VWtGWmQwdERRVkZGUVhoaVdFODRUbFZIYmpoWldHdEpRVE5pTVZNMVIwVnJaV2hTYmxsYWJpdHNTME5vU0V0TVNsaFphVmROQ2tVNWFERkxiQ3N4V21GR1JFVlpVbXhLTjFaek5GZHJabWs1ZEROMFdUSnNUVXRFWkRkTVltbHVUMUZzWkV4WVFYTXZkREZNUkhCU2EySm1aeTlpZEZrS1lVRktkbGQzZVRodFdHSnFhbk12WVZkclNtTkllUzlCY25SRE5VSlljRWh2YlRVek9GUlZhVTk2WjNkUGJ6bDZTeTloYW1GcmVYWnlOWEpJWjNONlVncFZURFkzTVhad2QzQnlhVEZsVGpkUFVHcE1NRGxoVVVadlluZHBVVVpvUlhoRFMybG1XWGt3ZFdoRU1FMWhNVkpvT0M5VFMxaE5TMG94YVZOVk9EVjBDa3hEYmtFcmQyMXhTMWh5VDFKS2MwSnViazVKTW10VFRXdFZUVVpwVERsc2FXWk1SemxoV1VGeVozWmxRWEZLYnpRclZGQTNTV1kzWjNORFJWWmxjMGtLZW0xQ1ZIbE9TekZHWnpCUVJEWjJhalp1VTJSUFIxUkRkVk5NU201bWNEUXdZbTlxTUVrMlNtOTNTME5CVVVWQk1sb3JWMjVsWW14Qk9Hb3dkSGhqYkFwUlFVdHJkeXN3UVdWemVubGhRek14TDNkRVZEaFFjMnN6Ym1aVVUwdG5ObVpoZW5aVFMwWnhibFY2ZDJ4RFpEQkJjamRWY1VkUGNFdFVjV0ZyUWtwaENsUlJOVnA2V0dwSGRXdDJhRTVLSzBFeGVuUkdWbEl4YkVwVWRIY3ljMEp4ZEVwV1N5czFaelVyV21ab1ZqUTNNbUY1TDBSWU5UVm1WelpFYlN0UGIyUUtUU3RJZDJobU5YbDNjVTlxV25KTFFtSnZOV3RHUW14NVlXOU1WVlpGUVNzMldWb3pTWGRETlVKVlEzbDVRVTkzVFhaNlJscG1PVFpNVDJZNGRHRnBNd3A0YUVoTVRsbEpObE5VUldKSlRYWkhWM2hQWjBFckswUkxhVXh5VmpoVVdVTktWSFZHZG1Kck1GSllhV0ZJTlV4M05IRXliMUJoVUd3eWEwTmpWR2MyQ21WNFNHVXZkemRDZUVOSmVITnlMekZEYkhORFdsRk9ObVo2Tm10d2VHMUJkVWRHWlc5MVNXdFljalpDVVZWdUwwRndLMVkwYUd4cU4yOWtNSG8xTVV3S2VtZEZLek4zUzBOQlVVVkJiR0UzYTNkd05URlRiV1FyUm1FclRYbExVRGRGYmtSb1VUSklhVE5ST0UxeFp6azRaVVZ2TVUxRFFTOUphRTVDSzFabVJ3cHFUeTh2VWk5aVZsbHhMMUJvUVZSRWJHMDBUUzl2TkVSdU5FcGlTV3RxTHpOcmJ6Uk9WbXRhVlU5dmVYUnpOV05VVW1STGNIRTJPRFowYmxaR2NtcFpDak5PVFU5NU1rNHZOamd2VERCUGVXeFZNMVJCWWpJME5WbzNaRGcxVldkV05UUklUblZpWnpkUFVFTmpibVpFTjBoa1luWTNORFZFWkc0NVFURlRlRGdLVG5rd2JXSjVSVFJSWjNwM1QycDZORFp2TnpFeU5FMDBXazF1V0M5WVpWZHhSSGRJZEUxcFJVeHRPV1p5U0ZCc1NIYzNSMnRrTlRVNWRrdFNiMVF5WVFvM05XRkVURnAxZUV0U1dXTTVUM0p5UWxaeldtbEpUbTVUTXpWaWRGVlVPWGhOWkVaVFVHUlBkRU5NWVdKRVozcGhZbFkxVHpGallreHhkblJKZFVOeUNuRnpjM1ZQVHpSd1QzRnpXa1ZOV0hkVGNIZFZlWEE0UkRnM2VXRlBkRFV2VVhkTFEwRlJRV2xIV1Vob2JTOTNaVTVUYVU1bE5VOVNRbGt4YjAxa1lqY0tRV1p0TVRWamNFNW1hRkozYVhGNlRrMXhNSHBOTkVSd1FYZ3hOemhFYVU1ak1rRlRZV0Z0V0VRclJsbE1hVU5SUzBwcE5sRnhORmR3TUdGQ1dWaGpXUXBLWjFWbVREQjBjRGR6WjBaMlkzcG1hM0JXU1Vac1dHcGtWR2hyVG5JMGRHdEtaVmczYVhCYUwzTlRNR2RJY1hGWlZUTkZhWG8xVjJ4NVoxZFpUSG8yQ2lzd2FqaHFlRWREUmxoNkwwZFFkbXhZTVVkemFUVnNUVEp2VjBWWVlubFZjUzlHVFRSYU1WbG9WbGd3SzNjdmVXSklNM0FyTjBrek1IWmxUR1pGZVRrS2IwcDVkbkJVVFc1dlNIaEtNbXhIUWxodGRHTnFjV1JSVERKd1kwb3hibUkyUkdkNlVqWmlOM0ZEVUU0MWNUSkRPVGhMY0VaMlJIbFVVbGhwTlRkd2RncHVMMDVZT1VRMFVreHJXbXhuU2tORFIyeDNkWHA2VHpCMFZsa3lOV3hsVDFaU01VNVdkMmhhTkVobWJrdENUVTVHTXk5QlRIWllWMUUzTWxRS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiB4cWV2aHdwY2ppODl5aG0yZTdsYWd2bjdyM2k2dHJvMWZqcTV5endza3N0eXI2b3MzZGtsemd4Z3d1ZjljNjBjYnBhb2U1OHN6cnF4bjl5ZGdocHUyZmJheWpwdjNqc212Y2hzMTF6bmc1Y3RuNWdtNmNsN21jaGZvc291djZlZgo=\"\ - \n }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": + \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSVDFaVFNIQjNOU3R0ZFc5MUsySm1keTlqWlhBNFJFRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxcWEzaE5WRVY0VFdwT1lVZEJPSGxOUkZWNlRVUlplVTlVUlhoTmFrVjVUVEZ2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVSRUNrSm1UWGhNVFdWaWVGWnlZMHd6WkZNM1ZFaFFZMHN4UTJkclZGRldhR3BaVTFod1EyRllNRVZETmpFeVdVeEVkbGQwYkRoWVZuTnJka2RDWWtoQk1Ua0tTVmwyY1dkVlNUVmpkbTlqTTNKTVkwOUZWVEpVUnpoR2RGaGFZVVJ4T0Vsc05IWmlRMmcwTldjeFRWWk9XbTUyVDAxa1dGZEtXSHAwYnk4dmExaGtWQW94TjA0MmJVbDZPRlZaTkcxMlkzVm1Ta2xoTjNkTFUyVkJORkJsYjFSQk4xQm1jbVE0UVVjMVdGSkZjREJFUlRaaWVFSXdkMFIzVEhWcE5GaGtaa2hQQ2xocVR6aERha01yZFZOWmFWSmFhVFJNVldkbmIxWjRNbWRSWVhKelZVOVZSazV6WWxCalpWSlBaVEZyZUZNNVZVVnJiamc1VjJ4YWVWZHJiQ3RSZURBS0swMDBWV2R1VEhodk1UVmtNUzl4ZW5kb1drWnNXbXhPVFZoVVYwUkpNamxyZEdGNWVVVjNkbVZCY1dWc2NtNHJTa0lyTVVGS1pHY3lVelkzVG5OUWFRcGhTbGt5UVhwb1dFNVdSVU41Ym1WdFoxUjZkbk54T1c1YVUxUnpVbmMwYlZodFNrOTVWMnhRYkc5UlVHRjJSV3RXWXpBMmNqbE5RbVpQZFU5eFNtNUxDak5HWlZkQ1VYQk9iamxSUXpnd0wwdEllVFJPWlVzclJrTnRWV3BTWXpsNGVuRktSVEVyYVVsMk5rZDVjQzlJVm5CaVpTdEJWMHhMYkZoNFFUbHBiSEVLYW1nMk1FdGtaWHBLWTNCaFpVTmtSakZvU2l0RVpFa3lkVWxIYXpCRWVFaFhka05RWms5RmVWRkhXWG8yV1hkbFJDOUxNbXRTWlZaYVltRlFVRU5KZUFwblFXd3ZjMWRPTkhGamNGVmxaM0IxYmpkUWVrZHFRVGgwY1VvMloxcGlkR1V4TTIxWVduZFBOVFJ1UTI5Wk9HRnhRMUpOZUhsTmN6RnZibkpHZEhCU0NrZ3hlVkEyUkROdlowZGpRMEZpTlVweWJrRkpUQzlDT0RCNVVFdFRia1pwWmxSa1NTOWthRWNyTTNkckt6VmxRMjE1YVVOWGJUZ3hjelJ1UjI1Q01Hb0tWSEJ0Um5FeFIwODRSbU5tTVU1b1luTTFTRWR2TlUwNVUwOTJTMlIxUkRNNFdqSTVWRVJHYm5CM1NVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWaGFHaGFRMnhyZUdVeGJFZFBZMHBhQ2pjMFZrVkZMMmRHWmtOcmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGSVpsSlBabTlvWVdjeFV6Rm5ZaTlzVERFeVpFNWhNazVrY0ZZS1ZFaG5NbEJUS3pGSk16aHdUbmxLTDB4U00yNTJia0pDTjJSRVJ6SklZMGx5VUZoYWRXTmFSVEJHUjBSaGFEQkpjRkY2VDBJNVl6QlRSbHBwTkZWcVZRcHlVeTh5ZFc1WVZFTlJNVlF5Y0VoRU5qaFNURmxYYVVZM2R6RXJObXBHYlUwNVZERkdUVmh6Y0UxMFRHdFNhMU5NZGs0NWJsWjNjRVpLVUcxRE1sZEJDa0ZLYVVKU1p6TnJhMFl6Y1V4NU9FSnNkVmRGTUhwQlRtVnVMMmxVT1N0MWJrWm1hVTVwT1VwVWJHeHBiVWhvYTJsNVRYVkpTSG94UTJWaWJuUTVjVUVLVlc5WlUwTm9UbWRQVm5sWU9FaE1UbkJQVWxKRlZEaEJRWGdyVEN0SlUyRkhjMkV4VUhkVlNsZGtkamRLTXpaUU0wVkpUVTlTYW5oRk1YSnpZemsxWndwd1lVZFRNSE5JVDJsQ09DOXlkRlZYY0ZBelYzRkZiR055V0hjM0wzWlhNVlZZTVV0bWMwWXhSME5MZVhwRUsyMVVlRWRwU21wVlNYRnJUbVo2WlZCVUNrTXhPQzg0VERScGExWmhSRkl6WmxoWU1scENNbTlLYnpkcFNWTkVVVVphUlVsek4yTnljbGRaV20wNE9WaEtlbVpUTDNWUFVqUlBaVkJaVXpablIyMEtWek5tYWl0NlZYUjZVbVJpVVdsc1JtTk9WMUpPYlRWaWIwWXZkalZwYldOcVRXd3ZaRFZvVkRKdlRYUnZRekF5YWxKUFMwUlhRMkk0Wm1vM2JrazRlQXB4VWtsSlNrUXdNVWRTWVZScWVIaElURmhSTUdoek1tUnphVXhpYzFKSE9YRlhZVGxHWWt0NGMwOUdaM3BJWnpFMVRHUXZaRU53YzBkaFRFUmplbU5wQ25nNVYzWmxRMmt5YjBVMGFsUjBkbGx3VkRaRFIxbHRWMHhuYnpJeVVuZG1kVXBpYUcxb2FHaEdPVGhyWmpOYVpVZEhkbFF2WmtoU00yUm5hVXh6WkdnS1JGcEhVV1ptTkZnMWFEaGxiRFV5VEM5MVZ6VkJiMkZ2VERWYWVXeDZjVUZvYjBsVE4wYzVkbEpMTjFWWFZqSklXVWRWWW5ac1NsVjBTa2w1ZUhOTFR3cEJVblpEZG5SVk9GTTBWVE00TVZZeUNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc3FreTNkeHAtbjE5cmg4MWIuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3RseHQ1NnoKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3RseHQ1NnoKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3RhZGh0b2Nrd3R5X2NsaWFrc3Rlc3RseHQ1NnoKICBuYW1lOiBjbGlha3N0ZXN0bHh0NTZ6CmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdGx4dDU2egpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3RhZGh0b2Nrd3R5X2NsaWFrc3Rlc3RseHQ1NnoKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJVkVORFFYZFhaMEYzU1VKQlowbFJZMFZWVDI1aE5qSkpRV1Z3TVU5RE5XeGlRbUZFVkVGT1FtZHJjV2hyYVVjNWR6QkNRVkZ6UmtGRVFVNEtUVkZ6ZDBOUldVUldVVkZFUlhkS2FsbFVRV1ZHZHpCNVRYcEJNazFxYTNoTlZFVjRUV3BPWVVaM01IbE9WRUV5VFdwcmVFMVVTWGhOYWs1aFRVUkJlQXBHZWtGV1FtZE9Wa0pCYjFSRWJrNDFZek5TYkdKVWNIUlpXRTR3V2xoS2VrMVNWWGRGZDFsRVZsRlJSRVYzZUhSWldFNHdXbGhLYW1KSGJHeGlibEYzQ21kblNXbE5RVEJIUTFOeFIxTkpZak5FVVVWQ1FWRlZRVUUwU1VORWQwRjNaMmRKUzBGdlNVTkJVVU42Y2xVNWQyNXFjak5LVDFCMlMySnhOV05SYW0wS2FsTTNPSFJQTTFKcVRWZzJURWMxZFV0d2Jrb3JWa2xXSzJkSVRETTJZbWRqUjNWVVVrd3hNbGhZVGs5MlZYTXdja2t2ZDJOV1NVcFdibEpUYnpoelRBcG5hakZ4UkVsdmFrOHdhM1V6Y0VOVlNtbENOMW8xTVhSUFkxRnBjVlF6ZEdSTlVUQlViRWsxUm5neVMwVkhNMlZqZDFWb1psRkphVWxWYWtGd1oxSjZDbXhKSzI5cmJHTnlORXhDZWpSaU1IaHhhbU1yV25WWWF5OXdkWGRWVTB4MmVVRlRaSEV5WlhvemFXbGhRbFpJSzB3d09XcGFNRVZCZG5CUFUxcGxaV29LY1ZwV1VIWkJOR1JqWlUwNVNsQlBVRWh6TjNsbVFsZHlabXB1YkZNeGVVaHVUa0pYVm5ocVlsQlZMMngwVVdOSk5pdFhWRGRPYURKNWJuSnRTbE5VVHdwTU1FdzJMMFpNVFc5cllWTk9ZbkE0YVZwSmFESmhiR3QzYlc5UlUzQndUMWRrT1RkV2IyRk5OMmRaWVc4clNIRkhVRmhvWmxOSWNqUlZZMmxJVEVaWkNrRTJNSEV2Y1ZOS1UybDBTV3BZTVRGVFNqRTBTRmhWUVVWdlJrWjJVVEkxY1VrclYwNVRabGhHSzBjM1NYQlpXVFJwYzFKMFJURTVWa2h5U1doa1Vub0tjVnA2TTBORVpVeHpRak5zWWpkM2MyVjBUMXBvV0c1cGRUQjZRalZXT0ZONmNqQktjRUpUT0ZaVlVHTkdWVEI2UTIwclFrOVZOME56U1hBd2RXWkhNQXBNVjNwdWIzQTBXVkpEYkU0MFFUVlpTRnAyU201NmNUVm5kbm94U0RCSGNqQnhhbkJDVTJkMVZXdG9jM1ZvWmpjMEwwUm5kREZTSzJSeFNqaERXR1V2Q2pSak1HTnhTRmtyTVd4QmVIaEtkREZOVmtoQmJsaERNMlZ5ZW1oRFYxRnJMMWh4UjJSaVRGQlJWWE5WUTJ0VGRISm5PVkJ3ZUVGeVVFUnpSa1ZFYURVS1NWVnVOazVyVmxSUllUSktNWFpCYkdSaWEycHVVR1ppWkhOclExQXdSRUphTW5ORlowNWhjMnByV1UweFJ6bHVPRThyVjFwS1FVSjZNM0J5SzJGU0x3b3JORkZ2UTJ4RVdEYzFZMWhyUzNGTGRHY3lOamQzU1VSQlVVRkNiekZaZDFaRVFVOUNaMDVXU0ZFNFFrRm1PRVZDUVUxRFFtRkJkMFYzV1VSV1VqQnNDa0pCZDNkRFoxbEpTM2RaUWtKUlZVaEJkMGwzUkVGWlJGWlNNRlJCVVVndlFrRkpkMEZFUVdaQ1owNVdTRk5OUlVkRVFWZG5RbEp4UjBaclMxZFVSamNLVjFWWk5YZHNiblpvVlZGVUswRldPRXRVUVU1Q1oydHhhR3RwUnpsM01FSkJVWE5HUVVGUFEwRm5SVUZIUzNwamRrMXpWams1UW1OR2VYUjFaVzVIYWdwWWQyaG5TV1k1Wm1Sd1oyWnBTemR5T0V0SVRFdDZNV2hYTWxjNE5sbENWVzV5UVhoTk1tWm9SbWRwVDNwREszTnFabWRKUTBSdlJrWjVhRGRMUWt4V0NqbDVkMWh6TkRGa09XTXJUSFVyY2l0S1lraEJabTh2Y1VsNWJHRm1lR2RZTlZwSFNsQTBiMEpGYlc5VVpUZGtVMHc1VjJwUmFpOVphM001TkdsSWJVTUtVRXN3UjFGYWJWaEpVM0pDVFhFMlFtRktOalV6VlVaT2VHMTNaMWw0VFU1TVozSTVXSFpuZVVSUE0zbG1TRVJUUm5wUlVtMURMMnRtU2tSME0zRjJkd293UkZnck9XeHlUQ3RaVVNzdmQxSmlZM0o1TVVWYVduSTRNMkZCV1djM05XVXZRa2xxYjJSc2RtWXpkRGhMTUhVdlV6Z3ljVVZYVXpaQlZFeE5NMnRWQ2pGdlVHdDNkekZtYkN0NU1GUXhNbnA0UWtwR2NHSTJjbWxzYlRJMFpDdHFablJ3WmpsMWJYWk5SREJaTkRKS1FUQmlaVk5JVVV3MllYaEJNbkZ0VnpVS2JFaFJlRlpIZFRkR2RsTTBiRkJ0Y1hOTldtOWhSRnA0UzNGTVpFeHRMMmcwUVdKeWFqVkJWRXN3T1Vkb2QwTnJVRE4xZFZkaU9IbFhRV051UzJReFZBcFZabFpYWTNaMlZTdENlR1pqYTFKeldHNHZZMFU1WWxWb09VSlFURkpCVmxwMlEzRXJSSE5JUlhSSU1Ga3pWbkY2UjI0MlJtWTFiRTlYUWxoeE1USnNDbFJrVDFoTVluazFaVmxGT1dSdWIyZzViRnBoYldOWVlVcFZTWGg1YkhCTkwwZHdUMnBxVDNWNWN6TmtOVXRDYUhvd1JGbFdRVWs0ZUUweWMyRXhabThLSzBGTldUTkJNa3A0UTIweVdWWlVibTl3TVdoblVtWTNWVFZaT0ZwaWVuVXlUVmhwWlVWdWFXUTNSRWxUVUhNMlIxZHNaR2R0WmpscVJsQllaaXRLZFFwWVNITjRVVzAxU1ZoNFQxcFVOMjUyYkdKclVFWkRaRTVxY1ZBeWJqVjJTRTVDWkhONldtdFFTRzgyYmpoNlMzWTBha2xsU1VsWmFYbHFObWQ0VFZVNUNraHdaamRvV1VOSk9VUXJXV0ZHTDNCU1RUTkJZalZGUFFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMEZKUWtGQlMwTkJaMFZCY3pZeFVHTktORFk1ZVZScU4zbHROblZZUlVrMWJ6QjFMMHhVZERCWmVrWXJhWGgxWW1seFdubG1iRk5HWm05Q0NuazVLMjAwU0VKeWF6QlRPV1JzTVhwVWNqRk1Ua3Q1VURoSVJsTkRWbG93VlhGUVRFTTBTVGxoWjNsTFNYcDBTa3gwTmxGc1ExbG5aVEpsWkdKVWJrVUtTWEZyT1RkWVZFVk9SVFZUVDFKalpHbG9RblF6YmsxR1NWZ3dRMGxwUmtsM1MxbEZZelZUVUhGS1NsaExLME4zWXl0SE9VMWhiek5RYldKc05WQTJZZ3B6UmtWcE56aG5SVzVoZEc1ek9UUnZiV2RXVWk5cE9WQlpNbVJDUVV3MlZHdHRXRzV2Tm0xV1ZEZDNUMGhZU0dwUVUxUjZhbmczVHpodWQxWnhNelExQ2pWVmRHTm9OWHBSVm14aldUSjZNVkExWWxWSVEwOTJiR3NyZWxsa2MzQTJOV2xWYTNwcE9VTXJkbmhUZWt0S1IydHFWelptU1cxVFNXUnRjRnBOU25FS1JVVnhZVlJzYm1abE1XRkhhazgwUjBkeFVHZzJhR294TkZnd2FEWXJSa2hKYUhsNFYwRlBkRXQyTm10cFZXOXlVMGt4T1dSVmFXUmxRakV4UVVKTFFncFNZakJPZFdGcFVHeHFWVzR4ZUdab2RYbExWMGRQU1hKRllsSk9abFpTTm5sSldGVmpObTFqT1hkbk0yazNRV1ExVnlzNFRFaHlWRzFaVmpVMGNuUk5DbmRsVm1aRmN6WTVRMkZSVlhaR1ZrUXpRbFpPVFhkd2RtZFViRTkzY2tOTFpFeHVlSFJETVhNMU5rdGxSMFZSY0ZSbFFVOVhRakppZVZvNE5uVlpURGdLT1ZJNVFuRTVTMjgyVVZWdlRHeEtTV0pNYjFncksxQjNORXhrVldadVlXbG1RV3d6ZGl0SVRraExhREpRZEZwUlRXTlRZbVJVUmxKM1NqRjNkRE54T0FvMFVXeHJTbEF4Tm1odVYzbDZNRVpNUmtGd1JYSmhORkJVTm1OUlMzcDNOMEpTUVRSbFUwWktLMnBhUmxVd1IzUnBaR0ozU2xoWE5VazFlak15TTJKS0NrRnFPVUYzVjJSeVFrbEVWM0pKTlVkRVRsSjJXaTlFZG14dFUxRkJZemsyWVM5dGEyWXZkVVZMUVhCUk1Tc3JXRVkxUTNGcGNsbE9kWFU0UTBGM1JVRUtRVkZMUTBGblFtMHhla1JpTjJOVmExSnFiM05ZY2poblpYbEZNRVJQVlhwQlZVRktjVGhDTlZVNGMxWlNWVGR0SzNONFVVSmtkbGhZUkdwQmVEZG1ZZ3BCUVVwT1lVZHRhVlJPYUhBeWMyTTRVVlJDUzFwbVEwbHBTRmRyVEdKVFNFdFpkemRhUTJsalMyZHRiM05xV0haVVJIZG5SVEp6SzNnME0wcG9kMko1Q2xKVk0zTnVWakZ5T0RoR1prUkphVWxTVjNabFMzaDZaMGd5V0RJellscHZUSFpMTUVNMVVWUnFPRnBvVldWTWVURmhVMHROUjNwbFR6SktObmxuY0ZNS1ZVcFJNM05HVjJVMmNVdHRhMVlyYjB4eFdsaEVZakppYTNKYVJuZzNMMDVrYmpkQ2RtSnFjQ3N5Wkc5eFMwdGplV2RqUWs1SGRHYzBXVk5vYm14RWF3cDVhemxSTVZWUlVUTXdLMkZtUzB4WWVYb3lUM0ZLUVRGblJtTlVjVXAwTWpKemRIUnJkMmN2YTFnNFpUTjNUVVZYZG1kSk1IWnZkMUIyVFZwSE0yMDVDblEyVjJ4eWJYUlNMMnBHUm1NeWJuY3lWbFk0UmtkS1NteFNRM1p6VTJoYWJFTnljRlYzWWtwTmJFdEtlbm95THl0MFZGSnZhR2hFSzBOcGRWbHVNa01LY0VrM1R6WnhiRFJYWWxJMGNFWmFTbUZYVnpsQ2EzcExNMVpFZEZWeVpqQjJkVlJJYUM5VFdVSnhTRFpwZUZVdmRGVjBaREI0TXpNNFRDOHlXbUpXY0FwaGJ6VlhUMWRDVFhOMmR6bFJjVk13YWtWUGR5dExkbUZMTjJ3d1VYUTNOR1ZJWmxSdmFUWXJTVGQyTUdWSVkxbDRhbEJ3Ykd3eFZXcHpjVmt5VUhNMkNraFhXakJsZWtWRFlsVkRTemhJVVVoTk5ETkJTVUZNUzJGUVpIQktjMDQyZUNzd1JsWnhTVmd3WldseGNYY3pOMWRpUjJ3eVEzZHVhazlwY0ROdFVub0tUWHAxVUVVMVJtOXZlVUo0YmtOdFNXZ3ZRWGxsUkZRd1pHdERNVWh2ZW1jMVNGTnRSR1o2Tm1wdk9VWjJObGhZUms5Uk9HaHFNMDlFU25wa1ZrZDNWd294ZGxaTWRHUnhUR0ZJTUVsYVkySklUMWxJU1hKVFVrNDVZMGdyT0N0bWVsbDNZM0p5WVhsWWRGSjBkWFpqVHpKcFVVdERRVkZGUVhwM1YwUm1SVUYyQ2pGUGNHbzRXRUl3UTJGaWQxRTRVVk5XY1VkaU5HUnphbU5OVjJ4U2NqUktVMVp4UjNkbFQyWnFjazR3TWxnclptbzRlRFU1U0ZCSk4zaFpSVzFXVDFRS1ZXbzVVemMyYW5WV1JtZzRiRWw2ZVdwUVNtSjBLemQwYlUxWU1XcG5OM1pYYWxGd01FUklabkpYZWpoWFdsTXJiMmhDWmxWU1ZrbDNWQ3RKV2tkbGVRcG9UVXBGV1dONEwzbDZPWGxVTUdJMlpWbHFiRWs1ZVVGUUszbEVPVFJ4ZW1NemFFeEdSbk1yVHpaSU5pdHFla3hLV1VaUllYWnhSRmMxZFVsMlpFRmhDbEkxVWtKaEswOTBUM0F5Tm5rd2FGbHFRMUJKYzFsdVFYRXJUV2RTYVM5clRVaERLelp3Wlc5WVZUWXphV1pYYzI5V1pYTm5VMFZ6TUhWSlkyRTRSVTBLTTFoWmMyNXZWRUZOUjFSeVIzZGhaMDlaTTBSQk5tdEVVRFJoWm1acGJ6TnVkVFJPV21kdlVTOTZjUzlJZUVJd00xcFVNV3BxVUV3elRIa3ZhVEp4Y3dwbVIxRk5iVlpoY0VaNGFHRmlVVXREUVZGRlFUTnBLMnM1TkN0NVVrazRTMkpLT0VkU1ZHeHVZalpHWnk5M2EzYzNlRnBLZFRWVGJHVXZTbkYwV25aUkNuQkNRMDF6UmpFd2JYVkNhWE4xWkdzMEx5dFpZVU5WVEZKUFlrOWlTa2RxVlVwSFUzSkhTR0pRU1VsWk5XOXVaM2RDYmsxa2VFVnBWMWwzZFVOM1Zra0tRM05pV2tvMlVXeGpaVWhNYTNKdU5HRTVkMDh5WTBOb05FVlVXamxVT0dOVUwyTkNTRU5FU0RGQ2JYRlljbFZ2UmpkNWNVNVRNRlJtVFVnNFdrTnVhUXB1VHpoRlZVUkJNMVZTVVRGWGR6bGxZVTh2ZURCRWNuRjNOMk42TkZwM2FuWXZjVVF2UXl0U1NIaEtXbnBTVlVVM1ZGQmtXRGcwVlhoeU1tdGpXRFZsQ2xwMFJFMUtaREUyWWpsUE9Xb3dPUzl3TDBnNU4yaHBXVk5XU2pGVlJVc3JaRVo1V1M5U2JEZHJXVFJUYzAxeFQxbERWbll4TUVkRFRHTklRV2R4UVVjS1FrVXlkRFZuVmpWaVJ6ZFRZM0ZOVHpCcFRtRXhXRk5XUVZveGNuVmpjVE0yV0dvcmMxWkpVbE4zUzBOQlVVRnNlV2hFWkZSdE5ITjRTR2h1Tm5sdlZBcFdVR3BKZEdaTVVFRTBUVXc0UlN0Qk1USk5OMFJhWkhWWU1uSXpNalZCVm05WFdqQkRWbkpqUTJWM09VWnBSMWx0ZDBaT05UZGhaSEprWkRaNlprSnlDbFI0WlRKdGFDOTNXVXBGYW1WNVlUa3lNbnBsWlVwV2VXUjBSVzVKZFU0NGNXTmtTM0IwT1VKblFrZFhTVWhrSzFwNFYwUnNibGs0ZVRaV2JEUk5iRE1LUmxkaVRsWTVlVU00VGpBMk9WcFpibXhSYm13eGRHazBMMFF4WjFGMVQxTlRVbWRwVFRWVE1XcFBlR05EYzNsT2JsVXJVbkp1YjA1c1RqazBWRlZCYVFvd1oxZ3hPRFJtVDFaUU0yVm5jRWM0UkhGTGJXcFViSFpMYWxZdlduZ3lhRzl4ZGxsTlFrNUxRa1pKUmpWRlRteFlNR0p0TWtnNU4zTlpWMnhxWmk5NkNrWlphbWhFZHpKVFZTOUdSVXR6WW1kQmNtWTRaRTFLWjJKWU0yVnZXRzVIZWxSa2VpdFVTVXd2U2xCNVYwUjNabGRCYW5rM2R6YzNVMlIzVHpWWldFc0tTa2hVYkVGdlNVSkJRVWxFYVVsck9UUnBNMEUxYVZaS05EZExiemRKYTFWbE1UWlZXa3c0YlVGd1JWTnlaRlpNZDNrdlYwMDNVRzhyYmpFeWRUSklWQW9yZEVWSlV6a3ZUa293U2paWk0yNURXbU5wVTBsV2NsQnNkbUU1UWtaSGRVWkRLM2wyUkdwQ1ozaHljRXQwYVVrM2NtNXRNa1p3VVhCNFRUSTFObVkyQ214bEwwVm5Oek50YUhKUWRXcFJhMDVXY2xKclYwRjBXbVk0WTFSbVVIZDBTakpCYjFsRE5tMDFVbmRMVW05NmR6ZFRjWHBRYm5sU2NHZGFZME5aVWxFS2JrcE5kM1J1YUZwQ1IxbFJkM0ZRTTJWNE4yMVlWMU5YUkhKQmQyUnBOVVEyYkVKNmFXeElhMFZJVDFneVNsSmphalp5TDNKRVpHVlhVblJYZDBrNVZ3bzJabUp6YWpSdGEwcGtjMDF0WjFSQlNFcFJXSEJ6V2tSUFNtWkRjbFkwUzFoYU1FRnRVRE5EUjFKMGIxZHdaWHByT1RCaVQycExOM2xaUnpKT2RqSkhDbTAxTW5sWlMxbERPRUZZVkZGeE5UZEZUV3ByVkROd2MxRkdTek5JWWxWRFoyZEZRa0ZOWlRWclZYUjFZM1JyWW1STk5rUnVZa1UxVDNSUE5rTnpZMk1LWWpsSk9HOWxZalp0ZDJaTFVrSjVTRXhtZVVGRGNrSmxOQ3MwUzFJNVF6QlVNak01V1VSamNtWkJhSFpvYTB0R09XNXZkazF3WmtaSFRESTBRMmRtVWdwQlkwTktkMmRtVG5sRVRYaHNja1JHVjFoM0wwRlFlVWxKYXpKbVVqRjRVMHg0VjA1TVlqTlpNWEJQWm14emFqWkpLMlZHTTNZeVlqaGFlVzh6WkcxWENtZzJjRGNyTHpsdFJEbEJMelZsUjFobk5tZHZZa3QyZVRZMFltbFhjVGh2VW1JNGVubDNMMjFoTURZMmRWWjNNSFpLTW0xVGR6WmthSFYyZEM5MmJWQUtZM0JYTjNkMkx6ZG9XSEV2YUZOaGEzb3JSM05NT1VSeVRXSkxUeXRxTWxsVWFEQjFLemRMZG5reVF6RjVSMjVSVTBaQ01qZDVPSE5sYmtrM1ZUTjVSQXBZYjBWeVpuWlBiV0Z5YURFMFRsbHRZWHBRWmtSNVVWVlZSVTE2UWtOc01HcDVlVkIwWmtWT01rZFVhbWxOWjNrMVVDOHJRMWxUWWtOeFl6MEtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogM2d6NXNjNTR1c2Y5OHVpbmI3ejJ6NDk4ODVucDExcmdxZTV5YXo3dDZydjA1a2F5a2p2bzh5endtNXJvZDhndTFncTZzZ3F4cDZ3ODEwN2ptOHlvZHNwdG1laDhydG93b3JmaGx6em9jNHRzYnNsb2RjYjJ6dXB5YWx1NXp0Y2MK\"\n + \ }\n ]\n }" headers: cache-control: - no-cache content-length: - - '13084' + - '13072' content-type: - application/json date: - - Fri, 16 Jun 2023 00:04:43 GMT + - Thu, 29 Jun 2023 11:25:39 GMT expires: - '-1' pragma: @@ -891,25 +869,25 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-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.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ - : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\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 }" + 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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n + }" headers: cache-control: - no-cache @@ -918,7 +896,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:04:45 GMT + - Thu, 29 Jun 2023 11:25:40 GMT expires: - '-1' pragma: @@ -960,29 +938,28 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.19.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/738a3e45-8ed1-4e0b-b95b-f44c14becebd?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/abaad4cc-cb69-468f-b855-01b9ee5f53c2?api-version=2016-03-30 cache-control: - no-cache content-length: @@ -990,7 +967,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:04:51 GMT + - Thu, 29 Jun 2023 11:25:44 GMT expires: - '-1' pragma: @@ -1020,14 +997,62 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/abaad4cc-cb69-468f-b855-01b9ee5f53c2?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ccd4aaab-69cb-8f46-b855-01b9ee5f53c2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:25:44.8777124Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 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 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/abaad4cc-cb69-468f-b855-01b9ee5f53c2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"453e8a73-d18e-0b4e-b95b-f44c14becebd\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T00:04:52.1243131Z\"\n }" + string: "{\n \"name\": \"ccd4aaab-69cb-8f46-b855-01b9ee5f53c2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:25:44.8777124Z\"\n }" headers: cache-control: - no-cache @@ -1036,7 +1061,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:04:51 GMT + - Thu, 29 Jun 2023 11:26:15 GMT expires: - '-1' pragma: @@ -1068,14 +1093,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/abaad4cc-cb69-468f-b855-01b9ee5f53c2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"453e8a73-d18e-0b4e-b95b-f44c14becebd\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T00:04:52.1243131Z\"\n }" + string: "{\n \"name\": \"ccd4aaab-69cb-8f46-b855-01b9ee5f53c2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:25:44.8777124Z\"\n }" headers: cache-control: - no-cache @@ -1084,7 +1109,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:05:22 GMT + - Thu, 29 Jun 2023 11:26:44 GMT expires: - '-1' pragma: @@ -1116,14 +1141,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/abaad4cc-cb69-468f-b855-01b9ee5f53c2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"453e8a73-d18e-0b4e-b95b-f44c14becebd\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T00:04:52.1243131Z\"\n }" + string: "{\n \"name\": \"ccd4aaab-69cb-8f46-b855-01b9ee5f53c2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:25:44.8777124Z\"\n }" headers: cache-control: - no-cache @@ -1132,7 +1157,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:05:52 GMT + - Thu, 29 Jun 2023 11:27:14 GMT expires: - '-1' pragma: @@ -1164,14 +1189,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/abaad4cc-cb69-468f-b855-01b9ee5f53c2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"453e8a73-d18e-0b4e-b95b-f44c14becebd\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T00:04:52.1243131Z\"\n }" + string: "{\n \"name\": \"ccd4aaab-69cb-8f46-b855-01b9ee5f53c2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:25:44.8777124Z\"\n }" headers: cache-control: - no-cache @@ -1180,7 +1205,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:06:23 GMT + - Thu, 29 Jun 2023 11:27:44 GMT expires: - '-1' pragma: @@ -1212,14 +1237,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/abaad4cc-cb69-468f-b855-01b9ee5f53c2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"453e8a73-d18e-0b4e-b95b-f44c14becebd\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T00:04:52.1243131Z\"\n }" + string: "{\n \"name\": \"ccd4aaab-69cb-8f46-b855-01b9ee5f53c2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:25:44.8777124Z\"\n }" headers: cache-control: - no-cache @@ -1228,7 +1253,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:06:56 GMT + - Thu, 29 Jun 2023 11:28:15 GMT expires: - '-1' pragma: @@ -1260,15 +1285,63 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/abaad4cc-cb69-468f-b855-01b9ee5f53c2?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"ccd4aaab-69cb-8f46-b855-01b9ee5f53c2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:25:44.8777124Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 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 --labels --node-count --tags + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/abaad4cc-cb69-468f-b855-01b9ee5f53c2?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ccd4aaab-69cb-8f46-b855-01b9ee5f53c2\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:25:44.8777124Z\",\n \"endTime\": + \"2023-06-29T11:29:05.2916983Z\"\n }" headers: cache-control: - no-cache @@ -1277,7 +1350,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:15:29 GMT + - Thu, 29 Jun 2023 11:29:15 GMT expires: - '-1' pragma: @@ -1309,26 +1382,25 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -1337,7 +1409,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:15:30 GMT + - Thu, 29 Jun 2023 11:29:16 GMT expires: - '-1' pragma: @@ -1369,39 +1441,39 @@ interactions: ParameterSetName: - --resource-group --cluster-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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-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.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ - : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\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 }" + 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.19.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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n + }" headers: cache-control: - no-cache @@ -1410,7 +1482,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:15:32 GMT + - Thu, 29 Jun 2023 11:29:17 GMT expires: - '-1' pragma: @@ -1442,39 +1514,39 @@ interactions: ParameterSetName: - --resource-group --cluster-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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-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.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ - : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\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 }" + 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.19.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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n + }" headers: cache-control: - no-cache @@ -1483,7 +1555,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:15:33 GMT + - Thu, 29 Jun 2023 11:29:18 GMT expires: - '-1' pragma: @@ -1515,26 +1587,25 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -1543,7 +1614,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:15:35 GMT + - Thu, 29 Jun 2023 11:29:19 GMT expires: - '-1' pragma: @@ -1585,37 +1656,36 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.19.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/114f9e64-ffe7-4296-8d46-eec518c62fc5?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e85627f6-e9f5-4d4f-99b5-f80c55efd8f2?api-version=2016-03-30 cache-control: - no-cache content-length: - - '1069' + - '1068' content-type: - application/json date: - - Fri, 16 Jun 2023 00:33:50 GMT + - Thu, 29 Jun 2023 11:29:23 GMT expires: - '-1' pragma: @@ -1649,14 +1719,158 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e85627f6-e9f5-4d4f-99b5-f80c55efd8f2?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f62756e8-f5e9-4f4d-99b5-f80c55efd8f2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:29:23.9405735Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:29: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 nodepool scale + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e85627f6-e9f5-4d4f-99b5-f80c55efd8f2?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f62756e8-f5e9-4f4d-99b5-f80c55efd8f2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:29:23.9405735Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:29: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 nodepool scale + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e85627f6-e9f5-4d4f-99b5-f80c55efd8f2?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f62756e8-f5e9-4f4d-99b5-f80c55efd8f2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:29:23.9405735Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:30: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 nodepool scale + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e85627f6-e9f5-4d4f-99b5-f80c55efd8f2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"649e4f11-e7ff-9642-8d46-eec518c62fc5\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T00:33:51.1600391Z\"\n }" + string: "{\n \"name\": \"f62756e8-f5e9-4f4d-99b5-f80c55efd8f2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:29:23.9405735Z\"\n }" headers: cache-control: - no-cache @@ -1665,7 +1879,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:33:50 GMT + - Thu, 29 Jun 2023 11:30:53 GMT expires: - '-1' pragma: @@ -1697,15 +1911,159 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e85627f6-e9f5-4d4f-99b5-f80c55efd8f2?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"f62756e8-f5e9-4f4d-99b5-f80c55efd8f2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:29:23.9405735Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:31: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 nodepool scale + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e85627f6-e9f5-4d4f-99b5-f80c55efd8f2?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f62756e8-f5e9-4f4d-99b5-f80c55efd8f2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:29:23.9405735Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:31: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 nodepool scale + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e85627f6-e9f5-4d4f-99b5-f80c55efd8f2?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f62756e8-f5e9-4f4d-99b5-f80c55efd8f2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:29:23.9405735Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11: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 +- 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e85627f6-e9f5-4d4f-99b5-f80c55efd8f2?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f62756e8-f5e9-4f4d-99b5-f80c55efd8f2\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:29:23.9405735Z\",\n \"endTime\": + \"2023-06-29T11:32:50.4062587Z\"\n }" headers: cache-control: - no-cache @@ -1714,7 +2072,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:34:21 GMT + - Thu, 29 Jun 2023 11:32:54 GMT expires: - '-1' pragma: @@ -1746,26 +2104,25 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -1774,7 +2131,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:34:22 GMT + - Thu, 29 Jun 2023 11:32:55 GMT expires: - '-1' pragma: @@ -1806,26 +2163,25 @@ interactions: ParameterSetName: - --resource-group --cluster-name --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -1834,7 +2190,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:34:23 GMT + - Thu, 29 Jun 2023 11:32:56 GMT expires: - '-1' pragma: @@ -1866,17 +2222,17 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/nodepool1/upgradeProfiles/default?api-version=2023-05-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.25.6\",\n \"osType\"\ - : \"Linux\",\n \"latestNodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ - \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.19.0\"\n + \ }\n }" headers: cache-control: - no-cache @@ -1885,7 +2241,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:34:25 GMT + - Thu, 29 Jun 2023 11:32:56 GMT expires: - '-1' pragma: @@ -1894,10 +2250,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -1917,17 +2269,17 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/upgradeProfiles/default?api-version=2023-05-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.25.6\",\n \"osType\"\ - : \"Linux\",\n \"latestNodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ - \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.19.0\"\n + \ }\n }" headers: cache-control: - no-cache @@ -1936,7 +2288,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:34:26 GMT + - Thu, 29 Jun 2023 11:32:57 GMT expires: - '-1' pragma: @@ -1968,26 +2320,25 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -1996,7 +2347,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:34:29 GMT + - Thu, 29 Jun 2023 11:32:57 GMT expires: - '-1' pragma: @@ -2038,29 +2389,28 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.19.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/cde3a196-c08b-42ea-a76f-56129782d91d?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f0cb77cd-5389-43c8-af85-67d6d526d03b?api-version=2016-03-30 cache-control: - no-cache content-length: @@ -2068,7 +2418,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:34:32 GMT + - Thu, 29 Jun 2023 11:33:00 GMT expires: - '-1' pragma: @@ -2102,14 +2452,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f0cb77cd-5389-43c8-af85-67d6d526d03b?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 }" + string: "{\n \"name\": \"cd77cbf0-8953-c843-af85-67d6d526d03b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:33:01.6909821Z\"\n }" headers: cache-control: - no-cache @@ -2118,7 +2468,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:34:33 GMT + - Thu, 29 Jun 2023 11:33:01 GMT expires: - '-1' pragma: @@ -2150,15 +2500,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f0cb77cd-5389-43c8-af85-67d6d526d03b?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"cd77cbf0-8953-c843-af85-67d6d526d03b\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:33:01.6909821Z\",\n \"endTime\": + \"2023-06-29T11:33:06.6163088Z\"\n }" headers: cache-control: - no-cache @@ -2167,7 +2517,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:35:03 GMT + - Thu, 29 Jun 2023 11:33:31 GMT expires: - '-1' pragma: @@ -2199,26 +2549,25 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -2227,7 +2576,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:35:03 GMT + - Thu, 29 Jun 2023 11:33:32 GMT expires: - '-1' pragma: @@ -2259,39 +2608,39 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-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.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ - : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\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 }" + 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.19.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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n + }" headers: cache-control: - no-cache @@ -2300,7 +2649,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:35:06 GMT + - Thu, 29 Jun 2023 11:33:33 GMT expires: - '-1' pragma: @@ -2309,10 +2658,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -2334,8 +2679,8 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/cliakstest000001/agentPools/nodepool2?api-version=2023-05-01 response: @@ -2343,17 +2688,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/22a1c00e-c343-4524-8a9a-5aee78de2c79?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Fri, 16 Jun 2023 00:35:07 GMT + - Thu, 29 Jun 2023 11:33:34 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/22a1c00e-c343-4524-8a9a-5aee78de2c79?api-version=2016-03-30 pragma: - no-cache server: @@ -2383,8 +2728,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/cliakstest000001?api-version=2023-05-01 response: @@ -2392,17 +2737,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9d4e6559-953b-434d-a29c-c0f199e32a57?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Fri, 16 Jun 2023 00:35:14 GMT + - Thu, 29 Jun 2023 11:33:39 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/9d4e6559-953b-434d-a29c-c0f199e32a57?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_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 index 1f8535f2c51..9c9be1ea482 100644 --- 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 Jun 2023 00:35:20 GMT + - Thu, 29 Jun 2023 11:26:04 GMT expires: - '-1' pragma: @@ -53,11 +53,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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {}}}' headers: Accept: - application/json @@ -68,68 +69,67 @@ interactions: Connection: - keep-alive Content-Length: - - '1732' + - '1403' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-3ykmdwbf.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-3ykmdwbf.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/bdcd5d8c-65f3-4817-9f5a-0f4d65db3c34?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6192e229-12dd-4456-9abc-125451a95e1e?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3539' + - '3210' content-type: - application/json date: - - Fri, 16 Jun 2023 00:35:28 GMT + - Thu, 29 Jun 2023 11:26:11 GMT expires: - '-1' pragma: @@ -141,7 +141,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6192e229-12dd-4456-9abc-125451a95e1e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8c5dcdbd-f365-1748-9f5a-0f4d65db3c34\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T00:35:28.0977011Z\"\n }" + string: "{\n \"name\": \"29e29261-dd12-5644-9abc-125451a95e1e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:26:10.7527757Z\"\n }" headers: cache-control: - no-cache @@ -175,7 +175,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:35:28 GMT + - Thu, 29 Jun 2023 11:26:11 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6192e229-12dd-4456-9abc-125451a95e1e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8c5dcdbd-f365-1748-9f5a-0f4d65db3c34\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T00:35:28.0977011Z\"\n }" + string: "{\n \"name\": \"29e29261-dd12-5644-9abc-125451a95e1e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:26:10.7527757Z\"\n }" headers: cache-control: - no-cache @@ -223,7 +223,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:35:58 GMT + - Thu, 29 Jun 2023 11:26:41 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6192e229-12dd-4456-9abc-125451a95e1e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8c5dcdbd-f365-1748-9f5a-0f4d65db3c34\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T00:35:28.0977011Z\"\n }" + string: "{\n \"name\": \"29e29261-dd12-5644-9abc-125451a95e1e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:26:10.7527757Z\"\n }" headers: cache-control: - no-cache @@ -271,7 +271,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:36:29 GMT + - Thu, 29 Jun 2023 11:27:11 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6192e229-12dd-4456-9abc-125451a95e1e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8c5dcdbd-f365-1748-9f5a-0f4d65db3c34\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T00:35:28.0977011Z\"\n }" + string: "{\n \"name\": \"29e29261-dd12-5644-9abc-125451a95e1e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:26:10.7527757Z\"\n }" headers: cache-control: - no-cache @@ -319,7 +319,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:36:59 GMT + - Thu, 29 Jun 2023 11:27:41 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6192e229-12dd-4456-9abc-125451a95e1e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8c5dcdbd-f365-1748-9f5a-0f4d65db3c34\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T00:35:28.0977011Z\"\n }" + string: "{\n \"name\": \"29e29261-dd12-5644-9abc-125451a95e1e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:26:10.7527757Z\"\n }" headers: cache-control: - no-cache @@ -367,7 +367,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:37:29 GMT + - Thu, 29 Jun 2023 11:28:11 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6192e229-12dd-4456-9abc-125451a95e1e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8c5dcdbd-f365-1748-9f5a-0f4d65db3c34\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T00:35:28.0977011Z\"\n }" + string: "{\n \"name\": \"29e29261-dd12-5644-9abc-125451a95e1e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:26:10.7527757Z\"\n }" headers: cache-control: - no-cache @@ -415,7 +415,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:37:58 GMT + - Thu, 29 Jun 2023 11:28:41 GMT expires: - '-1' pragma: @@ -447,14 +447,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6192e229-12dd-4456-9abc-125451a95e1e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8c5dcdbd-f365-1748-9f5a-0f4d65db3c34\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T00:35:28.0977011Z\"\n }" + string: "{\n \"name\": \"29e29261-dd12-5644-9abc-125451a95e1e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:26:10.7527757Z\"\n }" headers: cache-control: - no-cache @@ -463,7 +463,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:38:29 GMT + - Thu, 29 Jun 2023 11:29:11 GMT expires: - '-1' pragma: @@ -495,15 +495,111 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6192e229-12dd-4456-9abc-125451a95e1e?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"29e29261-dd12-5644-9abc-125451a95e1e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:26:10.7527757Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:29: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 --location --dns-name-prefix --node-count --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6192e229-12dd-4456-9abc-125451a95e1e?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"29e29261-dd12-5644-9abc-125451a95e1e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:26:10.7527757Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:30: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 --location --dns-name-prefix --node-count --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6192e229-12dd-4456-9abc-125451a95e1e?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"29e29261-dd12-5644-9abc-125451a95e1e\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:26:10.7527757Z\",\n \"endTime\": + \"2023-06-29T11:30:36.6257495Z\"\n }" headers: cache-control: - no-cache @@ -512,7 +608,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:38:59 GMT + - Thu, 29 Jun 2023 11:30:42 GMT expires: - '-1' pragma: @@ -544,65 +640,63 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-3ykmdwbf.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-3ykmdwbf.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/a4eb3930-ab73-4cbb-b760-894cfdba0983\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4192' + - '3863' content-type: - application/json date: - - Fri, 16 Jun 2023 00:39:00 GMT + - Thu, 29 Jun 2023 11:30:42 GMT expires: - '-1' pragma: @@ -634,65 +728,63 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-3ykmdwbf.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-3ykmdwbf.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/a4eb3930-ab73-4cbb-b760-894cfdba0983\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4192' + - '3863' content-type: - application/json date: - - Fri, 16 Jun 2023 00:39:02 GMT + - Thu, 29 Jun 2023 11:30:44 GMT expires: - '-1' pragma: @@ -726,15 +818,15 @@ interactions: ParameterSetName: - -g -n --file User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ - \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSUzBsbFZuWkJNRGRxT0VSelNVY3phblZ5VDJabFJFRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxVVdYZE5SRWt5VFZSU1lVZEJPSGxOUkZWNlRVUlplRTVxUVhkTmVsbDRUa1p2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVSWkNsaEtWa3BNY0ZVMlEwSldURWR1T1VWMk5YaHdVR1ZTUTBOU1NtVjNUbTFVZDJ0MlNqTkJNbWMzSzJjM05EQlNlVlEyVVVkemRGY3lhRGR2VDBsemVuWUtPSGN2VWtSc1pXSkJLekV4TVV0WU4wbEJRbTl5UmpSR05YTlBObTQ0TVhSM1ZtOXVWM2wyZWtKVlNuUjRLMHN4T0c1V1VuRlhhM00yVURCaVRucEtZUXBUYmxSUVdqTlJiakJuZVdjeFVFSjZiRmd2UVZrNGNFRnFjMnAxTXpWTFFXOXZkekV3U21kUGFIUTROMVpKWlRsMmFGbEVlVXhqU1hONlFUVllXVzE1Q201TlIyTmtTa1U1ZWpnMVJYbzBMMkV3WmtRdmJsQkJPQzlTVGxWS1JXWXJWbGR5VnpkUGVXSmxVVlJETjFWSmFWRlZWWFZwZGpRMVRTOTVkMGR4Ym5vS1Z5dFFRbnB0VFZWdlIwNHZWazVSZWl0VmNGZDFNaXRXWTBkT1p6VjRSMlEyUWxaQlVYcDFLekZMY1RCa1FqSnNXV2RWVXpadGRrTlRVRTlPYVZGUFZ3cFpOVk5tVmsxbFQwOVFSSHBKVlhwSFUzRTBlV3MwYlhnMFpISnNhWFpMZFhWc1kyZHdZMDkyVVZnclZHSXlNMGRtVFRrMFZXNVJUbEZXY0U1c05FOVVDbXR1ZVV0S1dtdzNRVGd3VGxJNWMwTnpkREZpTjFWQ01qUk9VVFpsWVdWMGVVVllhbHBzTml0M2NVazNSV1IzTm1OcGFFdFViVkpXYVdnM1lXWXpZaXNLU2xFNVZEQlFkMkVyTW5Sbk9VdG5RMWxsU2xGUWVHbE5TRXhtWTFWSldYTnliV2t4WkZKaFZuRXhSamRsZUhWRFdERkVLek5xY0VOd1JrVTNWV3RNWmdwbWFWQmlVM1V6YmpobVVFNXFZVWR6Tnpod1VWRlpZWGxqVVhsS2JFWmlXWFV4VWpKQ1luVktZMmRVZG5Gb04wbHRZMmgyUXpSNU1VOXBVaklyYUhKSkNrcHFZVEp4U0V0eFRrTjVlVlJOYW5FM1ZGZHBTMnBGVGtoUFFtcG1abTV5TjFBdlNtbzRUblpXVmpZMGRVUnBWWHByUlVSMlZGVm1ObFYzWTBZck5FUUtWVTF3Y3pBck9WbHFZekEzZERWd2JYUndWazVoYnpFelUwTm1lV1JhYUVwQlV6WnNNM0J4YWpSUlNVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZVeFowSkJUMDloTWpBeWRXeENkbWQwQ2l0RFJtTjBRa2wwV0Vzd2QwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGTWRtMXZXbkJJZUNzNGRtRlNjbGhuVG1Ga01VeHBUUzh6WTJjS2EyNHdkMnd2UmxkVldtTkdNMnRWZVV0SlJFMXJjelp6ZG5aeU1rbFRVVkV3YkRaVlFtWnplbGxuVHk5aWVrNVFjMEowTHpSamRWaEdRazFCS3psellncFhSalI1YkVOTFdGZERWMHRJUkdaUFVqZGpPVkZ5UVRaVlEydDFlRFJEVUVjd1RUWkxXbTAwT1V0TVMzUXpjSGd4Tkd0clpsZEZieXQ2VmtoM1oySXhDbmxMYjNRd1RWTlZLMGxDYVc1Vk1WQlhSMnhqZDNadFJXb3dWa2c0WlRCUlFqUk9aV1V4ZWk4M05HOXVXV2xEVkdrM1p6SkRVa0UxVTNZeVoyMW9aSGNLY0daVE1GQmlNRmwxVUN0cWJsQkRUMFZ0Y2s5VldqRnZXWGRvZUVwSlQwcHVlWEpaZVUxc1RFWnJNbTlzYW5SbEwyRlBZelpyV0ZoTFMwbFBXakpHWWdwVVpIUlNiblZyYTAxT1NVZFJZa2xLTVZWb01XRXpkbFkzYXpSU1RXcDFWR1UzYm01RldrOWhRbFZ1UnpnNE0zTktOSFZNTTNKaVEyeGhTMGN4WmtVMENqVm1hbXhPTVZKRFVIUTBWblZpYzNReVRHWTRRMFo2WlcxcmFHVlVPQ3RqVjBaUFNGWmlZM2hTUmxsWVRIVnZNbWh6WWtwWlFsRjBURVJVTVVKTU1tWUtVMVl6WWsxUlowMHlUak51U0ZoWlZ5dExiRmhrVkcwNVNUTjZjMFZVU25WM2JFbzRiVGsxTUhwcVVUVnRSMk53Y1dkWlRtZ3dPWGhHTm10eFVtOWhWZ3BsTWtGS1JGRnpNSEE1V2pSQ1RtMXRielZDYVRWR2FFNUJSakkwTVZSc1ZtbFRSMHhsUVdGVWVIaENaRTFGWkRaa2Myb3dZVEF6V0hCM1VXdFlaSFp3Q21KUVZFOTJTbmN5ZGtsWFoyWm1iVWRvYWpGQll6WmFNVWc1T1RKUVRVcDVSemhPZUhkTGRIRk5LMnRrU2xSak0zSnBiRVJuY1hWeFRrVjZlbGx6Y2tZS1MwVnpkVU5XYmpaeFFrNXpUemN6VERSTUsyWXlUa2wyTjNaUk15dHBSVWRSVTBwaVZrUTJSVkJFSzNSVlpGZ3hZbHBLYW5OVlJFeDZOR2hPUjJGVFdBcExjbEI0YWpaMFRqWlBhME56VEdoQkNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc3E0cjU0aTItbHZkMGE2ZmwuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3RjamV3azUKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3RjamV3azUKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3Rva2ZhNG8ydGEyX2NsaWFrc3Rlc3RjamV3azUKICBuYW1lOiBjbGlha3N0ZXN0Y2pld2s1CmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdGNqZXdrNQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3Rva2ZhNG8ydGEyX2NsaWFrc3Rlc3RjamV3azUKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJYWtORFFYZGhaMEYzU1VKQlowbFNRVTVHWVdwa2JsRndPWE42TkV4UlNFVktTbGxPV1VWM1JGRlpTa3R2V2tsb2RtTk9RVkZGVEVKUlFYY0tSRlJGVEUxQmEwZEJNVlZGUVhoTlExa3lSWGRJYUdOT1RXcE5kMDVxUlRKTlJFRjVUbXBGTUZkb1kwNU5hbFYzVG1wRk1rMUVRWHBPYWtVd1YycEJkd3BOVW1OM1JsRlpSRlpSVVV0RmR6VjZaVmhPTUZwWE1EWmlWMFo2WkVkV2VXTjZSVlpOUWsxSFFURlZSVUY0VFUxaVYwWjZaRWRXZVZreWVIQmFWelV3Q2sxSlNVTkpha0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRkZSa0ZCVDBOQlp6aEJUVWxKUTBOblMwTkJaMFZCTkRkVlZIbFNWVUZaVDFRNFZGQllZbk4zZDJrS1FuSk1iVTF0WW5ZdmRVMVRjMjFQUVhaSFlXNXpUVGg0TDBVelQwbFZaa3g2WWxkelQydHNiVlJVZGpGcFNVbDVVemgzVGtodmQxRmtRV0l6ZFdOdk1ncEhOMlp5VFZWNU0zVldSVmxCWm1oU2MyUXZPRWhaVm5JeE0weGlWWEJqUnpWdVZVUnlPRUZzV2psaWFWUklVVGRHT0ZCVU9XbElMelV4Yms1T1YwNXBDbWxPYlROWVNGQTBWazVZWmsxc05pOTBSMjFIYzBoMmJFUmFjVEpOU25KbWJUQnRURVJEY1dKclVFMUlUR2RtUW1wUk1FUkVVSEptUTFsRlVteHpOMlVLTUdsRGIxRjRXR2RCVGpSMGFGTkNja0pWVTA1bmNGRm1jRkpoUVRSVFNGZDFhbXd2YTNscFowZHhLekpYT1RSeFpEQnhhMHN2WjNWU1dtZDVjazB4TWdwVGEzRlZlV2MwVjA1aWVXMHZhemxuVDA5amNtSXZabU13U1VodlEzbE1kVXM0ZVc1d2NXMU5Zall6V1VVeFZsWkpUR1Z6TTJka00yNW1jRVIxWWxoeUNtZGtNMFJZTlRWUmFqZEpZaTg1UWs5eldYbE9SWEl5YVdjdmJXSjNiMUJXY0dsd1preHljbVZTV2pWU2FtYzBXbXQyY1RSdk5rdFRXRXRxYWs0MVZHSUtRM05rTlhoMFNFSnhlakpyU0M5Vk0yZHROSFE1YUZOM1ZWbEJabEJwT1V4Sk5rRkVXVVpqTUVoamMyb3dTV3hxVjFSeFZWSmlVWGRXVnpCT2NrbzVaQXAyUjJoaFMxbG5MMWR1VlVsUEsxcDZXR296VjBsUlR5dDZURGxvWld3MldHNUdTMUpsUVZWNldXVmlPSEJ6Y2pkVldWbDFPQ3QzTkdVeGJFWm1aMnBRQ21wUVdFVkVSbTFyZVVSVE5WcHhUR0Y0Y0RWVU0ycEVjVkp1VFc4MGVFWlpWV1UzWWtGcmF6SlJZek5aUlhWMVVISnJiM1ZDYWtSeU5YaDRjMHRDWjJnS2NsQlVkM1ZIY2l0U056ZDBNVVJJZGtrNU1HZEZhMUpSVm1ReVVTdG5iRnBxVGpGT2MyaHZURGxOVEd3M1FVRlRhVkpOYjBocmFGZDBaM2xtVUdJMlpBcFRhVEJ3V25KRk5HWXdVakpOZFVoTFJGTlBPR05TVFVOQmQwVkJRV0ZPVjAxR1VYZEVaMWxFVmxJd1VFRlJTQzlDUVZGRVFXZFhaMDFDVFVkQk1WVmtDa3BSVVUxTlFXOUhRME56UjBGUlZVWkNkMDFEVFVGM1IwRXhWV1JGZDBWQ0wzZFJRMDFCUVhkSWQxbEVWbEl3YWtKQ1ozZEdiMEZWTVdkQ1FVOVBZVElLTURKMWJFSjJaM1FyUTBaamRFSkpkRmhMTUhkRVVWbEtTMjlhU1doMlkwNUJVVVZNUWxGQlJHZG5TVUpCU3prM1pURXJjMmxKYlUxTmFYZEZaV0ZVVWdwT1N6RkZkMmw1UlVFd1UwVkxaVkZMV1RkRU9GVXdNVGxhUVZWWk0wNVVkRXRUVXl0bU56TlZiREYwTUdWQmRsTjJMME0yWVRGbU0wNTFkM1pwVW5KQ0NubDZWRUpuYzBOdGJIRllhSEl3TmtWUWNHVm5PR3B5TTNwNldsTXpWemxwVFhKdmNWTXJjQ3RvUlU5T1Iwb3JjSHB2Vnk5MlZqVnVjbGhLV1VwRVozWUtRbTFOZHpjMlJuaERWVzVZVUhaclZIcENXWFE0WmtSNFRuVmtjMVZyU1V4WlJUQTViamRoVlc5b2VIUm9TalZVU3pCSlRVOTZWek5RUW1sbllVUnNjQXBKVW5KcFZXZG1XRGw1TUdKQlUyOW5OalIxU2pGT1pqVkNkRlpZWm5STWQwVmFWM1J2TVd4SFlWZExjM0kxUmpoeVYzZ3JUR05oU1VwUFpGSkZkblZQQ25GNmVFNDVXaTgwWkVzeWJGcGFTMkpDWkVwaGFreHFXa3h5U1dNM01GRkRObloyVjBwMlpFTm5iMnRxTTIxUE1tSnZXVmxtV1VaWlp6SkNTemRZZW5nS2FXbEphRWhXTjNZck5IZEZPV2QyUW5kRVUzUXpVVGRVTTFsR2VFTlZlRlJhT0M4MlowRlBORk5KVW1VM05tcHdZbE5DU2t3NE1Yb3dhbWxGY2twM1N3cHlXbG8wUVRWWFRYZzNURE5xVEZZMWJqaDVjR1J3ZEhSRFUwOUpVMmh0VUhkSFRqQmlhRko2Wm5odk16aEdiRVZYVldST1YzVlFNWEJyZUc1R1RGSTJDbE5MVXpaRU9HWkJSbWR4T0M5SlRtUTFNRUprYmpaTlZsRXpTRVZQWlhOc1VIaGpRemQzYkdwTGJreElMMGRsT0daV1ZtdGlZbHBqTTBwT01HZHFTbThLYjBaeE5GcFdTbE5ITVZVNGRYVlFialpVWldFemVsVnRPVU5WTDNObGNGRk1aMmxHUVZSc1ZFWXJjMnRWTm10NlpXVk5jRFpSYmt3Mk1tbzNhQzkzT0FvemExaE1OekphVDNVME5HWlFOSHBPVVRVMlJtRkhOVmRPYUVKdmJWTktaM050ZUc1clNVTlliMVpIZFdKWFVERjViemxNYjBKTFdVSnJhRzAyYm1OdUNqUmpaSEZzTlRWdk9VUjJjekpsWTNkblYxWnBRV2hvVmdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMEZKUWtGQlMwTkJaMFZCTkRkVlZIbFNWVUZaVDFRNFZGQllZbk4zZDJsQ2NreHRUVzFpZGk5MVRWTnpiVTlCZGtkaGJuTk5PSGd2UlROUENrbFZaa3g2WWxkelQydHNiVlJVZGpGcFNVbDVVemgzVGtodmQxRmtRV0l6ZFdOdk1rYzNabkpOVlhremRWWkZXVUZtYUZKelpDODRTRmxXY2pFelRHSUtWWEJqUnpWdVZVUnlPRUZzV2psaWFWUklVVGRHT0ZCVU9XbElMelV4Yms1T1YwNXBhVTV0TTFoSVVEUldUbGhtVFd3MkwzUkhiVWR6U0hac1JGcHhNZ3BOU25KbWJUQnRURVJEY1dKclVFMUlUR2RtUW1wUk1FUkVVSEptUTFsRlVteHpOMlV3YVVOdlVYaFlaMEZPTkhSb1UwSnlRbFZUVG1kd1VXWndVbUZCQ2pSVFNGZDFhbXd2YTNscFowZHhLekpYT1RSeFpEQnhhMHN2WjNWU1dtZDVjazB4TWxOcmNWVjVaelJYVG1KNWJTOXJPV2RQVDJOeVlpOW1ZekJKU0c4S1EzbE1kVXM0ZVc1d2NXMU5Zall6V1VVeFZsWkpUR1Z6TTJka00yNW1jRVIxWWxoeVoyUXpSRmcxTlZGcU4wbGlMemxDVDNOWmVVNUZjakpwWnk5dFlncDNiMUJXY0dsd1preHljbVZTV2pWU2FtYzBXbXQyY1RSdk5rdFRXRXRxYWs0MVZHSkRjMlExZUhSSVFuRjZNbXRJTDFVeloyMDBkRGxvVTNkVldVRm1DbEJwT1V4Sk5rRkVXVVpqTUVoamMyb3dTV3hxVjFSeFZWSmlVWGRXVnpCT2NrbzVaSFpIYUdGTFdXY3ZWMjVWU1U4clducFlhak5YU1ZGUEszcE1PV2dLWld3MldHNUdTMUpsUVZWNldXVmlPSEJ6Y2pkVldWbDFPQ3QzTkdVeGJFWm1aMnBRYWxCWVJVUkdiV3Q1UkZNMVduRk1ZWGh3TlZRemFrUnhVbTVOYndvMGVFWlpWV1UzWWtGcmF6SlJZek5aUlhWMVVISnJiM1ZDYWtSeU5YaDRjMHRDWjJoeVVGUjNkVWR5SzFJM04zUXhSRWgyU1Rrd1owVnJVbEZXWkRKUkNpdG5iRnBxVGpGT2MyaHZURGxOVEd3M1FVRlRhVkpOYjBocmFGZDBaM2xtVUdJMlpGTnBNSEJhY2tVMFpqQlNNazExU0V0RVUwODRZMUpOUTBGM1JVRUtRVkZMUTBGblFXWmhZVFpYUldWcFoyUldXamxCTTI1UmFFZzNOVXcxY210SWVVWkRjREkyTHpNd2R6Sk5Wemd5ZWtFMldWRk9LMHcxWTNsMWVubzBOQXBQUlVnNWNUWlVaWFJTT1dSS05GRjZlalY2UW1SUGFXUXpPVU5DUjBkc1FYWjBWMnh2YUU1UGVXdFFlVFYyVW5ZeWFWVmlZbk5RYXpZclRFOTZhSFUxQ2tacFpsTTBSMnRPY0ZGak1UWjRWVVp2YjBWalIwWTFaak5DYzA5NVFVbHpjR1UzTDFCU1dIbGhMMGhGV1V3MWRFRkdjVVFyZGtSb1YyRjNOVlIyWWpRS2MySlJUMVpuYVV0cFFsWnBZMUZaV0hReFFXNXFiaXQyY2pGQk56WnlaSEp6WTNaaFRYTjRVM3BxYzFaWFpsTjJjU3RIUm5NNGIwcDRUa3BNYkVnd1Rnb3ZkeXN2VUhKb1NXbHBhVkJzYlU0MWExWTFTWGxaZEUxSVdHZFNTR0ZNVkVWUmFIUldNVFIxVUZOTlNVWndVQ3RsVmtsclJGcG1SMWRaV2tRd2NFeGhDbEZuSzFkd1NWQnVablZGYTJneFNUUjFkM280V2xSalRXMXdWVzVpV1NzMVVETmFiWHBWVUdSaWJHTXJTMnRhTHl0QlNVRm9Vak1yZW1FNWVsbFpSMllLZGl0d09VMXhOa1kzYkV4NmJIbE1Na05QYTI1YWFuTlJXbU5yYVRNMmFsaHdaekpRYm1kWFpUTlphMHQyVEcxaWNHeFplV2t6ZDJWbEx6WjBLMVl6U1FwRFVtZERNMlJpVmtWVFQwczNVM2RCY1ZsUE1UVjJWSEZrV0dOUU4zSmtlVU5zZFhwUU4wdG5TWFZhZUdGRmQyRjNTblo2YzBRd2IxaHJTMUpSYkdWcUNtbzROMGRvWXprd1RVZzFkVU5zTW1Ga2FVcExSa2h5VFhGS1pHOU1MM05uUkhaV04wZHBhMXAzYUdWUlp6WjJiVFJ6UVVSRlVUSXJZeTkyV2t0QmNWUUthMjFNYldjd1Z6QkhWR2hIZVZrd1VVNDRSemM0WW01NlUwWlVXR0YyZEZVMWFXeDJhVTltWVVsdE1rVkhVRTlGTURkaFNrUmtjVW95TTA1Q2NtNVpOUXB6UmtSSVVGbHpNa3RvTUhZcldGWXdNVkJpYmpOVGNtcGtRV3RaVUhKT1pIWldTamx0V0VsWFVXUkRWMEZZWm14TFVVdERRVkZGUVM5WWFXUmpiakZDQ2t0aGJsazBNU3R2UkZwaVltSjZaVUpKTlRkMU0zTnNSVTh4YzFGWFpFTnhMMDh5VjFaUloydzNUbGhIWkdrd1RtNHZlV3RGZG5kcmEwRkVUbUo1SzBVS1lsUkZkazk2ZW1WWVdFVkNkakJ1WWtGUWR6a3ZUSEYwZEhsSWRFWXhiRk13VlRWNFowZHRSRXRzWTI5elQwd3hRMVo2TjNwc2NVRm9ZMjV0TDJKUFlRcGpURm81T1dkMVprbzRSR1YyTkRWMGMwWjNaVTlTWjI5WmVFWllaazlrZVV4dWEzZEhRMHBWUWpkTFJFaERiVlpWUTNvelNIZFBVVEpQS3psVlZtNW5Da1JMZW05MGVXUnZUR3RQTkU1Q1dIRnpTRVExTHpoQlNuRkthMlptUTNnMU5FTnRNRVJ4YjJoMUsyNTRaekE0U1ZOWUwzY3hlVTFUVGtGMVVVMUVZMEVLUVdoRmR6Vm5PRkZTVEhGbVV6bHBaMDVQTlZSMEswMHZiV296VEdwaFMwaFBhV3B0WjI5TldIWTBSR0kxV2pSTVJEWk1RMXBEZGpobFlWVkhPR2xaVmdwVFZsQlVWeTl2TkUxNk1WQk1VVXREUVZGRlFUVm1jVzh3ZEdORFRrUmxSVGxKT1ZKRFRTdFhUemxFUzFOV2RrWlVSRFY0VVU5a09FTkJXRXBLWkhWeUNrSlZkblJ0Y0d0MWNYbzFaSFl6WTNodFRVNUdOVzRyV0ZoRFRYRkdVbEY2VGs4eGJ6WTRZbFJpY2pnd09VcEpSM2x5VEZkSU9VaFFRbVp1TDFwR01XWUtabE53VUdSaWEzSkJOMEZ2VW5oSFJXcElTVFJKUWxWUk9USllXWGxDYVUxd09FbzVTR3d4ZFM5QmVYWmxRbkZpYWpZM1FURTRXbTl2TmxCTFRuVnZWUXBOVFRRelJpOUJTR1pLWkdabVN6ZFRWRzFhVjNKemJHZDFhV1YxVVhaR1Z6bEJVWEF2WVdkdmFFZ3phbGs0WnpCeVlqYzRWSEZXTUU5MWNraFNZbFYyQ2tsQmVtaENiek5uYmtoU05VSkZOMUJYTUZOTkx6Qm1OMUZETVdSek1uWXZaRWwyVTNaV2RtSlFMMUYzTkVkYWJrUTVUR05tVlRsRlRFTkNSamtyVW1NS1NVZFNPRlZ5ZDNSSE9YSjJUMlpVV1RoRFIwRnlUVXM1YTBoV1RFNUVUR3B6TjJONk1IRTNjRkIzUzBOQlVVRmtNV0UyYVhCVUsyZFRZeXQyYnpkcVF3cE5URzFRWXpkalRtNUZNVGxvTmpoNVZsWjFkRlp5VW5Cd1VWZEhOa3hwWlVWbFQxVlZWMVpFUzFwbFpXSklUbHBTT1RkdFkxYzVhVGgxUldWV1pVaFBDbTFrYVdONldFdHlkMUZWUXpGSE5WTkhabTkzVURKR1UwcGhkVk5qT1dwMWFVOW1VRTlyWldoWVNVb3ZTRmxRTTA4ellXMDRhR05DYjFac1pVNXhkamNLU0N0aFdVbFpiV3B6Y0ZGVlNVWllVVzh4TDNFMFkzTTRNRk5NY1VaR1FsUjJOVEZVUjFWdWNqY3ZOeXRrV1hJNVNHVnliM2R0TVhVd1NVNXlNalJYVmdwMlNEZFpSWEZTV0U1R1ZWa3hNUzlNY1c5d1kwMVdaaTlJUzIxSEswWjFWVXBOY3paeE0ycE5VR1pVTlZCaVYwMTZjbVZuUmxSck5VSlNSQ3RaTVU5RkNqUXpjVkZyVDFRMmJHWnlaM05EZW5sWFRXVXlNbWxUVlc5bEwxQXJUMGswZEd4QmNucE9hRGhrUzI1M05VbFRTbEpRVmpKV2VXc3lVV3h0YTJZclZsSUthM0YyV2tGdlNVSkJSelJ1TTFCME5HSjROMUo0VVZwaVN6QmFZMGxEY1hkbVIxRmpOU3RxTkUwNGExSXhPVUZFTjFoQlRIZDFVRGRzVjJseGJreGlOd3BZVnpSaVUyODVVVmxWWm1oeU16ZzNaa3R0ZVVSclJEUjNiblpGZEZoMGFtSktjMFUwZFc1MVRsTXZlV3RCV0dReFFqSm1kQ3RCT1VKMWFIUmtRbEZHQ2t0YVZ6UTFNVTVoVm14WVVHOVdkazh4WTBseFQwSXdWM2hHVm5GRVdVZ3ZSbGxGYVhoWldsSXZlRFppWXpNeVIwMDFTMUZHYmtjeVNrbzVOMjlwY0dzS1YzbEdaVzR5T1dOQ05FMWlRa0pFUjJSMWNYSnlTMjFsTkZCdlZuUkxjVnB1WmxGeFltdHJWM0JOVjBzM1NuaFlNMjVGWlUxME9WbExLMU15ZVc1S1J3cFBOM28zWm5OcVNtdG1kVzh6T0dwRGMyaEpRakZqT1dWT1pXWnlaWEEwYzJWamFsTlpLMVZ3WVN0Rk9YVlljV3hVY2pWS1JFaFBZbXBuTUZoQk1HaElDbGR5VkZrclduZDZaaXN6UVV4WmNHNUdSVzFDV1hBeWRsUTRlRWhoV1UxRFoyZEZRa0ZLUVdGVmFsSkRaek0zVUhCRFZYWktjblpoWldzME1EbHZZU3NLYVZKME5qQmpUMUZVTkZaNmRXb3pNMk0zYWk4emIxWm9SMmg0VGk5a1ZFVkRWVGx5UlVJelMzSm5TVUZUVW5KdlNXUklia0ZoT1ZwMFZXdFFiMU5vWVFwdVdTOWpTVXA0VG5aNGFtdzVMekl4U21kRWJIQnhiUzl6UkdGWVJta3pLMFZQWjNaVlUzRndValZJUmxsU2N6STRlSE5tV2twaFFWZGFkREJ6UzJoa0Ntb3JhMkl4U1VSeVNsQmpTWEZZVFVKMlQzZEVXSEpLUzJaSmFUVXdaVVJ2UkVNNVF6UlFhRFpxVWs1WGRtVXJXbTVJUmxGRU0yMHZNbXAyTlRGa05FTUtabFE0ZHpCdlFWcHFhMWxuZVc1MVprNXpWR1kyVUdGdFJrbDFaVGR1V2psdE4wRllTMmRzUWxaWU5XODNRWGt6UzJFeGQxaDZPVVIzV1VRMFJubHVlUW80WW1RMVNIQkxaalJDZW1Sd2FVVnVZamM0WVU1M01pdHhMMHRTUjNkblFrUXpjMVJCVGpkS2VHVnJOVm81WnpaRFkzSkZXazlyWkRacVZUMEtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogNnh1OTNuNnF0bDM5OWRvYXZjemt0MDE1aTBhbjFyY3Zubm82N3hhN2t1eXBiNHhyaDc4YTh0eWdqdjhzNzdwem96czdoN3o4dzg5Z3JkNGNtOTIyeW5iOTgxYnk5cXhqMzAxdmwyaGRuOXB3cXB0c3piOHhidHhmZjAxMXRpd3MK\"\ - \n }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": + \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSVEdGblR5dDNRbFJTSzNoMVdtcDBNMFZOV1ZwWFZFRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxcWEzaE5WRVV5VGxSS1lVZEJPSGxOUkZWNlRVUlplVTlVUlhoTmFsa3hUV3h2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVNNUNqZzBZUzl3V0dOUFduZHhaRFYyY2pBdlJHOTRaMWQzVDJ0MGNXY3hjbTAzVVRoaksyVXlha2xOVFdsUVRVWkNTbWRXVG5GMldFbFJXWFoyVVhCNlVua0tNV3AwTXpoclpTdHNORXhGUkM4eVRXTTJiVlJvZUdwTlMxZDZjMU5OTjFOMVFVUlhlWFJ5YVZwU04waHljekprU2tSYUt6bDZRMUJYV2xkd1NEWlNSUXBwYUhSbloxbEdkMkpVYkhJeWJsZFFkbXhHY25GUlJFMWhVMjlxWXpCM2JscHlSa0Y1V2sxcmVUWnlLMkZ1Um5ob2VVMU5WRmhKU2tGa05FZGtSR05WQ21Oak0yY3ZiekF3ZEhCdFZIa3ZLM1pyTkdwa1ZVUmtla0ZRWjIxa1RYZEdaWEJQYzFRNVNtaFlTMDlWY0hjMlNHcHVNWE5yTDJadk9URmlVVzFYVXpJS1UzZGphWGtyYWxkSE5ISTNaVXBGUldsNlJtZ3lUbFp1VUV0bk1qZGtVbW9yWmxGakwwZzNPVmt3ZGl0YU1IQlBhakpDWlhKWE0zSkZZM2RzTDI1R1ZncGxkbUZTU1U5dGNGUkNLMFowTUVKd1dVNVZVMmM0Y1UweGVqQkNWRFZJVkhWMk0yTjVLMGx5ZDB3NVJtVjFWMHN2TUhwRE5EYzVkMlIxVWtacGFWUm5DbmhLVVZGc2EyeE9MelpOVmprM05VMXdibTUyUlZJNVpEQnhaakZxYkdKSGNrdzJTSEZ4TDJOc2FGQmpkRkYwWm5VdlFuUjZaR1JWYWsxcGJESlNRVWNLVDFOUlNXbzVZaTgzUjBSNmNuQk5LMlJYZUZsQ1IySm5XbmxXV0VoSmVtbGpRMDhyYkVGUlRWSnNUREJXTldwaU9VSnRjMGhhWm05VGNIWTNhMUJOU0FvMlpGQmxNVFphVUdjeWJGUklUMHh1ZEVsT1oyeEtiVXh6TTJSRmFVOHJPRlkzUlVOTlVIbFBOa05TTkU1NVkzTXpSV1IzY1hBd01TOUJlamhzTW5Kb0NsSjBiazlFWVRWU0sxRk9TUzlvVm1OUmRXY3hlR1o2TnpoUVVGVTJkV2x0Y2poRmFqWTRkSFpEYm5ReFVYcHBaV1ZzWWprM1ZIcHJjMUIwTUZOUFZFc0tSa0ZRU0ZGMksxbHRZM0pUTjFGclNURlplVXRyVEVwV05tMXhkRkZoZHpaRlRXNTRMMGRzUlN0M1NVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWRVZGQXhRVFUzVFRCT1ZUbG1lRms0Q205UlozRTRSaTgxZFV4dmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGRmNHNXZTRWRDU25GdVowUkxhMVIyUjFkUE9VWlFXRnAxYUdjS2QwdG5Xbmt6Ym5OMkt6ZElSMm8zVjBVeWNVbGllbWh2ZVZONFozUnBNV2RHVDBGWVRISXlhWFJQTVVSa1lrTnJjbXhsT0hsM2RsZHdaWEZJYjBOYVdncFdURXhQWW5sVlVWQnhOV3RqYXpOSVFtcGtUR2N3VVVRM1JWWjVaMUZYVlRoME1HOXFOM1ZaVEdGdGEyUlNXSEUzVWtSQk9GY3liVGRXWlZsRlYzQkVDakZ5UTJORGFYQmxMekZYVEVkdGQzUkZWU3QxZWpOU1VsRjJTVmxEZUVweUwxVjNPV2d2Vms0elNXdFhVVE5yY1hwMVlrWndkMkYzSzJWNWIzWnNkV1FLVlhkRE5YQndjR2R3YkZOb0sxQmhiMk5MY0N0d1prVkhhWGxuUldweWQwUXlkMmdyVEdVMVZXc3djV1p1ZHl0T2JrRjNZbGRHVkc1emRHWkNTR3BQYUFwNVdsVTBkbHBrV0hBMldHMDJTemRaVmpkU1RrVkdhemgzT1RWNWFsSXpUa1I2T1dGTU1ITnJLM1J0UzJsUE5IcHpPRkpUTDFwSk5qZHBlV3BqWjBNMkNrdFZSako2U1cxcU1FaHJVMGRCTVZkU1dtdDBWU3RDZVVsV1JHSktNMDlRZUVGalMweGhkRTByYURZMk9FOHdjRkVyUTJWVlZsaGxURWwxYW1OR1JXSUtObEJpTVZWYU9HTm9ZWGQyVG1GTVkweDFVaXN6UTBodVEyVjVURU5rV1dWS00wSmpUekZYUkVodFRrUlliMFp6ZWxoU1pHbDJSRkJ3SzJZNGRUY3hOQXAzT1dKMU4yVkhOVkZMWVV4YVlrTkVjMEo1ZDJReFJEbG1VVTlLZUdsNldXVm9RbFpOY1VGQllWVnBXV1YzU1d0UUwwd3pkRUZSYVdOSWFXNVhlQ3QxQ21wM1ZXeHhRMlptSzBaeFpsaDBkbk5CYm1oQ1JWRjViMHRqWW1WU1ltMTZWamxrWjJoRFdHeGtORFpsUVhSbVJFeDRPVzlDUzNsMFdVdG5SSEJJTVRZS1lqSTBjbWhtTDNkR1dIcGlUREJVVlc1SU1sWnJiRVZLYmpkeFMzRndTMlJGYVV0eFpsTkZSVUZyYWt0U04xb3pVRGhQVHl0dGJEaEpSMWxqZVdsUlFnbzNVMmx4YVdNd1JIWTVja2N2Y200eUNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc2xhdHBwczMtM3lrbWR3YmYuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3Q1dTdkZjUKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3Q1dTdkZjUKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3RzNmdzYnRkeGNzX2NsaWFrc3Rlc3Q1dTdkZjUKICBuYW1lOiBjbGlha3N0ZXN0NXU3ZGY1CmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdDV1N2RmNQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3RzNmdzYnRkeGNzX2NsaWFrc3Rlc3Q1dTdkZjUKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJYWtORFFYZGhaMEYzU1VKQlowbFNRVWx5TVZSck5qWlJSazFaYzFwSlJpdGFRVWhRYmtGM1JGRlpTa3R2V2tsb2RtTk9RVkZGVEVKUlFYY0tSRlJGVEUxQmEwZEJNVlZGUVhoTlExa3lSWGRJYUdOT1RXcE5kMDVxU1RWTlZFVjRUbXBWZVZkb1kwNU5hbFYzVG1wSk5VMVVSWGxPYWxWNVYycEJkd3BOVW1OM1JsRlpSRlpSVVV0RmR6VjZaVmhPTUZwWE1EWmlWMFo2WkVkV2VXTjZSVlpOUWsxSFFURlZSVUY0VFUxaVYwWjZaRWRXZVZreWVIQmFWelV3Q2sxSlNVTkpha0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRkZSa0ZCVDBOQlp6aEJUVWxKUTBOblMwTkJaMFZCY0dWb1FtWk5Vak5QYjBoWFZUUXpPUzlZZGtrS1VuSm1TV2RFYVZwQmNIUkdaaTlyZG0wNVozaGxlbWRZVlc1bWJYWlZXbXhVV1V0cFFqaFVkMGtyVkdkb0x6ZEhlVGxXVW1oUlZ6SXdNR016ZVdSYWRBcHVkVGh5WkdOaVMyUm1kM1pyUkhKRmIwSnJNSFl6ZDBaYWFuaFRRa2xqTmtSalpUVnBRMFpuVEhOamRqRjNNVk5vZEhkWGVYUmhWbkJHTVVKUVdWbE5DbVJ3YzNGSkwwMUljR1JNWTB3MmFEbFBjVFIzTWxOVEwweHZNaTlHV0ZWaWJHRjVaMVI2WjNoV1FtWnFZa3h3ZEN0eVdqUlVjbGh0T1hsTVJGQm9lRVFLSzJsWFUzQXlkSFpNZVc1SVRFeGtkMGxyYlhkVFlsSjVMM3B0VGtFNU1GSTNVMU42UkdWMlltbExSbTh4ZVZSbFJscG1hM1pxZFU1V05FSnNkbXRzVGdwcGJpdHVNVWhTYmtaU1QyZ3JSVmRPYm5nNVMybzVZa0prZFV4eU1uUXZRekJYZUZoU1ZHWnhWWGd5VWxWNGFHRmhXRmRCUnpZelEwNXZXbXRoT1RrMENsWTFUVGhLWlhnd1NHaDFZbmhyY2xCUldWZDNiRWxLWTFOdlNqTkRNR1JOZVRNNGJqaFFkbkZ2TVdKeE16ZGFSa0ZtZUROQlRFcFhhblExVVVWMldYRUtSRU50VlcxWGVETTFabVIyWlV0SlNHUXpWSEJVTkhCeFNsZGlVWFpyY1RsV1kxbDVaemRGZG0wclVETXJjVEJxWVRWWU1HTkpXRUpXV0hac1YyNU5id3B0V0Vob1prZFBUeTlQT1RSRmMwTTNUa1ZrUmtKUGFIYzBNVnAxZVcxeFZtZGhOR1kwYkV0M2FTc3dMM1JIYlZaaFkwRlBaRlYxZG5GWVJUVkxiMFV5Q2twcmMwTXlPR2t5TXpObFFsWkhhekk1Y2s1NldsbEZVRFpvZGpJemNrNHZjSEpCTWpKeVZIZE5iSFoxWTFNd1ZsRkpaamxEZDFoTVdUTlFTVkZKVFdRS1RITlZlVWN6YVU5TE5EbDRhVE5HTVd4VVlVcHRSUzk2UjFWT09TdEpSelJrYWxKU1RFcGliM2RDVEZaVlkySTVORTVaUXpsNFYzRm5TMW81VDNjNVJ3cDBWMmh0TVhGb01ETkJjRmQ1YWxsNVNXYzVNVUpwWTBOQmQwVkJRV0ZPVjAxR1VYZEVaMWxFVmxJd1VFRlJTQzlDUVZGRVFXZFhaMDFDVFVkQk1WVmtDa3BSVVUxTlFXOUhRME56UjBGUlZVWkNkMDFEVFVGM1IwRXhWV1JGZDBWQ0wzZFJRMDFCUVhkSWQxbEVWbEl3YWtKQ1ozZEdiMEZWUkZSUU1VRTFOMDBLTUU1Vk9XWjRXVGh2VVdkeE9FWXZOWFZNYjNkRVVWbEtTMjlhU1doMlkwNUJVVVZNUWxGQlJHZG5TVUpCUldOVldGZHdkbVF6TTA1RmJHc3JOVzFNVHdwaGFXOUdSWGxOUVRCYVl6VnBkMjVTSzFJMU0wTldXRUZaWVVOeVFXSnJXbVpKZUV0WE5GWjFPRFo1Y2pZNFVtaFpSbWMwTVdnclVGWmFkSFJrY2tnd0NrUXJaMFU1WjNCR1dHWkpRMVZMVEdaa2NFSTRlVWRWTURoWldFcGpjbTE0YTAxcVZrRmpTakZTTDFWaWRYRXJWbGR4YzJJdllqUjVXV3RvYUVSc016Y0tWRGhMWkZaTk4zbFhPSG93TTB4aGVVMWFZMHMyUTBaVkwwdDVUM1JVU25kck9VZGxVMloyYjJaQldIbG1iblJVV25KdFVGQlpMeXRJZGtsWFQzcDVhQXB3V0VwemNIQnhhMEp4VkRGeFNITXdjWFZ4UkdsRlduTnhXbUU1SzNsRlIwYzRUM0EwYVhKNU9IcHRaVUpDTDFGRlFTOUdZbE5EUVdSME5YTjBMMmhaQ2tOUlRqTXljRkEzVm1nME56ZEJjMlJvYlhKbFNYZHlRMms1UkZJNGNtbEROUzl3VjJKb01XczBhVkYyUXpCQ09YTnlhV1ZQWm05MVpWVlpXV3BUVUZZS2VXMW1iMUpWT0RGbFVWUm5SMmxyT0VwUk1qWXhaV0ZqYjBoa1pEZzBWVkp1UzNrMWIwa3JWV3d2U2xJeFdGUXZPWFZ2WjJsRlZsVnROQ3QzUlhSR1V3cElRMGRuZDJaMFVXZFVPV2xwUkhKdFZXSjViWGxOWkd4SVkxRlFUa1ZMYVRaVmNEbEZjbmhTVURaSU1taFhabHBpV0dOak9XWlJOa1I0ZHpoVmVuWlBDbUY1T1d4VmNXeDBVVXczVm5sV1ExTjNXbTFrVFRRck0weHNRVTV6Vm5wWVltZG9Zbk5FY0hsdlYzaE5SWEF5UzJ0bmFuZDNTa1o1ZG1OMWVDOTVPVUVLU214ek0zZ3ZNMkYzT1ZOQlIwOVBZVmc0Vml0R1VuVlViV0l2YzNCR04zbERPR1J1Tld4Rk5uQlNXbmxQVmtGUWRHVm9Sa1Y1TTBwVlZUQmxRelJGTHdwWlFrSmtaelpZTVhwQmFDdHRTak5TUldWMGVsTk5TMlpZWVZjME1HZFZiRWxvTjJaSmQyeEhUV1ZYZVdsWWN6aE9SRVo2UjJKT1oxQk9WMk4zWTBkQkNqSjZjakJ5VFZsMmR6RnZRamwwUVVGNWFXTkJWRmxuZEFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMUZKUWtGQlMwTkJaMFZCY0dWb1FtWk5Vak5QYjBoWFZUUXpPUzlZZGtsU2NtWkpaMFJwV2tGd2RFWm1MMnQyYlRsbmVHVjZaMWhWYm1adENuWlZXbXhVV1V0cFFqaFVkMGtyVkdkb0x6ZEhlVGxXVW1oUlZ6SXdNR016ZVdSYWRHNTFPSEprWTJKTFpHWjNkbXRFY2tWdlFtc3dkak4zUmxwcWVGTUtRa2xqTmtSalpUVnBRMFpuVEhOamRqRjNNVk5vZEhkWGVYUmhWbkJHTVVKUVdWbE5aSEJ6Y1VrdlRVaHdaRXhqVERab09VOXhOSGN5VTFNdlRHOHlMd3BHV0ZWaWJHRjVaMVI2WjNoV1FtWnFZa3h3ZEN0eVdqUlVjbGh0T1hsTVJGQm9lRVFyYVZkVGNESjBka3g1YmtoTVRHUjNTV3R0ZDFOaVVua3ZlbTFPQ2tFNU1GSTNVMU42UkdWMlltbExSbTh4ZVZSbFJscG1hM1pxZFU1V05FSnNkbXRzVG1sdUsyNHhTRkp1UmxKUGFDdEZWMDV1ZURsTGFqbGlRbVIxVEhJS01uUXZRekJYZUZoU1ZHWnhWWGd5VWxWNGFHRmhXRmRCUnpZelEwNXZXbXRoT1RrMFZqVk5PRXBsZURCSWFIVmllR3R5VUZGWlYzZHNTVXBqVTI5S013cERNR1JOZVRNNGJqaFFkbkZ2TVdKeE16ZGFSa0ZtZUROQlRFcFhhblExVVVWMldYRkVRMjFWYlZkNE16Vm1aSFpsUzBsSVpETlVjRlEwY0hGS1YySlJDblpyY1RsV1kxbDVaemRGZG0wclVETXJjVEJxWVRWWU1HTkpXRUpXV0hac1YyNU5iMjFZU0dobVIwOVBMMDg1TkVWelF6ZE9SV1JHUWs5b2R6UXhXblVLZVcxeFZtZGhOR1kwYkV0M2FTc3dMM1JIYlZaaFkwRlBaRlYxZG5GWVJUVkxiMFV5U210elF6STRhVEl6TTJWQ1ZrZHJNamx5VG5wYVdVVlFObWgyTWdvemNrNHZjSEpCTWpKeVZIZE5iSFoxWTFNd1ZsRkpaamxEZDFoTVdUTlFTVkZKVFdSTWMxVjVSek5wVDBzME9YaHBNMFl4YkZSaFNtMUZMM3BIVlU0NUNpdEpSelJrYWxKU1RFcGliM2RDVEZaVlkySTVORTVaUXpsNFYzRm5TMW81VDNjNVIzUlhhRzB4Y1dnd00wRndWM2xxV1hsSlp6a3hRbWxqUTBGM1JVRUtRVkZMUTBGblFXVTFhMm80U1dWT1N6VkZLekIwUTJSM1FrcFFhV2dyZDNnMVZtbHhTVm93Y1Vod1JEbGFOa05tYjBkNlNHdFZiRXRUTUdkdGVsbFBPQXBEY2xCdVJ6UlBkVVZKWldGQmVISjRkVmxUTldsUVVXUkNXRVJhVUhoYVRFVXdSVEpDUldkbWFISkxSVloxTVRaR1NFVXdMekZ6VUU5T2FGcEtTeXR5Q21GUWRuVXJiVFIzYTFkNWFtSlhOVnBVVDI5R0swNUNhakIzYlZST1dXSTVkSGN2Wm14SmQzQXpRMjF0ZFdwaGFUSnlUVFI1YmtkcFdETk9Tbmg1VERnS1dHbDZhSGx4YTNrMFR6UkhNbVZHUTFZMlMzbDFTMnBCWTNGaksyVmhlamgyV1dWNGMzZG9SR3BqTmpKMFFqWXZUek54U0dsdlNqTkROeXRCSzFkeVdBb3hkWFpIV1V4dFZVTkhkazFtWTA4cmIyNTZTM0JWUms0eFdEQTFjRVpxZG5WMFdsRkhTak00UkZsbk5EaExNRVZoVXpCVVNsZFNhMGRZVkVKaFNIQkJDbXBCT1Raa00wWlFiSEZQVVV4TVFURmtORVpMWjI1R1JtNW9UbVJtTVV4a2JYUndXWE0wZEVsek1FRmlVak5zU1UwM1ExQlBOREJ3ZFRrMlRYSnZabWNLTHpWNmJGSkVUREExYlROQmJ6aExRak4wWkVOTVoxVm1NVXhQZWxkMGIydzVjV0oxUW10eU9IWlllakZZUmxCR00wcDVVVFZHYlZVMWR6SlZaVFJETndwaFNIUTJSRUYxZGxsNlIwTmpjVTVVUTJwTE5IaE5aMGRwU1dZdlJ6bDRNbmRyVW5CcGExTkhNazFNTkZSemJsRnhkbGhDUTB0b2IzbGhSMWR6TlRjMkNtcFFkVmRCYTJWNVJrazFUazl6ZWxWaWNqVlROemhxYUhwMVZHOTFaams0YkV4cldXcDRObmRpT0hGTVJ6aFhhRUl5V2xoWlJHMHhha2xLVjI0eVUxVUtjakpCZWxGQmRVaHJhRVo0WTBaTGQxUXJZbWcxYTFSVmVIbElaazVqVFVKUFkwWllTbkZJVkZaR2JWTlViRmd5V21WU2JFNXBZVVI2UTA1TlUwMWpSd3BWUm01RU0zVldNV1pLVm1wdVpFOVpXWGRMU1RSc2FYVmFOV2RJTkRoeFRGaFVRbGxzTDBKNFJFSlRVbTVSSzFJMFVVdERRVkZGUVhjclRHZElka1lyQ210MVR6UkhWbXBQVmpkSVZ6ZHBWV05rZFV4UWVuVkJXVUpqVGt0WGRrZEdUQzl6YW5WeU1XOUZja3QzZG5JeWJEVlJWV3RIVVhWVWNWSnZRa3RMZURRS01qUTFUMFp2ZG5SNk5GTXlVVEZ0V1VkcmQySjNZbUp4VTBkYWRIbG9NV0ZCV0VKaldFTk5kVms0WmtFd1MyRmxhbFJLTldWQllVODJUMUpMWW1NMGFRb3phR1UyZUZwck16QnhZakI2Tm1oVVVVdGxOVEJLU1hOVVprVXlhRUpOV0VvdldIQkZTRTVRUjNKUGNYQTJZVXQ1ZUVKaU5ERTVTME12VUdGVE1YaGlDa1JRYm5acVVVUlBWMnc1Ym5JM1FqRmxkekpVYUZNNWFUaHpUWE51ZFVWaGJHRnpaRkpaWjFWWk1ESnhTRVJTUTFOd1prVlhjVGwyZFRBdlIzUkJURm9LYjJGMlduUklVWEJsTWpKT2MxcFJhRFEzZUM5UVRFMHphMjVDVkdWSlowOWxWRWQwVm1waGVYcHBRbU5LVW1SME1sUXhjM1F5UkZKV1UzY3ZWRVJyUkFwQlN6ZFlha0ptSzBaWEswaFlkMHREUVZGRlFUSk9TWFpoVFVaMFRURkVibFoxWkhoWmIwRmpWVTlCVlZaSFVGaFNPRXMwTUdocmVUWkxiRGhHZFdndkNrWnpaME5RY0c1S1VteFhVV1V3ZVRsaFdrUnRWMU01ZW1relduUnZUMjE2Ym1OalVUQkNlbVIxWmt0SVZYTkpZVTFuT1VoNFlYTk9PSGRJZERGWU1YWUtPRzA0T0hVd1RFSjVLMHh1ZUUxalNFUnZjMHRtZDFCRmFrVmFjRGRwTmtodGRsQTVaMndyVXpaWVZqTm1kV2hOVmxOMU5HMUtRM2xYWjBGMFpIUnhNZ3BWSzBoRVRrMVVUMmRyUXpCd1pGQm1jMWx2Um5FMlpHbDBObkZIVVdSMFFrb3hSVGhsWTJaek4zZHlWbEYyYUdKak5YbFdZVzF2VTJ3eFNHSXdLMFZaQ25veWEzaFVjMFU0UWpJMWJsVkVibmhhYWpaTmJHRldTRTB2ZDBNNFlXTmtkRWxPZUVKTFRHbGFVbXByWTJSamNGRTBaVVp0Y21oUFExaElXVmwzYm5nS1MxQktNalpLUms4Mk0zSktORlU0VUVRMloyOURSVmRQYlZaemF5OTZkRXBIZGpCS1QxQldaVTlSUzBOQlVVSm9XbEZrT0U5NVVuTXdiVFY0YnpsalRRcG5VemRXVURONE1HMHZZMjgzUVVSc2RFdEVaWE5QUmtFMWQxSjJlamhpVlV4VFdqRTBRVTlCTmtad00xaFhjM2RyS3pWd2F6Y3JVRzl4VTNWNmVXOVNDbTFRUjNGalVIbFJZbkpGUzFWMlJWQjVSMWhyVEZVeldVVXdOMGwyVUVaUGVWUXpWVkZHVUhFM2JVczBlVGhJTkdnM1JpdEJVbFZVUTJka2FWRm1hMmNLWTNOVFkwUjRkemwwUjJSUFJHRXJZbTVWWnpKNVQzTnNaMm8wT0ZsTGFTOUtVQ3N2TVdFeVEyODBTMk5tV0RseGFTOWtTWEYzV0ZkWlRuRTNXaXRCZUFwNlQyWllNR04yU0hkQmRFOUhRelpDWkRSMFV5ODJaR2hNVkVGcWNIcEtSRFJhVTI0Mk1DOWxiVXhGV0ZOak1IRXJPVXBZU2tkbGFUSTNaMncwWlM5VENrZzNiRzk0Y21SSE4xTjZlVTlGVmpCUFVXTXphMkZhYjIxamRVOWFlVzV0Ums4M1luWnNaSFYzVUhsNEwwdENORlZqVTNwSFJrZHRORVZtY0hKMlFURUtTbXAyVUVGdlNVSkJVVU5hTURSVlVFeFRkbk5ZUm01RmNtazRhbFYzUkVRMFJHRk5TMDFzZW1kQ1RHWXZSVVJEUlVoNVdsSkNibTFpT0VGdU5tSlBRd293ZGtoUGFVbE9XbWRvVUhFNGJEbHVZMjQwVlhrM2JFUkdlR2N5YW10U1FYbElRalZ3Ym5kMlVpdG5SSFJZWjFGRlF6Vk5ZVTVKYW1wblptOVZNVkp4Q2podVF6aHBkbVpYZFZrMldYcHVUMFJyWmtaV2NXMHhTelJuTDFwcWVsVk1jazl6Tm1ac1UzQnRTSE1yZDIxdVIzTktiVkV5Vm5KQ05rVnZNa0psY2prS1VHbHljaXMwVjFsNkwwNHhPVk4wTUZsMVkyUnJhRU5JWkVoelZHRXlVVTUwUVVoYWIxcHdRVk0zWXpFMlJYVkpWQ3QwUjFJd2Vua3laemRDWTFKaVJncHlkVFZrV0V3MlNHRTFhMU5GYkVOU09GSnRiRzFKY21Gd2RWcHZRVFptWWxWbE0wSldiMVpSUVRkWmJVeDBkM1ZzZW1GUFJGWXJjbFJXY0ZCYVkyYzBDa05OVm5oMFJWWmlUbXhKZDJwRGFTOWFTWEUzUTJKVE1FVlNSMW81TTNOQ1FXOUpRa0ZSUTB0NEswZHlha2N4ZWtJMFZYTmplVVZ6VW1Wd01FRTFZM2tLY2psM1VVRk5aM2hCZEZKbU0ydGlXV1ZvVGxKUGNUQjFNREpPYUVVclpHUlRaMU5QUlM5ellTdFhRMWxGYUdGaFpucHpOWEZLUms1VVpXcGFhSHBXVkFwNGNtUlJTMnhTYzNGQ05XRTJlVzQwUXpSVFVYSklRMlEwVFUxUGRVcFZlRWRLVVhSclFreFZVMVZVY0Uxd1QxaG1aM0ZzZDNGWFJEWnVUVlUxZFc1d0NsSXpaVTlUWlZKdFVVeHRUekExTkdwRk1tUlpOMjFGY3pCUU1IWkxOamhuSzB4a2F6SkRiek5uVURkdldrRnZhMGhtUzJNdmJGZzBRa2hDU2t3MFJIWUtWRWhSYVVkS2VsRnVOVloxYlRKa2IzSldVR1k1YUhWUVlqWm9ibE5wT0VGUGNFMXlUREZ5WmxGVUsxbDJOaXRDZFVsWFF6QmhTMVpxVmxaV00wMXFOZ3BoYjJwNE5uVm9TRkZSY0dwV05XbzJPRFpXWms1alRrSnNaVGxETUdoWWVqWktlSFJVUW5kTVdXVnRWRGg1Y1ZwNlNuaFRNV3hpUkVOSWFrc0tMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogbTJ4anVycHRsaWFjenl6aXhiaWd0cnVnanM4YnlxZHAxM3phdHh3bThha3NudTFqc2d6Z2V2d3JrYzJtZWMybmYwM2pxMHpqNjB2bnE1dWFweG4wbXI3b2c0ZWx4enE0MDd2bjBmenpjcHM4c2d5c2s0dWUxczczbGl1a2ZiZGsK\"\n + \ }\n ]\n }" headers: cache-control: - no-cache @@ -743,7 +835,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:39:03 GMT + - Thu, 29 Jun 2023 11:30:44 GMT expires: - '-1' pragma: @@ -777,25 +869,25 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-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.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ - : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\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 }" + 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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n + }" headers: cache-control: - no-cache @@ -804,7 +896,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:39:04 GMT + - Thu, 29 Jun 2023 11:30:44 GMT expires: - '-1' pragma: @@ -846,29 +938,28 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.19.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/ea9155d0-3eb1-483a-a376-79057da85f1f?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3c76d858-40ef-4eb4-9c9e-db0fb7c27cff?api-version=2016-03-30 cache-control: - no-cache content-length: @@ -876,7 +967,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:39:13 GMT + - Thu, 29 Jun 2023 11:30:49 GMT expires: - '-1' pragma: @@ -906,14 +997,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3c76d858-40ef-4eb4-9c9e-db0fb7c27cff?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 }" + string: "{\n \"name\": \"58d8763c-ef40-b44e-9c9e-db0fb7c27cff\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:30:49.8626162Z\"\n }" headers: cache-control: - no-cache @@ -922,7 +1013,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:39:13 GMT + - Thu, 29 Jun 2023 11:30:49 GMT expires: - '-1' pragma: @@ -954,14 +1045,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3c76d858-40ef-4eb4-9c9e-db0fb7c27cff?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 }" + string: "{\n \"name\": \"58d8763c-ef40-b44e-9c9e-db0fb7c27cff\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:30:49.8626162Z\"\n }" headers: cache-control: - no-cache @@ -970,7 +1061,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:39:43 GMT + - Thu, 29 Jun 2023 11:31:20 GMT expires: - '-1' pragma: @@ -1002,14 +1093,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3c76d858-40ef-4eb4-9c9e-db0fb7c27cff?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 }" + string: "{\n \"name\": \"58d8763c-ef40-b44e-9c9e-db0fb7c27cff\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:30:49.8626162Z\"\n }" headers: cache-control: - no-cache @@ -1018,7 +1109,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:40:13 GMT + - Thu, 29 Jun 2023 11:31:50 GMT expires: - '-1' pragma: @@ -1050,14 +1141,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3c76d858-40ef-4eb4-9c9e-db0fb7c27cff?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 }" + string: "{\n \"name\": \"58d8763c-ef40-b44e-9c9e-db0fb7c27cff\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:30:49.8626162Z\"\n }" headers: cache-control: - no-cache @@ -1066,7 +1157,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:40:43 GMT + - Thu, 29 Jun 2023 11:32:20 GMT expires: - '-1' pragma: @@ -1098,14 +1189,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3c76d858-40ef-4eb4-9c9e-db0fb7c27cff?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 }" + string: "{\n \"name\": \"58d8763c-ef40-b44e-9c9e-db0fb7c27cff\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:30:49.8626162Z\"\n }" headers: cache-control: - no-cache @@ -1114,7 +1205,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:41:14 GMT + - Thu, 29 Jun 2023 11:32:49 GMT expires: - '-1' pragma: @@ -1146,14 +1237,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3c76d858-40ef-4eb4-9c9e-db0fb7c27cff?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 }" + string: "{\n \"name\": \"58d8763c-ef40-b44e-9c9e-db0fb7c27cff\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:30:49.8626162Z\"\n }" headers: cache-control: - no-cache @@ -1162,7 +1253,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:41:44 GMT + - Thu, 29 Jun 2023 11:33:20 GMT expires: - '-1' pragma: @@ -1194,14 +1285,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3c76d858-40ef-4eb4-9c9e-db0fb7c27cff?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 }" + string: "{\n \"name\": \"58d8763c-ef40-b44e-9c9e-db0fb7c27cff\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:30:49.8626162Z\"\n }" headers: cache-control: - no-cache @@ -1210,7 +1301,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:42:14 GMT + - Thu, 29 Jun 2023 11:33:50 GMT expires: - '-1' pragma: @@ -1242,15 +1333,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3c76d858-40ef-4eb4-9c9e-db0fb7c27cff?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 }" + string: "{\n \"name\": \"58d8763c-ef40-b44e-9c9e-db0fb7c27cff\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:30:49.8626162Z\",\n \"endTime\": + \"2023-06-29T11:34:18.5427377Z\"\n }" headers: cache-control: - no-cache @@ -1259,7 +1350,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:42:44 GMT + - Thu, 29 Jun 2023 11:34:20 GMT expires: - '-1' pragma: @@ -1291,26 +1382,25 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -1319,7 +1409,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:42:45 GMT + - Thu, 29 Jun 2023 11:34:21 GMT expires: - '-1' pragma: @@ -1351,39 +1441,39 @@ interactions: ParameterSetName: - --resource-group --cluster-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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-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.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ - : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\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 }" + 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.19.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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n + }" headers: cache-control: - no-cache @@ -1392,7 +1482,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:42:48 GMT + - Thu, 29 Jun 2023 11:34:22 GMT expires: - '-1' pragma: @@ -1424,39 +1514,39 @@ interactions: ParameterSetName: - --resource-group --cluster-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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-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.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ - : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\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 }" + 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.19.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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n + }" headers: cache-control: - no-cache @@ -1465,7 +1555,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:42:50 GMT + - Thu, 29 Jun 2023 11:34:23 GMT expires: - '-1' pragma: @@ -1497,26 +1587,25 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -1525,7 +1614,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:42:52 GMT + - Thu, 29 Jun 2023 11:34:24 GMT expires: - '-1' pragma: @@ -1567,29 +1656,28 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.19.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/6114ee9d-49f9-4e80-b0f8-62f12e2768db?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f159ed68-064e-4f04-a7a6-d3abf3e8df51?api-version=2016-03-30 cache-control: - no-cache content-length: @@ -1597,7 +1685,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:42:57 GMT + - Thu, 29 Jun 2023 11:34:28 GMT expires: - '-1' pragma: @@ -1613,7 +1701,55 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' + 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f159ed68-064e-4f04-a7a6-d3abf3e8df51?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"68ed59f1-4e06-044f-a7a6-d3abf3e8df51\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:34:28.4567242Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:34: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 @@ -1631,14 +1767,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f159ed68-064e-4f04-a7a6-d3abf3e8df51?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 }" + string: "{\n \"name\": \"68ed59f1-4e06-044f-a7a6-d3abf3e8df51\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:34:28.4567242Z\"\n }" headers: cache-control: - no-cache @@ -1647,7 +1783,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:42:57 GMT + - Thu, 29 Jun 2023 11:34:58 GMT expires: - '-1' pragma: @@ -1679,14 +1815,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f159ed68-064e-4f04-a7a6-d3abf3e8df51?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 }" + string: "{\n \"name\": \"68ed59f1-4e06-044f-a7a6-d3abf3e8df51\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:34:28.4567242Z\"\n }" headers: cache-control: - no-cache @@ -1695,7 +1831,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:43:27 GMT + - Thu, 29 Jun 2023 11:35:28 GMT expires: - '-1' pragma: @@ -1727,14 +1863,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f159ed68-064e-4f04-a7a6-d3abf3e8df51?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 }" + string: "{\n \"name\": \"68ed59f1-4e06-044f-a7a6-d3abf3e8df51\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:34:28.4567242Z\"\n }" headers: cache-control: - no-cache @@ -1743,7 +1879,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:43:57 GMT + - Thu, 29 Jun 2023 11:35:58 GMT expires: - '-1' pragma: @@ -1775,15 +1911,207 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f159ed68-064e-4f04-a7a6-d3abf3e8df51?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"68ed59f1-4e06-044f-a7a6-d3abf3e8df51\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:34:28.4567242Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:36: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 scale + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f159ed68-064e-4f04-a7a6-d3abf3e8df51?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"68ed59f1-4e06-044f-a7a6-d3abf3e8df51\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:34:28.4567242Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:36: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 scale + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f159ed68-064e-4f04-a7a6-d3abf3e8df51?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"68ed59f1-4e06-044f-a7a6-d3abf3e8df51\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:34:28.4567242Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:37: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 scale + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f159ed68-064e-4f04-a7a6-d3abf3e8df51?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"68ed59f1-4e06-044f-a7a6-d3abf3e8df51\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:34:28.4567242Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:37: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 scale + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f159ed68-064e-4f04-a7a6-d3abf3e8df51?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"68ed59f1-4e06-044f-a7a6-d3abf3e8df51\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:34:28.4567242Z\",\n \"endTime\": + \"2023-06-29T11:38:02.2554574Z\"\n }" headers: cache-control: - no-cache @@ -1792,7 +2120,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:44:27 GMT + - Thu, 29 Jun 2023 11:38:28 GMT expires: - '-1' pragma: @@ -1824,26 +2152,25 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -1852,7 +2179,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:44:27 GMT + - Thu, 29 Jun 2023 11:38:29 GMT expires: - '-1' pragma: @@ -1884,26 +2211,25 @@ interactions: ParameterSetName: - --resource-group --cluster-name --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -1912,7 +2238,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:44:29 GMT + - Thu, 29 Jun 2023 11:38:31 GMT expires: - '-1' pragma: @@ -1944,17 +2270,17 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/nodepool1/upgradeProfiles/default?api-version=2023-05-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.25.6\",\n \"osType\"\ - : \"Linux\",\n \"latestNodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ - \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.19.0\"\n + \ }\n }" headers: cache-control: - no-cache @@ -1963,7 +2289,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:44:29 GMT + - Thu, 29 Jun 2023 11:38:31 GMT expires: - '-1' pragma: @@ -1995,17 +2321,17 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/upgradeProfiles/default?api-version=2023-05-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.25.6\",\n \"osType\"\ - : \"Linux\",\n \"latestNodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ - \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.19.0\"\n + \ }\n }" headers: cache-control: - no-cache @@ -2014,7 +2340,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:44:31 GMT + - Thu, 29 Jun 2023 11:38:32 GMT expires: - '-1' pragma: @@ -2046,26 +2372,25 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -2074,7 +2399,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:44:32 GMT + - Thu, 29 Jun 2023 11:38:33 GMT expires: - '-1' pragma: @@ -2116,29 +2441,28 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.19.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/d24a6817-ab40-4155-8e60-618e62471731?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a9cae78a-3e59-4741-87de-08eed655b0a7?api-version=2016-03-30 cache-control: - no-cache content-length: @@ -2146,7 +2470,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:44:36 GMT + - Thu, 29 Jun 2023 11:38:36 GMT expires: - '-1' pragma: @@ -2162,7 +2486,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -2180,14 +2504,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a9cae78a-3e59-4741-87de-08eed655b0a7?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 }" + string: "{\n \"name\": \"8ae7caa9-593e-4147-87de-08eed655b0a7\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:38:36.4419895Z\"\n }" headers: cache-control: - no-cache @@ -2196,7 +2520,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:44:36 GMT + - Thu, 29 Jun 2023 11:38:36 GMT expires: - '-1' pragma: @@ -2228,15 +2552,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a9cae78a-3e59-4741-87de-08eed655b0a7?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"8ae7caa9-593e-4147-87de-08eed655b0a7\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:38:36.4419895Z\",\n \"endTime\": + \"2023-06-29T11:38:40.1790371Z\"\n }" headers: cache-control: - no-cache @@ -2245,7 +2569,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:45:06 GMT + - Thu, 29 Jun 2023 11:39:06 GMT expires: - '-1' pragma: @@ -2277,26 +2601,25 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -2305,7 +2628,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:45:07 GMT + - Thu, 29 Jun 2023 11:39:06 GMT expires: - '-1' pragma: @@ -2337,39 +2660,39 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-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.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ - : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\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 }" + 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.19.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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n + }" headers: cache-control: - no-cache @@ -2378,7 +2701,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:45:09 GMT + - Thu, 29 Jun 2023 11:39:08 GMT expires: - '-1' pragma: @@ -2412,8 +2735,8 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/cliakstest000001/agentPools/nodepool2?api-version=2023-05-01 response: @@ -2421,17 +2744,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fc81098c-823a-4d31-ab65-918f19b0d6d8?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Fri, 16 Jun 2023 00:45:10 GMT + - Thu, 29 Jun 2023 11:39:09 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/fc81098c-823a-4d31-ab65-918f19b0d6d8?api-version=2016-03-30 pragma: - no-cache server: @@ -2461,8 +2784,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/cliakstest000001?api-version=2023-05-01 response: @@ -2470,17 +2793,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9cc26d6f-949c-4b19-9c8e-6ea8e370f0ec?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Fri, 16 Jun 2023 00:45:18 GMT + - Thu, 29 Jun 2023 11:39:15 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/9cc26d6f-949c-4b19-9c8e-6ea8e370f0ec?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_scale_down_mode.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_scale_down_mode.yaml index e1f029ea90d..57c8a8dbb1f 100644 --- 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 Jun 2023 00:45:23 GMT + - Thu, 29 Jun 2023 11:30:33 GMT expires: - '-1' pragma: @@ -53,11 +53,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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {}}}' headers: Accept: - application/json @@ -68,68 +69,67 @@ interactions: Connection: - keep-alive Content-Length: - - '1732' + - '1403' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-x3okg8a5.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-x3okg8a5.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/2ab20d84-3055-44a2-b708-a98d014ea58e?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9c6b2541-980e-4e42-8fb3-3af4324242e1?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3539' + - '3210' content-type: - application/json date: - - Fri, 16 Jun 2023 00:45:30 GMT + - Thu, 29 Jun 2023 11:30:39 GMT expires: - '-1' pragma: @@ -141,7 +141,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -159,14 +159,110 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9c6b2541-980e-4e42-8fb3-3af4324242e1?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"41256b9c-0e98-424e-8fb3-3af4324242e1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:30:39.190723Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:30: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.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9c6b2541-980e-4e42-8fb3-3af4324242e1?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"41256b9c-0e98-424e-8fb3-3af4324242e1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:30:39.190723Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:31: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.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9c6b2541-980e-4e42-8fb3-3af4324242e1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"840db22a-5530-a244-b708-a98d014ea58e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T00:45:30.365018Z\"\n }" + string: "{\n \"name\": \"41256b9c-0e98-424e-8fb3-3af4324242e1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:30:39.190723Z\"\n }" headers: cache-control: - no-cache @@ -175,7 +271,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:45:30 GMT + - Thu, 29 Jun 2023 11:31:39 GMT expires: - '-1' pragma: @@ -207,14 +303,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9c6b2541-980e-4e42-8fb3-3af4324242e1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"840db22a-5530-a244-b708-a98d014ea58e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T00:45:30.365018Z\"\n }" + string: "{\n \"name\": \"41256b9c-0e98-424e-8fb3-3af4324242e1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:30:39.190723Z\"\n }" headers: cache-control: - no-cache @@ -223,7 +319,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:46:00 GMT + - Thu, 29 Jun 2023 11:32:09 GMT expires: - '-1' pragma: @@ -255,14 +351,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9c6b2541-980e-4e42-8fb3-3af4324242e1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"840db22a-5530-a244-b708-a98d014ea58e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T00:45:30.365018Z\"\n }" + string: "{\n \"name\": \"41256b9c-0e98-424e-8fb3-3af4324242e1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:30:39.190723Z\"\n }" headers: cache-control: - no-cache @@ -271,7 +367,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:46:30 GMT + - Thu, 29 Jun 2023 11:32:39 GMT expires: - '-1' pragma: @@ -303,14 +399,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9c6b2541-980e-4e42-8fb3-3af4324242e1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"840db22a-5530-a244-b708-a98d014ea58e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T00:45:30.365018Z\"\n }" + string: "{\n \"name\": \"41256b9c-0e98-424e-8fb3-3af4324242e1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:30:39.190723Z\"\n }" headers: cache-control: - no-cache @@ -319,7 +415,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:47:00 GMT + - Thu, 29 Jun 2023 11:33:09 GMT expires: - '-1' pragma: @@ -351,14 +447,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9c6b2541-980e-4e42-8fb3-3af4324242e1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"840db22a-5530-a244-b708-a98d014ea58e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T00:45:30.365018Z\"\n }" + string: "{\n \"name\": \"41256b9c-0e98-424e-8fb3-3af4324242e1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:30:39.190723Z\"\n }" headers: cache-control: - no-cache @@ -367,7 +463,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:47:30 GMT + - Thu, 29 Jun 2023 11:33:40 GMT expires: - '-1' pragma: @@ -399,14 +495,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9c6b2541-980e-4e42-8fb3-3af4324242e1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"840db22a-5530-a244-b708-a98d014ea58e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T00:45:30.365018Z\"\n }" + string: "{\n \"name\": \"41256b9c-0e98-424e-8fb3-3af4324242e1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:30:39.190723Z\"\n }" headers: cache-control: - no-cache @@ -415,7 +511,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:48:02 GMT + - Thu, 29 Jun 2023 11:34:10 GMT expires: - '-1' pragma: @@ -447,14 +543,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9c6b2541-980e-4e42-8fb3-3af4324242e1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"840db22a-5530-a244-b708-a98d014ea58e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T00:45:30.365018Z\"\n }" + string: "{\n \"name\": \"41256b9c-0e98-424e-8fb3-3af4324242e1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:30:39.190723Z\"\n }" headers: cache-control: - no-cache @@ -463,7 +559,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:48:31 GMT + - Thu, 29 Jun 2023 11:34:40 GMT expires: - '-1' pragma: @@ -495,14 +591,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9c6b2541-980e-4e42-8fb3-3af4324242e1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"840db22a-5530-a244-b708-a98d014ea58e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T00:45:30.365018Z\"\n }" + string: "{\n \"name\": \"41256b9c-0e98-424e-8fb3-3af4324242e1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:30:39.190723Z\"\n }" headers: cache-control: - no-cache @@ -511,7 +607,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:49:02 GMT + - Thu, 29 Jun 2023 11:35:10 GMT expires: - '-1' pragma: @@ -543,24 +639,24 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9c6b2541-980e-4e42-8fb3-3af4324242e1?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 }" + string: "{\n \"name\": \"41256b9c-0e98-424e-8fb3-3af4324242e1\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:30:39.190723Z\",\n \"endTime\": + \"2023-06-29T11:35:34.712745Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '168' content-type: - application/json date: - - Fri, 16 Jun 2023 00:49:32 GMT + - Thu, 29 Jun 2023 11:35:40 GMT expires: - '-1' pragma: @@ -592,65 +688,63 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-x3okg8a5.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-x3okg8a5.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/e04573f6-b953-4074-82ef-ec8ab1d034ae\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4192' + - '3863' content-type: - application/json date: - - Fri, 16 Jun 2023 00:49:32 GMT + - Thu, 29 Jun 2023 11:35:41 GMT expires: - '-1' pragma: @@ -682,65 +776,63 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-x3okg8a5.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-x3okg8a5.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/e04573f6-b953-4074-82ef-ec8ab1d034ae\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4192' + - '3863' content-type: - application/json date: - - Fri, 16 Jun 2023 00:49:34 GMT + - Thu, 29 Jun 2023 11:35:42 GMT expires: - '-1' pragma: @@ -774,24 +866,24 @@ interactions: ParameterSetName: - -g -n --file User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ - \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVZBcmIwVXpaRTlvYkdwM1owdDJNeTgxZWt0U0wwVjNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDA1cVJUSk5SRUY2VG1wTk1GZG9aMUJOYWtFeFRYcEJNazFVV1hkTlJGRXlUWHBTWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNtdE9MeTlhTkRGWmVXOTFiV2N6Vm1OU1dIaEVUM295T1ZoYU9GTm5NMFpYUVhGVWNWQmhlV3MyZWpGWlJXSXdiMmxyVkhKd1NrSk5kMjVoYjB0VWN6UUtXSGRoVmpORlVITk1abmMyVkRKeksxRkJWbkZsVFhFM1ZITjBVa0V4TDJ0cVJYSm9ibkJtY0dwWWRISmFORE41SzNGb1J6YzJWbTFaT1NzNGVqZEhiQXB3VDNaMlZqWkVNMDF0YVZWNFJEZHVTa2xvVmtGcFJUVmlORUpEUWtNMkszbFpXRVF2ZVZoWk4wNWxVVmsxWTFOTGJuUklZVTVhV0hsdFFXdGliakU0Q21WWk5IaHViSGs0TTBvelkyRTVVVVJXYUhGRmRFWmtWRlpOZWxGb1RYTk5lR3RqV20xSFNXdDFMMUkyTUhOcFVUZGpNbkpsYVhGNllsQTRUR0pMUVVjS1ZtbFlXVVEzWlhWd01IQnNVbE52TlRNeFNGQnFOa1pWV1dkM1YyRklhSFJPWkRVMWJFeEVZamhYZUcxQ2NIQlFUWGh0Ym1KVWNEaFJSMEpNU2xGbU13cDVSbFpOTlRORWFuSmxjbnA0ZW1Gb1pYQkVjM2N5WVVWQmFtZDZVV05LTnpsRlJGQXlZMXBWYTNCTlJIUnlXVzVLTVhSR1lsVnhUVmxRZVhoNU9HNTRDbFV6Um5sQlpEbEZOMGh6T0Zwdk1HNVNaM0ZDUTJwUWFEQmhSMDlOUjNOemVrTXlURzV4WkU1SmJXdHFXRUZ2VFRNeGNWbFphM3BGZWxsMlZreERiM2dLWVRSVVZFSktMeTlOYjFOUU5qa3hRMjU0VmtadE56TXlXVnBoWkVocFUyVTNiRUpqVGxaU2QwRnZkakpVZFRVd1NESkpUVUZXWlRsS00zVkRNMnM0YWdwaVZuZDRXVUpJY1VRMmQzZFdObVV4UVZORlZYRmhlVkI1ZUVSR2JUTkVaekYwU205NmRWUkRaV0p5VjJsRWFqUXdPVE5NWXk5Q2JtNXJZVFJCVlRGb0NsWnJkbGg2UWk5SWNuZExSMlpDVWxkamFUaDZURVpPU1RWSVQyOHlhWGxaZWtkTlpWZFNRa0ZhWVRodlZGQkpNbFJNWldkbk9HTjJUemhKYWpsUFpIUUtiMll2TmxWa04zTmljemtyVmxsTk5tdEliV2xwV0doaUx6Z3JlbmRHVW5nM01uZFJRVzkwTjBzNFkwTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1RFOVBjVTlLVUdKUFJUWklMMDVyQ2pGUmNIVkZhMVZKYnpkWWVrMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlFWWTRhRFp0UWl0Q2RERkROWEYzWmxWUmNtVlVUMWxzWkdvS1oxWnhNM1EzUmxKWE4yNHliVEpUVUZVMlZrRnNUM1p1Y2xOVFF6UllWbU12Vm1jNUswUnJUVzV5UzBZeWJWcHdjMVp3V0hSV1lWWkVSV05LVjJJM1pRbzFNMHQzV2toQ2NXaElUM0kyZFU5Sk5ESTVNWFowYTA5b2JERkNkVlJVVm5kUVZtdFZlakppV2swd1J6Tm1iSHBRYW0xNU1IQmFhVFUwYTFkQ01tWmFDamQwU1ZSM01GRlRSMDg1YXpKTWNYVjRPRUp5Y2pKS1QxVXZTWEZRZVRoM2FXaE1WM1ZQYWs4M2RYRTNlbXRHZFVFeE9GQlZSMWs1ZWpCb1pITXhWMllLTnpOME5XMU9hR1ZzZFZGWllWWTJOR05uZDJ0RVNUUm9NMnB1VnpkSmFubHhMM1p4YVZCeGRsWmlla3cxU0Zwa09Va3hlRkJ4YVhKM1pqQlROVFpYVFFwbFYxZERkbXRtV21sSE1EbFdWMlZ1UVhKTldsVTRhRWQ1U2pZd0sxSTNURkYwVDI1UFJIZDNUalo2U25NellVWjVRMFZ0V2tOWlQySkJWVUYyU1VoRENuZDRRM2RxVVRCWlRHVkJaR1ZPZFRWMGRVaEJVVkJDVld4cFRWVm5jWGxMTDNKdGVXRjZZbFp6WXpVNFdURkpWVWhDWnpaNVJrMXllRmMyUW10UlVYVUtMemN4Vm1OU2FHSXJlRTFGUmxCc1ZscEJaR3d6UTBVeGJVbG9SbmxXWkVWNVlTOXdVRTFzVW5aNU9VbFBkSFoyWkc0eVRUVkllRWcyUjAwM2NUSlJRZ3BSTTNCR1RVWXhOUzlMVkdFd2QySXpZVFZsTXpseFMzUkpZVWN2Wm5oc2JHRXJlVTUxV0VwWlUwMTFlVFpYUkc5SWFESkphVUo1TWs1RFpWRlFUWGQ1Q2poYVNHMVVaVU5qYVhsTWVGcHZlVzVSTWpRellrOWFjbEJSZHpKRk5YWlpUVWhxYUV4UE0wUlBRV0UxVFRGa05EZGhkbmRzUTJOT1pUSjBjM2MwUlZFS1FUYzFkekJTZGxsNlVTdEJSMHBzUzJ4MVoxUkhXSE5rYkZkM1FrOUJNM05DYjBnMFkzRTFUM0J1VDBwcFNXaHhXSFp5VEhGdFZIUllVMmhHYkRaSk9BcFpNRTlCUnpkaVoySlBlR0Z2ZVVSV1JFRTlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5zbWV5dWptZi1ybWdxMTk5OC5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdHRndDNveApjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdHRndDNveAogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdHV1YXRxZTd5eHBfY2xpYWtzdGVzdHRndDNveAogIG5hbWU6IGNsaWFrc3Rlc3R0Z3Qzb3gKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0dGd0M294CmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdHV1YXRxZTd5eHBfY2xpYWtzdGVzdHRndDNveAogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklha05EUVhkaFowRjNTVUpCWjBsU1FVMW9LMWx4WWt4bFFXa3Jka3gxWjNCbVJrNXBOVGgzUkZGWlNrdHZXa2xvZG1OT1FWRkZURUpSUVhjS1JGUkZURTFCYTBkQk1WVkZRWGhOUTFreVJYZElhR05PVFdwTmQwNXFSVEpOUkVGNlRtcE5NRmRvWTA1TmFsVjNUbXBGTWsxRVFUQk9hazB3VjJwQmR3cE5VbU4zUmxGWlJGWlJVVXRGZHpWNlpWaE9NRnBYTURaaVYwWjZaRWRXZVdONlJWWk5RazFIUVRGVlJVRjRUVTFpVjBaNlpFZFdlVmt5ZUhCYVZ6VXdDazFKU1VOSmFrRk9RbWRyY1docmFVYzVkekJDUVZGRlJrRkJUME5CWnpoQlRVbEpRME5uUzBOQlowVkJNVzFXY0RZMU5EVlJRamRHZDNoTVIyNW5RMjRLVUc5YU0xa3hhR0pDVVhvelFVNVJWbmxRZFZjdlNGWldRbmN4YkhSMWRHZHNRM05vUWxoMVpFaHBSMWh1ZDB4bldXOTJPV1ZHWlVKR1lsaHNZelp1VHdweUwwWnlaMVkzY1RaU2RWQk5NRE5WY0hoaFZIUTJWV2MyVlV4SlZFZHdZbTFWTkhacGRqUkVaVWN6U1ZRd1lUTlFWRGQxTTBsTU1HSmhOMUpCTVRCeUNuZHdkek5aWWpkR1VuZDRTR3RGYW1wTmVYWXJSVFJqWXpKRFlWTkNUMmM1YUd0dlJIbFhaR1F3Y2s1cllVdGpXaTlRUTI1TlRIUnZjRmxwZFZNNE1sUUtNSEZyVm5neFVESjVPREJITW05Rk9IVXZRbGhCY25kbVdsUldVMGxTVTFGSmMyWm5Oa2N5ZVhwd2JYY3ZTbTl4VEZScWJVNHhVMnAxZFhaYU0zZHpaUXBGVms5WVJrVjNXVVV4TVdkQlMxRmpkRVJaYlZGQkwyTnBZV2RCUTBSdGVHc3diSEV6ZG1oSFp5dGlWbkpOTW1aVE4ySjZNMHBZVFd4cGJHdGpjM05NQ2pCelZURkNjbXBqVjJVNFlYRlViMnBKWTBwdE9GVXlWRXAyZG1sbFoxSlJObUYzVlRsUUwzRTVXR0pVTkUxdFlVWjVURUphVnl0eVowWlRhVXhqVkZVS04yOXdaMG8yVWpWM0wzZFJabXhVWjJ0VE9XZHlZV2syWmpZMVlpdGpUbVptTVVaT1RFZGpXazlXY2poSVJrazNLM0I0TWtOUVNXVjFPSG93ZEZaclpncERZWGhVWlU1REsyNVRTVzVKSzB4V2NqZzNOa2RFUlVsdVZISldZVk5FTjJ0NFRqTkxhaXROUmxRd1kxZEVhelpCVUVVeWQxZEZSMnQwU1RCbWQxcG9DbTVKVTBGNVQwZHlVREkwT0dsd1YyNUtRVFY2VXl0VlZWRjJXbkl5ZHpoRWQzbzVUWFJyYmtSWk5HZFdOako1VG1RMVNGbG1WRmRTUTNZclRUUlBNWElLYjBGcVJHSkhRekpaUTFCbVUyZHZhM2REZGpJd1RWQnViakF4VVZoTlZWVlhZakYwY1VOTmJqUk1RV2hoTTAxMmFXeERabFJDVld4aGVsZHZjbk5DWXdveFltZGtjRWN4WlRKdFlrcFdMMVJFVDFoUFdEQlljME5CZDBWQlFXRk9WMDFHVVhkRVoxbEVWbEl3VUVGUlNDOUNRVkZFUVdkWFowMUNUVWRCTVZWa0NrcFJVVTFOUVc5SFEwTnpSMEZSVlVaQ2QwMURUVUYzUjBFeFZXUkZkMFZDTDNkUlEwMUJRWGRJZDFsRVZsSXdha0pDWjNkR2IwRlZjelEyYnpSck9YTUtORlJ2WmpneVZGWkRiVFJUVWxGcGFuUm1UWGRFVVZsS1MyOWFTV2gyWTA1QlVVVk1RbEZCUkdkblNVSkJSRmxHT0V3eVUxTk1VV1pyUW0xdlNsRTFid3BHTlhCVGJGTllkQ3N2U0VSeFVHcFRNRU5zT1V4M1JtZGljVGhFUm5CeldWUjVNelJUYjB4SkwzcEZTbWRMVDFSaVMwNXVSVkoxUzJFNVREQTNPWFp5Q2sxVGRIaEthVGxtY0hGTlFrc3pkMlp2VmxBdlowTXdORzVOTWtGQlZuQndRVUpKVkRkS2FHSTRlRFJDWXpNclJsRnZTMHQzY2s5TGVTOVdNSGxTUVRNS2RtUnFaVU5ZYTI1NGFEVmhlVTQxU0d4dksydERObGxTUkRoVlMzZFdTbXRWUlhsMmFEQTRLMEp5VGtnd0szY3hNWGRzVGpKbVJWSndNME55WlVGMmR3cHNjMlJhWnpKNFVtTllXV3N4VldOU1dtSXJTRUZGVDNobVpteDBNWEZ0YjB0blEzTTFNVlZCUzJVNE1VaFlUMmxLUWxkaU5rUkhTblY1YWxseU1tMTRDbU1yTjBWUlpHVkRXVkk0VEhndmF6bDNXbFZOUm5OTE5UQTFVSGsxTlZsd1VtVnNlRzQ0V2l0dWNtcG9Wa2hPVWxSd2VUQmpaV1pxY2xoUVZqQmxNM29LY0M5S2NHRmlNSFZFVEhGRlVtdHBhSFV4WjBOWVMwRTFjRUZPWkVZeVRUVkRhM1I2WWxCdmVVNHlSV0ZJVHk5d056SjZla051T1ZWVlNFOVdZMjFwZHdwNlFrRldWWFZOU1V3NE5rVklhREZXYW1oaldrY3dXRXRFTTBGbVFuWmtPWEYwTWpOSlVGZ3pTbVpETW1WWE4yeEJjakUyUzBOcWNsUTROelUwYzI5WkNpdFFiSEZIWWpOVU1qVkJaRTVYY0VOMU0wUTNNRzFhUVVGTk1WTldWM2R5UjNkTGJ6UlBkMDFSTDBJMVMzTkZlVXBsWTNKU2NIQTNUME5wVVd4bVVsZ0tZbEJUTVdkMk1qbHhjRXhWVG1WdGRsUjJiRTAwT0RoSU0xVmtZMWhUUm1SdWRUTjNaVWhZVFhNM1NrTmtObU5hVTNwRVkxZEtla1J0U3k5VWNVZFhSQXBLTm5wclIwTlJSMlZLV2l0d05UVk9NRk55YmtndmVrNU5iRlpVVmpnelYzQnlOVXQ1WldsblNucDNaRWhPUW1JeU0ySXhWMWRHZDFwTUt6SXlhMkZyQ21wRGEydFpWbFZuTDNaVFRWZzBkemxDUlZsQmJHMW5VUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MxRkpRa0ZCUzBOQlowVkJNVzFXY0RZMU5EVlJRamRHZDNoTVIyNW5RMjVRYjFveldURm9Za0pSZWpOQlRsRldlVkIxVnk5SVZsWkNkekZzQ25SMWRHZHNRM05vUWxoMVpFaHBSMWh1ZDB4bldXOTJPV1ZHWlVKR1lsaHNZelp1VDNJdlJuSm5WamR4TmxKMVVFMHdNMVZ3ZUdGVWREWlZaelpWVEVrS1ZFZHdZbTFWTkhacGRqUkVaVWN6U1ZRd1lUTlFWRGQxTTBsTU1HSmhOMUpCTVRCeWQzQjNNMWxpTjBaU2QzaElhMFZxYWsxNWRpdEZOR05qTWtOaFV3cENUMmM1YUd0dlJIbFhaR1F3Y2s1cllVdGpXaTlRUTI1TlRIUnZjRmxwZFZNNE1sUXdjV3RXZURGUU1uazRNRWN5YjBVNGRTOUNXRUZ5ZDJaYVZGWlRDa2xTVTFGSmMyWm5Oa2N5ZVhwd2JYY3ZTbTl4VEZScWJVNHhVMnAxZFhaYU0zZHpaVVZXVDFoR1JYZFpSVEV4WjBGTFVXTjBSRmx0VVVFdlkybGhaMEVLUTBSdGVHc3diSEV6ZG1oSFp5dGlWbkpOTW1aVE4ySjZNMHBZVFd4cGJHdGpjM05NTUhOVk1VSnlhbU5YWlRoaGNWUnZha2xqU20wNFZUSlVTbloyYVFwbFoxSlJObUYzVlRsUUwzRTVXR0pVTkUxdFlVWjVURUphVnl0eVowWlRhVXhqVkZVM2IzQm5TalpTTlhjdmQxRm1iRlJuYTFNNVozSmhhVFptTmpWaUNpdGpUbVptTVVaT1RFZGpXazlXY2poSVJrazNLM0I0TWtOUVNXVjFPSG93ZEZaclprTmhlRlJsVGtNcmJsTkpia2tyVEZaeU9EYzJSMFJGU1c1VWNsWUtZVk5FTjJ0NFRqTkxhaXROUmxRd1kxZEVhelpCVUVVeWQxZEZSMnQwU1RCbWQxcG9ia2xUUVhsUFIzSlFNalE0YVhCWGJrcEJOWHBUSzFWVlVYWmFjZ295ZHpoRWQzbzVUWFJyYmtSWk5HZFdOako1VG1RMVNGbG1WRmRTUTNZclRUUlBNWEp2UVdwRVlrZERNbGxEVUdaVFoyOXJkME4yTWpCTlVHNXVNREZSQ2xoTlZWVlhZakYwY1VOTmJqUk1RV2hoTTAxMmFXeERabFJDVld4aGVsZHZjbk5DWXpGaVoyUndSekZsTW0xaVNsWXZWRVJQV0U5WU1GaHpRMEYzUlVFS1FWRkxRMEZuUWpOMlUyZE5LMk01VEhGdFVWVTRUbGRSZUZKcGFUWlJTMmR5TWxsWFUyZHNhRzk0UjFCelJWQkNUamsyU0VVNGNIUkJUVkowZGtSRGVncEhWR3BGTjFWdU5pdDFXa3MwTldoeGNqWlNaV1JpY0hsblRFZzBkbU5MYlM5R1dVTllkWFkxV1ZWNVZrUlNlblpCWjBOQ2FHeFVUSEZPVFVSeGFFVlFDbVJhUzBkdVptMTZibEJGVml0aFNEVTRaMGRHYVVrNFptRTVabGN4ZEhoMlkwNWFTazlsYURKQmREaDRXWGsyUW5oWlNYTnFhelJpUVRSSWNFVkZiRklLU1V4UVlua3lhMWR6WTNwdU5GcG1aWFJoZUdGV2VETlNTa1F5WXprcldUYzNkamN4UkRoeU1rZG9ka3hqZHpKR1lqTXJlRlJNYUZReFYwbDVjWEZPU0FvM1NYaHBjWEFyV1ZaS2JXUnlRblZZV2pKUlUwd3djamxOVURWWUszWkdlakp3VUZCeVQxUkVUblZVTlVkUmVpOHhiSFkzV0dGTE1qbFdTR2g1Y1RCMkNsaHJXWHAzUzFsNE0zQXhTemhwUkRoWU5GWnNhMFJUVkd0RFpFaFRSVU5zY0dkSFlVRlpLMWRFY0ZkbWRIcFZiRVZYSzB0VFpTOVdXRkZ3V1dvMmVVY0tRWEE0Tm1KNU5ISkdRa2M0ZEU5NlJHTXpOMmRJTjBZeWRYaHhiaTh5ZW5SdFZ6Rm9lbkIyWjFGamMyZGFjbkZDTVRSd1p6ZHdla3Q2WVZoWVlVZEtXQXB4VlhsSFFVcGtORzFyT1ZWSE1sZHdOSHB0VGsxNllVaHVaMnBGUTJaR0wyVmFkbkI0ZEdSdk5TOW1UVFkxUTNVd1ZVSnBiVE12VTJkRmJ6VndSU3M1Q2xBdk56Rk5hemh3UmpFMlpYZEVhQzg1UkRoM2RFWlJhSG8wZURoaVFUZDFhR05yUmtSblExQktPVmx2VldGdVdHaDBaVTVrUWt4TldGWmlTMG81TVRRS1RscFNlV1kxY3pGRVFuWktVVTAzWVVrMVNUWlpabVpDUmpVcmQwWnNUMWx5YWsxd056VjVUbVUwUWxGbGFpdFBOVW8zYW5WeGExWTJXSGxHTHpob2FBcG1VRXBoWlhGUmVtWnZVRmMyWnpGbWVHNUhiM0UxZGs5R1FXZHJaVVV4UzJjMWFITkJZM3BOYlRFdldIQkxPR000VVV0RFFWRkZRVFp0YTJNM1luQnNDbGwwY1ZjNWJGTnFORlJGVlZsNFpWaE1jVUZ2VG5ReEt6VktlbFpoTHpKckswdEVlR2xGUW1NM09USTVaaTk0YVd4MFZEQldVMGMzWlVkQ2IxVnlTVUVLS3pocGJVRXJiRVJaUmxOeFdYRnBhRlJGUzNwU1NsWnJjMFV5UTJ0d05FbHJiazFWT1hkUVN6RjJNWFJNYkZwVE5XNUdVREp1UjFoWFRHOXJLekJUV0FvMVNuUkpZVEo0UzJKQ2JIbFRUVWxUYVdFeU1UVm9MMWxhY2tKM2IyeGhlR04wU3pWTGRrRTVSME5EVGpreFVYaDZibWh4WmtWSEsxZEJWa1Z5ZEVnNENtUjVlVkZwVG0wNVQyTnNiRFp2TUU5bFpsWkpaRzFqTkdWd1UwdFFXRk5qYkVaNVoweGxkMnBRYVZkd1drSk1RM0ZyZVRreE1HRnFhMWxsUTNwRWVUQUtkbVJWVWt4TFVscHZZM2xCVTAxamVYVk1XVmxzVDJ4eU1UZzNUamswZVU4elF6ZzRURU5PU3pZMWRqQkdNRkJaUTJaVlRGZE9SR05oV2pVMFNsSk5WUXBzWTNwT1lsUnFTbkV3YVVWeWQwdERRVkZGUVRacFVtNWhkblF4YlVscWN6Rk1jRXRZYmxOdWFqTjNSMlE1SzJwRVpsQXhXRWhqVUM5TFMwTTVZakJxQ2tsMVJGWjNSV3h5Um1SbFJWaHhSRXhhYm5od05FUjRla1JZT0dOdU9EUXhObWhMUjBkVllrcHdSSHBRVDJobldFb3JRVzR2U0ZNM1RWTmpTRWhyTUdZS1YxRnRjMHhoVkVkVFNFOTBLemQ0UlZsWGVtZFNVWEJWVUhWNUsweExObVYxUkdKMlIzZFhObVZJYWpoRVpHRjFRMmh4WmtGS1YydHdZMFZFVVhoTU5RcEpkMVpXVjFSWU4wcFpNQzlWWms5VFNra3liRGwzV1ZKQ2VVNTJhV1ZhSzFOMU0yaHdhbWx5VEd4V1UwWnZjbTl0UjFSRGJtOUhTV2RQUnpGMFJEZ3lDbTlZVDJ3MWVFTkxNMk5zVldjdlZHWllOWE5LUjA1MGRHdDZaVzlaY25jMmVUVldLM1pGZVZRMU1FZ3JXSEZvZVZSaWFsRTVOREJHYzFaS2VIb3JNRE1LZUhkU09EbFVaSE5aTVVJeldsTktiVmdyYUZwWlFUTkViV2RzTDNWRGNHdFdlRlZIYTNBMFN6bFJTME5CVVVWQmFua3lVa01yZGxWVVlVMTVibXhrYndwdFpqTXJZeXRDVHpaYU0wNXpiVlp6VVc1MFFrdFBjMDkyZDJGbVVWSm1MMHhGZDBkdFdYZDRUU3QyZWt0aFUyMHJORzR6WW5KMGJrOXRUaXRqT1d0bkNqTkdRV0Z0Y0ZKb2IxWkZSV0Z3Yms1dVNuQmlZazgyTWxWaE1sWlhjVTl2VnpsVlJIZFZMMk0xZDBSRVVUWjNjVkV6YlM5aFVFdHRla2N6UlhWRmFUSUtNVWg0WldZck5UWnZSRzVKV25veVFWVnZhbTAwTWtkTmJGcFFPRzlwZFVoU1duUnpNakowUkRKT1pGbFJNMnh6Y1VKeVpuSjFRalJGZEhKWWJGbzVXZ3B2TVdoUGRHZDBaV3RyVDNRNVVsSnlVRkZTU25jcmRtTlZRWEZpYkVSRmRDOWhTRWhoTW1KRFNFZzRkbGhpVXpVMlFWRmlZMjFEUzBSWlJqbE5aMVpaQ2pocGExWkhiRGhDY21rd1luRnhiRUYzT1hBdmJDOXlNSEkyZW5sV1ozUm5hMkpVTmxST1QxWjFPRGd2UmxGeVRqbHVNV2syVmtwVlQyOVBWRE50YWxnS1ZscFhMelZSUzBOQlVVVkJjekE0VUhWQ2F6aDBTVlJtZDJkWGMxbEhkVGQ1Y1VaNmJuRmxkMmxyV0hrclJUTm9LekZ3Umt0dldXVXJNVE4wZEVOV1JncHJaVTlNV25GRFJGSkZaM2hIVGpKVFUzQnhNbmhDWXpaeFRHaHZORGhEV0U5WFUzTlhiRkZMYmpadlJsWlZkbUk0TUdSMFNubEtkWGxHVVdzdlNYUTRDbTluTW1SQ2RsUnNPVk53V2tWbFdsbEpRbmhVWnpSd2VUSkxZVkpPUlU5T2VYbGllaXRJUlZsMFdHOTJia1pZT1ZWclltWkNZVmh3UkRRelRrUTVXRTBLVFV4VVlqaG9iWHBMVEZWc2FsZHBhVGMzUjA5blN5ODBkR000TlVOSUwweGpSamc0ZW5wRGRqaGplbmRWYTNwdGVXSlRVVE0yYlhSWU4xWmxUSFpqTXdwTllWRXlVMmgyYTFkTFdURk5SV3RUZDBSU1YybHpObFo0UlZWSVYzQk1WMnBpY1ROWU5uaHRXazlyVG1SNFkxUmlabTE1VjFWaVZXVlhRVkpvWjFaakNuaDVNMlpWV2podVoxaHNRbmRPUzNCdmFsSXlSVUZoS3poM1YxTkdRVkpsV2xGTFEwRlJRbk5OUVdOWk1sZHhZakUwZDJWRk5pdE1PSEJYVVdWT1oySUtNVzU2V0RJNVkwNUlTbUpJUm1WVVpGcG5iRE53VjFGM1pXdE1SSE13YUZaeWFEaDNaSGw0VG10RlIyeDVUMVY1V0VaSldqRnNPVFJSYm5keFlqWjFUQW92VVdsQ2NISnhjVXR0TW0xSVdFVlVabmMzWkVjMk1uQjVNM055VURNd2QzSldhSE5GTW1kbFJucHlZbXBYUW5jclIzWTVUbVUzTm1KV2EwUkZOalp5Q2s1V05IQTJZMWR3WkZsRlNWTklORk5tT1c1T09VdFpWV1ZHTUZWS2VXSnNXRGhIT1haMFdUWjJSbVZ6UlhocE1qSkdjMk01ZFVVNFNGVnZjREJLU1VZS1VGWkpaQzl0UkRrelNrMUtRa1l3YjJjMWFVOVhaVWcxUTJWRFdsaE9WemhzVm01eFVXWkNRMUJUYzNad2RTdFNWWE40UkhocVYwWkJlRU5pWjJOeVZncEtia2hGY3pFcmVGb3dZMFZVWnpRdmJGUkNkalZST0ZobGVUSjVRa2R3UlhaMldtdzJVSGh6ZEhKUU1YZEVia2RNVDNsWU9HdEtSblY2VUZJS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiByN3F2MDVjaWhsMTM1ZWNmem82dGRybHUya2NycTBqemEzaWtsOHBpdzg1bHczd3Roc3ViaGZjYzFycHd2MTVzNGNoczdocGQwdW9obTB0bzR5aTR3c2pwaDJ4cG5kZWUwbDgwNXhnenBhOXhqdndidTJpbTZ0b2UzZDI2d3VpdAo=\"\ - \n }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": + \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVU5NVlVTmplbUUyZEhrMlZuZEhTWFZGZUZKUGJqUjNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDA1cVNUVk5WRVY1VFZSSmVWZG9aMUJOYWtFeFRYcEJNazFxYTNoTlZFMTRUV3BLWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNqSXZablpJZVZsVVRVWm5ORWRJZEV3NWNXTk9TM2RrUkhsTGFUY3pkRmMwVUZWNFQyOVJLeTl4YzA1V1drUkVPWEI1T0RNNU1YcGFlSHBwV2pFeFNrd0tRMDlwT0M5eVJXOURTa1IxVW5WdU1rVkZiM1ZxUjBwWWJuVjBOMVpJVG1wMVEzQXpRbGx5YmpkalkxUTVlaTlvYVdwdFVsZFhaMUJVTjJneE9HWTBUd3AzZG1FeWJtazRTSFZVTkZKSVpYWjRWbFUwVXpkNFoxTjBVVWszWlhoamRDc3JjRzVEU1hCaFZ6SmFLMU5yY1hwNmQwa3hjVFIyYURneWVuQXpUSFI1Q21KRmNtNUtaalUyU0dsak16ZDFlbGhXVEhkQk1VbEhVV2wwSzBRNE9YSXJOVUl4Um5RcmNHOWxhMDlWVjJkUlVFOHhhVGxvVm10eVFURXhiVTVISzFvS1owRklkMDV2Vm5JM2NEWlJhRkpNY0UxbVdGaFBZa0puVjNCaU4zbFlSV3htVkVKd04wd3ZXbVYzVWtrMU4wMTFhR1ozYVZJM2VqaFpkamQ0YW5KMGF3cGhOa3N5TjNwMFJGRlBjRWhUT0hWSWVWbzNZM1l6V1ZOUGRqUnNhV3REUlM5WVIyUklMMkZyVFdWRk5EVkhUV0YwYVRkWlduQnRTRkZWTkVrdlMzWkhDbTFEYVdJd1JuTXpSVUZIYm5JeWJWRjRibkZqZW1GVFozWjFjRmswVTNremFHSXJVWEJNVDBaWFJtVnlRM2xyYUc1Q1NGYzFVamxpVXpnclpFeGxVSFVLWjFGRlJuSnZia1puVVRrMlMzTTNhSEZYT1ZGRmNHcFpXamxSWjNsNk1ITnVXWGRwYzNNMGNrbFZNazFRZG5aMVF6aEVVVWxJVVZCUmJqazBVVzA1YUFwT2NEWnFWMDgyZUZFNVpYcDBObmN2VFZneVVqUlJaM1pZSzJWclUyMVFUVGd4UXpaalJFMVBZalZuYzNJdlVtZHpZa2hrWkN0U1dISjJXRVJuWkVOVkNrSnlUa1kyU0RWRldtbzJiMjQ1WW5GNmJXeDZkbGQ0UlZSQ1FuazNiRTFRVm0wMFkyWnpRMHM1UWpoTWQxQkNUVzR5TW1sdmVYZGFXbWxZWVVSSVNFb0taazl3YUhsbU9GZEVRbTFaY1RoUk9IVTBhMk5NYUhCek0yTm1Oa1JyTUZkdWEySXJORFZsVDNoTU9FTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1JYWTVXVmhJYXpWaldtbGxXVzFHQ2pkVFUyUnVaRWRWYlZGR01rMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlFscGFja1JQVUVGTUsxQXZkRWQ0Vm10UGVEa3dSamhuT1ZFS2MyVkpORnBzZERoblZFZFZibkZxU1VrNWFuWkRWamxuWms5NGNtTnRPVmN3UnpoUVR6WnhZbFo1YUZCalkybE9UREZRUXpCM05EVnhUVGxXVDFsVFJncEhlVnBKU0ZOSlNuRXlWa3RWYUZock1XNWpia2d5VjJ4VlVtbzNNRkp2VHpWbU1teHJVSE5ZTDNScU1rVktTVkl2Y2pGaVRWUmxjM0JLV2tweFJqUkVDbFZ5WldwM2NIRm5XRU5aVmtodU4yUnVTbkJOV0ROWVFpdGpkMlJTY0U5SU9VZHdha2gwUVZkaVkxTlVWazVMVUUxMGVFZFdZMVlyVFM4NFptWkRRVUVLT1ZwNldVMVFRMjAxZVV4aGJHOVJUMWxhZEVkUmFXeFZRMVJzTnpNclRXVnhOVEpWYWpkRVlWSXJVSEZTVFZCWU1DdFhWVGxOZWtOcVdHY3pkazVYS3dwamVFNVJVak0xWmtsSUwyRjRMM0JqVjA5V1ptMTBkMkpMYjJOQ1MwcFdhR2N6VFdsRWRXbG9aVmh3TW14blZERnlSVnBHYW1OVldGWmpLMW93YkRWaENucEdVRWg2T0ZkMFJqTlVlWHBsTDA1NldVZFhaa2hYV2t3d2ExWnpORTFIUjFSb05rTm1UaXRYTDFaUFptWkljRWh1WVVWcVlteEpTRTVtZGtwMGRuVUtVMjAxVlV0MUsweHNaV3hCWlhscU5saGxLM2hWUTA1VVRGcFRjekJpT0dwWVlXaHVNRko1U1RaWlpuTjFOVWhCWWtWTWNrOU5TVk5qT0RaR1QwdzNkUXA2VVZrNVJGcHpWRE5ZVUVVclZHSnZVa1ZrWTJoSE9YcERaekF2VGxSM05FWnlibGxDYlZRd1RXTk1NalJQZW01cU5sbFhPQzlOU0RaQmQyVTJlRVU0Q2taWWVEbDJSa0lyYzJvNVVucDBjR3c0VDIxcVpHVkJSWEpWZGl0T1FWSXlTbmxpUVdGeWMxaFpXbEJJTVZocE1tUlBWbGxwVFRWWWRqWlNOMUJDYTBNS1NFc3ZiRWhxYlVSM05pdEliVkZxWWtkU1pIQlhWM0JsYjNkSmFFSkZhbFkzVkhGbFVreEhLMWRaVnpNMU16aHdPSEYwYkVJcldsYzVjMFE0UVVaM053cFRkMGhSYVhkMmJqSnBRV0V3TTA1YVVXYzlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5zbGgyb2x1dy14M29rZzhhNS5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdDJiMzNrdQpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdDJiMzNrdQogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdDJtb3JiZ294NHhfY2xpYWtzdGVzdDJiMzNrdQogIG5hbWU6IGNsaWFrc3Rlc3QyYjMza3UKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0MmIzM2t1CmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdDJtb3JiZ294NHhfY2xpYWtzdGVzdDJiMzNrdQogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklWRU5EUVhkWFowRjNTVUpCWjBsUlJVRllVa0pzVWtSTWFqQjNha0pCZFRKMVUwaHJWRUZPUW1kcmNXaHJhVWM1ZHpCQ1FWRnpSa0ZFUVU0S1RWRnpkME5SV1VSV1VWRkVSWGRLYWxsVVFXVkdkekI1VFhwQk1rMXFhM2hOVkVsNFRXcEtZVVozTUhsT1ZFRXlUV3ByZUUxVVRYaE5ha3BoVFVSQmVBcEdla0ZXUW1kT1ZrSkJiMVJFYms0MVl6TlNiR0pVY0hSWldFNHdXbGhLZWsxU1ZYZEZkMWxFVmxGUlJFVjNlSFJaV0U0d1dsaEthbUpIYkd4aWJsRjNDbWRuU1dsTlFUQkhRMU54UjFOSllqTkVVVVZDUVZGVlFVRTBTVU5FZDBGM1oyZEpTMEZ2U1VOQlVVUkNjVkpPTnpBeFR5dFBUM0ZXYkdvd1pVcE9UbElLZVhZMU1DdFdaVTh2VURkWmJsVjJia0ZNTDNvNGRERjJVa1F3SzFCMGFVWnJaRWxCTjJkMmEzUnVjRVZyUnpCcU9EZEtTR1JRU1dVemNqTnhNbHBzYWdwbGRrMUhjSE50YVRRNVpGSklMMnhOTDNSM05WVlBPRTVRUjNWbFVtNXhNSFJ6UXpab09HMVRZakZ3YTJ0U2FrSklNRUZxVW5sWldIVm5SQzh6YjNwM0NqTlFOR2xxUzBSaGExaDVlSEoxZUhaQ1RYWTNNRk5rTTNnNWEzbDRjblF5TVU1aWEyaDZObGh5U1c0NVpFVjVZMjg1ZUc5a1kyVmhiaXRtY1ZWRlVVSUtObFpxVlROQ2RGVTRSSFZqUmxaVmRGaDBielpFV2s0eGQybHJObmRQWnk5c0sxWmtkbkZ3YUZoWWIzSklNMWxUS3pKamJXVnZjakIzV0ZCSVJHMXJXQXBKYVdsdFdqQmFNM05MYzFWYU4wTXpaMU5DZWxkNldVZEZka0ZwWjB4VlZIbDRXRWhzV1Raa2J6bDBOSFYzTHpWamQwTkVjVzh2WTFwamJTdGpWVkZrQ2treWRrZHVlRWRJT0RWNlVrRXdVVEY2TDNwMlpYbDBTMXBoZWt0alZqaHdOWFF2TnpsTE1rTndkMGs0UzA1SVdrbEhWak5pUW1WdVlqWklkemxQYjAwS1RHWkxlVTR5Y3l0bk9YbEtTMVJ0WmpsR2FFaG5UWG96T1VkRlJUZEJNV28yTmpZeVUzbFJTSHBFVDAxc2NuTXJjVTk1TTJsRGEwbDRNMFJHY21wTE53cHpWRWhLVEdKdWJVaEdkVEpXUTNSaWMxQlVkREV2VERkbWIyRjJSMmRIVWxCQ2J6WXJVVlpTT1VkQ1JrdzVSSEZIZUROU2QzcHJWSEJoVkVOalUySTJDalJIUVVST1kxRlNURkZWVGxSRVZYWmxlblpLWnpkUmFIWklSbVJTYlhSclNDOTVNVTFYVVdwVVJqVTBkblJXTjJOVE0wbDRSbVpFTUdSQ09TOVFVbXNLZDBwR2RETlJlbVJDUlc1MllYTXJNa1pxYmtZM2NrUTRRelIwWldJd1NHOVpSelUwU21keFZISllNVGRTYTBoUWVXOXlUbWxpYzA5cGJrRkJTbkpHUkFwWWMxcFZjRzlhVGtkS1FqZEtTV1I1TlhKdWNtbDNTVVJCVVVGQ2J6RlpkMVpFUVU5Q1owNVdTRkU0UWtGbU9FVkNRVTFEUW1GQmQwVjNXVVJXVWpCc0NrSkJkM2REWjFsSlMzZFpRa0pSVlVoQmQwbDNSRUZaUkZaU01GUkJVVWd2UWtGSmQwRkVRV1pDWjA1V1NGTk5SVWRFUVZkblFsSk1MMWRHZURWUFdFY0tXVzV0U21obE1HdHVXak5TYkVwclFtUnFRVTVDWjJ0eGFHdHBSemwzTUVKQlVYTkdRVUZQUTBGblJVRlpWM2x2VW04M1NESnJTRWhwV0VKWFoxUlBZUXBYV1dSWGVXdzBkM2xITkhFclJuSlFVREZaV1d0S05rZFJkMlU0VjFOelVWVTRhMFJSUjFCbU1ETTVWV014ZGxadGFrNDNMMEZ5VG5sd09EbGpZMnQzQ25kdWFucEJRVVIwZWtkVVVrWTRXVWxyT1hGTE5FWjNiRkpWT0VSMmNuRTBTMVZVUm1ScVF5dFhkalo2VkVzelFuQnlOVnB4TUd4UVNsRktMM05EZFZvS1YxZE5iMjlGT1RWM2Mwa3JkMVIxVUZWNmVXUlpZVmhGVVcxWlpuZHJTRzFUUVZreWEybEVhMDlaZUdzM1VXcHFOVFY2V0dkcU5rZzRZVVpsYm0wMU1Bb3hiRUZ0ZEU1SlF6ZFJiM05xYldkTFdFZDVMeXRuVGt3MlVrdHljRlpCTm1Od1EwRXpOSFpWVURsaWRuUk5Xa1pQYzIxc2MzWkZVbGdyVWtVNE9VeE5DbVF6WmxoV1FqZzFUMVp2VkdNM2JsSkJlRmR0Ym1WS2FIZ3ZSbVJCV2pSa1luUlVVVGhwU2paaldpdDVkMEZTWVRGbVpIcDZNbEpIVUVsUk1XTlhhbXdLYW14R2VYQXlWMFZWYUVWd1IxUkZhMDl6Y2t0SmFtUkdhRXRpWmpaRVpIbEpaVVJLWWxSUlRscGxkRmRZYjBWa1JtSTBTalJrTDA1VVYxcEtOMVpFYmdwaFpqTnBOa2RQZW5GV1lrOU1jelpYUWxsSFIxcFlPV001ZVdRemRqRmFMM05OZEhGdVkyMVRWMlkxZFRVdk5tdHVOR05JYkdwV1ZTdExPWFJsTVc5M0NsSkRkMDlLTmxkSGJuVmtVSFZUZDA1RlQzQXJlR1puYTJSbmNqZHFWbkI0VjJGRUwyY3hjM295Y2xoRlluQktjR3BrTWxscVNsRkhLMjFuVGtGU2JHVUtVRXR6UVVOVWVHcEVWMWhLYkhSMWNUaGliVzlEZFZST2FFd3hkbWMwYzJKa1JFTllkbWQzZG5oSE1XSjZWRmgyTWxOR2J6VTRXa2wyU2pSRFowZExid3A2VTJsSVpqaEdURlJOU214bU5UQlFhMlZ0UjFkMVVuTTRORzFzVDJkemJFcGFlREZITWxSU1VIZGFaMng2Y0dGWWJIQnljRk5DVDBwd1pHeDBjbWsxQ2tsNVRtbENXblpFUlROME0wcE9SR1o2WlVaaFJESlJQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MyZEpRa0ZCUzBOQlowVkJkMkZyVkdVNVRsUjJhbXB4YkZwWk9VaHBWRlJWWTNJclpGQnNXR3AyZWlzeVNqRk1OWGRETHpndlRHUmlNRkU1Q2xCcU4xbG9Xa2hUUVU4MFREVk1XalpTU2tKMFNTOVBlVkl6VkhsSWREWTVOblJ0V2xremNucENjV0pLYjNWUVdGVlNMelZVVURkalQxWkVka1JVZUhJS2JtdGFOblJNWWtGMWIyWkthMjA1WVZwS1JWbDNVamxCU1RCamJVWTNiMEV2T1RaTk9FNTZLMGx2ZVdjeWNFWTRjMkUzYzJKM1ZFd3JPVVZ1WkRobVdncE5jMkUzWkhSVVZ6VkpZeXRzTm5sS0wxaFNUVzVMVUdOaFNGaEliWEF2Ympac1FrVkJaV3haTVU1M1lsWlFRVGR1UWxaV1RGWTNZVTluTWxSa1kwbHdDazl6Ukc5UU5XWnNXR0kyY1ZsV01UWkxlRGt5UlhaMGJrcHVjVXM1VFVaNmVIYzFjRVo1U1c5d2JXUkhaRGREY2taSFpYZDBORVZuWXpGek1rSm9USGNLU1c5RE1VVTRjMVo0TlZkUGJtRlFZbVZNYzFBcldFMUJaelp4VUROSFdFcDJia1pGU0ZOT2NuaHdPRkpvTDA5ak1GRk9SVTVqTHpnM00zTnlVMjFYY3dwNWJrWm1TMlZpWmlzdlUzUm5jV05EVUVOcVVqSlRRbXhrTW5kWWNESXJhRGhRVkhGRVF6TjVjMnBrY2xCdlVHTnBVMnMxYmk5U1dWSTBSRTA1TDFKb0NrSlBkMDVaSzNWMWRHdHphMEk0ZDNwcVNtRTNVSEZxYzNRMFozQkRUV1IzZUdFMGVYVTNSWGg1VXpJMU5XaDRZblJzVVhKWE4wUXdOMlJtZVNzek5rY0tjbmh2UW10VWQyRlBkbXRHVldaU1oxSlRMMUUyYUhOa01HTk5OVVUyVjJ0M2JrVnRLM1ZDWjBGNldFVkZVekJHUkZWM01Vd3pjemQ1V1U4d1NXSjRlQXBZVlZweVdrSXZPSFJVUm10Sk1IaGxaVXczVm1VelJYUjVUVkpZZHpsSVVXWm1lakJhVFVOU1ltUXdUVE5SVWtvM01uSlFkR2haTlhobE5uY3ZRWFZNQ2xodE9VSTJSMEoxWlVOWlMyczJNVGxsTUZwQ2VqaHhTM3BaYlRkRWIzQjNRVU5oZUZFeE4wZFdTMkZIVkZKcFVXVjVVMGhqZFdFMU5qUnpRMEYzUlVFS1FWRkxRMEZuUlVGcGRpOVFSWG8xWjFOb1ZsTkZjVWgxU21wbGNWVllabEUwWVdGb0swOXBVVUp0ZDBsTlluRjRReXRwVTJ4VE1ESm5MMjVhYzFNd2VncDJVMVZsT1dvNFpsUlNNRmx4VVdobFQzSnRkVzEzWlcwMmRYcGhSWEpSU25kUmJIWnBia2hqWkhOaWNsTm9PVmhqTDBGeFZrdGhPRmMzVFdOdFdqZGxDbWRGVHpoSk1WY3pXRW94YTFacFJWaERVSE5zVmxSNFZsRldSemhsV21zd09IaHNZWHAxV2tSNVRXcFVkazhyUm1SaE0zVnNVMDlzVDNKUE0yeENaellLVlZoaVpFd3dTbEpJVGtWbWRVRktTWHBrVmxSMWFVUjRPVnBWT0RaME5WRjFlRGx6YjNFNU0wdGFWMHRQU0VaMlZYVkhlSEZKUkNzeFRWQnVUSFJZV1Fwa1JYWkpkMDhyTWtrd1QwZHVVMDVFUzNwUmFtcHVPVmh0VmxVemFYSnZhVEJUVlhCU0wyeFFTV1Z6TW5oTk9YbDFhbTFMWTJoMVpuSnFVVkpTUXpaekNqWkVOM0JUVXpVeE9WcGlWMXBYV0hONFdsSnFaek0yZG5GbWFHdFBVVWxSWlZkSlZFNXRVRE53YzNSMGVrTTRTblJQTUdWbVowY3pZa3RHWm5wdGFTOEtOWGw0TXpBMFpqSTVXakZVWWpnNWFsbEtlazlsV1hSc2FTczBlWGhhVm01aGFrODJaRVpRYzBZemQwWnRNMHRLTHpOV1JFMDNiVzVSYld0clIzazBXQXBYVFd0eGRVdHpRMVJaYm5KNlZFUlhhMGM0TmxOcGRqbHdOMHBRU0ZORE0wWTJialYzWlRWRFpXMDNXSEJCZVRaU1JFRkNNMEpFUWtwTkwzWmFkR2hFQ2pWQlZUVjJTRFYwUkVVNFJFUXlPRmhPUTA5ME5IWXZZVzFVTHpNM01UVkhkVEpKS3pJelZDdFFOVU5ITDJaelV6ZGlZbVJLU3l0alpERTVjRVk1V0RnS2R6UTVPSHBrVkVWbFdITmtORFpJTW01emRtdFZibE5wU2tsMmJ6TkJXVkJGZDBWRmEzRjBZemhaTTJ3eVIzWjFNMHh1WkVKRVJVSTBUVGxvUkZwU1J3cEVWalpWT1hwV016VndhbEpwWWs1SWEyZGhWWGMxU1dWbU0zUTJTa1pzU25VME0xUXdRbXM0TTI5aVlVOVZXbTkxU2tWRFoyZEZRa0ZPWjJKUmREVlJDalJMYWpRNU5tczJibE4wZWpsbmNIaExaRFJKVlZSUFlpODJRMmxhYVVkTmEzVjZRa1U1WmtOWGFVUnhNa3R3VVNzNGFrZG5RVzlCWXpKWVN5OVBObFVLTUhwTVVUQXpNRFpwTm5od1FUaFBVR2hDYWpCVk1XaFNNWGRMUkVwYWJrVXhZVGxWZUVOak1ra3phRUZ6U1cxelUySkhSbVpDYUVsQmJYUkNXa3hNYkFvMFZVRk9TMFY2TldRMk4xZG5ibUZIYm5sWVVtOVROMUpTUVZjd2VsWjNXbFo1YWpsNGFWWkdhMWRVVFRnM05GbHBkMlpNVFVkblpUSnhaM1JMTlhKb0NrcHNSMjFvU2pkT1lVRXhjaXMyTkRkNFNtRlBSMk5UV0hGQlpDdFliSFV2YW5ka2RXVXlTVWM1TVZsak16TklZbFptU0VaclJHNTJlSGxHTUU1M2RYRUtZVU52WkdSQ01XcGxabWsyWlRGWmQwNXBaakJOUTJWUE1qazFWbXhEZG5oNFdtcDFjbnBvVEhBdlRuUTNSV0Y1ZERBcmVGRnBWekpEZG5aeFpsVjNkQXAxU1ZCdE4xVTJUM2d3UmtRMmRVMURaMmRGUWtGUFZuQkVMMjVtU1doMFdGRlhhSE5rYjNKT09IbzVOazg1TjNOamFUaElSak5FYlhBcmMxaFZTVVJ2Q2tOekx6WXpibkFyTTBKU2JXaFJXSEJoYTFNcmJsZEZkakl6TlRjM00wdDBVa2hDWWl0S016RlpZbko2V1V0dE1pdDNhbnBwTWtGQ1ZsZDRjVlJsY3prS0wwMXBiMU0yVDNWRGFIVjZLMUEzWWtOSVVGUXdTa3RWTlcxdlIybHNSQ3RMWWxac2JHMTJSRlJNVG5ORE0wRnFMek5RYUhKMllXSjVUVkJ4ZVdoSFdncEtOV0Y1YlhSU2NsUXlUMXBvWlZFd1dDdEhiak41VDNsaGNsaFlVRUZPWjJwcE5VWlBVaXRtWTBsV09YTjVUVElyYVZaTk1XUmFXVTlWTW10MVdFWkhDa3gyUjNOV1JGRlhibU5KTVRCaGNGRkxUVUZvYnpoemJISlVTelpVVmpCRFRXZDBjVzR3V20xWk5tOVhjR1ZPYVVwRFZXNURVVk5XWVZsR2RIUm9ja29LTkRVNFIySnJTbFZrTUVkTlUwZHJiWE5VUm1OSmVtRmlXbXdyVW10VGJXeE1NbU5YUWxOUmVVWlVhME5uWjBWQldIWkVZa1k0UTBGamNuVjFWVzVMYkFwNVoyeFFPWEJhZDNoc1RIaEhZazVZVVhOTlYwTXpZM1YwVlZNNU5uWlJMMnhIWVZsbFdISkxiM2hLVWk5b1RHdHVOM1p0UlhkeVpraHNkMUZFWkhoRENuTkxVVk5QTUVFMU1FcDZSMWxQTjFSbWR6aFBNMlJrVkRaWmRHTkJZalJRU25reVJWbFlaVWhwU3pSVlRISmhNRWRXY2twWGNUaFVibTluY0ZKSFpqQUtOVXRNYnk5b2JESnZZVGRRUjFSd2JXNHZjMjF1VjJWcmJYbFhhV1kwTVc5eGRHY3ZNMU4yTjB0S2JHb3dkSEEzVWxwa1UzRlBRbmhpVkRKNU1XWkdNd296VXpKeWFrbG9SbVppT1VGSmRGcGtkell3U1RFeFdEVkRSa3hLWTJVclRtbG5PVEZQZUdkYVZXWmFlSFp2U2xKQllXMUZOVmROWjBWRFExRmxjbXBTQ2xKVGVtOU5jREZNY2xwSWFEbG1PRlpMVlVJdmMwTTJkbTFPYVVSemFpOUxjMWNyUW1ScE0yUjVkVEJrUjIxUk0zWjVWSFJzZVVsbVFtaFFWaTlqVmswS1ZrdG1OVGhSUzBOQlVVVkJNelZwWWtoaGRrSnFiWGh3VEN0SmJsWXZjVXg2TlRkUWJ5dE9Ta1l4VlU5SU9XaDNZV00xTjJoSGFXeDNWR2dyYURFMFJ3cEhNSGRuT0hwWmFHZFpaRmd4VmxoVU1WWXZkV0pvVFRZeFZtbFBOVlZaTlZSM1NGQm5VbkkzWVdsdlZpdHBhbE51WVhsMU4xVXljR2c1YldkbU5WRjBDaTltY0ZsQlpUVjVUM0JMUldjMWJteFRaMjA1TTJ4ellsRTVXVlF5YTNselFWZFRXbU5XT1d0eFFXMWlaMjVyYzBsUGFFTnpkM2hZWW1GWUwwTnVUR1FLUjJaTFZXTlhkM0V4T0VoTE1YWjNZWHBqYkU5clQzZFlTMFJ2U1VKNU5XSmxXVU5sYWxGQlZYQjVOVkZpVnpOdWVrTnNNVXBXWVVkbmNqWTBRVEY2V0FwMmJXRXJVMEZYUVRodFRGaFNhbFZsY205aGRYbExlRkJKY0d3eFZFTlRXR3g2ZDJwNU5DOXZUWFF6ZEVORE5tOWxjVWcwUkM5M1pXZDFlVGx2Y1VNMENqWTBXbFJRVlcxa1FYTk5UeTk2V2xCbVZ6Vm1NR1owVTFSSFRrWTVOVlp2TkZGTFEwRlJSVUZ4Y25velEwdG1ZMUowYTFOT2RVMTFkbVpMVFRaMFpVVUtlbGN2Y2xSRVRFazRkR05DTXpGc1QyUlNaMUE1WjBoaFVGUkVSWGxUTXlzNWJHcEVReko1UWxKSk5rcHJZblUxZDNSQmFUTk5jbXRFZUVSaVRXWlFVZ3AyY0RONllYSTFPVkF6SzNjMWFUTmhOVk5CYWxSTVRVaEJkR3hLSzJwNmVsTm9VMGxuUmxwNE4zUTBZbXR2VGpFMVRuZ3hPRU56Ylc5Sll6aHBORkpPQ21SMGNuaEhZbmxxUkV3MWEwMHdOVVV6VmtoU2JtcGhkbkEyWkN0NFNFTmhOVXd6TW1aME1VaDVWWGhWUVdaSE0zUk9ObFZyYURsc2IxSXdNblZTUjNZS1Uxa3dSVXB4UVZGRFVHOURWMFZ4YjNOYVZEUXJUQzl0Y1dOdVdWSlhOSE15UzFSM1pEVkRkWEJzZG1Kb04wWndSR3BZVmxCUlZFWlhTbmRVY1Zwa1NBcGxTbmx6YlhkdVZtRXpWR3BCVW5VMk0yNVRTbFI0WlRGUFMwVk9TemN6U21WQmFqTmlSMGN4YmtwTVQxaEdObFpwTW5wR1ozcG5jME5NYWpScFp6MDlDaTB0TFMwdFJVNUVJRkpUUVNCUVVrbFdRVlJGSUV0RldTMHRMUzB0Q2c9PQogICAgdG9rZW46IDFjYmtjdmNkdW9pejl3anQxazlycjJmNTY3NjRsNTNjdW5mMmVjcndvbnFrNXZseHN3bHFoeXd3MDdnMHFwODNqYmM3NTk0ODN1ajQ5dGNuYWt3ZXJ3NTF3MWE4bTVtOWh6YnJlMTdsOWNsbmJ2ZjgwcWZoYzBodGxkb3hveDg5Cg==\"\n + \ }\n ]\n }" headers: cache-control: - no-cache content-length: - - '13084' + - '13096' content-type: - application/json date: - - Fri, 16 Jun 2023 00:49:35 GMT + - Thu, 29 Jun 2023 11:35:44 GMT expires: - '-1' pragma: @@ -825,25 +917,25 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-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.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ - : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\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 }" + 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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n + }" headers: cache-control: - no-cache @@ -852,7 +944,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:49:37 GMT + - Thu, 29 Jun 2023 11:35:44 GMT expires: - '-1' pragma: @@ -893,28 +985,27 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.19.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/c360b5f9-b950-4995-bf76-94b0b3cc7c73?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d62450e1-814a-4aa2-b5fa-a39fa236e968?api-version=2016-03-30 cache-control: - no-cache content-length: @@ -922,7 +1013,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:49:42 GMT + - Thu, 29 Jun 2023 11:35:48 GMT expires: - '-1' pragma: @@ -952,14 +1043,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d62450e1-814a-4aa2-b5fa-a39fa236e968?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 }" + string: "{\n \"name\": \"e15024d6-4a81-a24a-b5fa-a39fa236e968\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:35:49.0818662Z\"\n }" headers: cache-control: - no-cache @@ -968,7 +1059,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:49:42 GMT + - Thu, 29 Jun 2023 11:35:48 GMT expires: - '-1' pragma: @@ -1000,14 +1091,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d62450e1-814a-4aa2-b5fa-a39fa236e968?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 }" + string: "{\n \"name\": \"e15024d6-4a81-a24a-b5fa-a39fa236e968\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:35:49.0818662Z\"\n }" headers: cache-control: - no-cache @@ -1016,7 +1107,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:50:12 GMT + - Thu, 29 Jun 2023 11:36:18 GMT expires: - '-1' pragma: @@ -1048,14 +1139,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d62450e1-814a-4aa2-b5fa-a39fa236e968?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 }" + string: "{\n \"name\": \"e15024d6-4a81-a24a-b5fa-a39fa236e968\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:35:49.0818662Z\"\n }" headers: cache-control: - no-cache @@ -1064,7 +1155,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:50:42 GMT + - Thu, 29 Jun 2023 11:36:48 GMT expires: - '-1' pragma: @@ -1096,14 +1187,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d62450e1-814a-4aa2-b5fa-a39fa236e968?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 }" + string: "{\n \"name\": \"e15024d6-4a81-a24a-b5fa-a39fa236e968\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:35:49.0818662Z\"\n }" headers: cache-control: - no-cache @@ -1112,7 +1203,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:51:12 GMT + - Thu, 29 Jun 2023 11:37:19 GMT expires: - '-1' pragma: @@ -1144,14 +1235,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d62450e1-814a-4aa2-b5fa-a39fa236e968?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 }" + string: "{\n \"name\": \"e15024d6-4a81-a24a-b5fa-a39fa236e968\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:35:49.0818662Z\"\n }" headers: cache-control: - no-cache @@ -1160,7 +1251,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:51:43 GMT + - Thu, 29 Jun 2023 11:37:49 GMT expires: - '-1' pragma: @@ -1192,14 +1283,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d62450e1-814a-4aa2-b5fa-a39fa236e968?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 }" + string: "{\n \"name\": \"e15024d6-4a81-a24a-b5fa-a39fa236e968\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:35:49.0818662Z\"\n }" headers: cache-control: - no-cache @@ -1208,7 +1299,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:52:14 GMT + - Thu, 29 Jun 2023 11:38:19 GMT expires: - '-1' pragma: @@ -1240,14 +1331,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d62450e1-814a-4aa2-b5fa-a39fa236e968?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 }" + string: "{\n \"name\": \"e15024d6-4a81-a24a-b5fa-a39fa236e968\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:35:49.0818662Z\"\n }" headers: cache-control: - no-cache @@ -1256,7 +1347,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:52:44 GMT + - Thu, 29 Jun 2023 11:38:49 GMT expires: - '-1' pragma: @@ -1288,15 +1379,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d62450e1-814a-4aa2-b5fa-a39fa236e968?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 }" + string: "{\n \"name\": \"e15024d6-4a81-a24a-b5fa-a39fa236e968\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:35:49.0818662Z\",\n \"endTime\": + \"2023-06-29T11:39:17.3644898Z\"\n }" headers: cache-control: - no-cache @@ -1305,7 +1396,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:53:13 GMT + - Thu, 29 Jun 2023 11:39:19 GMT expires: - '-1' pragma: @@ -1337,25 +1428,24 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -1364,7 +1454,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:53:14 GMT + - Thu, 29 Jun 2023 11:39:20 GMT expires: - '-1' pragma: @@ -1396,25 +1486,24 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -1423,7 +1512,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:53:17 GMT + - Thu, 29 Jun 2023 11:39:21 GMT expires: - '-1' pragma: @@ -1432,10 +1521,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -1465,28 +1550,27 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.19.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/1daf5740-2054-46e7-83b6-6de96b8d4d54?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5385e9a9-91ab-4113-adf5-0e002858649a?api-version=2016-03-30 cache-control: - no-cache content-length: @@ -1494,7 +1578,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:53:21 GMT + - Thu, 29 Jun 2023 11:39:25 GMT expires: - '-1' pragma: @@ -1503,14 +1587,10 @@ 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' + - '1198' status: code: 200 message: OK @@ -1528,14 +1608,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5385e9a9-91ab-4113-adf5-0e002858649a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4057af1d-5420-e746-83b6-6de96b8d4d54\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T00:53:22.2098283Z\"\n }" + string: "{\n \"name\": \"a9e98553-ab91-1341-adf5-0e002858649a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:39:25.8014849Z\"\n }" headers: cache-control: - no-cache @@ -1544,7 +1624,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:53:21 GMT + - Thu, 29 Jun 2023 11:39:25 GMT expires: - '-1' pragma: @@ -1553,10 +1633,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -1576,14 +1652,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5385e9a9-91ab-4113-adf5-0e002858649a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4057af1d-5420-e746-83b6-6de96b8d4d54\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T00:53:22.2098283Z\"\n }" + string: "{\n \"name\": \"a9e98553-ab91-1341-adf5-0e002858649a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:39:25.8014849Z\"\n }" headers: cache-control: - no-cache @@ -1592,7 +1668,51 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 00:53:51 GMT + - Thu, 29 Jun 2023 11:39:55 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 nodepool scale + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5385e9a9-91ab-4113-adf5-0e002858649a?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"a9e98553-ab91-1341-adf5-0e002858649a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:39:25.8014849Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:40:25 GMT expires: - '-1' pragma: @@ -1601,10 +1721,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -1624,15 +1740,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5385e9a9-91ab-4113-adf5-0e002858649a?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"a9e98553-ab91-1341-adf5-0e002858649a\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:39:25.8014849Z\",\n \"endTime\": + \"2023-06-29T11:40:44.4419701Z\"\n }" headers: cache-control: - no-cache @@ -1641,7 +1757,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 01:11:07 GMT + - Thu, 29 Jun 2023 11:40:55 GMT expires: - '-1' pragma: @@ -1650,10 +1766,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -1673,25 +1785,24 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -1700,7 +1811,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 01:11:08 GMT + - Thu, 29 Jun 2023 11:40:56 GMT expires: - '-1' pragma: @@ -1709,10 +1820,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -1732,25 +1839,24 @@ interactions: ParameterSetName: - --resource-group --cluster-name --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -1759,7 +1865,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 01:11:09 GMT + - Thu, 29 Jun 2023 11:40:58 GMT expires: - '-1' pragma: @@ -1768,10 +1874,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -1791,25 +1893,24 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -1818,7 +1919,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 01:11:11 GMT + - Thu, 29 Jun 2023 11:40:58 GMT expires: - '-1' pragma: @@ -1860,28 +1961,27 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.19.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/a58dcf27-d92f-4279-93d4-a6c162f4616c?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d5eda0c6-f4b7-4408-9af5-eb055db39181?api-version=2016-03-30 cache-control: - no-cache content-length: @@ -1889,7 +1989,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 01:11:16 GMT + - Thu, 29 Jun 2023 11:41:03 GMT expires: - '-1' pragma: @@ -1923,23 +2023,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d5eda0c6-f4b7-4408-9af5-eb055db39181?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"27cf8da5-2fd9-7942-93d4-a6c162f4616c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T01:11:16.618512Z\"\n }" + string: "{\n \"name\": \"c6a0edd5-b7f4-0844-9af5-eb055db39181\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:41:03.5986495Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 01:11:16 GMT + - Thu, 29 Jun 2023 11:41:03 GMT expires: - '-1' pragma: @@ -1971,23 +2071,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d5eda0c6-f4b7-4408-9af5-eb055db39181?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"27cf8da5-2fd9-7942-93d4-a6c162f4616c\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T01:11:16.618512Z\"\n }" + string: "{\n \"name\": \"c6a0edd5-b7f4-0844-9af5-eb055db39181\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:41:03.5986495Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 01:11:46 GMT + - Thu, 29 Jun 2023 11:41:33 GMT expires: - '-1' pragma: @@ -2019,24 +2119,72 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d5eda0c6-f4b7-4408-9af5-eb055db39181?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"c6a0edd5-b7f4-0844-9af5-eb055db39181\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:41:03.5986495Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:42: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 nodepool scale + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d5eda0c6-f4b7-4408-9af5-eb055db39181?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"c6a0edd5-b7f4-0844-9af5-eb055db39181\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:41:03.5986495Z\",\n \"endTime\": + \"2023-06-29T11:42:22.1480628Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' content-type: - application/json date: - - Fri, 16 Jun 2023 01:12:16 GMT + - Thu, 29 Jun 2023 11:42:34 GMT expires: - '-1' pragma: @@ -2068,25 +2216,24 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -2095,7 +2242,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 01:12:17 GMT + - Thu, 29 Jun 2023 11:42:34 GMT expires: - '-1' pragma: @@ -2127,25 +2274,24 @@ interactions: ParameterSetName: - --resource-group --cluster-name --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -2154,7 +2300,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 01:12:19 GMT + - Thu, 29 Jun 2023 11:42:35 GMT expires: - '-1' pragma: @@ -2188,8 +2334,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/cliakstest000001?api-version=2023-05-01 response: @@ -2197,17 +2343,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1dcc0415-01e7-468e-8685-d1a9e9eb5729?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Fri, 16 Jun 2023 01:12:22 GMT + - Thu, 29 Jun 2023 11:42:36 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/1dcc0415-01e7-468e-8685-d1a9e9eb5729?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_snapshot.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_snapshot.yaml index a67adbd19bf..5f9d883328e 100644 --- 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,31 +13,30 @@ interactions: ParameterSetName: - -l --query User-Agent: - - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.10.11 - (Linux-5.15.0-1040-azure-x86_64-with) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/kubernetesVersions?api-version=2023-05-01 response: body: - 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 \"1.27.1\"\n ]\n },\n \"1.26.3\"\ - : {\n \"upgrades\": [\n \"1.27.1\"\n ]\n }\n }\n \ - \ },\n {\n \"version\": \"1.27\",\n \"capabilities\": {\n \"supportPlan\"\ - : [\n \"KubernetesOfficial\",\n \"AKSLongTermSupport\"\n ]\n\ - \ },\n \"patchVersions\": {\n \"1.27.1\": {\n \"upgrades\"\ - : []\n }\n }\n }\n ]\n }" + string: "{\n \"values\": [\n {\n \"version\": \"1.27\",\n \"capabilities\": + {\n \"supportPlan\": [\n \"KubernetesOfficial\",\n \"AKSLongTermSupport\"\n + \ ]\n },\n \"patchVersions\": {\n \"1.27.1\": {\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.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.27.1\",\n \"1.26.3\"\n + \ ]\n },\n \"1.26.3\": {\n \"upgrades\": [\n \"1.27.1\"\n + \ ]\n }\n }\n }\n ]\n }" headers: cache-control: - no-cache @@ -46,7 +45,7 @@ interactions: content-type: - application/json date: - - Wed, 28 Jun 2023 20:50:40 GMT + - Fri, 07 Jul 2023 06:00:00 GMT expires: - '-1' pragma: @@ -79,8 +78,8 @@ interactions: - --resource-group --name --location --nodepool-name --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.10.11 - (Linux-5.15.0-1040-azure-x86_64-with) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-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-05-01 response: @@ -96,7 +95,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 28 Jun 2023 20:50:40 GMT + - Fri, 07 Jul 2023 06:00:00 GMT expires: - '-1' pragma: @@ -112,18 +111,19 @@ interactions: message: Not Found - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestaqukwotht-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestabfuiyvtk-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": "c000004"}], "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": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC28bF/jQji1zwuET5fLGyMbujQwBWtHamn3qDrTK2TrPp209TgXJorftZZ7AfMF5XhN1QVd/4Ong3kE9B4RDMSaEwQaLkFEM4Y87w6eowwgoEri1XPX5yy/gkpeS8FMRhGLve19MDucQFlW/CLU7dsWKgqKu5MF+lqQQvfasLuDnCho0IpPNy3f0VrMruuAi9WAaWBUzmcF/UWly+tBZFpY90A4vOyqYAmbDJ5rMBJuJlQQJweTuTkqggG97GP/h+hO2V/kYK0lFMtH12zL8TTQvQkl/627TRgY1LteOHkYC2XYYv6LCtf+MEPPh3Fei6jUlTiighFBuo4ZwWI5nVZ + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {}}}' headers: Accept: - application/json @@ -134,70 +134,68 @@ interactions: Connection: - keep-alive Content-Length: - - '1749' + - '1420' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --nodepool-name --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.10.11 - (Linux-5.15.0-1040-azure-x86_64-with) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-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-05-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-clitestaqukwotht-8ecadf\",\n\ - \ \"fqdn\": \"cliakstest-clitestaqukwotht-8ecadf-g7qziql9.hcp.westus2.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitestaqukwotht-8ecadf-g7qziql9.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.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 \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestabfuiyvtk-79a739\",\n \"fqdn\": \"cliakstest-clitestabfuiyvtk-79a739-77mos02n.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestabfuiyvtk-79a739-77mos02n.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.26.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC28bF/jQji1zwuET5fLGyMbujQwBWtHamn3qDrTK2TrPp209TgXJorftZZ7AfMF5XhN1QVd/4Ong3kE9B4RDMSaEwQaLkFEM4Y87w6eowwgoEri1XPX5yy/gkpeS8FMRhGLve19MDucQFlW/CLU7dsWKgqKu5MF+lqQQvfasLuDnCho0IpPNy3f0VrMruuAi9WAaWBUzmcF/UWly+tBZFpY90A4vOyqYAmbDJ5rMBJuJlQQJweTuTkqggG97GP/h+hO2V/kYK0lFMtH12zL8TTQvQkl/627TRgY1LteOHkYC2XYYv6LCtf+MEPPh3Fei6jUlTiighFBuo4ZwWI5nVZ + azcli_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 + \ \"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/119ca0aa-9254-4d01-8e56-dc47c0051b71?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0aa39e8-909f-4fb6-9520-7ba12c496cb0?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3594' + - '3265' content-type: - application/json date: - - Wed, 28 Jun 2023 20:50:45 GMT + - Fri, 07 Jul 2023 06:00:08 GMT expires: - '-1' pragma: @@ -228,14 +226,14 @@ interactions: - --resource-group --name --location --nodepool-name --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.10.11 - (Linux-5.15.0-1040-azure-x86_64-with) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/119ca0aa-9254-4d01-8e56-dc47c0051b71?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0aa39e8-909f-4fb6-9520-7ba12c496cb0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"aaa09c11-5492-014d-8e56-dc47c0051b71\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-28T20:50:45.1510772Z\"\n }" + string: "{\n \"name\": \"e839aac0-9f90-b64f-9520-7ba12c496cb0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-07-07T06:00:08.1666174Z\"\n }" headers: cache-control: - no-cache @@ -244,7 +242,7 @@ interactions: content-type: - application/json date: - - Wed, 28 Jun 2023 20:50:45 GMT + - Fri, 07 Jul 2023 06:00:08 GMT expires: - '-1' pragma: @@ -277,14 +275,14 @@ interactions: - --resource-group --name --location --nodepool-name --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.10.11 - (Linux-5.15.0-1040-azure-x86_64-with) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/119ca0aa-9254-4d01-8e56-dc47c0051b71?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0aa39e8-909f-4fb6-9520-7ba12c496cb0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"aaa09c11-5492-014d-8e56-dc47c0051b71\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-28T20:50:45.1510772Z\"\n }" + string: "{\n \"name\": \"e839aac0-9f90-b64f-9520-7ba12c496cb0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-07-07T06:00:08.1666174Z\"\n }" headers: cache-control: - no-cache @@ -293,7 +291,7 @@ interactions: content-type: - application/json date: - - Wed, 28 Jun 2023 20:51:15 GMT + - Fri, 07 Jul 2023 06:00:38 GMT expires: - '-1' pragma: @@ -326,14 +324,14 @@ interactions: - --resource-group --name --location --nodepool-name --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.10.11 - (Linux-5.15.0-1040-azure-x86_64-with) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/119ca0aa-9254-4d01-8e56-dc47c0051b71?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0aa39e8-909f-4fb6-9520-7ba12c496cb0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"aaa09c11-5492-014d-8e56-dc47c0051b71\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-28T20:50:45.1510772Z\"\n }" + string: "{\n \"name\": \"e839aac0-9f90-b64f-9520-7ba12c496cb0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-07-07T06:00:08.1666174Z\"\n }" headers: cache-control: - no-cache @@ -342,7 +340,7 @@ interactions: content-type: - application/json date: - - Wed, 28 Jun 2023 20:51:45 GMT + - Fri, 07 Jul 2023 06:01:08 GMT expires: - '-1' pragma: @@ -375,14 +373,14 @@ interactions: - --resource-group --name --location --nodepool-name --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.10.11 - (Linux-5.15.0-1040-azure-x86_64-with) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/119ca0aa-9254-4d01-8e56-dc47c0051b71?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0aa39e8-909f-4fb6-9520-7ba12c496cb0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"aaa09c11-5492-014d-8e56-dc47c0051b71\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-28T20:50:45.1510772Z\"\n }" + string: "{\n \"name\": \"e839aac0-9f90-b64f-9520-7ba12c496cb0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-07-07T06:00:08.1666174Z\"\n }" headers: cache-control: - no-cache @@ -391,7 +389,7 @@ interactions: content-type: - application/json date: - - Wed, 28 Jun 2023 20:52:14 GMT + - Fri, 07 Jul 2023 06:01:38 GMT expires: - '-1' pragma: @@ -424,14 +422,14 @@ interactions: - --resource-group --name --location --nodepool-name --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.10.11 - (Linux-5.15.0-1040-azure-x86_64-with) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/119ca0aa-9254-4d01-8e56-dc47c0051b71?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0aa39e8-909f-4fb6-9520-7ba12c496cb0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"aaa09c11-5492-014d-8e56-dc47c0051b71\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-28T20:50:45.1510772Z\"\n }" + string: "{\n \"name\": \"e839aac0-9f90-b64f-9520-7ba12c496cb0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-07-07T06:00:08.1666174Z\"\n }" headers: cache-control: - no-cache @@ -440,7 +438,7 @@ interactions: content-type: - application/json date: - - Wed, 28 Jun 2023 20:52:45 GMT + - Fri, 07 Jul 2023 06:02:09 GMT expires: - '-1' pragma: @@ -473,14 +471,14 @@ interactions: - --resource-group --name --location --nodepool-name --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.10.11 - (Linux-5.15.0-1040-azure-x86_64-with) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/119ca0aa-9254-4d01-8e56-dc47c0051b71?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0aa39e8-909f-4fb6-9520-7ba12c496cb0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"aaa09c11-5492-014d-8e56-dc47c0051b71\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-28T20:50:45.1510772Z\"\n }" + string: "{\n \"name\": \"e839aac0-9f90-b64f-9520-7ba12c496cb0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-07-07T06:00:08.1666174Z\"\n }" headers: cache-control: - no-cache @@ -489,7 +487,7 @@ interactions: content-type: - application/json date: - - Wed, 28 Jun 2023 20:53:15 GMT + - Fri, 07 Jul 2023 06:02:39 GMT expires: - '-1' pragma: @@ -522,14 +520,14 @@ interactions: - --resource-group --name --location --nodepool-name --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.10.11 - (Linux-5.15.0-1040-azure-x86_64-with) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/119ca0aa-9254-4d01-8e56-dc47c0051b71?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0aa39e8-909f-4fb6-9520-7ba12c496cb0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"aaa09c11-5492-014d-8e56-dc47c0051b71\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-28T20:50:45.1510772Z\"\n }" + string: "{\n \"name\": \"e839aac0-9f90-b64f-9520-7ba12c496cb0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-07-07T06:00:08.1666174Z\"\n }" headers: cache-control: - no-cache @@ -538,7 +536,7 @@ interactions: content-type: - application/json date: - - Wed, 28 Jun 2023 20:53:45 GMT + - Fri, 07 Jul 2023 06:03:09 GMT expires: - '-1' pragma: @@ -571,15 +569,211 @@ interactions: - --resource-group --name --location --nodepool-name --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.10.11 - (Linux-5.15.0-1040-azure-x86_64-with) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/119ca0aa-9254-4d01-8e56-dc47c0051b71?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0aa39e8-909f-4fb6-9520-7ba12c496cb0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"aaa09c11-5492-014d-8e56-dc47c0051b71\",\n \"status\"\ - : \"Succeeded\",\n \"startTime\": \"2023-06-28T20:50:45.1510772Z\",\n \"\ - endTime\": \"2023-06-28T20:54:06.4232251Z\"\n }" + string: "{\n \"name\": \"e839aac0-9f90-b64f-9520-7ba12c496cb0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-07-07T06:00:08.1666174Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Fri, 07 Jul 2023 06: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 --nodepool-name --node-count --ssh-key-value + -o + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0aa39e8-909f-4fb6-9520-7ba12c496cb0?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"e839aac0-9f90-b64f-9520-7ba12c496cb0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-07-07T06:00:08.1666174Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Fri, 07 Jul 2023 06:04: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 --nodepool-name --node-count --ssh-key-value + -o + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0aa39e8-909f-4fb6-9520-7ba12c496cb0?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"e839aac0-9f90-b64f-9520-7ba12c496cb0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-07-07T06:00:08.1666174Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Fri, 07 Jul 2023 06: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 --nodepool-name --node-count --ssh-key-value + -o + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0aa39e8-909f-4fb6-9520-7ba12c496cb0?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"e839aac0-9f90-b64f-9520-7ba12c496cb0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-07-07T06:00:08.1666174Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Fri, 07 Jul 2023 06:05: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 --nodepool-name --node-count --ssh-key-value + -o + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0aa39e8-909f-4fb6-9520-7ba12c496cb0?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"e839aac0-9f90-b64f-9520-7ba12c496cb0\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-07-07T06:00:08.1666174Z\",\n \"endTime\": + \"2023-07-07T06:05:39.6047708Z\"\n }" headers: cache-control: - no-cache @@ -588,7 +782,7 @@ interactions: content-type: - application/json date: - - Wed, 28 Jun 2023 20:54:16 GMT + - Fri, 07 Jul 2023 06:05:39 GMT expires: - '-1' pragma: @@ -621,66 +815,63 @@ interactions: - --resource-group --name --location --nodepool-name --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.10.11 - (Linux-5.15.0-1040-azure-x86_64-with) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-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-05-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-clitestaqukwotht-8ecadf\",\n\ - \ \"fqdn\": \"cliakstest-clitestaqukwotht-8ecadf-g7qziql9.hcp.westus2.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitestaqukwotht-8ecadf-g7qziql9.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.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 \"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/1aca0d4e-7f92-4e4d-8ae9-c98db3c1a257\"\ - \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ - : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ - \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestabfuiyvtk-79a739\",\n \"fqdn\": \"cliakstest-clitestabfuiyvtk-79a739-77mos02n.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestabfuiyvtk-79a739-77mos02n.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.26.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC28bF/jQji1zwuET5fLGyMbujQwBWtHamn3qDrTK2TrPp209TgXJorftZZ7AfMF5XhN1QVd/4Ong3kE9B4RDMSaEwQaLkFEM4Y87w6eowwgoEri1XPX5yy/gkpeS8FMRhGLve19MDucQFlW/CLU7dsWKgqKu5MF+lqQQvfasLuDnCho0IpPNy3f0VrMruuAi9WAaWBUzmcF/UWly+tBZFpY90A4vOyqYAmbDJ5rMBJuJlQQJweTuTkqggG97GP/h+hO2V/kYK0lFMtH12zL8TTQvQkl/627TRgY1LteOHkYC2XYYv6LCtf+MEPPh3Fei6jUlTiighFBuo4ZwWI5nVZ + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/ca44c63e-caf0-4303-a0a1-8922e3d3defa\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4247' + - '3918' content-type: - application/json date: - - Wed, 28 Jun 2023 20:54:16 GMT + - Fri, 07 Jul 2023 06:05:40 GMT expires: - '-1' pragma: @@ -712,13 +903,12 @@ interactions: ParameterSetName: - --resource-group --name --location --nodepool-id -o User-Agent: - - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 - (Linux-5.15.0-1040-azure-x86_64-with) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1041-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_nodepool_snapshot","date":"2023-06-28T20:50:38Z","module":"acs"},"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_snapshot","date":"2023-07-07T05:59:58Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -727,7 +917,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 28 Jun 2023 20:54:16 GMT + - Fri, 07 Jul 2023 06:05:41 GMT expires: - '-1' pragma: @@ -761,33 +951,33 @@ interactions: ParameterSetName: - --resource-group --name --location --nodepool-id -o User-Agent: - - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.10.11 - (Linux-5.15.0-1040-azure-x86_64-with) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006?api-version=2023-05-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\": \"charlili@microsoft.com\"\ - ,\n \"createdByType\": \"User\",\n \"createdAt\": \"2023-06-28T20:54:17.3833822Z\"\ - ,\n \"lastModifiedBy\": \"charlili@microsoft.com\",\n \"lastModifiedByType\"\ - : \"User\",\n \"lastModifiedAt\": \"2023-06-28T20:54:17.3833822Z\"\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.13.0\"\ - ,\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\": \"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d\",\n + \ \"createdByType\": \"Application\",\n \"createdAt\": \"2023-07-07T06:05:43.2065379Z\",\n + \ \"lastModifiedBy\": \"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d\",\n \"lastModifiedByType\": + \"Application\",\n \"lastModifiedAt\": \"2023-07-07T06:05:43.2065379Z\"\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.26.0\",\n \"osType\": + \"Linux\",\n \"osSku\": \"Ubuntu\",\n \"vmSize\": \"Standard_DS2_v2\"\n + \ }\n }" headers: cache-control: - no-cache content-length: - - '972' + - '1014' content-type: - application/json date: - - Wed, 28 Jun 2023 20:54:17 GMT + - Fri, 07 Jul 2023 06:05:43 GMT expires: - '-1' pragma: @@ -825,33 +1015,33 @@ interactions: ParameterSetName: - --resource-group --name --tags -o User-Agent: - - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.10.11 - (Linux-5.15.0-1040-azure-x86_64-with) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006?api-version=2023-05-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 \"tags\": {\n \"test\": \"value\"\n },\n \"systemData\"\ - : {\n \"createdBy\": \"charlili@microsoft.com\",\n \"createdByType\":\ - \ \"User\",\n \"createdAt\": \"2023-06-28T20:54:17.3833822Z\",\n \"lastModifiedBy\"\ - : \"charlili@microsoft.com\",\n \"lastModifiedByType\": \"User\",\n \"\ - lastModifiedAt\": \"2023-06-28T20:54:17.3833822Z\"\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.13.0\"\ - ,\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 + \ \"tags\": {\n \"test\": \"value\"\n },\n \"systemData\": {\n \"createdBy\": + \"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d\",\n \"createdByType\": \"Application\",\n + \ \"createdAt\": \"2023-07-07T06:05:43.2065379Z\",\n \"lastModifiedBy\": + \"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d\",\n \"lastModifiedByType\": \"Application\",\n + \ \"lastModifiedAt\": \"2023-07-07T06:05:43.2065379Z\"\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.26.0\",\n \"osType\": + \"Linux\",\n \"osSku\": \"Ubuntu\",\n \"vmSize\": \"Standard_DS2_v2\"\n + \ }\n }" headers: cache-control: - no-cache content-length: - - '1008' + - '1050' content-type: - application/json date: - - Wed, 28 Jun 2023 20:54:17 GMT + - Fri, 07 Jul 2023 06:05:44 GMT expires: - '-1' pragma: @@ -887,8 +1077,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.10.11 - (Linux-5.15.0-1040-azure-x86_64-with) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-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-05-01 response: @@ -896,17 +1086,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/234988ad-80dc-453c-9435-ac7d94088e7b?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/aa3f790f-b07b-4416-bf01-d0b31df836a8?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 28 Jun 2023 20:54:18 GMT + - Fri, 07 Jul 2023 06:05:45 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/234988ad-80dc-453c-9435-ac7d94088e7b?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/aa3f790f-b07b-4416-bf01-d0b31df836a8?api-version=2016-03-30 pragma: - no-cache server: @@ -934,33 +1124,33 @@ interactions: ParameterSetName: - --resource-group --name -o User-Agent: - - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.10.11 - (Linux-5.15.0-1040-azure-x86_64-with) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006?api-version=2023-05-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 \"tags\": {\n \"test\": \"value\"\n },\n \"systemData\"\ - : {\n \"createdBy\": \"charlili@microsoft.com\",\n \"createdByType\":\ - \ \"User\",\n \"createdAt\": \"2023-06-28T20:54:17.3833822Z\",\n \"lastModifiedBy\"\ - : \"charlili@microsoft.com\",\n \"lastModifiedByType\": \"User\",\n \"\ - lastModifiedAt\": \"2023-06-28T20:54:17.3833822Z\"\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.13.0\"\ - ,\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 + \ \"tags\": {\n \"test\": \"value\"\n },\n \"systemData\": {\n \"createdBy\": + \"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d\",\n \"createdByType\": \"Application\",\n + \ \"createdAt\": \"2023-07-07T06:05:43.2065379Z\",\n \"lastModifiedBy\": + \"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d\",\n \"lastModifiedByType\": \"Application\",\n + \ \"lastModifiedAt\": \"2023-07-07T06:05:43.2065379Z\"\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.26.0\",\n \"osType\": + \"Linux\",\n \"osSku\": \"Ubuntu\",\n \"vmSize\": \"Standard_DS2_v2\"\n + \ }\n }" headers: cache-control: - no-cache content-length: - - '1008' + - '1050' content-type: - application/json date: - - Wed, 28 Jun 2023 20:54:18 GMT + - Fri, 07 Jul 2023 06:05:46 GMT expires: - '-1' pragma: @@ -992,35 +1182,34 @@ interactions: ParameterSetName: - --resource-group -o User-Agent: - - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.10.11 - (Linux-5.15.0-1040-azure-x86_64-with) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots?api-version=2023-05-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 \"tags\": {\n \"test\": \"value\"\n },\n \"\ - systemData\": {\n \"createdBy\": \"charlili@microsoft.com\",\n \"\ - createdByType\": \"User\",\n \"createdAt\": \"2023-06-28T20:54:17.3833822Z\"\ - ,\n \"lastModifiedBy\": \"charlili@microsoft.com\",\n \"lastModifiedByType\"\ - : \"User\",\n \"lastModifiedAt\": \"2023-06-28T20:54:17.3833822Z\"\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.13.0\"\ - ,\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 \"tags\": {\n \"test\": \"value\"\n },\n \"systemData\": + {\n \"createdBy\": \"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d\",\n \"createdByType\": + \"Application\",\n \"createdAt\": \"2023-07-07T06:05:43.2065379Z\",\n + \ \"lastModifiedBy\": \"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d\",\n \"lastModifiedByType\": + \"Application\",\n \"lastModifiedAt\": \"2023-07-07T06:05:43.2065379Z\"\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.26.0\",\n + \ \"osType\": \"Linux\",\n \"osSku\": \"Ubuntu\",\n \"vmSize\": + \"Standard_DS2_v2\"\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '1087' + - '1129' content-type: - application/json date: - - Wed, 28 Jun 2023 20:54:18 GMT + - Fri, 07 Jul 2023 06:05:47 GMT expires: - '-1' pragma: @@ -1053,8 +1242,8 @@ interactions: - --resource-group --name --location --nodepool-name --node-count --snapshot-id --ssh-key-value -o User-Agent: - - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.10.11 - (Linux-5.15.0-1040-azure-x86_64-with) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-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-05-01 response: @@ -1070,7 +1259,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 28 Jun 2023 20:54:19 GMT + - Fri, 07 Jul 2023 06:05:47 GMT expires: - '-1' pragma: @@ -1099,33 +1288,33 @@ interactions: - --resource-group --name --location --nodepool-name --node-count --snapshot-id --ssh-key-value -o User-Agent: - - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.10.11 - (Linux-5.15.0-1040-azure-x86_64-with) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006?api-version=2023-05-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 \"tags\": {\n \"test\": \"value\"\n },\n \"systemData\"\ - : {\n \"createdBy\": \"charlili@microsoft.com\",\n \"createdByType\":\ - \ \"User\",\n \"createdAt\": \"2023-06-28T20:54:17.3833822Z\",\n \"lastModifiedBy\"\ - : \"charlili@microsoft.com\",\n \"lastModifiedByType\": \"User\",\n \"\ - lastModifiedAt\": \"2023-06-28T20:54:17.3833822Z\"\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.13.0\"\ - ,\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 + \ \"tags\": {\n \"test\": \"value\"\n },\n \"systemData\": {\n \"createdBy\": + \"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d\",\n \"createdByType\": \"Application\",\n + \ \"createdAt\": \"2023-07-07T06:05:43.2065379Z\",\n \"lastModifiedBy\": + \"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d\",\n \"lastModifiedByType\": \"Application\",\n + \ \"lastModifiedAt\": \"2023-07-07T06:05:43.2065379Z\"\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.26.0\",\n \"osType\": + \"Linux\",\n \"osSku\": \"Ubuntu\",\n \"vmSize\": \"Standard_DS2_v2\"\n + \ }\n }" headers: cache-control: - no-cache content-length: - - '1008' + - '1050' content-type: - application/json date: - - Wed, 28 Jun 2023 20:54:19 GMT + - Fri, 07 Jul 2023 06:05:48 GMT expires: - '-1' pragma: @@ -1145,7 +1334,7 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "1.25.6", "dnsPrefix": "cliakstest-clitestaqukwotht-8ecadf", + {"kubernetesVersion": "1.25.6", "dnsPrefix": "cliakstest-clitestabfuiyvtk-79a739", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "1.25.6", @@ -1154,11 +1343,12 @@ interactions: "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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": {}}}' + [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC28bF/jQji1zwuET5fLGyMbujQwBWtHamn3qDrTK2TrPp209TgXJorftZZ7AfMF5XhN1QVd/4Ong3kE9B4RDMSaEwQaLkFEM4Y87w6eowwgoEri1XPX5yy/gkpeS8FMRhGLve19MDucQFlW/CLU7dsWKgqKu5MF+lqQQvfasLuDnCho0IpPNy3f0VrMruuAi9WAaWBUzmcF/UWly+tBZFpY90A4vOyqYAmbDJ5rMBJuJlQQJweTuTkqggG97GP/h+hO2V/kYK0lFMtH12zL8TTQvQkl/627TRgY1LteOHkYC2XYYv6LCtf+MEPPh3Fei6jUlTiighFBuo4ZwWI5nVZ + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {}}}' headers: Accept: - application/json @@ -1169,72 +1359,70 @@ interactions: Connection: - keep-alive Content-Length: - - '1957' + - '1628' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --nodepool-name --node-count --snapshot-id --ssh-key-value -o User-Agent: - - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.10.11 - (Linux-5.15.0-1040-azure-x86_64-with) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-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?api-version=2023-05-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.25.6\",\n \"currentKubernetesVersion\"\ - : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestaqukwotht-8ecadf\",\n\ - \ \"fqdn\": \"cliakstest-clitestaqukwotht-8ecadf-z5foy7n2.hcp.westus2.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitestaqukwotht-8ecadf-z5foy7n2.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.13.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 }" + 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-clitestabfuiyvtk-79a739\",\n \"fqdn\": \"cliakstest-clitestabfuiyvtk-79a739-fypyet25.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestabfuiyvtk-79a739-fypyet25.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.26.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 + AAAAB3NzaC1yc2EAAAADAQABAAABAQC28bF/jQji1zwuET5fLGyMbujQwBWtHamn3qDrTK2TrPp209TgXJorftZZ7AfMF5XhN1QVd/4Ong3kE9B4RDMSaEwQaLkFEM4Y87w6eowwgoEri1XPX5yy/gkpeS8FMRhGLve19MDucQFlW/CLU7dsWKgqKu5MF+lqQQvfasLuDnCho0IpPNy3f0VrMruuAi9WAaWBUzmcF/UWly+tBZFpY90A4vOyqYAmbDJ5rMBJuJlQQJweTuTkqggG97GP/h+hO2V/kYK0lFMtH12zL8TTQvQkl/627TRgY1LteOHkYC2XYYv6LCtf+MEPPh3Fei6jUlTiighFBuo4ZwWI5nVZ + azcli_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 + \ \"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/93bbdae0-6667-4f83-bd9e-c13cc61be224?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/72447d0f-02ee-4011-9180-5c67bf1f4b1f?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3789' + - '3460' content-type: - application/json date: - - Wed, 28 Jun 2023 20:54:24 GMT + - Fri, 07 Jul 2023 06:05:54 GMT expires: - '-1' pragma: @@ -1265,14 +1453,14 @@ interactions: - --resource-group --name --location --nodepool-name --node-count --snapshot-id --ssh-key-value -o User-Agent: - - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.10.11 - (Linux-5.15.0-1040-azure-x86_64-with) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/93bbdae0-6667-4f83-bd9e-c13cc61be224?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/72447d0f-02ee-4011-9180-5c67bf1f4b1f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e0dabb93-6766-834f-bd9e-c13cc61be224\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-28T20:54:24.6048516Z\"\n }" + string: "{\n \"name\": \"0f7d4472-ee02-1140-9180-5c67bf1f4b1f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-07-07T06:05:55.0270642Z\"\n }" headers: cache-control: - no-cache @@ -1281,7 +1469,52 @@ interactions: content-type: - application/json date: - - Wed, 28 Jun 2023 20:54:24 GMT + - Fri, 07 Jul 2023 06:05:54 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 --location --nodepool-name --node-count --snapshot-id + --ssh-key-value -o + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/72447d0f-02ee-4011-9180-5c67bf1f4b1f?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"0f7d4472-ee02-1140-9180-5c67bf1f4b1f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-07-07T06:05:55.0270642Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Fri, 07 Jul 2023 06:06:24 GMT expires: - '-1' pragma: @@ -1314,14 +1547,14 @@ interactions: - --resource-group --name --location --nodepool-name --node-count --snapshot-id --ssh-key-value -o User-Agent: - - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.10.11 - (Linux-5.15.0-1040-azure-x86_64-with) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/93bbdae0-6667-4f83-bd9e-c13cc61be224?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/72447d0f-02ee-4011-9180-5c67bf1f4b1f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e0dabb93-6766-834f-bd9e-c13cc61be224\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-28T20:54:24.6048516Z\"\n }" + string: "{\n \"name\": \"0f7d4472-ee02-1140-9180-5c67bf1f4b1f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-07-07T06:05:55.0270642Z\"\n }" headers: cache-control: - no-cache @@ -1330,7 +1563,7 @@ interactions: content-type: - application/json date: - - Wed, 28 Jun 2023 20:54:54 GMT + - Fri, 07 Jul 2023 06:06:56 GMT expires: - '-1' pragma: @@ -1363,14 +1596,14 @@ interactions: - --resource-group --name --location --nodepool-name --node-count --snapshot-id --ssh-key-value -o User-Agent: - - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.10.11 - (Linux-5.15.0-1040-azure-x86_64-with) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/93bbdae0-6667-4f83-bd9e-c13cc61be224?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/72447d0f-02ee-4011-9180-5c67bf1f4b1f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e0dabb93-6766-834f-bd9e-c13cc61be224\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-28T20:54:24.6048516Z\"\n }" + string: "{\n \"name\": \"0f7d4472-ee02-1140-9180-5c67bf1f4b1f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-07-07T06:05:55.0270642Z\"\n }" headers: cache-control: - no-cache @@ -1379,7 +1612,7 @@ interactions: content-type: - application/json date: - - Wed, 28 Jun 2023 20:55:25 GMT + - Fri, 07 Jul 2023 06:07:26 GMT expires: - '-1' pragma: @@ -1412,14 +1645,14 @@ interactions: - --resource-group --name --location --nodepool-name --node-count --snapshot-id --ssh-key-value -o User-Agent: - - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.10.11 - (Linux-5.15.0-1040-azure-x86_64-with) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/93bbdae0-6667-4f83-bd9e-c13cc61be224?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/72447d0f-02ee-4011-9180-5c67bf1f4b1f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e0dabb93-6766-834f-bd9e-c13cc61be224\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-28T20:54:24.6048516Z\"\n }" + string: "{\n \"name\": \"0f7d4472-ee02-1140-9180-5c67bf1f4b1f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-07-07T06:05:55.0270642Z\"\n }" headers: cache-control: - no-cache @@ -1428,7 +1661,7 @@ interactions: content-type: - application/json date: - - Wed, 28 Jun 2023 20:55:54 GMT + - Fri, 07 Jul 2023 06:07:56 GMT expires: - '-1' pragma: @@ -1461,14 +1694,14 @@ interactions: - --resource-group --name --location --nodepool-name --node-count --snapshot-id --ssh-key-value -o User-Agent: - - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.10.11 - (Linux-5.15.0-1040-azure-x86_64-with) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/93bbdae0-6667-4f83-bd9e-c13cc61be224?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/72447d0f-02ee-4011-9180-5c67bf1f4b1f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e0dabb93-6766-834f-bd9e-c13cc61be224\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-28T20:54:24.6048516Z\"\n }" + string: "{\n \"name\": \"0f7d4472-ee02-1140-9180-5c67bf1f4b1f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-07-07T06:05:55.0270642Z\"\n }" headers: cache-control: - no-cache @@ -1477,7 +1710,7 @@ interactions: content-type: - application/json date: - - Wed, 28 Jun 2023 20:56:24 GMT + - Fri, 07 Jul 2023 06:08:26 GMT expires: - '-1' pragma: @@ -1510,14 +1743,14 @@ interactions: - --resource-group --name --location --nodepool-name --node-count --snapshot-id --ssh-key-value -o User-Agent: - - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.10.11 - (Linux-5.15.0-1040-azure-x86_64-with) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/93bbdae0-6667-4f83-bd9e-c13cc61be224?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/72447d0f-02ee-4011-9180-5c67bf1f4b1f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e0dabb93-6766-834f-bd9e-c13cc61be224\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-28T20:54:24.6048516Z\"\n }" + string: "{\n \"name\": \"0f7d4472-ee02-1140-9180-5c67bf1f4b1f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-07-07T06:05:55.0270642Z\"\n }" headers: cache-control: - no-cache @@ -1526,7 +1759,7 @@ interactions: content-type: - application/json date: - - Wed, 28 Jun 2023 20:56:55 GMT + - Fri, 07 Jul 2023 06:08:56 GMT expires: - '-1' pragma: @@ -1559,14 +1792,14 @@ interactions: - --resource-group --name --location --nodepool-name --node-count --snapshot-id --ssh-key-value -o User-Agent: - - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.10.11 - (Linux-5.15.0-1040-azure-x86_64-with) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/93bbdae0-6667-4f83-bd9e-c13cc61be224?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/72447d0f-02ee-4011-9180-5c67bf1f4b1f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e0dabb93-6766-834f-bd9e-c13cc61be224\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-28T20:54:24.6048516Z\"\n }" + string: "{\n \"name\": \"0f7d4472-ee02-1140-9180-5c67bf1f4b1f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-07-07T06:05:55.0270642Z\"\n }" headers: cache-control: - no-cache @@ -1575,7 +1808,7 @@ interactions: content-type: - application/json date: - - Wed, 28 Jun 2023 20:57:25 GMT + - Fri, 07 Jul 2023 06:09:26 GMT expires: - '-1' pragma: @@ -1608,15 +1841,211 @@ interactions: - --resource-group --name --location --nodepool-name --node-count --snapshot-id --ssh-key-value -o User-Agent: - - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.10.11 - (Linux-5.15.0-1040-azure-x86_64-with) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/93bbdae0-6667-4f83-bd9e-c13cc61be224?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/72447d0f-02ee-4011-9180-5c67bf1f4b1f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e0dabb93-6766-834f-bd9e-c13cc61be224\",\n \"status\"\ - : \"Succeeded\",\n \"startTime\": \"2023-06-28T20:54:24.6048516Z\",\n \"\ - endTime\": \"2023-06-28T20:57:28.7667784Z\"\n }" + string: "{\n \"name\": \"0f7d4472-ee02-1140-9180-5c67bf1f4b1f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-07-07T06:05:55.0270642Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Fri, 07 Jul 2023 06:09: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 --nodepool-name --node-count --snapshot-id + --ssh-key-value -o + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/72447d0f-02ee-4011-9180-5c67bf1f4b1f?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"0f7d4472-ee02-1140-9180-5c67bf1f4b1f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-07-07T06:05:55.0270642Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Fri, 07 Jul 2023 06:10: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 --nodepool-name --node-count --snapshot-id + --ssh-key-value -o + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/72447d0f-02ee-4011-9180-5c67bf1f4b1f?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"0f7d4472-ee02-1140-9180-5c67bf1f4b1f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-07-07T06:05:55.0270642Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Fri, 07 Jul 2023 06:10: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 --nodepool-name --node-count --snapshot-id + --ssh-key-value -o + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/72447d0f-02ee-4011-9180-5c67bf1f4b1f?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"0f7d4472-ee02-1140-9180-5c67bf1f4b1f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-07-07T06:05:55.0270642Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Fri, 07 Jul 2023 06:11: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 --nodepool-name --node-count --snapshot-id + --ssh-key-value -o + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/72447d0f-02ee-4011-9180-5c67bf1f4b1f?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"0f7d4472-ee02-1140-9180-5c67bf1f4b1f\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-07-07T06:05:55.0270642Z\",\n \"endTime\": + \"2023-07-07T06:11:50.1652714Z\"\n }" headers: cache-control: - no-cache @@ -1625,7 +2054,7 @@ interactions: content-type: - application/json date: - - Wed, 28 Jun 2023 20:57:54 GMT + - Fri, 07 Jul 2023 06:11:57 GMT expires: - '-1' pragma: @@ -1658,68 +2087,65 @@ interactions: - --resource-group --name --location --nodepool-name --node-count --snapshot-id --ssh-key-value -o User-Agent: - - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.10.11 - (Linux-5.15.0-1040-azure-x86_64-with) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-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-05-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.25.6\",\n \"currentKubernetesVersion\"\ - : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestaqukwotht-8ecadf\",\n\ - \ \"fqdn\": \"cliakstest-clitestaqukwotht-8ecadf-z5foy7n2.hcp.westus2.azmk8s.io\"\ - ,\n \"azurePortalFQDN\": \"cliakstest-clitestaqukwotht-8ecadf-z5foy7n2.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.13.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/d1f5dd96-b7ac-4c73-b0a0-1d4ea887fdc1\"\ - \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ - : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ - \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\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 }" + 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-clitestabfuiyvtk-79a739\",\n \"fqdn\": \"cliakstest-clitestabfuiyvtk-79a739-fypyet25.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestabfuiyvtk-79a739-fypyet25.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.26.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 + AAAAB3NzaC1yc2EAAAADAQABAAABAQC28bF/jQji1zwuET5fLGyMbujQwBWtHamn3qDrTK2TrPp209TgXJorftZZ7AfMF5XhN1QVd/4Ong3kE9B4RDMSaEwQaLkFEM4Y87w6eowwgoEri1XPX5yy/gkpeS8FMRhGLve19MDucQFlW/CLU7dsWKgqKu5MF+lqQQvfasLuDnCho0IpPNy3f0VrMruuAi9WAaWBUzmcF/UWly+tBZFpY90A4vOyqYAmbDJ5rMBJuJlQQJweTuTkqggG97GP/h+hO2V/kYK0lFMtH12zL8TTQvQkl/627TRgY1LteOHkYC2XYYv6LCtf+MEPPh3Fei6jUlTiighFBuo4ZwWI5nVZ + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"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/b9166358-5b5b-4c33-ae9e-6182a7fb7b25\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\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: - - '4442' + - '4113' content-type: - application/json date: - - Wed, 28 Jun 2023 20:57:55 GMT + - Fri, 07 Jul 2023 06:11:57 GMT expires: - '-1' pragma: @@ -1751,26 +2177,26 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count --snapshot-id -o User-Agent: - - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.10.11 - (Linux-5.15.0-1040-azure-x86_64-with) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-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?api-version=2023-05-01 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.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ - : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ - : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.13.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 }" + 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.26.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 @@ -1779,7 +2205,7 @@ interactions: content-type: - application/json date: - - Wed, 28 Jun 2023 20:57:57 GMT + - Fri, 07 Jul 2023 06:11:58 GMT expires: - '-1' pragma: @@ -1811,33 +2237,33 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count --snapshot-id -o User-Agent: - - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.10.11 - (Linux-5.15.0-1040-azure-x86_64-with) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006?api-version=2023-05-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 \"tags\": {\n \"test\": \"value\"\n },\n \"systemData\"\ - : {\n \"createdBy\": \"charlili@microsoft.com\",\n \"createdByType\":\ - \ \"User\",\n \"createdAt\": \"2023-06-28T20:54:17.3833822Z\",\n \"lastModifiedBy\"\ - : \"charlili@microsoft.com\",\n \"lastModifiedByType\": \"User\",\n \"\ - lastModifiedAt\": \"2023-06-28T20:54:17.3833822Z\"\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.13.0\"\ - ,\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 + \ \"tags\": {\n \"test\": \"value\"\n },\n \"systemData\": {\n \"createdBy\": + \"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d\",\n \"createdByType\": \"Application\",\n + \ \"createdAt\": \"2023-07-07T06:05:43.2065379Z\",\n \"lastModifiedBy\": + \"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d\",\n \"lastModifiedByType\": \"Application\",\n + \ \"lastModifiedAt\": \"2023-07-07T06:05:43.2065379Z\"\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.26.0\",\n \"osType\": + \"Linux\",\n \"osSku\": \"Ubuntu\",\n \"vmSize\": \"Standard_DS2_v2\"\n + \ }\n }" headers: cache-control: - no-cache content-length: - - '1008' + - '1050' content-type: - application/json date: - - Wed, 28 Jun 2023 20:57:57 GMT + - Fri, 07 Jul 2023 06:11:59 GMT expires: - '-1' pragma: @@ -1879,30 +2305,29 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count --snapshot-id -o User-Agent: - - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.10.11 - (Linux-5.15.0-1040-azure-x86_64-with) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-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-05-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.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.13.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 }" + 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.26.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/2f272185-77b5-4a0f-870c-8e02f3706dee?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b5d5c91d-8c4e-499c-ba76-02706e5cf930?api-version=2016-03-30 cache-control: - no-cache content-length: @@ -1910,7 +2335,7 @@ interactions: content-type: - application/json date: - - Wed, 28 Jun 2023 20:58:01 GMT + - Fri, 07 Jul 2023 06:12:03 GMT expires: - '-1' pragma: @@ -1940,14 +2365,110 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count --snapshot-id -o User-Agent: - - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.10.11 - (Linux-5.15.0-1040-azure-x86_64-with) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b5d5c91d-8c4e-499c-ba76-02706e5cf930?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"1dc9d5b5-4e8c-9c49-ba76-02706e5cf930\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-07-07T06:12:03.5591736Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Fri, 07 Jul 2023 06:12: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 nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --node-count --snapshot-id -o + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b5d5c91d-8c4e-499c-ba76-02706e5cf930?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"1dc9d5b5-4e8c-9c49-ba76-02706e5cf930\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-07-07T06:12:03.5591736Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Fri, 07 Jul 2023 06:12: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 nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --node-count --snapshot-id -o + User-Agent: + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2f272185-77b5-4a0f-870c-8e02f3706dee?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b5d5c91d-8c4e-499c-ba76-02706e5cf930?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8521272f-b577-0f4a-870c-8e02f3706dee\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-28T20:58:02.4331864Z\"\n }" + string: "{\n \"name\": \"1dc9d5b5-4e8c-9c49-ba76-02706e5cf930\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-07-07T06:12:03.5591736Z\"\n }" headers: cache-control: - no-cache @@ -1956,7 +2477,7 @@ interactions: content-type: - application/json date: - - Wed, 28 Jun 2023 20:58:01 GMT + - Fri, 07 Jul 2023 06:13:03 GMT expires: - '-1' pragma: @@ -1988,14 +2509,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count --snapshot-id -o User-Agent: - - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.10.11 - (Linux-5.15.0-1040-azure-x86_64-with) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2f272185-77b5-4a0f-870c-8e02f3706dee?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b5d5c91d-8c4e-499c-ba76-02706e5cf930?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8521272f-b577-0f4a-870c-8e02f3706dee\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-28T20:58:02.4331864Z\"\n }" + string: "{\n \"name\": \"1dc9d5b5-4e8c-9c49-ba76-02706e5cf930\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-07-07T06:12:03.5591736Z\"\n }" headers: cache-control: - no-cache @@ -2004,7 +2525,7 @@ interactions: content-type: - application/json date: - - Wed, 28 Jun 2023 20:58:32 GMT + - Fri, 07 Jul 2023 06:13:33 GMT expires: - '-1' pragma: @@ -2036,14 +2557,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count --snapshot-id -o User-Agent: - - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.10.11 - (Linux-5.15.0-1040-azure-x86_64-with) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2f272185-77b5-4a0f-870c-8e02f3706dee?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b5d5c91d-8c4e-499c-ba76-02706e5cf930?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8521272f-b577-0f4a-870c-8e02f3706dee\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-28T20:58:02.4331864Z\"\n }" + string: "{\n \"name\": \"1dc9d5b5-4e8c-9c49-ba76-02706e5cf930\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-07-07T06:12:03.5591736Z\"\n }" headers: cache-control: - no-cache @@ -2052,7 +2573,7 @@ interactions: content-type: - application/json date: - - Wed, 28 Jun 2023 20:59:03 GMT + - Fri, 07 Jul 2023 06:14:03 GMT expires: - '-1' pragma: @@ -2084,14 +2605,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count --snapshot-id -o User-Agent: - - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.10.11 - (Linux-5.15.0-1040-azure-x86_64-with) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2f272185-77b5-4a0f-870c-8e02f3706dee?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b5d5c91d-8c4e-499c-ba76-02706e5cf930?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8521272f-b577-0f4a-870c-8e02f3706dee\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-28T20:58:02.4331864Z\"\n }" + string: "{\n \"name\": \"1dc9d5b5-4e8c-9c49-ba76-02706e5cf930\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-07-07T06:12:03.5591736Z\"\n }" headers: cache-control: - no-cache @@ -2100,7 +2621,7 @@ interactions: content-type: - application/json date: - - Wed, 28 Jun 2023 20:59:32 GMT + - Fri, 07 Jul 2023 06:14:34 GMT expires: - '-1' pragma: @@ -2132,15 +2653,15 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count --snapshot-id -o User-Agent: - - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.10.11 - (Linux-5.15.0-1040-azure-x86_64-with) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2f272185-77b5-4a0f-870c-8e02f3706dee?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b5d5c91d-8c4e-499c-ba76-02706e5cf930?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8521272f-b577-0f4a-870c-8e02f3706dee\",\n \"status\"\ - : \"Succeeded\",\n \"startTime\": \"2023-06-28T20:58:02.4331864Z\",\n \"\ - endTime\": \"2023-06-28T20:59:36.0441789Z\"\n }" + string: "{\n \"name\": \"1dc9d5b5-4e8c-9c49-ba76-02706e5cf930\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-07-07T06:12:03.5591736Z\",\n \"endTime\": + \"2023-07-07T06:14:59.2912915Z\"\n }" headers: cache-control: - no-cache @@ -2149,7 +2670,7 @@ interactions: content-type: - application/json date: - - Wed, 28 Jun 2023 21:00:03 GMT + - Fri, 07 Jul 2023 06:15:04 GMT expires: - '-1' pragma: @@ -2181,27 +2702,26 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count --snapshot-id -o User-Agent: - - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.10.11 - (Linux-5.15.0-1040-azure-x86_64-with) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-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-05-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.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.13.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 }" + 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.26.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 @@ -2210,7 +2730,7 @@ interactions: content-type: - application/json date: - - Wed, 28 Jun 2023 21:00:03 GMT + - Fri, 07 Jul 2023 06:15:05 GMT expires: - '-1' pragma: @@ -2244,8 +2764,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.10.11 - (Linux-5.15.0-1040-azure-x86_64-with) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-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-05-01 response: @@ -2253,17 +2773,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2934f59b-376a-4e2e-88e7-a9e1a1240e24?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/130962be-b115-4f2f-bcd9-b0f41cac9a36?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 28 Jun 2023 21:00:04 GMT + - Fri, 07 Jul 2023 06:15:06 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/2934f59b-376a-4e2e-88e7-a9e1a1240e24?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/130962be-b115-4f2f-bcd9-b0f41cac9a36?api-version=2016-03-30 pragma: - no-cache server: @@ -2293,8 +2813,8 @@ interactions: ParameterSetName: - --resource-group --name --yes --no-wait User-Agent: - - AZURECLI/2.49.0 (DOCKER) azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.10.11 - (Linux-5.15.0-1040-azure-x86_64-with) + - AZURECLI/2.50.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1041-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-05-01 response: @@ -2306,7 +2826,7 @@ interactions: content-length: - '0' date: - - Wed, 28 Jun 2023 21:00:05 GMT + - Fri, 07 Jul 2023 06:15:09 GMT expires: - '-1' pragma: @@ -2322,4 +2842,4 @@ interactions: status: code: 200 message: OK -version: 1 +version: 1 \ No newline at end of file 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 index 9e5a3d9c62c..82c54bfddd1 100644 --- 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 Jun 2023 03:17:27 GMT + - Thu, 29 Jun 2023 11:29:25 GMT expires: - '-1' pragma: @@ -58,21 +58,21 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1039-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":"westcentralus","tags":{"product":"azurecli","cause":"automation","test":"test_aks_nodepool_stop_and_start","date":"2023-06-16T03:17:26Z","module":"acs"},"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_stop_and_start","date":"2023-06-29T11:29:23Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '368' + - '362' content-type: - application/json; charset=utf-8 date: - - Fri, 16 Jun 2023 03:17:28 GMT + - Thu, 29 Jun 2023 11:29:25 GMT expires: - '-1' pragma: @@ -87,19 +87,20 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westcentralus", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestrp6ypij6l-8ecadf", + body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestaqgbjxklw-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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {}}}' headers: Accept: - application/json @@ -110,69 +111,67 @@ interactions: Connection: - keep-alive Content-Length: - - '1757' + - '1422' Content-Type: - application/json ParameterSetName: - --resource-group --name --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestaqgbjxklw-79a739\",\n \"fqdn\": \"cliakstest-clitestaqgbjxklw-79a739-stk2bp3t.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestaqgbjxklw-79a739-stk2bp3t.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"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/westcentralus/operations/11dda88d-647b-4cfd-aa45-661386ef1053?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ce9d545d-0fbc-4a13-b429-b3d463e3bfc9?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3620' + - '3267' content-type: - application/json date: - - Fri, 16 Jun 2023 03:17:35 GMT + - Thu, 29 Jun 2023 11:29:30 GMT expires: - '-1' pragma: @@ -202,14 +201,14 @@ interactions: ParameterSetName: - --resource-group --name --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ce9d545d-0fbc-4a13-b429-b3d463e3bfc9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8da8dd11-7b64-fd4c-aa45-661386ef1053\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T03:17:35.8365807Z\"\n }" + string: "{\n \"name\": \"5d549dce-bc0f-134a-b429-b3d463e3bfc9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:29:30.8937221Z\"\n }" headers: cache-control: - no-cache @@ -218,7 +217,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 03:17:36 GMT + - Thu, 29 Jun 2023 11:29:31 GMT expires: - '-1' pragma: @@ -250,14 +249,14 @@ interactions: ParameterSetName: - --resource-group --name --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ce9d545d-0fbc-4a13-b429-b3d463e3bfc9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8da8dd11-7b64-fd4c-aa45-661386ef1053\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T03:17:35.8365807Z\"\n }" + string: "{\n \"name\": \"5d549dce-bc0f-134a-b429-b3d463e3bfc9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:29:30.8937221Z\"\n }" headers: cache-control: - no-cache @@ -266,7 +265,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 03:18:05 GMT + - Thu, 29 Jun 2023 11:30:01 GMT expires: - '-1' pragma: @@ -298,15 +297,399 @@ interactions: ParameterSetName: - --resource-group --name --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ce9d545d-0fbc-4a13-b429-b3d463e3bfc9?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"5d549dce-bc0f-134a-b429-b3d463e3bfc9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:29:30.8937221Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:30: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 --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ce9d545d-0fbc-4a13-b429-b3d463e3bfc9?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"5d549dce-bc0f-134a-b429-b3d463e3bfc9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:29:30.8937221Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:31: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 --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ce9d545d-0fbc-4a13-b429-b3d463e3bfc9?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"5d549dce-bc0f-134a-b429-b3d463e3bfc9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:29:30.8937221Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11: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 --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ce9d545d-0fbc-4a13-b429-b3d463e3bfc9?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"5d549dce-bc0f-134a-b429-b3d463e3bfc9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:29:30.8937221Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:32: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 --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ce9d545d-0fbc-4a13-b429-b3d463e3bfc9?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"5d549dce-bc0f-134a-b429-b3d463e3bfc9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:29:30.8937221Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11: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 --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ce9d545d-0fbc-4a13-b429-b3d463e3bfc9?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"5d549dce-bc0f-134a-b429-b3d463e3bfc9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:29:30.8937221Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:33: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 + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ce9d545d-0fbc-4a13-b429-b3d463e3bfc9?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"5d549dce-bc0f-134a-b429-b3d463e3bfc9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:29:30.8937221Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11: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 + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ce9d545d-0fbc-4a13-b429-b3d463e3bfc9?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"5d549dce-bc0f-134a-b429-b3d463e3bfc9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:29:30.8937221Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:34: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 + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ce9d545d-0fbc-4a13-b429-b3d463e3bfc9?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"5d549dce-bc0f-134a-b429-b3d463e3bfc9\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:29:30.8937221Z\",\n \"endTime\": + \"2023-06-29T11:34:23.8703568Z\"\n }" headers: cache-control: - no-cache @@ -315,7 +698,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 03:36:47 GMT + - Thu, 29 Jun 2023 11:34:33 GMT expires: - '-1' pragma: @@ -347,66 +730,63 @@ interactions: ParameterSetName: - --resource-group --name --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestaqgbjxklw-79a739\",\n \"fqdn\": \"cliakstest-clitestaqgbjxklw-79a739-stk2bp3t.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestaqgbjxklw-79a739-stk2bp3t.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0b28cb0e-1626-4000-8a69-2f0adfaf190d\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4285' + - '3920' content-type: - application/json date: - - Fri, 16 Jun 2023 03:36:48 GMT + - Thu, 29 Jun 2023 11:34:33 GMT expires: - '-1' pragma: @@ -438,25 +818,25 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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\": 3,\n \"vmSize\": \"Standard_DS2_v2\"\ - ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ - kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ - ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ - ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ - : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ - : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\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 }" + 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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n + }" headers: cache-control: - no-cache @@ -465,7 +845,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 03:36:49 GMT + - Thu, 29 Jun 2023 11:34:34 GMT expires: - '-1' pragma: @@ -506,28 +886,27 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.19.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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eb37df09-2638-4c47-a852-ee57ca733c1d?api-version=2016-03-30 cache-control: - no-cache content-length: @@ -535,7 +914,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 03:36:56 GMT + - Thu, 29 Jun 2023 11:34:38 GMT expires: - '-1' pragma: @@ -565,14 +944,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eb37df09-2638-4c47-a852-ee57ca733c1d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"edcde28a-bef1-8d4a-a28a-a7b3995b2ea8\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T03:36:56.1668783Z\"\n }" + string: "{\n \"name\": \"09df37eb-3826-474c-a852-ee57ca733c1d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:34:38.6911418Z\"\n }" headers: cache-control: - no-cache @@ -581,7 +960,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 03:36:56 GMT + - Thu, 29 Jun 2023 11:34:38 GMT expires: - '-1' pragma: @@ -613,14 +992,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eb37df09-2638-4c47-a852-ee57ca733c1d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"edcde28a-bef1-8d4a-a28a-a7b3995b2ea8\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T03:36:56.1668783Z\"\n }" + string: "{\n \"name\": \"09df37eb-3826-474c-a852-ee57ca733c1d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:34:38.6911418Z\"\n }" headers: cache-control: - no-cache @@ -629,7 +1008,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 03:37:26 GMT + - Thu, 29 Jun 2023 11:35:08 GMT expires: - '-1' pragma: @@ -661,14 +1040,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eb37df09-2638-4c47-a852-ee57ca733c1d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"edcde28a-bef1-8d4a-a28a-a7b3995b2ea8\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T03:36:56.1668783Z\"\n }" + string: "{\n \"name\": \"09df37eb-3826-474c-a852-ee57ca733c1d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:34:38.6911418Z\"\n }" headers: cache-control: - no-cache @@ -677,7 +1056,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 03:37:56 GMT + - Thu, 29 Jun 2023 11:35:38 GMT expires: - '-1' pragma: @@ -709,14 +1088,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eb37df09-2638-4c47-a852-ee57ca733c1d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"edcde28a-bef1-8d4a-a28a-a7b3995b2ea8\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T03:36:56.1668783Z\"\n }" + string: "{\n \"name\": \"09df37eb-3826-474c-a852-ee57ca733c1d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:34:38.6911418Z\"\n }" headers: cache-control: - no-cache @@ -725,7 +1104,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 03:38:26 GMT + - Thu, 29 Jun 2023 11:36:08 GMT expires: - '-1' pragma: @@ -757,14 +1136,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eb37df09-2638-4c47-a852-ee57ca733c1d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"edcde28a-bef1-8d4a-a28a-a7b3995b2ea8\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T03:36:56.1668783Z\"\n }" + string: "{\n \"name\": \"09df37eb-3826-474c-a852-ee57ca733c1d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:34:38.6911418Z\"\n }" headers: cache-control: - no-cache @@ -773,7 +1152,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 03:38:56 GMT + - Thu, 29 Jun 2023 11:36:38 GMT expires: - '-1' pragma: @@ -805,14 +1184,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eb37df09-2638-4c47-a852-ee57ca733c1d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"edcde28a-bef1-8d4a-a28a-a7b3995b2ea8\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T03:36:56.1668783Z\"\n }" + string: "{\n \"name\": \"09df37eb-3826-474c-a852-ee57ca733c1d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:34:38.6911418Z\"\n }" headers: cache-control: - no-cache @@ -821,7 +1200,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 03:39:26 GMT + - Thu, 29 Jun 2023 11:37:08 GMT expires: - '-1' pragma: @@ -853,15 +1232,63 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eb37df09-2638-4c47-a852-ee57ca733c1d?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"09df37eb-3826-474c-a852-ee57ca733c1d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:34:38.6911418Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:37: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 nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eb37df09-2638-4c47-a852-ee57ca733c1d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"09df37eb-3826-474c-a852-ee57ca733c1d\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:34:38.6911418Z\",\n \"endTime\": + \"2023-06-29T11:38:07.9082047Z\"\n }" headers: cache-control: - no-cache @@ -870,7 +1297,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 03:39:56 GMT + - Thu, 29 Jun 2023 11:38:09 GMT expires: - '-1' pragma: @@ -902,25 +1329,24 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/c000003?api-version=2023-05-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.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 }" + 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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -929,7 +1355,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 03:39:57 GMT + - Thu, 29 Jun 2023 11:38:10 GMT expires: - '-1' pragma: @@ -961,38 +1387,37 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.19.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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n + }" headers: cache-control: - no-cache @@ -1001,7 +1426,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 03:39:59 GMT + - Thu, 29 Jun 2023 11:38:11 GMT expires: - '-1' pragma: @@ -1033,25 +1458,24 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/c000003?api-version=2023-05-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.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 }" + 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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -1060,7 +1484,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 04:43:28 GMT + - Thu, 29 Jun 2023 11:38:11 GMT expires: - '-1' pragma: @@ -1102,28 +1526,27 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.19.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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5e8a2a07-5efa-48d6-8790-94e5fc970aba?api-version=2016-03-30 cache-control: - no-cache content-length: @@ -1131,7 +1554,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 04:43:32 GMT + - Thu, 29 Jun 2023 11:38:14 GMT expires: - '-1' pragma: @@ -1147,7 +1570,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -1165,14 +1588,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5e8a2a07-5efa-48d6-8790-94e5fc970aba?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dc4df915-7177-5944-9ec8-79962ae525b1\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T04:43:32.6741404Z\"\n }" + string: "{\n \"name\": \"072a8a5e-fa5e-d648-8790-94e5fc970aba\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:38:15.0981156Z\"\n }" headers: cache-control: - no-cache @@ -1181,7 +1604,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 04:43:32 GMT + - Thu, 29 Jun 2023 11:38:14 GMT expires: - '-1' pragma: @@ -1213,14 +1636,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5e8a2a07-5efa-48d6-8790-94e5fc970aba?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dc4df915-7177-5944-9ec8-79962ae525b1\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T04:43:32.6741404Z\"\n }" + string: "{\n \"name\": \"072a8a5e-fa5e-d648-8790-94e5fc970aba\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:38:15.0981156Z\"\n }" headers: cache-control: - no-cache @@ -1229,7 +1652,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 04:44:02 GMT + - Thu, 29 Jun 2023 11:38:44 GMT expires: - '-1' pragma: @@ -1261,15 +1684,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5e8a2a07-5efa-48d6-8790-94e5fc970aba?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"072a8a5e-fa5e-d648-8790-94e5fc970aba\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:38:15.0981156Z\",\n \"endTime\": + \"2023-06-29T11:38:51.4069718Z\"\n }" headers: cache-control: - no-cache @@ -1278,7 +1701,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 04:44:32 GMT + - Thu, 29 Jun 2023 11:39:14 GMT expires: - '-1' pragma: @@ -1310,25 +1733,24 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/c000003?api-version=2023-05-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.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 }" + 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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -1337,7 +1759,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 04:44:33 GMT + - Thu, 29 Jun 2023 11:39:15 GMT expires: - '-1' pragma: @@ -1369,38 +1791,37 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.19.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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n + }" headers: cache-control: - no-cache @@ -1409,7 +1830,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 04:44:35 GMT + - Thu, 29 Jun 2023 11:39:11 GMT expires: - '-1' pragma: @@ -1441,25 +1862,24 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/c000003?api-version=2023-05-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.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 }" + 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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -1468,7 +1888,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 04:44:35 GMT + - Thu, 29 Jun 2023 11:39:12 GMT expires: - '-1' pragma: @@ -1510,28 +1930,27 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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\": \"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 }" + 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.19.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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b268226d-cbc3-4894-b6b4-9fa4d0b8e2a2?api-version=2016-03-30 cache-control: - no-cache content-length: @@ -1539,7 +1958,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 04:44:39 GMT + - Thu, 29 Jun 2023 11:39:15 GMT expires: - '-1' pragma: @@ -1573,14 +1992,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b268226d-cbc3-4894-b6b4-9fa4d0b8e2a2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bee7f6c4-a0d1-3b40-9070-059f0aaac7d2\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T04:44:40.2679995Z\"\n }" + string: "{\n \"name\": \"6d2268b2-c3cb-9448-b6b4-9fa4d0b8e2a2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:39:20.8952232Z\"\n }" headers: cache-control: - no-cache @@ -1589,7 +2008,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 04:44:40 GMT + - Thu, 29 Jun 2023 11:39:15 GMT expires: - '-1' pragma: @@ -1621,14 +2040,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b268226d-cbc3-4894-b6b4-9fa4d0b8e2a2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bee7f6c4-a0d1-3b40-9070-059f0aaac7d2\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T04:44:40.2679995Z\"\n }" + string: "{\n \"name\": \"6d2268b2-c3cb-9448-b6b4-9fa4d0b8e2a2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:39:20.8952232Z\"\n }" headers: cache-control: - no-cache @@ -1637,7 +2056,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 04:45:11 GMT + - Thu, 29 Jun 2023 11:39:46 GMT expires: - '-1' pragma: @@ -1669,14 +2088,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b268226d-cbc3-4894-b6b4-9fa4d0b8e2a2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bee7f6c4-a0d1-3b40-9070-059f0aaac7d2\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T04:44:40.2679995Z\"\n }" + string: "{\n \"name\": \"6d2268b2-c3cb-9448-b6b4-9fa4d0b8e2a2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:39:20.8952232Z\"\n }" headers: cache-control: - no-cache @@ -1685,7 +2104,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 04:45:41 GMT + - Thu, 29 Jun 2023 11:40:16 GMT expires: - '-1' pragma: @@ -1717,14 +2136,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b268226d-cbc3-4894-b6b4-9fa4d0b8e2a2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bee7f6c4-a0d1-3b40-9070-059f0aaac7d2\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T04:44:40.2679995Z\"\n }" + string: "{\n \"name\": \"6d2268b2-c3cb-9448-b6b4-9fa4d0b8e2a2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:39:20.8952232Z\"\n }" headers: cache-control: - no-cache @@ -1733,7 +2152,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 04:46:11 GMT + - Thu, 29 Jun 2023 11:40:46 GMT expires: - '-1' pragma: @@ -1765,24 +2184,168 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b268226d-cbc3-4894-b6b4-9fa4d0b8e2a2?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"6d2268b2-c3cb-9448-b6b4-9fa4d0b8e2a2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:39:20.8952232Z\"\n }" headers: cache-control: - no-cache content-length: - - '168' + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:41: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 start + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --nodepool-name + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b268226d-cbc3-4894-b6b4-9fa4d0b8e2a2?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"6d2268b2-c3cb-9448-b6b4-9fa4d0b8e2a2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:39:20.8952232Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:41: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 nodepool start + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --nodepool-name + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b268226d-cbc3-4894-b6b4-9fa4d0b8e2a2?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"6d2268b2-c3cb-9448-b6b4-9fa4d0b8e2a2\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:39:20.8952232Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:42: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 start + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --nodepool-name + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b268226d-cbc3-4894-b6b4-9fa4d0b8e2a2?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"6d2268b2-c3cb-9448-b6b4-9fa4d0b8e2a2\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:39:20.8952232Z\",\n \"endTime\": + \"2023-06-29T11:42:45.8502884Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' content-type: - application/json date: - - Fri, 16 Jun 2023 05:04:27 GMT + - Thu, 29 Jun 2023 11:42:47 GMT expires: - '-1' pragma: @@ -1814,25 +2377,24 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/c000003?api-version=2023-05-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.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 }" + 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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -1841,7 +2403,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 05:04:28 GMT + - Thu, 29 Jun 2023 11:42:47 GMT expires: - '-1' pragma: @@ -1875,8 +2437,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -1884,17 +2446,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0c123a68-85b3-477a-8876-e458bba59dad?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Fri, 16 Jun 2023 05:04:32 GMT + - Thu, 29 Jun 2023 11:42:54 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/0c123a68-85b3-477a-8876-e458bba59dad?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 index 8dc0ff745dd..8c00912c374 100644 --- 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 Jun 2023 05:04:43 GMT + - Thu, 29 Jun 2023 11:33:43 GMT expires: - '-1' pragma: @@ -53,8 +53,8 @@ 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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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", + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": @@ -69,67 +69,66 @@ interactions: Connection: - keep-alive Content-Length: - - '1796' + - '1467' 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-8s27saxf.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-8s27saxf.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/a74e3ec7-c73f-4b95-bc2c-c5173e019c57?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e49d677-95dd-4d75-bd15-283c77874bc5?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3378' + - '3049' content-type: - application/json date: - - Fri, 16 Jun 2023 05:04:53 GMT + - Thu, 29 Jun 2023 11:33:48 GMT expires: - '-1' pragma: @@ -141,10 +140,995 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: + - '1198' + 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 + --service-principal --client-secret + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e49d677-95dd-4d75-bd15-283c77874bc5?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"77d6490e-dd95-754d-bd15-283c77874bc5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:33:48.5191918Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:33: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 + --service-principal --client-secret + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e49d677-95dd-4d75-bd15-283c77874bc5?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"77d6490e-dd95-754d-bd15-283c77874bc5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:33:48.5191918Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:34: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 + --service-principal --client-secret + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e49d677-95dd-4d75-bd15-283c77874bc5?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"77d6490e-dd95-754d-bd15-283c77874bc5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:33:48.5191918Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:34: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 + --service-principal --client-secret + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e49d677-95dd-4d75-bd15-283c77874bc5?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"77d6490e-dd95-754d-bd15-283c77874bc5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:33:48.5191918Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:35: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 + --service-principal --client-secret + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e49d677-95dd-4d75-bd15-283c77874bc5?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"77d6490e-dd95-754d-bd15-283c77874bc5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:33:48.5191918Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:35: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 + --service-principal --client-secret + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e49d677-95dd-4d75-bd15-283c77874bc5?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"77d6490e-dd95-754d-bd15-283c77874bc5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:33:48.5191918Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:36: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 + --service-principal --client-secret + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e49d677-95dd-4d75-bd15-283c77874bc5?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"77d6490e-dd95-754d-bd15-283c77874bc5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:33:48.5191918Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:36: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 + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e49d677-95dd-4d75-bd15-283c77874bc5?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"77d6490e-dd95-754d-bd15-283c77874bc5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:33:48.5191918Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:37: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 + --service-principal --client-secret + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e49d677-95dd-4d75-bd15-283c77874bc5?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"77d6490e-dd95-754d-bd15-283c77874bc5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:33:48.5191918Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:37: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 + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e49d677-95dd-4d75-bd15-283c77874bc5?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"77d6490e-dd95-754d-bd15-283c77874bc5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:33:48.5191918Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:38: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 + --service-principal --client-secret + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e49d677-95dd-4d75-bd15-283c77874bc5?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"77d6490e-dd95-754d-bd15-283c77874bc5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:33:48.5191918Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:38: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 + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e49d677-95dd-4d75-bd15-283c77874bc5?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"77d6490e-dd95-754d-bd15-283c77874bc5\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:33:48.5191918Z\",\n \"endTime\": + \"2023-06-29T11:39:10.8044725Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:39: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 + --service-principal --client-secret + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-8s27saxf.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-8s27saxf.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/933bdfe3-dc68-461b-9144-497cdabbb427\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: + - '3313' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:39: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: + - 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-8s27saxf.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-8s27saxf.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/933bdfe3-dc68-461b-9144-497cdabbb427\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: + - '3313' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11: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: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks get-credentials + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --file + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + response: + body: + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": + \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSU1hOU1FYTnFNbWhKUkc0dldrdFpXRnBoVFVvMFZFRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxcWEzaE5WRWt3VFVSb1lVZEJPSGxOUkZWNlRVUlplVTlVUlhoTmVsRjNUMFp2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVSekNrMTBjR2RxVVZGQmNGUnZjMWcyUTFFelEzZHZaRUpCZGpKUWMzVnljMlJZZUZKdE5ESkRlSGxQYXpabmEzTkJjVTR2VFRGcUx6VmhaVWxTWVZoNE1Dc0tRV1JGUlVGRGRHeEJOMUIwWmsxUVZFRkdiMDAzTUdaTWJrVjRWblJSV0RoNU5XUktSVzVvVVVkUlNsQlhOMDlsVDNoWmVVcEZhbWwyZVdWMWJXbFJid296VVhjeVlUVXpUMHBDUWt4bFZGRXJkbEJsWTI1cldVNXlURXAxTjJZNVpraHdOVVZCVUhkdmVDdERVM2hUWVRkcFZGWjFORkZJT0VsellraFNWMDR6Q25BMlEwMVJVMlJQUzBkWFR5dDRaRkIxSzFWa1UxRldVVFJrVW5aWVRGVkZUbWxTVkV4T1ZGSlBlbmxxUkdwcFdIRkxVMFZLYm1oNFZXUnBNMlUzSzJVS05rTnZhWFJ0YmpOVlkzazNRVlk1ZVZGVE5tVkJVbWQ0TVZSMGJsTlpjMDlMZHl0NGFVOTROSFEyZG1SaWNWYzRRblZVWTNscVNVSTJRekJLVEZkMlR3cFBORXByYldWaE5FazVTWFJTY0dwSmMwNXhNR294WWtaVk15OVlaV0ZIT0RWQmMzZEtPRkpsT1V3ck1HVk1NazAyUkhJM1RHZFFka1pITW1Sd1NEbFFDbnBVTW5SVWVYbzNhekZZYlc0d2NsaG1TbGxhU25oclpqbExVa3hPV0RkTk0zQm1LMFppVkdadk1ESXlUV296UmpKUmFqVTRPVEl5YmpabFZuSnVkMjBLYjJobU9VZE9VbmRzZWxvelJGaHNhWG92TVRoaU1GZDNlRlIyUzAxSFRFSjZhbkJRSzFaTVpITkxXbTQzZUVWUVNsWlBVWE41ZURkNWRuSkhNSGxzUWdwa2QzTnJRVE5zUW5kYVpIbFphek5KTjJOQlprTndhVGhoU0hwc09HOHpWbVp1VlRoWFFrSm9SRE5zZDBaMmJUTkRNSE5DYWpFdmVraGtkMlpHZDBKTENqUm1VVTlPSzJoSmVuVkRRVk5uWVc5YU16VlVTMlk0ZEdoUVJGRjJhbWxyUmpCQ2JWbEZMM0EwVjI5U2VVaEpNQ3R4YlZWNVRTOXVNRUZrTjFaeGRFUUtTbTFMYXk5Rk0wNDVOMmRxVkhad1YyazBRM1I0T1VwbVZrWkhWMkpxU25ScGNrZzRiRzFFYVc1M1NVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZVeU5rNHpXbVJwU1ZkVE1GZHJiRE5CQ2tJM2VuVnFZelE1ZDBKdmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGRlRGWTJLMjExZEZwcU5WTTBNV1EyWW1kSlZVMUNTbWxvT0NzS2MzZEpVRXhIUkVkVE5uWTRWRXQwTjFsRFZtZEhValJZTVc0NFVYWnVNa05hUVhsbVIwaDJZM05yYTBkNlZFaFBRMmxsYTBoV2JsVlNSa1pWU25sSGVRcDNiMHRHWkdKalYyVm5UREZRUzFweFlVaDRUVzlyYkhwcVdWRkdWV3BEVDFaaWIweFFjVGxCVWtWbFpDdElZbXhFV0RKUk0yOVJRVWx5ZVc1R1FTdHNDbEE0TlZKNmRuazFVVkV4Wkd0aFlXbHFUelZyVFVWcGFUQnlhRFF4SzBWalExQm5aRkJsVWpGSFZFNXJSa0k0VGt3dlYzUlpWMEZ4YUdweVdqUTJNbTBLY0dJNWMwNXNWWGxhWVVwWVNsVk9OM3BSTWpkd1UxUkxZa1ZyTWs1TlFuQTBabm9yZGtkVFpsbHVLMGg1V0c5c01rdHRZamRqYkdSWmVFVjZUVEZ3VWdwa1ZqTTRaMlZaVkhsRlMySjBWSGxEVTAxaGNHMVRPVU54VldOTU5XVlZTWHBYV1dkWlNIbGFTSGxYYzIxblNtdHBiakowT0M5VFRFeERaM2haZFdSbENpczVaemRpS3pKelowaHNiazVsY1VaSFZDdHBPRXNyYzNRNVFsRTVlR0YyU25Jek16TlhVMmhtWlhvd05IbHRRMkZHZGpWTGIwVTVSV281TVVsalIyOEtjVk5QVFVGTWVHTklSMVoxV1ZwclNtOVVRMngwUkRNM2JUbDFObnBMWnpad1lsSTVaamR6WlVKWlJVNW5VR3BsWjJKaFltbHlhalUxUTJoRFJtZEhNZ3BGV0haa1FreEdXbEkwVG01Nk5tTjRZbkJsWXpNMVZVcFBNeTlSWTNGWWRVVkVMMFJGV0RWTE9VNTRUWFYzWTBKclNYbEtSVXBSZDI1d09EQldlWGR6Q210Q2FtcGhTRW94VTFVNE5FVk5NRlJPWjNsMFNYWTVabGRRTWpkalprUjNNU3R5VVU5UmVrdDNNMDg1ZURKM1JGUTJiVUp4UzI5U1JFVjFhbkpOV0hrS1ZHNDJRMmd4YjB0dFoyNTFLMEZZWjNkclJTdEtkRFpXU25aa1pYaGFja0Y1V0V4TFozaFBlRGRzYTI4MVlYUjZRalpWTWtNd1dqVkdOWEJuZUdSR1F3cEpWRTh4ZHpSbVpqbEVTMWxvY1d4TkNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc3ZzN2k3ZHotOHMyN3NheGYuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3RvNGJpaWEKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3RvNGJpaWEKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3RvNWgzbWw2bjN1X2NsaWFrc3Rlc3RvNGJpaWEKICBuYW1lOiBjbGlha3N0ZXN0bzRiaWlhCmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdG80YmlpYQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3RvNWgzbWw2bjN1X2NsaWFrc3Rlc3RvNGJpaWEKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJYWtORFFYZGhaMEYzU1VKQlowbFNRVXhwU1ZKRloxTkdhMDlzVTJ4RVpWUTNiWFV4V2tsM1JGRlpTa3R2V2tsb2RtTk9RVkZGVEVKUlFYY0tSRlJGVEUxQmEwZEJNVlZGUVhoTlExa3lSWGRJYUdOT1RXcE5kMDVxU1RWTlZFVjVUa1JCTkZkb1kwNU5hbFYzVG1wSk5VMVVSWHBPUkVFMFYycEJkd3BOVW1OM1JsRlpSRlpSVVV0RmR6VjZaVmhPTUZwWE1EWmlWMFo2WkVkV2VXTjZSVlpOUWsxSFFURlZSVUY0VFUxaVYwWjZaRWRXZVZreWVIQmFWelV3Q2sxSlNVTkpha0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRkZSa0ZCVDBOQlp6aEJUVWxKUTBOblMwTkJaMFZCYlUxcFdtSklWR2gwVUc4NFlURlZOM1pDUWprS1NEWnRlWEZPY2tjNWEyWndWSFJ4TDJkalZFeFhRWE5MYW1jMVNVMVBUa3BUVFdndk9UQk5hazl5T1c1eFlrSklSVVpxUjBRek1FWm5RMWd3YWpNMWJRcEViV2hMZVdkbWFuSlNjV2xJWWxJMGJsQkJNWEpGUkcxT1UzbG1XVXRpWjIxcU9XaEpNRkl6VTAxc1RtSnVXRU5rTHpKeE5uTnVSM05TVDBwdGJteGtDa0Z3T1d3NGIxZEhiV3BMZDJFNFF6RjNabGx1ZUZCclVYUXhiMWxqY2xCTlZXdGFVVmh1VUZWNVlWTndNRGxPWW1zdmNGSTJTVzlzTkZkVFkzRXdUV1lLTkVVeVNGWmtlVXRGUzNCWWIxQmxSV05OYzFjMFZWTjNabnBWUVRFMU16VlhjMlUyU21ad2JHRTFiSFp4V1VaS2RuaHZRbU5hVjB4bmVUZDBhbFZSV1FwQ2JFTjZUV2xsYkc1MGVYQkVSRUZLWVZkS1NFRjVOekVyY0RCaFIzRndieTl1YzBoeWVWbEZTa1owZVdKa2MwUkhSbnBQV1VsR1EwdHRNME5RU2tKUkNtOVFTQzlwZDJGV1UwbE5WRFpLWkN0S01qWkxLM1pPWlhoS1JsVmtSVms0TWxkaVp5dEZUMFJhTWpKTE1tUllSbVJLTVdGalduQnBlbGhwWjBaSWRFa0tZbXdyUWpSbU9FODNUMGxKUjI1WWJqaDBjMnBRUmpoWVIwUktkRTlQWWsweFVVWlJURW93VUdGblNTOVhRbVI0UjJaNFdVTkhVRWhZYW5aaE1ISnlad3B5WWtGbFdqTlJXamxLT1dwTWExVldPVU5qVjJ4VFl6aGpVMVExUm5ONloyNW9ZWGgxZDIxTWNqVk5XV3BIU1VnNFJFczNWMFZsVGpWRE5pOXVSWFF2Q201UVUydHFOU3RTUVdJMk5HbzVOUzltTm5WV1dGQXhUbTkxVlhOUFlWZE5abEYzUVd0U2VHbE9hV2x1UVN0b00xaGtVMDl6YTJZelRYWm9VVXRqYkdJS1IyNXBTMDVuZWtWTlRXNU5Sa2sxU1doNE9UVmlkbUZaTjNRNFpsQlJhbXd5UmpCT1duaEZhR3haTVRSdWFsWlhPRWxZYjFaclp6QnVZa2xDT0ZoUlpBcHliMGRWVkVVMFpHODNkWEU0T0RGNFJrVkhhVVJzVFVOQmQwVkJRV0ZPVjAxR1VYZEVaMWxFVmxJd1VFRlJTQzlDUVZGRVFXZFhaMDFDVFVkQk1WVmtDa3BSVVUxTlFXOUhRME56UjBGUlZVWkNkMDFEVFVGM1IwRXhWV1JGZDBWQ0wzZFJRMDFCUVhkSWQxbEVWbEl3YWtKQ1ozZEdiMEZWTWpaT00xcGthVWtLVjFNd1YydHNNMEZDTjNwMWFtTTBPWGRDYjNkRVVWbEtTMjlhU1doMlkwNUJVVVZNUWxGQlJHZG5TVUpCUmt4dFYzRlNZbTUyYkcxU2RXdHpRV2N6YXdwVGNHSkVURUl5ZFVobk9FOXpielJ0TDNKdmRuTm1abk0wUlVOb2RHSktWemRyYkdobE1FcFhaMVZqUjJGMGMxZEhZVzVWVGxwTlpGVlFiMUZtU0ZwNkNrdHlWbmNyT0ROeldqa3hLeXMwU3pCUE5tdEJWamx2WVhoT1VrTk9WU3QxV1dWU1IyMXVUR1Z5V2xOR1ZqTlBkUzlVVFZSaE1HMVhXbWhvYlVobk5Fc0tlbmxWWjBNNVYzQXphVkY2Vm14TVpuVnZNVlZSVjNoalUwbEhVSFk1WlVsRVYyUjJLekl3VWxSNWRuTkZjamMyWlRCQ2RsWndNbnBXVVZWemRUUnlVUXA1UjJkbWEyVkRkRGRrWWxWWWNrZExlalpFWVM5R1JHc3ZURVpEVERRclQwcFpUREZqTDA5bFdVMU1Za2hZUlRJeE4yZHRla0ZySzNWTmExUkVVMnh0Q2xwdmNHZG9jbVp0YkZwMk5YVlhaVTFMTjBZMmNFTTNRazEwSzNOaE4zSklWRzVtY0ZoVVFUWlZkRWd6YTBoSVpEZEVOeXRaVjAxMGFUSlpaR2RSVG5NS2VtaDBSVEpQU1hSd1pVMHlWSEV4Um05NU5sVnpaRWxuVjIxV2NuWjFVbXhUVVdSemFIZExiREU0Y1haS01ubGhOelZhWlhCWk1Ea3liR0pRTUVoaWNBcEpjbVJHVkRGRlFrcEZMM1JHV2treVlrcEpPR00zVTNJMk5XMHlibGhtZUVKM1RrUmhOVU5xUkcxTllsRkZaMnc1V1hVM2JXTmtOazkxVDAxV04ySm9DalZyYmxVcmFWVndTR0ZXU0d0bEwxTXpUbVpsYkVnMWNtdDNVQzlZVERoMVMyUlZNV2hYSzFKUlQyeDFRVWxST1dKdWJFNUVhRmQzWVdkTlNEUk9WSEVLVmxsVllYWlpiRVJqZW1aeEswaEpUM1ZNYzFwMGFqWTFiME5pYkRabVNHSjRkRzlVZWtKdGNXWk1VRlF2ZW5WdmNUbFlRVVp6TUhWSmVIbHFUVGx3T0FwWEwyNUxlRVpOT0VaWWRreFdSa1Z5ZVhsaFFYSmlSMmRCWjNBMWNHdENlWEZvTm5SdUwyeDZTRVl5TkVOWVRXaDFaMnhyY2tWNFNEUnJNelI2WTNWeUNsTlpTRGx6UmxVNGVqbHVkRTFRTmt0dVZVTXhLMEp0ZEFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMmRKUWtGQlMwTkJaMFZCYlUxcFdtSklWR2gwVUc4NFlURlZOM1pDUWpsSU5tMTVjVTV5UnpsclpuQlVkSEV2WjJOVVRGZEJjMHRxWnpWSkNrMVBUa3BUVFdndk9UQk5hazl5T1c1eFlrSklSVVpxUjBRek1FWm5RMWd3YWpNMWJVUnRhRXQ1WjJacWNsSnhhVWhpVWpSdVVFRXhja1ZFYlU1VGVXWUtXVXRpWjIxcU9XaEpNRkl6VTAxc1RtSnVXRU5rTHpKeE5uTnVSM05TVDBwdGJteGtRWEE1YkRodlYwZHRha3QzWVRoRE1YZG1XVzU0VUd0UmRERnZXUXBqY2xCTlZXdGFVVmh1VUZWNVlWTndNRGxPWW1zdmNGSTJTVzlzTkZkVFkzRXdUV1kwUlRKSVZtUjVTMFZMY0ZodlVHVkZZMDF6VnpSVlUzZG1lbFZCQ2pFMU16VlhjMlUyU21ad2JHRTFiSFp4V1VaS2RuaHZRbU5hVjB4bmVUZDBhbFZSV1VKc1EzcE5hV1ZzYm5SNWNFUkVRVXBoVjBwSVFYazNNU3R3TUdFS1IzRndieTl1YzBoeWVWbEZTa1owZVdKa2MwUkhSbnBQV1VsR1EwdHRNME5RU2tKUmIxQklMMmwzWVZaVFNVMVVOa3BrSzBveU5rc3JkazVsZUVwR1ZRcGtSVms0TWxkaVp5dEZUMFJhTWpKTE1tUllSbVJLTVdGalduQnBlbGhwWjBaSWRFbGliQ3RDTkdZNFR6ZFBTVWxIYmxodU9IUnphbEJHT0ZoSFJFcDBDazlQWWsweFVVWlJURW93VUdGblNTOVhRbVI0UjJaNFdVTkhVRWhZYW5aaE1ISnlaM0ppUVdWYU0xRmFPVW81YWt4clZWWTVRMk5YYkZOak9HTlRWRFVLUm5ONloyNW9ZWGgxZDIxTWNqVk5XV3BIU1VnNFJFczNWMFZsVGpWRE5pOXVSWFF2YmxCVGEybzFLMUpCWWpZMGFqazFMMlkyZFZaWVVERk9iM1ZWY3dwUFlWZE5abEYzUVd0U2VHbE9hV2x1UVN0b00xaGtVMDl6YTJZelRYWm9VVXRqYkdKSGJtbExUbWQ2UlUxTmJrMUdTVFZKYUhnNU5XSjJZVmszZERobUNsQlJhbXd5UmpCT1duaEZhR3haTVRSdWFsWlhPRWxZYjFaclp6QnVZa2xDT0ZoUlpISnZSMVZVUlRSa2J6ZDFjVGc0TVhoR1JVZHBSR3hOUTBGM1JVRUtRVkZMUTBGblJVRnNaVzUyYzFZMFYzZHRMM1p5VW01aVNGUlFTWE55VEdWdVdsUmxUMWhhYVZaWUswc3ZhR2hPZEhKNFQzaFJhalpwVVROalRVNURZZ3A2T1VaUE1XbDRUakpXUldkNVkyUjRkMGQ2WVZsME0ySldTbTFuU20wM2NsRTRXSFF2TUV4ek5EbDZZbkJLUzBjNU9XaFBhWE54V1UxRmVFOW5jM1pDQ2pCemMzaHBTR2RPZUVZNVJWUkdlbHAzY25aMVprZzFRbEJTVUhNd1l5ODJVbkpuUTFaWVpEZGhTaXRXVDFKalFpdDFTM2hLYkdZdlQxUXhNMDVTZGs0S1lrbERXSGRMZDFRdk9HVmhVMnc0U3pBdlVVdExNV3d2TmxGU1lWZE5kRFpEYVZBeVZGWm1NekV2YUVoUGFUTnpOakpzZEVSalZFTmhUU3RZYUhnMFNBcGFOVU5GZURodGMzRldVVEZQY0VOWU4yY3paemhRTW5oR2FscEZjRW95TWpFeldGUnhNR1V4YTBWSWNWZHFLMWRyYldOWU9HRnpTbTVFVTNWQ1ZscFFDazlsZEVKclZFMTRNblF4VmpocFprOVZVamxFTHpCSWJtNHliWG93YkZSRVRqRlBUa2RyUW1jdlMwcG1aMGhzT1RFM01XeDFLMlJ5VTNWTFkzbDVWMlFLU21OdFZsY3piMjlxYUN0M2RDdDVOVlZtYVRNeWNGSndNMmxEWlZKc1NtRm1OekJ4YVVKU05uRmtabGxUTmxKUlNsWm5NVkpaTUdkdE5rMTBWa1JsY2dvMldrd3ZSRzV5TVRCV1FVSnJjR3AyVTBwM1NtOUxSbXR2UmpWNmVreEdRMWRYWW1kSmEzQmpWVGN3ZUZONWIwOXBaVzVxUkRSdVYzUkxhemhJZVdkTUNqQkpURVZPZDBKVldtaFZiV1JvYUd4bU5YaFlkMmM0TUUxd1NYZFBaRWcyU1doSlUxYzBRalJPTW5OeFNYbDNRazFFUWxabWIwaFBXalZhTlZwUFlXc0tkVGhyVWtoS056SmhOa0pQVG10MWJYYzNVVlJZVTBoT2EyeE9Za3c0T0Zoek5qZE1OMHhETTJZM1RXZFJZVlZ0T1hGcFIzWlVaemR3ZVV0Nk5ucFVRUXB1V2s5cFZXTTJTekJzT0VsMFNrbHVVRlV6ZVdadlF6VXJVSEpCZG1Rd01qaHhNMGd6Tm5wSFdqbG1UV2h4VTBsdWJFVkRaMmRGUWtGTlkwUklMM2w2Q2pKTVdHVkZiREZ3YTJ3ek5HUmFWa2xJVHpkT00xRXhTVWhpTjJoR1FUTlVZWE4zTUZNNVlqVXdSakpHT1RKdFRuWnZURWw1Um5CVVNrUlZka1JuWWpRS05EaEZUM0EwTDB0YWNYZG1RMFpHYW5aWlpuTmFWRVowY0VWNWVEQjVRM3B6VldKVlpVUlpiRTlGSzJKTlpFeENXRlJ3TWtGNE5HUTNiMFV2ZDJ0QlpncFhZMDVLU2sxTlNVNW9VSGxSUmxGYWN6bDZkMDFNZW1kRlpWaHRZa0pyYUM5NWJFTk1lSFZ0YzJVeFJ6UkVWelpCZUd4M1lXaEZWV05LWm1OclQwOXpDbWxsY0VzeGQxQTBXRXg0U0ZkalExZHJWblkyUzFKRkswODJXaXRJTUVrM2IwZ3dlVmRWUjI1a1ltMW9kVUk0VVdONlRrRklNVkpTVlhCRVNsUnNVbGtLTXpkaFYyTjNSVGMwTjAxcVUzSTFURWRDYTBsWGRFSXllRUU1YjJkVGVreFBPRTFHU1RSVFNsRTBkUzlvYm1SVkwxTkpWMFY0VFRsa2FqaE9RMXB3VEFveFFXVkhXbTEzUTNSVFppOVlWamhEWjJkRlFrRk5VMGx1Y0VzMFpYcHBXV3BaVG1GblEyTmhaRlZYUkVkV0wySkZUWE53YURWR1UzQkhXbVYyZW5wYUNuUmxRWEJ1YVd0cFRIUnFTMDQxU3pCcFNUZFJkRFJGU1c0eFpWRm5iRkpNVWpoQ1RITnROSEl5ZFd0TGJXaHliM1pxY0doVFYwbDNTM1JzWjBGa2FYZ0tUelpvZG5waGIxZFBTRzlvZURoMEsyeGhPV0k0UWtzeVZVMVZWVTkwUVdnMlZERXZWVmR0TUdsaWFtUnBNbFl3UVVOa2MxTXpNMFZMWnpablNVUktad3BtYjJsb1FWZEpUVkZXYTFGNVZrbDBXa0ZrVDNwbk1Ya3pOMU5pUWpKa2RWUmpTMWx0U0haNllXSXllRVVyYkU4NFpra3JiblZoTjNOSVkzZE9SRTFTQ2sxcFRVMHZkMVZ3VjA0d1ZscHlXQ3M0YWtkSU5uTnJVRGR4VlhoV1VERm5hVEZIWWtWM1RWUjVOazB3UkhsdlQxVmlUekpXYzFwYVFsQXlRbGxTWVcwS0sxUkRPVk54WW1jelMyeHZUa1pMYXl0bk9Hd3daekV2Y1VWamFFTlBVa1J5YkU5R1MybDRSeTgwTUVOblowVkNRVXBPY0VoVGFIaHFkbEZ1Y1dwTVNBcEpSVTgyTld3elRreExSVEp0TmxwaE5Vc3laWGwwZG5reloybHJUa0ZxYjNkbk5rVlVUamxEZG5aeVp5OXZZbkJVYzJsWFRXa3lNemRtZG5sbWRYUnFDbGxQYm1ScmNYVXlNVmw2TkRkWWRsQlhkMUF3VGtFM2JFTXdjMHd4YmpsRk1IQkZhM2MyVERReE4xZFdPVWhyTm1Od1FVdFRhbWd4UVVkb1IzQmFVbElLV1V3d2JHczRRek41VTBzclVqRjFaMGhoU0U1TVFWUjRlV0U0YkRsMk4ydFhjV05ISzAxNlZFYzNhV05MTDFNMmVubDFkR3hUVlZCcFNtbHFSblZGTlFvNWJtSXZOSFIwYTNKQlkxWktXbHBCU1hFNFVXWk9ZbmxyT0RSdmJsUlRhMlJsT0hGbGRHVklkRGd3Wld0b1drTndiMWhaYkhONWFtbENTVmhJZEdseUNrazVOWFJLWkVGUGFqWnlOMHBWYlVWeU0xVTJWVE5TTm14aGJTOUNURUZJWmt0RWJraFNUVWhSVUd0bGIwMUtMM0JFWWxBd1Z6QlpMMlJWVmtkSmFXOEtLMDFpU0hkTlJVTm5aMFZCV0VwSlVsSjNRMWxKWVdSU1pVbzFia2xKVVVreWN6UlBXa3RWVm5WMWRqZDZRWEZIU0hsWVptOHZWRlZCZUhJelVWWTJNUXBtUXpFM2EyRkdlR1JRZFVGbk9HMW5OME5xU1VOd1drOHpTbVZNUjNaUFZFMUNUbkpXVDA1MGRuRm1WMWhsV21OUFNHeE9VbFpxZEhoaUszSjFjMHQxQ25CWVFrWTBSMkp0WTBkMU5HNDRaVFpOWVc0cmNtTjRZbEpVYXpCRGNuTmlOVGRUUzJ4VFdGaGpUSEJGYzBvNU1sRTVPVTloZDNkcFlsazJVWHBVVFVNS2EwMVphMWhaTWpsM1QyUjNhazF6WmpkaWVtSTVkVGQzZERSclUzZGpaRGhrWm01NllrRkNaMWN2TnpnM05tUlhWR295Y0ZOTGFDOHlhSGxxTDJwV2F3cG5kbGw1Ynl0VVRFSlhUMFY0YlVjemQxb3lSRGMzYWt0NGIzaHdibmhvZVRSYVQwTXhVV1JpYlcwNU0xaG5VRTlKZFRSUE5HaEhVamRHUVhNeWJpdDBDakJEYldsQk5EbHljbFJxWlZGTVpIaGtkR1J5YW1ORlNGZHdWM1J6U2psalpsRkxRMEZSUlVGeFZuTlVhVVIzVXpoWWMwbE5RelV6WWtKSlN5OVRSR01LY0dSdlEzWnFOMlptZGxwS1EzUjBOMVZxZDFGeFZ6Wk1jWFpQZERObWFuVTJabk1yWlhOVWRGUkhjRmt3U0d0QlYwOUpPWFpFTm5sMGJ6Z3dWQzl1YmdwQ2RXMHhjbTlEYUd0SE1uQk5RbU01VFhsYVZrUkVZVmRHUW5WSWFteEJXVEpzZVVkc09Xb3dOa00yZFZwYVpYRlBUbHA0TVVObVpESnpRbTVDYkhCc0NqSllVVXh0UTJscE1sQnNPVGQ0U1cwd1JWWXJRbFIxVVVNelV5dEhjQ3R6UldoUlNVaFNRMDVCYTNGYVdYWmhObTgwT0VwS00waEtOVWxSUkhKVFdVd0tha04yVVdGVFEzaDRhRWwyVVRWbE1WWjZjVEJaWm1weVozbG9NRWxHTjFGVVFXbGlOVUl2T0hCQlNGQjFaMUkzUkc4MlZrRk1VM0JvVVd4WFJtMWFRUXByUkROU09VSXpTMHhJSzBKVFRtaEVZbVY1WXpCM2VtTllkVzlEZDJwbE1DdE5RVlF3U2t4S2FDODRReTk1VldGT00waHlZVU0zY1hwdmNtdDBaejA5Q2kwdExTMHRSVTVFSUZKVFFTQlFVa2xXUVZSRklFdEZXUzB0TFMwdENnPT0KICAgIHRva2VuOiB6eDc0NzRpeGFoNnBmMGtnbjNvNmYzemVpa24zN2Rmemhocnc4aHVvMmhvNXQ1ZGUxeGdlY3lpcGdqYnVodTl6MGVnZzR2b2FsZWZyNno3ZzAydjF2NTN2c3drbXJ3bWtrMTh6cGdnM2p3azlrZ2xnY2Y2YTQ1c2praWpueXphOAo=\"\n + \ }\n ]\n }" + headers: + cache-control: + - no-cache + content-length: + - '13084' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:39: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 + x-ms-ratelimit-remaining-subscription-writes: - '1199' status: - code: 201 - message: Created + 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 --labels --node-count --tags + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-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.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n + }" + headers: + cache-control: + - no-cache + content-length: + - '1037' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:39: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: '{"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, "tags": {"key1": "value1"}, "nodeLabels": {"label1": "value1"}, "nodeTaints": + [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": + false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + Content-Length: + - '503' + Content-Type: + - application/json + ParameterSetName: + - --resource-group --cluster-name --name --labels --node-count --tags + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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.19.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/1418865a-8675-49e6-ab2b-411a70dff521?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '1069' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:39: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: + - '1196' + 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 + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1418865a-8675-49e6-ab2b-411a70dff521?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"5a861814-7586-e649-ab2b-411a70dff521\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:39:28.098397Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:39: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: @@ -153,30 +1137,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 + - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1418865a-8675-49e6-ab2b-411a70dff521?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c73e4ea7-3fc7-954b-bc2c-c5173e019c57\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T05:04:53.5275488Z\"\n }" + string: "{\n \"name\": \"5a861814-7586-e649-ab2b-411a70dff521\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:39:28.098397Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Fri, 16 Jun 2023 05:04:53 GMT + - Thu, 29 Jun 2023 11:39:57 GMT expires: - '-1' pragma: @@ -202,30 +1185,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 + - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1418865a-8675-49e6-ab2b-411a70dff521?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c73e4ea7-3fc7-954b-bc2c-c5173e019c57\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T05:04:53.5275488Z\"\n }" + string: "{\n \"name\": \"5a861814-7586-e649-ab2b-411a70dff521\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:39:28.098397Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Fri, 16 Jun 2023 05:05:24 GMT + - Thu, 29 Jun 2023 11:40:27 GMT expires: - '-1' pragma: @@ -251,30 +1233,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 + - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1418865a-8675-49e6-ab2b-411a70dff521?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c73e4ea7-3fc7-954b-bc2c-c5173e019c57\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T05:04:53.5275488Z\"\n }" + string: "{\n \"name\": \"5a861814-7586-e649-ab2b-411a70dff521\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:39:28.098397Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Fri, 16 Jun 2023 05:05:54 GMT + - Thu, 29 Jun 2023 11:40:58 GMT expires: - '-1' pragma: @@ -300,22 +1281,117 @@ 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 + - --resource-group --cluster-name --name --labels --node-count --tags + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1418865a-8675-49e6-ab2b-411a70dff521?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"5a861814-7586-e649-ab2b-411a70dff521\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:39:28.098397Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:41: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 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1418865a-8675-49e6-ab2b-411a70dff521?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"5a861814-7586-e649-ab2b-411a70dff521\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:39:28.098397Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:41: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 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1418865a-8675-49e6-ab2b-411a70dff521?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"5a861814-7586-e649-ab2b-411a70dff521\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:39:28.098397Z\",\n \"endTime\": + \"2023-06-29T11:42:24.8035765Z\"\n }" headers: cache-control: - no-cache @@ -324,7 +1400,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 05:22:51 GMT + - Thu, 29 Jun 2023 11:42:28 GMT expires: - '-1' pragma: @@ -350,67 +1426,40 @@ 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 + - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2023-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + 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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '3642' + - '1070' content-type: - application/json date: - - Fri, 16 Jun 2023 05:22:52 GMT + - Thu, 29 Jun 2023 11:42:29 GMT expires: - '-1' pragma: @@ -436,66 +1485,54 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks show + - aks nodepool list Connection: - keep-alive ParameterSetName: - - -g -n + - --resource-group --cluster-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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2023-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + 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.19.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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n + }" headers: cache-control: - no-cache content-length: - - '3642' + - '2184' content-type: - application/json date: - - Fri, 16 Jun 2023 05:22:54 GMT + - Thu, 29 Jun 2023 11:42:30 GMT expires: - '-1' pragma: @@ -521,32 +1558,54 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks get-credentials + - aks nodepool list Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - -g -n --file + - --resource-group --cluster-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: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2023-05-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ - \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSUzBkQmNHTTBMMFZJVjNodWRFdFJVM0ZEWnpOU1JFRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxVVdYZE9SRlV4VFdwc1lVZEJPSGxOUkZWNlRVUlplRTVxUVRGTlJGVjVUMVp2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVRekNreHllbXR2WkdscmJTOHhWM04yYmxkS1VEUlFhM1ZJVGs5MVFrVm9ORTgyY0ZCS05ESmFVbmhzWlhGeWNGcFJWMmhNWTFSWk1EWTRiWHAzWkdOdlRVOEtWRWRuZGtsbGR6QkxSSHBhUkhsMlNEVlVjVkp4ZFVKVU1qTTNRbGQ0ZWtkRFMzUk5TWGhOVG1ka2RXMW1OVU50YzBnMlJHWlBUamxxVFZZMWFFWTBUUXBDUTFCQ2RFbzJjM2xaUVdnMFpITnRhekZVUlZaV1pGTnJNVmxsV0d4alVrOHJPRmhxVlhWSFVWUlVkRk5DVUhZd2IzSTVOMmcxTDNOeU9IVlBWbkY1Q20xdmRVbFZOMjlNVVU1aGFGbFRSRlp6WkZkSWRVTkRWVXBtYWtFcmNFZFJOblZ3ZVdKWFpFVXJiamx0WlRsUWMweHBlazluVmtGdU5FWnBOWGRoY0RFS1RVNTBSVEZIYm5nMlVuZzVLMGd4YmpKVlFYUnNXaTg0YTIxTE1GaFZPRUZVTkhwc1RHdGtXRWd6YTFWYWRXNXJaWGRhU1VwS1l6UTNkMUJ0VDFncmRncFpXWHBWYm1aWFRFNXdNSFZCTVhKeVVtTktTRlpuTUdoNlFsSmxjWGxZZURONU1EUnBaR295WVRKWmVHTjFSRkZMV2toTWEwdEZkR3BsT1VZMVNXODFDbUZZYUZkQk9UVlJLeXRqT0d0VVZ6aDBTR28yVkV3d2JrVkRaMEpYVlV0cU5VbHZSVlJHVTFOUUswZDBSWEZqTTFGUk5WVTJZMlZGY2pCalZXSjJXSGdLUzB4ck1uUTRRWFV2ZVhadVYwcDBLekkxU2pScFIxaEJRWGd5TXpOR1RrZEhLMkp6U1hwb2MxTkROamx4WTNZM1RsWlNRbGRMWm14VlRtSnRjSE5ZZWdwNmNXVlFkVlJxVTFWa1lWRmthMEkxWVRWUmVTdHJNV0p2ZUd3eFJYcE9UbVJzTUVKYVJtUjFLMHBOS3prNE5HRlllRFF3VkVwVFNVTTRRVlV5WlhOSUNrRnBPVVJEWkdSelprRnFXVUV6ZW10UWNWQnRXRGRRVG1WT1RWcHVVRFZYVjI4d1ZYaFNabUZFYjJ0a1EyeEhkMXBVWm5GUVRuQkNha1JrYWxKSlZta0tSV3QyZEhjNFpEbGpTbXR1VkdKM09XcFBabkk0UlVORFFsaERhV1ZxUkUxaU9YSnhSMkZSYTJGM1NVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWeFRWSXJXazR5V0dkc05UVlBibEpsQ20xNU1WaFdaWFprUW10QmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGTFFXaEZhR2QzVG5wNVkyVmhUVlZ5TjJGc1VtWjRNRzFXUTFVS2RpOUVVVzFYUlZGVVZubHpTbFZHTjBoTFZWVnlkVGR3VlhCRVVYZE5ZVWx0ZUZoT1pYcGFjVGhxZUZaYVJYVmtXbVJrUkZGSWNWSkJVV1ZMZFRSVGRBcENWM1JoZFhwbGFtMXJaWGRIYm10T1VESmtTekIzTnpkS1VpdEpiaXRpYUV4blpGRnBjVU5UVTNaQlRVOXVNM0JNWkd3MlJrTXllbk4yVVVaT2NtaFZDazF6V1dwSlZHdEVORlZUY0VWNFR6TlNUa1Z2ZGpKaE9FZEJNMjF5ZUUwNWFHOURkWGc0Vkc5RVVWTk9hMGt6UkU1WFNuZDFNMEUzVWxkQ056ZGxMMDhLUkZCdldqTnZTVFZRTDNWUVNrdzJhR3RUY2s5a2VYcEtkRFJPTDBkcWFsUmhkRFJMYUZsSmR6WmxiMngwTWpjMFJ6aExTRlJSTldoSU9VOXhVWFY0WndwdUwyNHJaVlV6ZUc1cWNISmhkbWwyY25GT2VXdGtWQ3RCY21Sb05XbHhTMmxWYUZNMkswZDZOVVpUVVd0T1lUUTRWM1ZSYjNoclNFNVJOWGR2Umt0TkNrWXJkM1ZxTmt4WGJHZElPVTloY0dSd1lXRmlLMHd3YkdkeFZuWTJhVUpWTVc1YVRERk1kWFVyU2xGb2RHMDBTMmN6UzNFeU1rb3hVbWhaVUU0eGNFd0tkbWd6TUVjeFUzbFFUM3A0UmtGclluaG9LemR2Wm01R1ZrcHBkV1I1YmtoSllXMVJSQ3RHYldOUFRIZDVWR2N5YlZKSmFVVTBSMDFKTUZWNVRsZzVhUXB2TldZeGFHaEpkVFZNTUVKbFJWcElVRWRVVXpGeVpYZ3djbVl5UW5ZclNsRjRSa3AzVGl0NldVNDBOREY0WjFKMmJWSldWVVUxVW5GaUsyUk5VWEJTQ2pRMVRqVk5Xbk5RYnk4M1luUTJkRGxOVUU5dGQwTkVUV0pMWVZGaFNXZFNNVlIzTjJSdlEySjJUR3BTWnpadVJqTlVTSEZYU1VGaVpFNUlNazR3ZG5ZS1lsQm9RVGcyVldkNVRHbHhZMUpHU0ZaTlIzRmlSRmxsUVhKME4yazRjMUptUnpadmFYRXhRMDlGT0V0dldEZDJLemhDYlhCd09WcDZlRFZKWjNwaFdBbzFMMDl3UjJsTVdIQjFNVmxWYjJsWENpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc25id2JtbXctM3NxcmRjYnEuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3Q1cnJqc3gKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3Q1cnJqc3gKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3RrYWx3ajNjZjd5X2NsaWFrc3Rlc3Q1cnJqc3gKICBuYW1lOiBjbGlha3N0ZXN0NXJyanN4CmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdDVycmpzeApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3RrYWx3ajNjZjd5X2NsaWFrc3Rlc3Q1cnJqc3gKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJYWtORFFYZGhaMEYzU1VKQlowbFNRVTA0VVU1cE9VMWtNVEZKWTNwT05sZ3ZhRWhJTUVsM1JGRlpTa3R2V2tsb2RtTk9RVkZGVEVKUlFYY0tSRlJGVEUxQmEwZEJNVlZGUVhoTlExa3lSWGRJYUdOT1RXcE5kMDVxUlRKTlJGRXhUbFJKTlZkb1kwNU5hbFYzVG1wRk1rMUVWWGRPVkVrMVYycEJkd3BOVW1OM1JsRlpSRlpSVVV0RmR6VjZaVmhPTUZwWE1EWmlWMFo2WkVkV2VXTjZSVlpOUWsxSFFURlZSVUY0VFUxaVYwWjZaRWRXZVZreWVIQmFWelV3Q2sxSlNVTkpha0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRkZSa0ZCVDBOQlp6aEJUVWxKUTBOblMwTkJaMFZCZUROdVlVZEdUVGR0Y1RsYVVta3lWRVpUUVRnS2NURmpTMDByWkhkMVNUbHJlRzF5VVU4clNrRk1RbU5JTldOVVRsRlhSM3BYUmtabmVFMHZWREpKVlROaWFUUTRVV2h0VFc4clQwVmFUVXQ2TVhGS2JBcEJWbmhhYmxFMlpXRjBVbTEwTTJkSVYzbFhMM2t2WVRsWlRWZDBkVE5KYTA5eFRYTkJOa1ZyY214eFNWUkphWGM1YzA5TU5qaEtTMEZ6UW14dWFuVnRDakZGWkhadVRVUlllbEF5V1RnNFdXTnJVVWczYkV0a2FEYzFjRGhHV0hGNGVVTnZUR05zVFdVcmVESlpZbmxKYmxnNFEwWmplVXMzZDBrMGNFTjFUaThLZG0wM2FYVmpRbkpNUlVoek9FTXdRV3htTlhBeU1teFJaR2h4VG05WEszSTFlREJ6V0ZWME1GVmpNRnBuV2poeU5TODVTWEY1U2xJeWNVNXdOSGh6ZGdwRWF6TTNlUzlhVkhCaFdVOXNXV05UUldveVdIQm5lSGxETWl0S2FXcHNWV1ZzTVVGalowNHpaVmx6U1RWTlRFdHpRazFxZFZKU1QzRkZVbmxIY2taakNubDRaalp0TlcxcU1qTlBLM2RvTDFaaFZ6ZFRSRTl6TVRkYWEyMXVWRWszZVhJeE5HVTVPSGhwVlZJNGRHZEhNREJRYkhscVMzWTFNVU5aWVhWWk0yb0tURVl5VTBwblFqSjNOSFpFVHpoR1JXSnhMeTltZDBsNWJUUjBORUZSYVhSUVdFNVdja1JyUWtOc1oxUnJUVU5GUVN0d01VUndWRnBEZG1kS2VucGpjZ3BwYWtjeFpURjNkV0kwUjI1MmFrMUJOMjE0YjJWQksxSlpRMWxMYjFkRFEwOWllR1pCUjBkbU0xQlJhMHBhU1dGeWFGa3lla2hDVVRNelduSk9RblpPQ25Rd2RESlJaU3QzVVhZcmJUbGxia0prUTFNNU1VZFZWVEZ6T0RjNWFqVndhVUpyVVV0dk1UZFFNVUZEYkdneWEyUkhjbk5YYVRObmVTOXBibTVNVEVnS1pISTFSRmxWY0Rkd2JGRnBNMDVEUjFoU1IzWm1WRXhhU0ZBMlpUQTFWM1UxYVhWeGMwMXNWbkJQWldVMk9YSjNXQzl2UW1FeWRGaGxkMk0zZDBrd053cHRSbEJPTVVoS1RtVjFaWEpVV2xOVFFUWlNUeTlHTUVOQmQwVkJRV0ZPVjAxR1VYZEVaMWxFVmxJd1VFRlJTQzlDUVZGRVFXZFhaMDFDVFVkQk1WVmtDa3BSVVUxTlFXOUhRME56UjBGUlZVWkNkMDFEVFVGM1IwRXhWV1JGZDBWQ0wzZFJRMDFCUVhkSWQxbEVWbEl3YWtKQ1ozZEdiMEZWY1UxU0sxcE9NbGdLWjJ3MU5VOXVVbVZ0ZVRGWVZtVjJaRUpyUVhkRVVWbEtTMjlhU1doMlkwNUJVVVZNUWxGQlJHZG5TVUpCUWxBM2VsRXlibU5yTjNaSGNYTllhakk1VFFwb09UTldNMmw0UkVjMlIwZGpkVzlVZGtGVlJVRkZSemQ0Ykc1dGJYcFJZMWwwUjBKMmVXWlhWVzFLV0V0WWJYWkhlbWRWVjBaVk1VRk1UM0EyWjJOSUNsbE9LMEZSVEZOeE5XRjBkbGxYTUZrellXWjRRbmRaZG1VeWJIVXZTM040U2tack0yWlhVVkpuY0RKNWVtaEtSRTFtVmxBdlpXTkJkMDVSWnpGSE1DOEtNalpuZGtaR2FtNTBlakV3UzFGVE5Fc3dSRXBYTW5ocU1FeFBiVGxFY0ZobGVUZHdVWFowZWxGeldsVTFMMjB3UjBKdVMwdHFSamx6UjFkdlZYazRRd28yUkhWemIzSlhTR3MwTUhwclZrRjZOMXBZWWxOSFNHTmFNelJXYVRWSU5IbFBNVXBYU2poWmRYVm5VeXRMUW5kNVkwVXZPRXB5ZWtWeWNteHlUMjlWQ2k5eVkwVk9SV0ZJZUdobWVrUkJaMDg1ZUVSV1FrTmtjVXBOTm5VMlJVdzNjSGM0VnpVMFRtMUxTMlY0VFdVdlpIUXZURWd2YzA1alJHaE5NMVowUms0S1pXTjFlVnBuUWxSU1pHZEJUbGhpVHpsbFRITXhMMm9yS3paVlRYcE9ja3c1UVZKblJVdHZUMkkxTHpKNlVrOWhiemhSYVcxMGQyNWtWMmd3WkRsUVF3cEdTMUZLWVROUFNqaHFXWFprVUZkaVNtOXNVMUJ2Y0dkTlJrZ3ljekJXVUhneGMzSnFhMmhPTjNwb2VubHRjamROYmxwQ2VXTjJPVmhuTlRKV09GTlhDa2hNV25ocFNsRXdRemxFTjBwTFNUYzJZM2d3WkZRNU1WbE9Va05RVVdOUFQzSk9Sbmt2TUM5ek9Fd3lReTlTVjFOcVpUZ3pNVloxY0ZKTVZuUnBTVklLVlVObGJsUmpMMUowUVVKM2FqTkJaekJsTlVKMVRuZFZRbWhET0ZvME1uRk5kVXhQV2psaVpWTnZjVGx2YlU1R1NHdEdXbk5GVEM4NE1WWmlVV0pxVXdwalpFMVhTMnhsVmxKR01tRjZXVXAxYUZoTmJFaHlWblpLZDNsS2VWaGtkMjB5UnpsTlluQlNjMVJNU1RoNVdGazRZMFJZYTFKa2IwNTZUVWRIVEcxMENqRmlka2gxU0cxVVEwNXdLems0TjFWa1drUlNWMjVJUXdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMEZKUWtGQlMwTkJaMFZCZUROdVlVZEdUVGR0Y1RsYVVta3lWRVpUUVRoeE1XTkxUU3RrZDNWSk9XdDRiWEpSVHl0S1FVeENZMGcxWTFST0NsRlhSM3BYUmtabmVFMHZWREpKVlROaWFUUTRVV2h0VFc4clQwVmFUVXQ2TVhGS2JFRldlRnB1VVRabFlYUlNiWFF6WjBoWGVWY3ZlUzloT1ZsTlYzUUtkVE5KYTA5eFRYTkJOa1ZyY214eFNWUkphWGM1YzA5TU5qaEtTMEZ6UW14dWFuVnRNVVZrZG01TlJGaDZVREpaT0RoWlkydFJTRGRzUzJSb056VndPQXBHV0hGNGVVTnZUR05zVFdVcmVESlpZbmxKYmxnNFEwWmplVXMzZDBrMGNFTjFUaTkyYlRkcGRXTkNja3hGU0hNNFF6QkJiR1kxY0RJeWJGRmthSEZPQ205WEszSTFlREJ6V0ZWME1GVmpNRnBuV2poeU5TODVTWEY1U2xJeWNVNXdOSGh6ZGtSck16ZDVMMXBVY0dGWlQyeFpZMU5GYWpKWWNHZDRlVU15SzBvS2FXcHNWV1ZzTVVGalowNHpaVmx6U1RWTlRFdHpRazFxZFZKU1QzRkZVbmxIY2taamVYaG1ObTAxYldveU0wOHJkMmd2Vm1GWE4xTkVUM014TjFwcmJRcHVWRWszZVhJeE5HVTVPSGhwVlZJNGRHZEhNREJRYkhscVMzWTFNVU5aWVhWWk0ycE1SakpUU21kQ01uYzBka1JQT0VaRlluRXZMMlozU1hsdE5IUTBDa0ZSYVhSUVdFNVdja1JyUWtOc1oxUnJUVU5GUVN0d01VUndWRnBEZG1kS2VucGpjbWxxUnpGbE1YZDFZalJIYm5acVRVRTNiWGh2WlVFclVsbERXVXNLYjFkRFEwOWllR1pCUjBkbU0xQlJhMHBhU1dGeWFGa3lla2hDVVRNelduSk9RblpPZERCME1sRmxLM2RSZGl0dE9XVnVRbVJEVXpreFIxVlZNWE00TndvNWFqVndhVUpyVVV0dk1UZFFNVUZEYkdneWEyUkhjbk5YYVRObmVTOXBibTVNVEVoa2NqVkVXVlZ3TjNCc1VXa3pUa05IV0ZKSGRtWlVURnBJVURabENqQTFWM1UxYVhWeGMwMXNWbkJQWldVMk9YSjNXQzl2UW1FeWRGaGxkMk0zZDBrd04yMUdVRTR4U0VwT1pYVmxjbFJhVTFOQk5sSlBMMFl3UTBGM1JVRUtRVkZMUTBGblFXd3ZVbGhGTldrd1IzY3paM0l2YTJaNGExRmpZekZ0UjNsRGRGTlVkMWhOSzNWc04xZ3lURzVDTmpoNmMxQkVUMlY2VURFM2VERjFNd3BtTmtSdWNtczRiRWsxWTBWUE5YUnRTblJGZVRRd1YyVnFZVlJSZDI5aGNXVXpjemtyZURsdmRESnZiazlMVVhwTmRGWlZSbUpIUm1KcVNuRklSMDF2Q21WamNtcHFXV2hDYTNoTGIyNUJjMDF3YURZd1RWaEliekZhUm5KQloxQkhhRms1Vkd0alVrMVJTMFl5UjBSMVUxUjFTU3MwUm5aaVRqRmxaVTlEZFdZS05WTmhWVk5yYldGbFNsZHdSR0ZCWTJ0cVVGSmpkMFp5SzI1R09HdGtLMG8wY0ZKSGFFaFBZMDVsV0ZSeGRsUTNMMU14SzI5SldIbG9Za3h0VHpnNFZRcEpWMlZSYjBrdlNDdE5iRU13U1VwR1dGTTNZbWhhTWtoNU9HbEdXQ3RMYUUxR1RYcDVPVVZvVG5Vd1FraHJka0ZMYzFOYVYzVXJSbkpIT1dwTmJHdDNDbTVYY0cxamF6QkxVeTlMVURNNFZrRXpVbGw0ZHpNNE4ybERWMVZxWW1KclZrTnJOblptVVhoU1FrbFZZa05sZFM5R1pESXdSelJGUjI1MlJEVjRZVWtLTUZWdk9XOWxPSGRvT1hjMmQwUlNRalZHVVRsdlUwWlhTbkpUYTBSalNsTllVa1ZFWldkWlUyRXJNMVZtY2pGRldraFNTVUkxZVVweFRtOHhUalJEVUFwWmNrWmpUbVJWTUdjMlpqaGhWa05ZVlV4eE5HNHphVzV6VWxWNWJVSmpNbk5LUlhoNFoyOUljMjU2TlM5UmJGUlhZa3N4YTNSYU9HbGpaRWgwUWxoR0NuVlVLM0V3VlRkdk4zZE1VVk5YYUN0VlYzZDJTV2htY2xkclYwbzBVbkk1Y2tReWJIUXhiWFp2YUVrcmFVWjNNMUl3T1VGdGVtcHJLMDR2TlV0TlUyc0thRlk0UlZsTVVUbHRNM3BEY2xSblJ5dDRhRFYxVG5wWFJFVmlUVUZZWVZaNWFIa3dlWGhHWVRSWVEwaDRlalJPUmxOU2IyOHdTRnBCT0RSU2IyaElSd281T0dzMUszVkpjbHBpTWk5YWNuVkdUSEE0ZFdGa1NERjBOVUpOVG5SaWFTOTViVGMwVG1ocGNHVlRTVmRTZFcxSVVVdERRVkZGUVRCaFZFZHdhMUZ4Q2s1WWVYRm9iR2RpVm5wR2ExVTRNbmxDWVV4dE4zb3hUbmREZFVGU1l6RnFTazB3ZEhNeU5VUmtPVUZwYjAxRVYyd3hWV1JRVjNGa2JWSk1iMUo1V2pnS1NtRklaR0V3TVcxaU5XTk9Za3R4WlVWWGJFOVlRM1ZFVGtveFFYcFZabnBZU2xoM2JGQlpOSEFyVFZJNFNXNUNTM2x0ZVVoWE9XaGpZakpKYlZCbGVRb3hkVUo1Wm5SeFNrTnBWbVJ3WkU5SU1Hc3lZbkozV25CblYwMVllR1Y2VkV0TWRGUklVWEE1U0ZZNFkxaHJMMUV3YURWcE1sazNaVTFOYURkS1YxWTNDbUZhY1hSVmRGQTBOemxPZGtkSFlXb3pRa1YwVUVKNFdrZFdXbVZUZWpoaGFtb3JjbFZLVWk5cFNIZDBPVXcxUlRONVYzZGljbkZIYmxNNFZtWjViRUlLV0c1M1lVVkNjMHh2UnpCTlZucDNXbWxaVjJodWJHTlZRa3RZWVdVdlUwUkdVamsxZUM5UVRtdzNOVzlCYUdaeWNuY3ZaR0ZVTlZkYWMxWnJPVmhsVndwVE4wOUJVWFJVYUd0M2NuTjVkMHREUVZGRlFUZzFWMFZ3Wm14RE9ESnZURWcxVjJaQ2EzTm1kM05rZUZGYVRuQnVlV1JOVEZGV2VFWjZPR2QxWTI5MkNpczRORnBRV0c1RFZsSnViR1ZHUVZsd2RtbEpTalUyZFhCdlUwTm1ZWEEyUVZZNGIzQmpaSGswWTNodWVuaFlTMFJJUTNweGNtUm5Uako1Tm1sT2FHZ0tZVXRXTjNCdFdIRmxOVEZxVDNVM1IyNUVjVFJSY25ONU0xVTFkek0xTmt4dlJqQklURkI2TTNJcmFUWmpOWGxNYlhaa1UxbDNhRmh2YjBKR2EwbDRTQW8zVTJ4UWRISm5VWEpuUWpSemQzWndUVkE1ZURWcVlrSk9UbVJUZEhGalMySk9aR0p0TW5CR1JVNUdiRE53UWt0blJFNUNkWGcyTUN0dE9VNTFWRWxRQ214VmFuVTJiM1pTVm1WNFdGSXZiSGhuVVROUllubElOSGx4TUVSM2QwZGlSbXhWUlc1TWJuQmhlV3N5VUM5M2NXdGFjMkkzWVZGSFEyMHhUWG8zYmt3S1ZFeFBOekEzYzNkd0syTkpZMVFyTjBvd0wxSjZlSEp0U0RRMWFqUTRWM1UwUVVGdmJta3hLMlIzUzBOQlVVVkJiWEYyV0ZwQ1VXMXJRUzlMVVVKUlFncEdMMDQwT0dSMGR6TklaWHB4WnpaM2NtNWtjSHBDV1dOaU5uQjRZbFpEVFhSdWFqVkZNa1Y1T0dKUU5sQnlXRXRWU1ZkRGJXWjJjVE5HYW5ZME5YSllDbGRNTURWVGJFMVlSRUZIUm5KeWNuSnpiMWhUY1dGSVRVTjVUVlYyVGtwelQyNUdkR0YxYnpObGIwUnZlVWszUldSbldrRkpXblZsWkhGd2FIcDJWM01LTldFNWNubEZlVzlwUzBJMWJrVm5LM3A0WTNSRmRtOUlWVXRZYTFSRGFsRTFhbkZzTURJNVVIZGlXbkJrT1c1UlZrY3lWbUpoU0ZKNU4yZDVOa1ZyT0FwQlRGVmtOR2RNV1VscFZVdEhjVGxRYWxWSlRHbzNhV1V2ZUZFMlkwNXJaWFp5VUdaMFFrbHpMMlpZZDJ4alJrbFVLeTlPUkVkVFJIUm9TVnB4U1doTUNuRTNSRWw1YUU5MFVUWnJlamxJTmt0YWJVNHpUSEo2V0dWV05HWnRNRnBzUTA4clUwUlFiRnBEVnk5TVEzcHlVM2hGUVdWdVNIWXJhSGgxU1VwallYRUtTbkpMU1hkUlMwTkJVVUZLUTBKM05VRjZjMGRTTkVwUFJUUkJiaTlhVlZvMVkyTXZVbFJZTDFoeVpXMVhOMDVNZURFeGVGSm9kblJZUlVRelZrcEtkUXBGVmpJcmVtdHNOM1F5T1dzclN6bEdTVlpwZEZSRGNtdzNhRGxXZEd0V0swNWtVVXhwTmxaSlVFMHlUVzlQZDBOWmFHVjNhREJXYkZkbE1YaDVRVzFtQ25RNFFUaExVM0JaUmtveFRXSkRRMEZ6UXpOcVVFd3JNRzVJTlhSdWNIVlpaa054WkhGemNFdFljVEZDVjNObVZrVkxhVVJ4V1M5d1RGVlVNVmt6U0VzS05HUXlXREZtVFRWcE9UaDJVMEY0TVRWNE16aEJPRzFTU3pWTlRDdHBOMEphZFVrclJrWXJUM3BXWlRoc2JrUnFZMFZyVkdWMFZ6RkdWbFV5WjFOVGNnbzJUekUzYWpkWmVuTk5NWFp6V0ZSSFNIaEJjWEJPTmxwUU1raERXbVZ3VUhaUFJqQkZaV1ZMUzNCUmIyaGFTbko0U1RJMmFtZHpTblIzYUZveU0wUTRDbUZOWVZwWVIwZFhTRnBIVEN0c1ZtRkRhU3RPTDBsQ01XTmpkMUIzVjFGV1FXOUpRa0ZHWjAxNmNYZHBWRmxqTkRKaVkzZGpVRkJRVWpSaE5FVnVUVXdLVmpkbFYwWlJTMG8xVUdSSFJqRXdTVTlwTDFJNFFucFNMMUl3WkdSQ05ETldkMnR1V0VjM1NXWTRUVGxWV1ZkV1lrOTBURzVQTjNkalkyd3ZXRFIxVVFwcFRrTkdUeXRsU1VsMVVFcHdXV1p4ZEhGQmRUaE1kRE4yVEUxb2EyWXdWRUY1Ukd0M1pEWlZZMkZ5VVc0eVR5OU5lRUZGVm5KSGJqbFhiM0lySzBOUUNsbDZiMVZHTWxCVFJYVXpXbFk1Ulhsd1VtaEJRekE1U3paRFVIWXdaRFJKYVZaVWMxWkJNa2RWUTBWek56RXdNRE5CWWxWSFpteFdTVkJNVldORGVpOEtaaTlTYmpSMVZHZHhhMk01U3pWdWNWTTNUamt5VlcweVVESm5jUzlyVEU5cGNFZzFSVmMwTlVsNVJWWjBTM1psTjJ4RU9IUnljSEpLYVdWeWQzcG5VZ3BJVXpWWmVFczFTM05IYkVKNU5VazNOVmt2ZVc1eU9VWjBZa3Q1TTJ4R2JuTjFUbkF3T0M5VFNEVmlWV3RoWm1KTlQzWkRPRGRxWVRWRVJUMEtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogb3I1bG1saGJ0N2lzYWlyYXBpNDA2MnJndGE4MjlrNXJiYXltMGQ3MnBvbTI4M2UwYTRsNzhmcXYwaW00aGFxZmRmbWF2MWw0MWtwNzB3cXlxZ2pweWx3YmI0bzJxMTh0eGx2cDd3cXgzODA1MTEwMDR3YXRkamEyNWxleHF0czUK\"\ - \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.19.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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n + }" headers: cache-control: - no-cache content-length: - - '13072' + - '2184' content-type: - application/json date: - - Fri, 16 Jun 2023 05:22:56 GMT + - Thu, 29 Jun 2023 11:42:31 GMT expires: - '-1' pragma: @@ -561,8 +1620,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: code: 200 message: OK @@ -578,36 +1635,50 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --cluster-name --name --labels --node-count --tags + - --resource-group --cluster-name --name --labels --node-count --tags --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-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.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ - : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\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 }" + 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.19.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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n + }" headers: cache-control: - no-cache content-length: - - '1037' + - '2184' content-type: - application/json date: - - Fri, 16 Jun 2023 05:22:58 GMT + - Thu, 29 Jun 2023 11:42:32 GMT expires: - '-1' pragma: @@ -628,11 +1699,11 @@ interactions: - 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, "tags": {"key1": "value1"}, "nodeLabels": {"label1": "value1"}, "nodeTaints": - [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": - false}}' + "type": "VirtualMachineScaleSets", "mode": "System", "upgradeSettings": {}, + "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": + "Delete", "spotMaxPrice": -1.0, "tags": {"key1": "value1"}, "nodeLabels": {"label1": + "value1"}, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": + false, "enableFIPS": false}}' headers: Accept: - application/json @@ -643,43 +1714,42 @@ interactions: Connection: - keep-alive Content-Length: - - '503' + - '505' Content-Type: - application/json ParameterSetName: - - --resource-group --cluster-name --name --labels --node-count --tags + - --resource-group --cluster-name --name --labels --node-count --tags --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool3?api-version=2023-05-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.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 }" + 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.19.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/232be2e3-fc74-41f6-9df0-652dc79d4ab5?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/50fec607-2830-45c8-9c1a-fad350c6d1fe?api-version=2016-03-30 cache-control: - no-cache content-length: - - '1069' + - '1071' content-type: - application/json date: - - Fri, 16 Jun 2023 05:23:05 GMT + - Thu, 29 Jun 2023 11:42:36 GMT expires: - '-1' pragma: @@ -707,16 +1777,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --cluster-name --name --labels --node-count --tags + - --resource-group --cluster-name --name --labels --node-count --tags --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/50fec607-2830-45c8-9c1a-fad350c6d1fe?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e3e22b23-74fc-f641-9df0-652dc79d4ab5\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T05:23:04.6864108Z\"\n }" + string: "{\n \"name\": \"07c6fe50-3028-c845-9c1a-fad350c6d1fe\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:42:36.8332992Z\"\n }" headers: cache-control: - no-cache @@ -725,7 +1795,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 05:23:06 GMT + - Thu, 29 Jun 2023 11:42:36 GMT expires: - '-1' pragma: @@ -755,26 +1825,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --cluster-name --name --labels --node-count --tags + - --resource-group --cluster-name --name --labels --node-count --tags --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/50fec607-2830-45c8-9c1a-fad350c6d1fe?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"07c6fe50-3028-c845-9c1a-fad350c6d1fe\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:42:36.8332992Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 05:39:13 GMT + - Thu, 29 Jun 2023 11:43:06 GMT expires: - '-1' pragma: @@ -804,37 +1873,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --cluster-name --name --labels --node-count --tags + - --resource-group --cluster-name --name --labels --node-count --tags --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/50fec607-2830-45c8-9c1a-fad350c6d1fe?api-version=2016-03-30 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.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 }" + string: "{\n \"name\": \"07c6fe50-3028-c845-9c1a-fad350c6d1fe\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:42:36.8332992Z\"\n }" headers: cache-control: - no-cache content-length: - - '1070' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 05:39:14 GMT + - Thu, 29 Jun 2023 11:43:37 GMT expires: - '-1' pragma: @@ -856,58 +1913,33 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - aks nodepool list + - aks nodepool add Connection: - keep-alive ParameterSetName: - - --resource-group --cluster-name + - --resource-group --cluster-name --name --labels --node-count --tags --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/50fec607-2830-45c8-9c1a-fad350c6d1fe?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\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ - ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ - ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ - : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ - : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\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 }" + string: "{\n \"name\": \"07c6fe50-3028-c845-9c1a-fad350c6d1fe\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:42:36.8332992Z\"\n }" headers: cache-control: - no-cache content-length: - - '2184' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 05:39:16 GMT + - Thu, 29 Jun 2023 11:44:07 GMT expires: - '-1' pragma: @@ -929,58 +1961,33 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - aks nodepool list + - aks nodepool add Connection: - keep-alive ParameterSetName: - - --resource-group --cluster-name -o + - --resource-group --cluster-name --name --labels --node-count --tags --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/50fec607-2830-45c8-9c1a-fad350c6d1fe?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\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ - ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ - ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ - : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ - : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\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 }" + string: "{\n \"name\": \"07c6fe50-3028-c845-9c1a-fad350c6d1fe\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:42:36.8332992Z\"\n }" headers: cache-control: - no-cache content-length: - - '2184' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 05:39:17 GMT + - Thu, 29 Jun 2023 11:44:37 GMT expires: - '-1' pragma: @@ -1002,7 +2009,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1012,48 +2019,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels --node-count --tags --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/50fec607-2830-45c8-9c1a-fad350c6d1fe?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\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ - ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ - ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ - : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ - : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\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 }" + string: "{\n \"name\": \"07c6fe50-3028-c845-9c1a-fad350c6d1fe\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:42:36.8332992Z\"\n }" headers: cache-control: - no-cache content-length: - - '2184' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 05:39:18 GMT + - Thu, 29 Jun 2023 11:45:06 GMT expires: - '-1' pragma: @@ -1072,60 +2054,84 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": - 0, "osType": "Linux", "enableAutoScaling": false, "scaleDownMode": "Delete", - "type": "VirtualMachineScaleSets", "mode": "System", "upgradeSettings": {}, - "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": - "Delete", "spotMaxPrice": -1.0, "tags": {"key1": "value1"}, "nodeLabels": {"label1": - "value1"}, "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: - - '505' - Content-Type: + ParameterSetName: + - --resource-group --cluster-name --name --labels --node-count --tags --mode + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/50fec607-2830-45c8-9c1a-fad350c6d1fe?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"07c6fe50-3028-c845-9c1a-fad350c6d1fe\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:42:36.8332992Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: - application/json + date: + - Thu, 29 Jun 2023 11:45: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 nodepool add + Connection: + - keep-alive ParameterSetName: - --resource-group --cluster-name --name --labels --node-count --tags --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: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool3?api-version=2023-05-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/50fec607-2830-45c8-9c1a-fad350c6d1fe?api-version=2016-03-30 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\": \"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 }" + string: "{\n \"name\": \"07c6fe50-3028-c845-9c1a-fad350c6d1fe\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:42:36.8332992Z\"\n }" headers: - azure-asyncoperation: - - 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: - - '1071' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 06:16:36 GMT + - Thu, 29 Jun 2023 11:46:07 GMT expires: - '-1' pragma: @@ -1140,8 +2146,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: code: 200 message: OK @@ -1159,14 +2163,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels --node-count --tags --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/50fec607-2830-45c8-9c1a-fad350c6d1fe?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c2be0ea6-ec0e-6c48-8804-6ca0861059cc\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T06:16:37.1315924Z\"\n }" + string: "{\n \"name\": \"07c6fe50-3028-c845-9c1a-fad350c6d1fe\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:42:36.8332992Z\"\n }" headers: cache-control: - no-cache @@ -1175,7 +2179,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 06:16:36 GMT + - Thu, 29 Jun 2023 11:46:37 GMT expires: - '-1' pragma: @@ -1207,15 +2211,15 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels --node-count --tags --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/50fec607-2830-45c8-9c1a-fad350c6d1fe?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"07c6fe50-3028-c845-9c1a-fad350c6d1fe\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:42:36.8332992Z\",\n \"endTime\": + \"2023-06-29T11:46:52.475897Z\"\n }" headers: cache-control: - no-cache @@ -1224,7 +2228,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 06:45:07 GMT + - Thu, 29 Jun 2023 11:47:07 GMT expires: - '-1' pragma: @@ -1256,26 +2260,25 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels --node-count --tags --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/nodepool3?api-version=2023-05-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.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 }" + 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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -1284,7 +2287,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 06:45:07 GMT + - Thu, 29 Jun 2023 11:47:08 GMT expires: - '-1' pragma: @@ -1316,26 +2319,25 @@ interactions: ParameterSetName: - --resource-group --cluster-name --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/nodepool3?api-version=2023-05-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.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 }" + 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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -1344,7 +2346,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 06:45:08 GMT + - Thu, 29 Jun 2023 11:47:09 GMT expires: - '-1' pragma: @@ -1376,53 +2378,53 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-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.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ - : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\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 }" + 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.19.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.19.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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n + }" headers: cache-control: - no-cache @@ -1431,7 +2433,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 06:45:10 GMT + - Thu, 29 Jun 2023 11:47:10 GMT expires: - '-1' pragma: @@ -1465,8 +2467,8 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/cliakstest000001/agentPools/nodepool1?api-version=2023-05-01 response: @@ -1474,17 +2476,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8b14248c-7d09-4919-9b88-abdac3bf61c8?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Fri, 16 Jun 2023 06:45:11 GMT + - Thu, 29 Jun 2023 11:47:13 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/8b14248c-7d09-4919-9b88-abdac3bf61c8?api-version=2016-03-30 pragma: - no-cache server: @@ -1512,26 +2514,25 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -1540,7 +2541,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 06:45:12 GMT + - Thu, 29 Jun 2023 11:47:13 GMT expires: - '-1' pragma: @@ -1582,29 +2583,28 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.19.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/ecd556ca-878f-48b4-8f90-06303c86a87a?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3220436f-a847-4f7f-be4d-dd131ed348b4?api-version=2016-03-30 cache-control: - no-cache content-length: @@ -1612,7 +2612,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 06:45:16 GMT + - Thu, 29 Jun 2023 11:47:16 GMT expires: - '-1' pragma: @@ -1628,7 +2628,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -1646,14 +2646,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3220436f-a847-4f7f-be4d-dd131ed348b4?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 }" + string: "{\n \"name\": \"6f432032-47a8-7f4f-be4d-dd131ed348b4\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:47:17.6150949Z\"\n }" headers: cache-control: - no-cache @@ -1662,7 +2662,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 06:45:16 GMT + - Thu, 29 Jun 2023 11:47:17 GMT expires: - '-1' pragma: @@ -1694,15 +2694,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3220436f-a847-4f7f-be4d-dd131ed348b4?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"6f432032-47a8-7f4f-be4d-dd131ed348b4\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:47:17.6150949Z\",\n \"endTime\": + \"2023-06-29T11:47:22.0324175Z\"\n }" headers: cache-control: - no-cache @@ -1711,7 +2711,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 07:17:59 GMT + - Thu, 29 Jun 2023 11:47:47 GMT expires: - '-1' pragma: @@ -1743,26 +2743,25 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -1771,7 +2770,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 07:18:00 GMT + - Thu, 29 Jun 2023 11:47:48 GMT expires: - '-1' pragma: @@ -1803,26 +2802,25 @@ interactions: ParameterSetName: - --resource-group --cluster-name --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -1831,7 +2829,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 07:18:02 GMT + - Thu, 29 Jun 2023 11:47:48 GMT expires: - '-1' pragma: @@ -1865,8 +2863,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/cliakstest000001?api-version=2023-05-01 response: @@ -1874,17 +2872,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/417160a4-d8ec-4ef1-8972-7902487b2d3a?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Fri, 16 Jun 2023 07:18:04 GMT + - Thu, 29 Jun 2023 11:47:54 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/417160a4-d8ec-4ef1-8972-7902487b2d3a?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_msi.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_system_pool_msi.yaml index b597809ff55..8a8d3f6353a 100644 --- 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 Jun 2023 07:18:10 GMT + - Thu, 29 Jun 2023 11:35:49 GMT expires: - '-1' pragma: @@ -53,11 +53,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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {}}}' headers: Accept: - application/json @@ -68,68 +69,67 @@ interactions: Connection: - keep-alive Content-Length: - - '1732' + - '1403' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-6l2jsbz1.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-6l2jsbz1.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/63ffffd5-4ea0-4537-9242-514f9afe9dd1?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/179829ea-da93-4381-a9e2-223b17f345c3?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3539' + - '3210' content-type: - application/json date: - - Fri, 16 Jun 2023 07:18:18 GMT + - Thu, 29 Jun 2023 11:35:55 GMT expires: - '-1' pragma: @@ -141,10 +141,1132 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' + 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 + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/179829ea-da93-4381-a9e2-223b17f345c3?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ea299817-93da-8143-a9e2-223b17f345c3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:35:55.6756731Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:35: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 + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/179829ea-da93-4381-a9e2-223b17f345c3?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ea299817-93da-8143-a9e2-223b17f345c3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:35:55.6756731Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:36: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 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/179829ea-da93-4381-a9e2-223b17f345c3?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ea299817-93da-8143-a9e2-223b17f345c3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:35:55.6756731Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:36: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 + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/179829ea-da93-4381-a9e2-223b17f345c3?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ea299817-93da-8143-a9e2-223b17f345c3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:35:55.6756731Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:37: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 --dns-name-prefix --node-count --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/179829ea-da93-4381-a9e2-223b17f345c3?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ea299817-93da-8143-a9e2-223b17f345c3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:35:55.6756731Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:37: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 --dns-name-prefix --node-count --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/179829ea-da93-4381-a9e2-223b17f345c3?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ea299817-93da-8143-a9e2-223b17f345c3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:35:55.6756731Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:38: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 --dns-name-prefix --node-count --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/179829ea-da93-4381-a9e2-223b17f345c3?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ea299817-93da-8143-a9e2-223b17f345c3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:35:55.6756731Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:38: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 --dns-name-prefix --node-count --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/179829ea-da93-4381-a9e2-223b17f345c3?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ea299817-93da-8143-a9e2-223b17f345c3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:35:55.6756731Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:39: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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/179829ea-da93-4381-a9e2-223b17f345c3?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ea299817-93da-8143-a9e2-223b17f345c3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:35:55.6756731Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:39: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 + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/179829ea-da93-4381-a9e2-223b17f345c3?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ea299817-93da-8143-a9e2-223b17f345c3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:35:55.6756731Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:40: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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/179829ea-da93-4381-a9e2-223b17f345c3?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ea299817-93da-8143-a9e2-223b17f345c3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:35:55.6756731Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:40: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 + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/179829ea-da93-4381-a9e2-223b17f345c3?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ea299817-93da-8143-a9e2-223b17f345c3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:35:55.6756731Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:41: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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/179829ea-da93-4381-a9e2-223b17f345c3?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ea299817-93da-8143-a9e2-223b17f345c3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:35:55.6756731Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:41: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 + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/179829ea-da93-4381-a9e2-223b17f345c3?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ea299817-93da-8143-a9e2-223b17f345c3\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:35:55.6756731Z\",\n \"endTime\": + \"2023-06-29T11:42:22.3919233Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:42: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 + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-6l2jsbz1.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-6l2jsbz1.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/860e5ef4-8ae7-4fe2-a4d1-f409e56b73d5\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: + - '3863' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:42: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: + - 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-6l2jsbz1.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-6l2jsbz1.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/860e5ef4-8ae7-4fe2-a4d1-f409e56b73d5\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: + - '3863' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:42: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: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks get-credentials + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --file + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + response: + body: + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": + \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVV4eVNGTkZRM0pGV1VoTVJHWk1XbEJtY1VoNU0yZDNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDA1cVNUVk5WRVY1VG1wTk5GZG9aMUJOYWtFeFRYcEJNazFxYTNoTlZFMHlUWHBvWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNuSlphaXNyVFRkQmRHWXhWU3RpU21kSVRFZFVTMUJLZFZaMk1XVndjMVpvUTBod1RGUTRlbGxvVkRkNlkyMVFXREoxZUVzeU9HWTFZM0ZNYlM5a2Nta0tTSFJ4TUZOQlNHbG9ZM0JMVFcxT1REVmhPR3gyU1VSdWVGZEdXVzVwVnk5M1ZrNVliV1JpTVdwclVHTjBNakYyZG5Cb1VVeE9VMnQzUlhFMEwyUndkUW80ZDJoRGIwRldNbTR5YjI1SU1HTkdjbVEwYm5NM2JrbE9ZbU5MVEZCaU1tSjNUVlI2ZG5jeGVFbEJlRnBJWmpWT2VqVnBhV3B4VG5JeGVrdHRXRXRuQ2pNMlNEUk5ZVWRKYlVaNUwyTjFjVlJCYjFabVRXVTFUVVJ3TW5aek1qWjBlbE55VUdOUlJqVnBWV2d2VUcwd1VHOU9OakpSZVc1SFpXZHNhbkozWWpRS1JYZE1lWEpFU2t0aGFTOTROVkkxVW1KTVZIaDZjRE42Wkd4Q2VYTTBNVWhWVjNsblIxa3ZNamxLTldGcGFtSjVjRzU1ZG1aUlpuTkpaVU5MT0doS1FncFBUbXhTVjBkdVVHUlJkVWt2UlRSSWIwZGtUMjAzYjNsTGIySmtZalZ6VFhwMmVEa3dOek5VVFhwblRubEdXR1phUm1sWE5UVmtRMUZQYW1SR2NGaHlDaXRtUkRsSFVpdEVlRzluV1hwcVNHSjRhM2xrWmxOVVV6WlFVR1J6T0dKdVUxVmpTV1ZNVHpkNFkxY3daVE5HYkZsc0wzRllOMUp1VVdnd1lVbGxUVXNLYm5WdlNtUlVjWHA1UkUxYWIwTnpTR2RvUXpNeFkyVkRTazE1TW1Gc1drdG5SVUZGY1VKNVdVbDVSemwwVG5oWk9YcDBkVkV2U2pKd1NXVlFjbFJRYUFwc1lVcHRkVEpGT1hkUlJqQnBhemhrYjI1VWVXdzFTa3N6ZFVaMVJ6RnZXVFE1WWxnelIwSlRNREZVTm1ZeVRFWm1kR3c0UlhVelpEVm1RV294Y2pneENuWXhaMGROU1VocGFuVkNPRzFyYmxWV1ZGcGxjakpMUm5ndlR6SllVelJVVVc1U1JFVlVaQzk2UzBjM01IUndhMDVVYlZVeFRVTmpka1pSY3poV1UzZ0thVkp0WVdGM2IyZG1VWFZrZDBSSlJrbHFOak16Wm1nd1JpOTRWWFkzVmxOdWFtMHdXR2hDSzJONlkwTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1FrWTBXa1JNUTNoeWNYVkJVVnBTQ25sU1ZYaFJUbUV3VURWRVdrMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlEyTjViMmhqYzBFelNXTkZZbVY2TVRGWU1XMTNjMEl6WWtzS09EZEVZVlEzTnpONmRGQTVVazE1YUhCWVduSlJNVUpDUVZGdmNpOTNNMVZEWjBsemNHdERhMHRTZFRob1EzcHVUbmxDYkV0elVuRm9aSE5IUnpNNVRRcFRaRXBGZVdadFFuZGlSbWhwWWxoRVVWQnJZV2swYTFjclkyOVViR0l5VVRKV1ZrRkZkMVZZTUROWVZrcEVibXBxTTFJMGIyZGhVazkwWmtkNmFXaEZDbE13ZVZWMU5YbHBObEJaT1dWa1JrbERhWHBtVVRGQlZFUXdUekZHUmxWc1N6Qk1hRTVNTlV0U01GWnVWMlpuYkN0cVVVaHdRVVZWZVZaVWMyMUhOVzRLZEdNeWJISm5WakpPU1RoMWMwbEJVMVl6V1VRd2FqQkxUR2RpY1dKQldYRXlTazU0TWpGUFdISmxRVXBzYWs5bGRFaE5OQ3RQZFRKUFdqbG1UekZ5VXdwS1RXUnBPSFZaVEZOa1RHZGliakkxVkdJeFJDOVdlVUZGS3pGdU1ERkNaRzFZV1RBdmJXbzFaVlJRZWtvMVRpOVFTMmw0WVdFMksweE9jblZDTHpoT0NuaFhTRmgzWVhobE9XY3hla0ZHVEUwNWNXUkRha0pQUjBjNVRtTkVUM0JHVEhOWGIyd3pWbEJqTVN0UGVEQlJNMmhpYTBKWE1VcENPWEk0VldsRFFuUUtVM2xKTDBGWVdqSkJjRTFRTm1WeVFtNW1abGR6YzNkQlZtOHdSa0o2V0hsb1QwMVRSRFprTm5Jdk1WWkNiRWxXZEhSNWF6ZFVNbmQ1T0RsRGVsVmhOQW94ZFc1UWFIWnRNVFpGSzFwSU5ETnFabnByZWs4dmN5OXNkWFpXYmxrdlV6WkNZbGx4UkZjelZFczVVWEZCU0dwdlFVMXpSbXd4YkU1MmJFUlNZbGxhQ25sT09FRTNPSFZWWTJrMVJEZFZNbVZzZDNkRGEyRTRhbEZxUkRsNVJYTlhTVTFGY2pkRlpVdDBOVnBFSzBkR2FGWk9TVU5LUXpoclZXWXhTME40T0VNS2QyUTJkMUpIUmpCb01XcFBhVWhsWVZOYVNISmFaMnhDZUhGTE5FSkdLM0J1VDBkS2JERnVabTFUTVd0bFZ5c3pXVFZQY2pNMk1VNHlhekJ1YzNaVVJRcG9RbTF4Ylc5dE0zTmpUa1ZPWTFGdU9FRTlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5zZXVmYmpsci02bDJqc2J6MS5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdGN2NnN2dQpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdGN2NnN2dQogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdDZ4cWRwdWVqb3JfY2xpYWtzdGVzdGN2NnN2dQogIG5hbWU6IGNsaWFrc3Rlc3RjdjZzdnUKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0Y3Y2c3Z1CmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdDZ4cWRwdWVqb3JfY2xpYWtzdGVzdGN2NnN2dQogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklha05EUVhkaFowRjNTVUpCWjBsU1FVbEpSVFptT1dSWFlsaDBNSHBsZEZob1ZFMWlOVVYzUkZGWlNrdHZXa2xvZG1OT1FWRkZURUpSUVhjS1JGUkZURTFCYTBkQk1WVkZRWGhOUTFreVJYZElhR05PVFdwTmQwNXFTVFZOVkVWNVRtcE5ORmRvWTA1TmFsVjNUbXBKTlUxVVJYcE9hazAwVjJwQmR3cE5VbU4zUmxGWlJGWlJVVXRGZHpWNlpWaE9NRnBYTURaaVYwWjZaRWRXZVdONlJWWk5RazFIUVRGVlJVRjRUVTFpVjBaNlpFZFdlVmt5ZUhCYVZ6VXdDazFKU1VOSmFrRk9RbWRyY1docmFVYzVkekJDUVZGRlJrRkJUME5CWnpoQlRVbEpRME5uUzBOQlowVkJNa3MyYXpOd2FXMUZXQ3RwYWtGNlJrcGhNRmNLVm1wMWNEQlNiMjlIYlM4emVIRkJSbUpqWkZKSk5YTlBPRkJ1UzJKMWVWQm9iak5yU0hsa1QzVmtVVXBTZFc5NFRrbEdlbVpxY1V0WFp5czVPSFJUWlFvNE0weEtPVTFWTVZSNE1VcHVlbVE0WWk4eWVtNVdaRVpsVmxsUk15dDJUMGxQTmk5dmJVdDVNazF3VnpoTFV6RlVNMUJMY0M5bk1IZGlNM05WVFdJeUNqYzVVa1pDU2pWUmNTOVZVRVZTYlU0eWVWZDRkRzR6YlZkSldFNVpNbEYyYmxWYVNsUkhRalJvT0hVMWRrc3pVMFJOUTFKRmNuRXdaVGRIVEhwTWFFWUtUbEZ1YlRndlkwdFRVRTh6U0hSV1NWVTFjR1YwVjBkSlVXVlBTM2MxTURnNVNWTklSa3hoVFhGa1pqRnJXSEpZTVM5SE5UVlpUMmRPU0ZsVFNYRmlNZ3BLZEVoek1WbGtZaTkxVVV3eU16ZHlVM1ZyWkhsUGVGb3ljREI2Y0ZCdFdXRnhMMDAwWlc1aFZGTlZVWHBDYVRSWmRrWXpSVWxwYkRZdllURmtRMDlaQ25kYVdrZzVWalZ6Y0ZKM1dWb3JlSEJpYUZkMVVHSkNWRTB5Ym5RMU56TmphMjQxT0dSS1pWaFFVRWRMVEdReEwyc3JlbVpTVFVRdlZqaGxja1pWVkdRS2NHc3pLMHgyVHpRM1NXZHRXVVpNYkZCNU5raFVNVlJJVVZkU1UwUlNWbk1yS3paWGQyUTNWblJFV2xwbGNXbDRVR055WXpSR1YwRXZiVk56V1hCck5RcDNVRzh6YVRScE5HOUViVUZrWWxsMmJIRjBOV3MzUjJWb01UVnhSVmh3T0ZKT1MwMUVkM1ZPZERSUVFVTnNaVTVZWWtGTWRWWlFSbk52V2tFMGIwTkdDbHB3TXl0V1RrUjBiR2dyVTNSbmFTdFhXazB2T1hKeE1GWlNlRmt5TW1OUlZWZE9SVTEyVnl0TWFHcE1jMjVKY2xkS1JpdG5Wa1Z6ZGpWdWNXYzBNMGdLVFVsM1NVNTZNbmN6V21WNFQwaHpOa2wxVkdkbE1FdDFjRWxZTm10VGJTOWxMekZHUWxNd09UWnVRWGgxVjIxT05uVlBNU3RPV25ZMFdXMDFiazRyWXdvelNFeFJOME5DTVZOVldXcG5RWFJqUTAweFpVSjJWVU5CZDBWQlFXRk9WMDFHVVhkRVoxbEVWbEl3VUVGUlNDOUNRVkZFUVdkWFowMUNUVWRCTVZWa0NrcFJVVTFOUVc5SFEwTnpSMEZSVlVaQ2QwMURUVUYzUjBFeFZXUkZkMFZDTDNkUlEwMUJRWGRJZDFsRVZsSXdha0pDWjNkR2IwRlZSVmhvYTAxelRFY0tkWEUwUWtKc1NFcEdWRVpCTVhKUkwydE9hM2RFVVZsS1MyOWFTV2gyWTA1QlVVVk1RbEZCUkdkblNVSkJSMDQyWVUxTVdIbGtUMVJJZHpkRGMwTkVVQXAyY2pNMlVHNHZURWhDYW1WTFIwbHZObVZ2SzNRemRXRjBSWE54TkhReVJUWkJOVGRaZW14dE1GQndVSEZhZEU4dmMyeDBNR1UwV21kNk1HTlJPREJSQ2tkRlRGWmlZbTF5YTIxS04xbFFlakV6YWxCWVZUQlBWelZ0ZW1sbmNYVk1TMlZHY0RVek4wOUJTM1l6ZDBObU5XdFBZeXRSWm5oclNuVnJURXBDVlhvS1IzcE1jMDFyWTJaV2RVaFJkSFZCVjBSMVprMW9kbmhXUkZwU2NFUjFPREpxUVhOVlNIWlJSa016SzBscWJ6aDVNRmhJVld0cmVrVkZkV3hzU1hnNVl3cFBTMmhvVkVoblNERnpaMGx5TUhkVWJFWkZRWEJwTjBzNWJ6VnZhR2xsUTBkTGFsY3diVEE0ZUZSSmQwTnBLMGRaWlRCek5sTm5iV1ZKYTBkWVFsTjNDalZ5YXpaU2FHVjJUVEZCYTI0M2VHRkVTMlV5T1c1T04xSjVORmt4Tkd4Sk5IQkhVelJXTkhOaUswMVpUekpYWWpkaVMwOXplRUpqWlZoa1JEZHVSRFFLU0dScGNsVkhPVEJGVG5aamJHZEhOR3MyZWpOeFduWlpiVGhWVDNOalNuZFhOa05ES3pKdE5UbFdWVzlMVms5WmJFZzRPRE15T1hGRVkzUnlkVU53WkFwSVZEVXpVMHgzWTBabFYyazJaMVJEU0VWV0wweHdLM2hOVjBOSGFYVnJVWFZEU0hKSVZXeEdTVTAzY0hwdVpuZHdOR2hZT1dobGNTdDViR2hOVEVRd0NrTmtOeTlTZUVsblMxZE1LM0UxWkhSNU5XRnpObmxxV21wRU1HNXFSVlUwVUVKb01UZE5PV3RHTXpkb1UyYzBOa2RwUW1ad1QxSTVVVGxIV21KS2FHa0tURWxxUmtWMlNuSXlURU00U1ZJMGFHaEJXalJaVldneWRscFBlRWRxUldwUFJuWmtSVlYzVkRaTFMxZEJWMUZsYVV3cldWbDZiMk0wYVUxSlFrUjBkUW80YW1wbFNtRkxXbVZGVGpnMU9WVnRRMlZxU1M4MWRrOW5kVUZETlhFMVNFNDBlbXRRYkZCVWJtNWxiVlZrTm1Sd1dYZ3djalp1ZUhBMFlsWmxWRGRYQ2l0RWNWcEdSbXA1V0ZSTVNGUllUMWhRVXpjeU0xQm1RZ290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1NuZEpRa0ZCUzBOQlowVkJNa3MyYXpOd2FXMUZXQ3RwYWtGNlJrcGhNRmRXYW5Wd01GSnZiMGR0THpONGNVRkdZbU5rVWtrMWMwODRVRzVMQ21KMWVWQm9iak5yU0hsa1QzVmtVVXBTZFc5NFRrbEdlbVpxY1V0WFp5czVPSFJUWlRnelRFbzVUVlV4VkhneFNtNTZaRGhpTHpKNmJsWmtSbVZXV1ZFS015dDJUMGxQTmk5dmJVdDVNazF3VnpoTFV6RlVNMUJMY0M5bk1IZGlNM05WVFdJeU56bFNSa0pLTlZGeEwxVlFSVkp0VGpKNVYzaDBiak50VjBsWVRncFpNbEYyYmxWYVNsUkhRalJvT0hVMWRrc3pVMFJOUTFKRmNuRXdaVGRIVEhwTWFFWk9VVzV0T0M5alMxTlFUek5JZEZaSlZUVndaWFJYUjBsUlpVOUxDbmMxTURnNVNWTklSa3hoVFhGa1pqRnJXSEpZTVM5SE5UVlpUMmRPU0ZsVFNYRmlNa3AwU0hNeFdXUmlMM1ZSVERJek4zSlRkV3RrZVU5NFdqSndNSG9LY0ZCdFdXRnhMMDAwWlc1aFZGTlZVWHBDYVRSWmRrWXpSVWxwYkRZdllURmtRMDlaZDFwYVNEbFdOWE53VW5kWldpdDRjR0pvVjNWUVlrSlVUVEp1ZEFvMU56TmphMjQxT0dSS1pWaFFVRWRMVEdReEwyc3JlbVpTVFVRdlZqaGxja1pWVkdSd2F6TXJUSFpQTkRkSloyMVpSa3hzVUhrMlNGUXhWRWhSVjFKVENrUlNWbk1yS3paWGQyUTNWblJFV2xwbGNXbDRVR055WXpSR1YwRXZiVk56V1hCck5YZFFiek5wTkdrMGIwUnRRV1JpV1hac2NYUTFhemRIWldneE5YRUtSVmh3T0ZKT1MwMUVkM1ZPZERSUVFVTnNaVTVZWWtGTWRWWlFSbk52V2tFMGIwTkdXbkF6SzFaT1JIUnNhQ3RUZEdkcEsxZGFUUzg1Y25Fd1ZsSjRXUW95TW1OUlZWZE9SVTEyVnl0TWFHcE1jMjVKY2xkS1JpdG5Wa1Z6ZGpWdWNXYzBNMGhOU1hkSlRub3lkek5hWlhoUFNITTJTWFZVWjJVd1MzVndTVmcyQ210VGJTOWxMekZHUWxNd09UWnVRWGgxVjIxT05uVlBNU3RPV25ZMFdXMDFiazRyWXpOSVRGRTNRMEl4VTFWWmFtZEJkR05EVFRGbFFuWlZRMEYzUlVFS1FWRkxRMEZuUVhoSlN5czJNVWQwWVhKc1EyaGFhMlpSZFdkVVJtVnVUMUJQUm00NVdFbFBWMGxxVURRMWRXTk1jSEF4Ykc0MGVqVlNNazV1VUN0WVdBbzViV0ZSUmxoWmFFRlFiekZEUjBONVRIWXlkRmM0U21GaE1FTTJkVGQ2TUZwVU5HNHJUMFF6VnpOSk5GSm9TbE5UZWxsNVVUUlNRamhOYm10b05UQnNDbUZVUmxwdE9EZEpZM1FyTURaMlJEUXdibkpNY204NFJUVlpaVnBoYzNoWVRuSnVaSE4zY3l0bGEyWkRaSHBLY1hsUVRGRkJWVFZJUTJKRlRpOUxRMm9LTURNcloyTnNNV3BZVW0xNE1FaDBWQzl6WW5KQlNqbE5lRVEzVlhaeVJVSm5XRXAzYUdWc2RqaFVWMkl4ZGxaQlRrdFFZa3BKWTFOM1VGUlJSRGRuT0FwNGQweDJaekJ3Yms5TE16Rm9VbGczTlhKTlRrVm1VV055VkZKRlMzWmhRMnd4VlZKWWJ6QmtjMEpKVkVGMldFRXhNakp5T1d4YUsxRnBWQzlyTW5Cc0NtdHJjblpyVFdKV1REUnRiWHBWTmsxcWFEZHZaVU5CT1NzNVFXNU5WMGRLYVVWdVVtOHJRV2N3YUdKNFRrZE9Oa1Y1Y0c1NFlWZGtRemxYY0U1aWFUZ0tURmh5ZGxCMlZFMXJaemQ2TVdvdk9HY3libUo0WmpoWk9FTnNhbUpWYmtrM2RsVktSRWNyVGpGeE5sSkNiM2hoVFVNMVdXdHpRV1pxVlRkcmNpOVNhZ3BoWmpKSldIbFpVbWRZVmtkU1VXZHZNM2w2Y0VGTVdHMVRSV2RQVDFGcVoyUXZRVmRMTWpSVFRIRXlUM1pIUkdOTVJsSlNRaXN5ZWxGNk5TOHdPWGxIQ21vMGQwUkpOMGxKWjIxeFlXZEJlREpSWlRkek5EaHFUMnQ2VlU0eFRIbE5lVFJ5WkhsYVVGSTNPSHBFVG5aSmRIRXdNbE5oYURSeFZuZGliMDVGVWxjS1RXVnNielJQVHpoa2RqRkNiMDFrWm5ZM1VVaEhhSHBvTkUxeFQwVkljR1kxUTNoeVRFRTBUekJZY0hWa1FXbE9TWEZLVGpjemJuZFlkRTF6VGtSaE5BcFpOSE42YUV0RmEyUnBMMWRtWXpONUwySTJiM0V6SzNKTFpGVjJhaTkyYWtKUVNsRlBTbkkxY1VsRldDOXBaVVpTVVV0RFFWRkZRVGhXT1ZWNGJIQmhDaTl5YWs1bmFVeDZVV1YzT0ZoVVFUQnhjRFZHUlRSbU1XTlRTblpwYkRkWmNtUXdVQzl6YWtwU1NEZEJjbFl2Y1VOMmRHeDVMMEVyV25BeVdYQTFSbmdLZUVONFRsQXdNRXBXTTFoQlFtSTBVMHBUUm1GS1VUWnBWRWd3V1ZKcVdXdENaR3RMYVd4QlNsaGpXbWxEVDFsM1RURTFNV2hwZVhwSk4yWjFlWEE0YlFwNmVXTjFTMjh2WjBRNVFsZEtPRmxQVG1GT1lqaE1OVUZtZVdoSFprTjZSR05NY0VaRlRWcENjbmcwWkdGblVHSlhlVTFXYUZwWVZIQnJWMVk1Y1ZocUNqUndXR1V5ZVU1a1JsZERkbUpUUW1wb1ZqZzNSU3RFWTNoRVNGRlZZVGhuZEV4eFZGVkRUV2xHY1V0a2N6TnNWREI1TkRGbkszWkdlalZNV25RMFpua0tiMjVLY0VKcldWSXdNMlJMVW1rek5uUXJhMVJvV1M5MGVIWk9kemxKVUVadGRubFpNQ3RwUlhjelVGTXhXVGhoYjJKbE56SjZiVlp3WldsQmRUbEZSZ294VUhaNWNEbHZaWG93WWtSYWQwdERRVkZGUVRWa1FrVm1hWFUwV0dGNU1ESXphWFI2VVhSUFJWUklUSEZrT0RsMksyWnBRakpwYUc1NVEycFhORU56Q25wU1FXSlRURFV6ZERSTlpXRXdVV05qUm5aMlVGaDBNWFpYV1VGcFlVWm5aWGQxYUZCalpIbFpPVXBXVGpWQmMzWlBSemhWYTB3d1FVRk9ZM2hJZW5BS1prUlliR3ROVEUxYVFXOVZMMlJQTURGcmQwMDFLelptT0RCYVVtbG9NRFpMWTBOeFNHeEJTakJLZWtGelJFdG5UMmx5V2xSTVpHRkxSMnRuUXk5cllRcHZka3h6Vm05dGRHYzFTVEF5UjNsa2FreEtRblpSVW01cFZsRm9USFJETVdwbEsxQnpja0V6WTJOV2JFTXdZVWMxUjJGMmRucHdlbVpJVkM5YVYxcDFDbVpvSzNwMGRFTkRWalJvVmpaVGFXRndTRFZwYVU5amFrRmFhak5tWjFReFpVbzFiMUJLTjBVcmFHMXdTemxwU2toeFRYUklNREY2WTNJMGVFTktjelFLT1ZKYWFuaGFaMFU1ZEdJM05XaGlVbE00WWpCWE9IUlhZVlowU0hReFRFSXdkMmhZU1dFd2JGRjNTME5CVVVKblVFcFJLMkZpVVhsTU1XbDNPVWRLY3dvdlJsZDBRMmhXVm0xaWEwMDJialYyTVhvd1JuWklPVVZCZDI1dWJXZExNV0p3ZUVGQ1EyWTJjbEJYVUdSSlFrMTRZbFZvZVhCdVJHbzJOVlVyVGtGeENuTlBXVmsxUVcwd1EwUkpOalpFVkVweWJUZEtVRGRxY0VrdmNGSXpNSFE0ZFdsYVNWTm5PRnA2UTFkeWF6Vk1lRkZPY2xOeGRGZzRZbXBETkVFMWJHY0taRXcyUmt0VVFuUk1iVGQyT0RoelpsbzVNa05yVVRWNmJXSkZSREpUYUVSUVFYbGhVVzFPY0ZkUWJYaDNNbFZhZGtaRWIyZEpaakY0WVN0UVV5OUNTQXBJTnl0VFJWRklaRWxZVldGdVpVMXVlbTU1ZVhST1MycG1SMmhVTkZVMGMwaEVXVzlaY3pKTVR6ZGtWMjByUkVsMlJrcFhTRXgzWmtSUFRGY3ZORlZJQ2k5V016a3dWVTVRY0VoNVIwZHFZa0o0YW5CYVNURnFZMVJMTldGbWVrUkJRbE5SWjNobFptMWFjVEZrTkZBelRHOXZTVUpaU0hWcmVXSmxZMDlTYkdvS2NESkZkRUZ2U1VKQlJVbDVjMlZuWlUwclpGZ3piV3A0TlVNMlUwOVNVMlUwVjIwelZYQlJOaXRXVEd4QmRHeFNhak42UjBoblEySjVVMEV4VEZWelFncFRMM1psUkUxeldUQkdkRWhsZFhwd2RYWkljVTlHTlRWU1UwMUZiSEZFUjJJMlIyNTFRblJaWTNWVVNGRklNMWxsYUhCdVYwOUtZM0pDYmpnMGREbFhDbEZEUnpGdUwzVjVkMGQ2TW5kalFsUXllREJNZFdwMFdYTnBaekZMWmpaaWFVc3lOR2cwY2pVeVRYQlBZbTUzUW1aRFpUSjNPRTQwWTJwbGFsSlJXVWdLVlZreVpVTXJkMEpXVVhCaVowY3JRV1Z0V2k4elEzaGpaVEp2Wm1SSWEycFJVek13VkU1eWVEaFhTVWRPYTI0NVkyRjNSbmswU1hSSk5XeG1hVzkzYndwVE5HSXdSMVZsVlRKR1JsUk5lbEU0YldRMFJrVTJhVUpEVFcxa1pXMVJTV3BGUTBSRFZYZ3pLMGxHZUhvdlYxaGlOSGh3UjJkclVGRkJTV3N2YUd0VkNtRkZPRzg1TTFRMmFFWXdSWFkwYkhSeU9GUlJOQ3RCYTBsUFZXdGxVREJEWjJkRlFWVnVOa3BqZDIxRGFVa3lkMHRKVFdWc1RHcGFTRkpMVEZVNVVGQUtaSEphVkROQ1dWSlVlRWc1U1ZjNFZUaFdUamxNVERsVVFsTnhRbVZYTUdOWlVGVjRWa1ZhYVVOclptWk5RVzB3ZGxKVEsyUjVWak53ZHpaRE1EYzBNQXBIZUN0R1JVTldhVWc0VkVwSFZsRnlTelZFTUVaamFFVnhNakJyZUZsaWNYSlVZbHBzUlZwMWVsWm1RMkpJTURJNVVGYzRRVFp2YldKaWNrNXFaRmMxQ2s5dlNWRlZjR28zUWxRd1Npc3JSMHBuYkhSaWJUQmhjekpVTVZOVFJsVlNTM05XUm5aVlJVcEdRWHBRVlZaaU5XcExZV3BvWW1GRlp6WlBZak5TTkVNS2MySlhUR281VTJwTlZsbHBUelZsZWs5UFlrbEpOVmtySzJWdmNEVm1kVmN5TURkS1RqWnNNRU5DZEZGWVkxY3JVRWRzVVhGeldFZG1jMVJ0UlZOdWVBcElWbTFCZVVORGMwcFlhVTExY0N0TFpqQXpkMEpHV2pkRWJrNDRWVU13YUZaV1dXOUhhelJHU21wT0szbHBLMHhaVUhKVmJVbHJVemRSUFQwS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiAycGk4bm14eXl1eXVuaGw1cDlvdGJscXhwbms2cDV6NXRtNWpwODdmNWJteGh2dGo2NWF1d3Bpc2d4aWlid2lqa3R3cGdlejdxcTYxc3VrMGl1c2l2dWhwbGVmcjdpZTVwaXB4c2c4OGJod2xncTNsdWY4ZWh3bnFiNWd1bTdxego=\"\n + \ }\n ]\n }" + headers: + cache-control: + - no-cache + content-length: + - '13084' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:42:30 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: 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 --labels --node-count --tags + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-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.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n + }" + headers: + cache-control: + - no-cache + content-length: + - '1037' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:42: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: '{"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, "tags": {"key1": "value1"}, "nodeLabels": {"label1": "value1"}, "nodeTaints": + [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": + false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + Content-Length: + - '503' + Content-Type: + - application/json + ParameterSetName: + - --resource-group --cluster-name --name --labels --node-count --tags + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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.19.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/5e5c5d77-e592-4d9f-b363-0ac80fb3ea83?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '1069' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:42: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: + - '1198' + 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 + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5e5c5d77-e592-4d9f-b363-0ac80fb3ea83?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"775d5c5e-92e5-9f4d-b363-0ac80fb3ea83\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:42:35.4113872Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:42: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 --labels --node-count --tags + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5e5c5d77-e592-4d9f-b363-0ac80fb3ea83?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"775d5c5e-92e5-9f4d-b363-0ac80fb3ea83\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:42:35.4113872Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:43: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: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -153,20 +1275,20 @@ 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 + - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5e5c5d77-e592-4d9f-b363-0ac80fb3ea83?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d5ffff63-a04e-3745-9242-514f9afe9dd1\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T07:18:17.9374167Z\"\n }" + string: "{\n \"name\": \"775d5c5e-92e5-9f4d-b363-0ac80fb3ea83\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:42:35.4113872Z\"\n }" headers: cache-control: - no-cache @@ -175,7 +1297,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 07:18:18 GMT + - Thu, 29 Jun 2023 11:43:35 GMT expires: - '-1' pragma: @@ -201,20 +1323,20 @@ 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 + - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5e5c5d77-e592-4d9f-b363-0ac80fb3ea83?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d5ffff63-a04e-3745-9242-514f9afe9dd1\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T07:18:17.9374167Z\"\n }" + string: "{\n \"name\": \"775d5c5e-92e5-9f4d-b363-0ac80fb3ea83\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:42:35.4113872Z\"\n }" headers: cache-control: - no-cache @@ -223,7 +1345,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 07:19:49 GMT + - Thu, 29 Jun 2023 11:44:05 GMT expires: - '-1' pragma: @@ -249,20 +1371,20 @@ 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 + - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5e5c5d77-e592-4d9f-b363-0ac80fb3ea83?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d5ffff63-a04e-3745-9242-514f9afe9dd1\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T07:18:17.9374167Z\"\n }" + string: "{\n \"name\": \"775d5c5e-92e5-9f4d-b363-0ac80fb3ea83\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:42:35.4113872Z\"\n }" headers: cache-control: - no-cache @@ -271,7 +1393,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 07:20:19 GMT + - Thu, 29 Jun 2023 11:44:35 GMT expires: - '-1' pragma: @@ -297,30 +1419,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 + - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5e5c5d77-e592-4d9f-b363-0ac80fb3ea83?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"775d5c5e-92e5-9f4d-b363-0ac80fb3ea83\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:42:35.4113872Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 07:37:22 GMT + - Thu, 29 Jun 2023 11:45:05 GMT expires: - '-1' pragma: @@ -346,71 +1467,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 + - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5e5c5d77-e592-4d9f-b363-0ac80fb3ea83?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-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 }" + string: "{\n \"name\": \"775d5c5e-92e5-9f4d-b363-0ac80fb3ea83\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:42:35.4113872Z\"\n }" headers: cache-control: - no-cache content-length: - - '4192' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 07:37:24 GMT + - Thu, 29 Jun 2023 11:45:35 GMT expires: - '-1' pragma: @@ -432,78 +1511,93 @@ interactions: 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5e5c5d77-e592-4d9f-b363-0ac80fb3ea83?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"775d5c5e-92e5-9f4d-b363-0ac80fb3ea83\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:42:35.4113872Z\",\n \"endTime\": + \"2023-06-29T11:46:03.314406Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '169' + content-type: - application/json + date: + - Thu, 29 Jun 2023 11:46: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 show + - aks nodepool add Connection: - keep-alive ParameterSetName: - - -g -n + - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2023-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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\ - \ }" + 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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '4524' + - '1070' content-type: - application/json date: - - Fri, 16 Jun 2023 08:16:08 GMT + - Thu, 29 Jun 2023 11:46:06 GMT expires: - '-1' pragma: @@ -529,32 +1623,127 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks get-credentials + - aks nodepool list Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - -g -n --file + - --resource-group --cluster-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: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2023-05-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ - \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSV21Ob2VEVkpXSFpOZEVGV1YyNVVjVzFOTTNGUWVrRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxVVdYZE9la0UxVFVSa1lVZEJPSGxOUkZWNlRVUlplRTVxUVROTlZHdDNUakZ2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVONENpdHJLMU5uVGxSQldGY3ZObFJTUlZCMlRGZENTelUyUjFKM2VDOUxVVU51UTFSVVprdG5heTl1YldoTWJuRkdaVFUwY0Uwck5HcGxORVZqV1VGNVMzQUtaRUV6WjFaYVdsRjVjMHhoUmxJeWJEaEhaeXRQWVVNclpUSklhR3d3ZFZCeU5GZE9lRzg0WkhkR1IwdGFkVU5HVXlzMWRXdDBNVUpsV1hOcVFtWXJSUXAwYkZReFVuZGtlbkpqUWs5b1VIaHhWRE5pZGpkM2NrVmtabVZWT0VWelFVSjVjeXN6TTFoS2NsZE5XalZYWTBaUVRGZ3ZSRFo1VGxkeU5sTnBhRWQ0Q25NNFJ6TmlPSEZYYldnd1ZqTjNaWFphYTJaak4weDZSVFpwYmxKbVIxTTNUU3RZY25OU2NHSnlXV2gyWm5SWmIwUlNaVEZqTHpsMVJUQjNWVUkyUTBzS1YyY3hSa05zZW5saldYcERSMlF3TTNKU2VIbHhMemxNVEZWRlZWQkpWbmxHVERCa1RpdEVhaTk0WmpOQ2J6SkZhbTlIV1c5a0swVmlNWEIwZUZseFFRcFNRbFZ2ZEdOTVdVUlFaRmxrZDJ3M1ZrczFPRmxCTUdNM2EyMVVXWEJRUzJ4dFNYbzNOSFZvYkhRMVVHYzVZMUJUYW1OdVJtbE9LeXRTYkRGUU1VTkJDbVJwVnpjMFZrdG1MMWRSTVdwRWVXMVdOVTFDYm5sck0yaFRNalpZU2xCM2FuZzBTRXhtZDFNNE9IZzBUVVJsT0ZwbmNXUlllVEptY1RWQmFsUkxiMGNLT1U1bFJXODFSMVZIYkZoSlFXeFNORFF4YWl0a1dDOXVNbVE1V0hjNVl5dElNRWhQYkZjMlZFZ3ZTbTUzY210d1QyUk9ja0o2TUV4eGVuUjZhRkEzTlFwWVptOVpMMWRMYTJrdlFuTkNhVk5vZEVWSVpFZHROVEJsUnpCTWVIcGlRMU50V1d0VlpGZ3dXVWgxU2s5alpuQnljMmNyWVV0amFsTktZbHAyY0ZsNENrWllSR1p5ZUVwNVNqUllNMlJETHpoMWEweHBMekpUVFZGNk9HTTJSVWc1UjNOdmVXbDBNRzFHZFdaMVdHaHZVVlEzT0hkR1ExQnZPVkZQWjBaU2VYWUtjVlJpVUV3eWRYQjRjVkpFZHpjcmFIbEZaMHN6TUZCQmJqYzRMMkowVlVjdkszb3lhV1pPYkcxUlNVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWNVprbGFLeTh5TXpCeVowdzRVekZVQ25oRFZHZ3Zaa3hOUXl0M2QwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGSVdrOHpiVTEyVm5GelVYWlFiRlpwUzFKc1REVTBRa0ZLY1hRS1YxRlNOVTlHY0ZBM1ZtNU5Za0prV1RjNWNYcDRkazFYYm0xcllVMXVhVnAwVGxGMWRHUTNjVGhaZVROUGF6UnVPRkYyV1VwalYwOTZVR1V2YWxveFNBb3hVSEE0TUdGcVF6WXpMMFJuUlcxSGJrbDZSRTR4VGtoVldpOU1iVGxxVkdJNWIwSm5abGMxV0ZZemFtVjFRazAzTm1zMFYxcHRZbU4xWVZKTWNuaEhDamxaUlZwd05tSjJaVmt2U1RoUGJVeGxhRkJIWWxCd01qQmlLMGRGZGpsaUwwb3haR0p5VlZoTVlXUlViVkJPWkZodGRVZGpWV3B6Y1Zoak1UVTJTWElLTTBGUE0xTlhabEppV21GelIxcENiVWRtYVU1aVQzTTFaMll2Tm5OdFJtOUZTWHBHTmpWTVFXWnRWell5VG5kV1EycDZkM1JpYUVRM1FsaFNkR2xMVHdwUVpscFhabnB2TUVjM1dIbHJPVE5PV0hJM2RGZDRiaTk1UkVKak9Va3hNek5ZYTJwdE5HTjRUa1lyWkUxR1dTOXBUekJIYW5wUVVWSllNMHMwWW5WNENteHVXWEJWTURSNFlWaFdVMnhhUzBreFdETTNhVGRNYUVGRFVqUkVhMk53T1VGWlNrSkNiRUZJZVV4NGNsZHRZbGRQVURoRmRTdEtaVGRPYzFsdFEzZ0thbTVDVm5CcU9WTmxXQzlKUzNjclFtd3ZXVVJJZDJnd00yRkllV1JyY3psSGNFaEhVbVoyWTNoQ2VUazVPRTFSY1V0R1lqVjBiVU42TDFCbGVqZFpTUXBYWlhONU5IaHpaRFpSWVRSclVpOXNUR0l2Tld0Q05YRnhZMXB0UjA1cFZVWXlTVkEwUVVGbWJYRjNNSEJvVkZOaVYzUjJXVk5hYjFnelowcDNVakpGQ2xwbWNuRk1hVTlzZVZJNFYwMUxRMGhCZVdWQ01ISXdZamhuZDNGemFVeFBNVmxhZW5CbVVXVm9iVWxaYTFObVN6QjBXVlZDVERobVFtNXBNbWcwVlRFS1NWcDRjV2xIZFRJeU5pOUxaRXB2ZDFFMldrTktWREp2VHpkdVlTOWlVMWxrZEhwNk9VWkpkRTVUYkVsVGIyTXpWVE5MWm1KcVlXVk9XVVZUVXpkcFpncFBXWGR5TUZCVmQzTXlWV3QxYVVsTUNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2RuczdzczNnd3AtZnZ3aTF3aTcuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3R2YW9idHUKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3R2YW9idHUKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3RnYTI2dWdwc3lpX2NsaWFrc3Rlc3R2YW9idHUKICBuYW1lOiBjbGlha3N0ZXN0dmFvYnR1CmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdHZhb2J0dQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3RnYTI2dWdwc3lpX2NsaWFrc3Rlc3R2YW9idHUKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJVkVORFFYZFhaMEYzU1VKQlowbFJVbk4yUnk5Q09VVm1WSElyTlN0VWIzWk5hbFpLZWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZ6UmtGRVFVNEtUVkZ6ZDBOUldVUldVVkZFUlhkS2FsbFVRV1ZHZHpCNVRYcEJNazFVV1hkT2VrRTFUVVJrWVVaM01IbE9WRUV5VFZSWmQwNTZSVFZOUkdSaFRVUkJlQXBHZWtGV1FtZE9Wa0pCYjFSRWJrNDFZek5TYkdKVWNIUlpXRTR3V2xoS2VrMVNWWGRGZDFsRVZsRlJSRVYzZUhSWldFNHdXbGhLYW1KSGJHeGlibEYzQ21kblNXbE5RVEJIUTFOeFIxTkpZak5FVVVWQ1FWRlZRVUUwU1VORWQwRjNaMmRKUzBGdlNVTkJVVVJGTUc5U2QzSnJPWE0wVWxwaFpIVm9VemxZSzJVS1FrY3lNMHhWU0U1aVJuaERPSGx4Wm1GU2JHcDJUbHBUTldGb1prSlBZbUZPWldoNVJrc3hibXhFVkZOWFZrSjJWU3RoV0U1T1dFbEhaR3Q0VjJzdk9BcExlbnBDZVZoSVdIcGlhRUUzY2xZdmRrNUdhR2hpVWxvckx5dFFhREpKT0VkaGRucDVWRlZNTDJwRFNVSkhWazk0U1UxME1qSTJVM2RtYWtoQ0sxVnVDblY0Wlc5YUsyNTVORlpNVGtZdlYwRjBRWFJ5VlhoSU0xZG9Na1JUUjFWTFZuTkJVbXMzWm5WVVlWbHJhM0J6UVVFNVJYVmxkMnRXYUVaQ2RIaGtTRGNLWVV0Tk5pOTRUMDVPWmpjNVVHRm5WazF2U1ZKNVFuVlRhREpKVTBwaFJsZHdNVzQ0YkU1MWNtdGhaMWxVVW5wbGExWjFNM1p0Y1dSTWVHaHBORk40YmdvdlRreFFOVWNyTlRsQ1owMU1aM0ZLVVdGMGRYWkpabTFCY1RReE0zTm5OSEkwY0RCaFkxTnhkVTVPUVhORlZtTk1SRGcwTWxsSEsybzNlazh3ZGxWYUNpdDFTVkF3TUROWU1UQTJSMkpHT1V0bFJqZzFaR3BITkRKQ2RUaENWa1ZDTUVGUlkwNWtaV05HVlVGcVZFZFhka3RzWlRsdVZVTjRla0ZxUVZaNlFYRUtTbGRzY1dwck0yUnhVWFpsUWxJM00zWlBiRVZ1Tms5YVJXVXZNRUZ4YkZsUE1taDVjVzQyUzJKYU5EWm9UbkpOVjBkcFRYQndUbFYxUmtOck9YbFhkd3B4UVRGa1YxbDBVSEJyU1VzeGNrUXdWWFZIVmpobVQzRXdOa2hKYUdoU1UyOVpkVFZtYmxSMk4yMUhXWGswZEhBNVpHRlRiVEZ4ZUVzd2F6QXdNMGx6Q21VeVRtY3ZXVTVCZDBNNVlURXlSaloxWVdoaFFWUkJkRE5OVkZBeVowNDFkbVJ1UldVNGVGaDROV3BHUzNKWGMxcG5hRUpTVTJwNGVYQkhjMlU0ZEhNS1RFSTJOMjQwVTBwR1lWVkxWbVpGY1VsRE9WVTRkemxMZGxsTVZWRjFVMVJMUlROSlFrbENWblJ2VW05M1F6bHRSMHRvZFhGcVYzWjRiWEpOYlhscFVBbzVWbVo2YVhGVllsVmlSVTB4TVdoNVVtMUJUM1ozU1VSQlVVRkNiekZaZDFaRVFVOUNaMDVXU0ZFNFFrRm1PRVZDUVUxRFFtRkJkMFYzV1VSV1VqQnNDa0pCZDNkRFoxbEpTM2RaUWtKUlZVaEJkMGwzUkVGWlJGWlNNRlJCVVVndlFrRkpkMEZFUVdaQ1owNVdTRk5OUlVkRVFWZG5RbFJLT0dodU55OWlabE1LZFVGMmVFeFdVRVZLVDBnNU9ITjNURGRFUVU1Q1oydHhhR3RwUnpsM01FSkJVWE5HUVVGUFEwRm5SVUZDUzB0TlEybEdTRnAyZDFBM2VXeFVOazVoZVFwRVUyaEpaMU55TjNoSVIzZENNMlpaY21sdGVYWnBlWGRTYjBsemRXeE5MelZ4VjJJdmNGVlRNM1ZWWWxBelNUWk1iVXRHWlcweFpqaFJURkEzZGtwd0NtdDBORXR2WkRkbFJGRnJjMUI1UjFrelZHcFRUbmQzTUVOWVJtbGhOM1oxVGxWWFFUZG9USFIwZFZveWVrWXJRMGxUUzBkSk1sTkpXa0ozTjJ4UFRtd0tRbGcwYVd4dU5HNVdPRTkxTTFnek5qazBaR0V6VlhsUGMzaDBXRFJYVXpVME4yWkhPRGxoVldKRWJTczJMMUpRZUdwRWVEQm5UbkpDTjNjck1tVndPUXBtYzNwWVlreE1abnA0TDB4NFZsWlpNVkl5TUZSS1NrWlJXVTV3ZDNveE1qRXdWVWcyYWpaaGJISkxUV0ZWTUdaRmNXY3hkM0o0YzFjNVNWSllUbU13Q25odFJtbHNiRWh5VjBGR2EySmhhQ3R0Umt0RE9YTnVkR0ZDWm1ZMlJERjRjWEZVYkhZMlYzbGFZMmQxV2xGS1RrVkJVM2RrTXpoSE9FeEdVME5wZWpjS1NERm1lbFJRYXpoRGNUZGxkV0ZzZEVJNGVXRjVXVU5RTVdGRFJWSXdPSFJ5YlM5dWVGTXliM0ZSVVZKalVraDZjVEowTTFkSFZVUnJTa0ZZWTFCVVJ3b3hZWGxUYTJGMWNUTnNZamx6VFRaT2FtZFVTVEk1Tm1Sd1NHZDRWbWd4YlRReE1GVmhjWFZKVlhwNU5qbG1XVEpCY21KcFRrMDVWRFpUUjJkQk1EaFJDa2RZYzJGQ1ZuVmlXaTlLU25Sb1oyeFFWQzl3TkV0VFQycHlNVlJ0YlUxVlNsVk9abU16VFcxUmRsZ3pOa0pPYUdjd2RHeExOUzlETjNnMGQzaEhlVlFLUTA5RFMzaHZSRmR1VjBnNVdrZFBVRGxLVmtkcVlrVkxPRVpoWW1ZNWNFbDNlbUppWVZOSFdTdHBZVGhEWTNKM2NYYzNiVTFrYUhaSVYwdE5MMnBsVFFwSVRHZ3llVUV6VVdKV2FrZE1aV3M0V21OU1ZWZ3lZVVZtT1VVNGVVOHZSak5ZTVRsT2RUQkZaMEk0ZHpVNGNtSnhTMXBCZHpWb2JWTk1hVGcwTmpsdUNsVkhZaXMxUVdKbFdVWlJXSFYxYVRWVWJIRlRNVWMwUFFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTbmRKUWtGQlMwTkJaMFZCZUU1TFJXTkxOVkJpVDBWWFYyNWliMVYyVmk5dVoxSjBkSGt4UW5wWGVHTlJkazF4YmpKcldsazNlbGRWZFZkdkNsaDNWRzB5YWxodlkyaFRkRm8xVVRBd2JHeFJZakZRYld4NlZGWjVRbTVhVFZad1VDOURjemgzWTJ4NE1UZ3lORkZQTmpGbU4zcFNXVmxYTUZkbWRpOEthalJrYVZCQ2JYSTRPR3N4UXk4MGQybEJVbXhVYzFORVRHUjBkV3R6U0RSNGQyWnNTamR6V0hGSFpuQTRkVVpUZWxKbU1XZE1VVXhoTVUxU09URnZaQXBuTUdoc1EyeGlRVVZhVHpNM2F6SnRTa3BMWWtGQlVGSk1ibk5LUmxsU1VXSmpXRklyTW1scVQzWTRWR3BVV0NzdlZESnZSbFJMUTBWaloySnJiMlJwQ2tWcFYyaFdjV1JhTDBwVVluRTFSMjlIUlRCak0zQkdZblEzTlhGdVV6aFpXWFZGYzFvdmVsTjZLMUoyZFdaUldVUkRORXRwVlVkeVluSjVTRFZuUzNVS1RtUTNTVTlMSzB0a1IyNUZjWEpxVkZGTVFrWllRM2N2VDA1dFFuWnZLemg2ZEV3eFIyWnlhVVE1VGs0eE9XUlBhRzE0WmxOdWFHWlBXRmw0ZFU1bllncDJRVlpTUVdSQlJVaEVXRmh1UWxaQlNUQjRiSEo1Y0ZoMldqRkJjMk4zU1hkR1kzZExhVlp3WVc4MVRqTmhhMHd6WjFWbE9UZDZjRkpLSzJwdFVraDJDamxCUzNCWFJIUnZZM0Z3SzJsdE1tVlBiMVJoZWtab2IycExZVlJXVEdoUmNGQmpiSE5MWjA1WVZtMU1WRFphUTBOMFlYYzVSa3hvYkdaSWVuRjBUMmdLZVVsWlZWVnhSMHgxV0RVd055czFhRzFOZFV4aFpsaFhhM0IwWVhOVGRFcE9UazU1VEVoMGFsbFFNa1JSVFVGMlYzUmthR1Z5Ylc5WFowVjNUR1I2UlFwNk9XOUVaV0l6V25oSWRrMVdPR1ZaZUZOeE1YSkhXVWxSVlZWdk9HTnhVbkpJZGt4aVEzZGxkVFVyUldsU1YyeERiRmg0UzJsQmRsWlFUVkJUY2pKRENqRkZUR3RyZVdoT2VVRlRRVlppWVVWaFRVRjJXbWhwYjJKeGJ6RnlPRnB4ZWtwemIyb3ZWbGc0TkhGc1J6RkhlRVJPWkZsamExcG5SSEk0UTBGM1JVRUtRVkZMUTBGblFqRlVXVFF6V21aMllWSldRa0ZRUlhZNFdGZHdaM0l2ZWk5NFp6VkpjM2RPVG5RMFZUUnRjbVpUUmtwTFluUXhiMmQyTVdkcGVIbDNlQXBEV21aTVpYRXpPR2s1VWk5a1ZEWm9PRnBDVlVGUGRrMUhVM0JCWmxSb2NIVnVhVXREU1Zvck1VbFpRbWx1VVhweWFUaDBlbWd5YVRKcGJ6STNXVzV2Q2podmMxZERZbTA0TlhadVJqbDVURVJoZEhNNGVHcFNVakJ4Wmtab1UwUXhZMjVGYUVkNE9YaE5iekZVTVc1d1ZIcGFLMUZxZG0weE5qWnBhMlk0TVdFS04waEpZbkZrVjFOVFNHNTFhVlptWWxoMVMzTkhlalpuU0dRd2JTOUdZMFZoTUN0dmQyNTViRk15Ukc5MVZVTkNMMjlTU1ZWVU1tMHlVbmxPS3pWSFRBcEZkVVJXU1ZOMFVYbEhlV3BVV0dsbVUzWktXbTFrTjNJeE5ETlRjMEZEYjJaR2IwZE9jVGcyVjNod1YyTllaMDUxU0dzMlNWaEVXV3hHTURaUk5Ia3JDa1YxWkhWYVJtTnlXRFpOUnpaNWQwYzBjMDFNTkhKcVFtWXdUWEF5ZUZOMVQweHRVR2hFYzJoR1NFSndLMUZYZEdwSU1rZDNUMWhJWmpsWU1HZEZkbFlLWkhac1dqVjJXSFEzWVRCRkswczJPWGhUY1dWMVVVZGxSWGt4YjNneVdrSjRXWFpHVGtWalpVNXJWMDFMWTJGdFpGZGtOVk5uUWxoeFJsRkJLMHhNZHdwME0ySlBhMGRzYTNCaVJDOUxlQ3RTZEd4Uk9HOXdjR1ZUYlU1eVVVZDBMMHhTYTA5eWJ6TTFiaXRDUnpVMmEyZFJOVTkxZWxGWGQzZHBWVVUyYms1cUNsWXhWakZtY0hoTE9GbEhZVlIxVjA1clEyRlZhbVFyV1ZCSFdHdE5ka2gxZDIxdVNpdDBUbm8wWW1KbFlXMHhNMjlKVDBORGJqQnljRWxyTWpSamR6Z0thbHA0ZEd4TlZVbERjelJOYzJWemFHUTBkVGxIVFc5b1FTOHpkMlYwWlZSUFdUVjRkWFowZEhONkwydG9ZMWxUUVdGMFVHOUdhbXg1U0hocFoyZE5NQXBZUzAxdVMyeE9TemcwYnpGVE9EaG9TMlV2ZWtNd2JtUnlMMGxPUldSSWRuQjJNSEZJYzJ4eVNEQlVPVlpST1RWSlVVdERRVkZGUVhwVlRFMWtkRTlPQ2xaSmRVUm5aREZNYjBWcFJYVnhTR0ZLWnpCaVptODFWazF0WlhkRmJXSlhTSEpvUjJ4TVRYTlBSMFJoVFhFMmNHWlhTRmxxTDJkSlJ6bG9WRkZIVHk4S00zaHRhRFpGTlZBclMyUkxSSGRhY0VZM09UVnJPREZGTjFSTU1ESm5aekJJYUZCa0szaEJSRmxOWlZZcmIwWTJRMUo2YVdobVlXcHNNbTF0YjFSMlJRb3paR3hzU0RCc1VEZEJlR0pVTVdscmFXNXhXVkJJTVZaUlNreEtaMHQ0YzBOWmFXVjVVMUZ2T0dsMVIzbE9NMkl5TkVablQwaGxOazFFVmtnd2JtdFJDblpCWTBselFUUjBSMWhtYVdwU0wwRkNVbFpCY1ZVMWVsUTFjV3hUTUhOeFVERnNlRUUxTURrM0wyaE9TRE5uTUVWRmRqQnpWRXRxYVdKYVJsSnBRMHdLV0daeFVXbFJjWHBpVEdkWGFrRkJhblpPZVhOdGJYUkJibEZIV1ZOWlRtWjJOelF6VDBsbFJWZEhPUzl4UlRocVFYcEZkVWxCWkdoWlprNTRVR3hIYndwR1ZtMDRZVXMwVkRFM1dYaEVkMHREUVZGRlFUbFliVEpWTVd4b1ozTlBZa1pNVkRjdmVXdFhUa3BrVkhSSFV6ZDJaVFE0TTFoclRGbDNVbmR2UWpGdUNrOTBVRWxoYW5GclpubGxVekJpT0doRWJuZ3ZMMmsyVWxCM01UUndhbEpEVEVSR1dYSnZUV016VGs5WloyTlhUMDA1TDB3eFdVOW5kRTFaWjNKVFdFMEtNbUZ1ZFVJNGMwcE9WVTF1YzI1a1ZtVjJhVm8yVEUxMlRFOTJXa04wYmxCcVdVeGFibHBTZHk4eEt6SnNjbTF2UkRCNFpYUktWVXRPTW5Cbk5rVkJiUXBKT1c5NVMyNU5MMVUzVUZkbmFFaHJXQzlPVW1ObVdGbG1WR2RoYUhjck4xSk5SbVEyVkZGdlFVODJNRkZ5T0N0SVpYZzNOR0pFTVdwMWNqQlpiM3BqQ2tFdmJ6bFhRMVJEZG0wNGVtMDFZelJrVEV0eVlqbHllRzlGVG1kS1ZITjRkblZ4VW1KdFRXOUhRVlZ3WW1kcU1WYzVaR054VlZCdFVtRnZkMk13ZWprS01qVm5aWFp1WnpaUmVEQjJhVTFoUTBSdlVIUllibGxDWWtoVGRtbHZWeXR2VkM4dlVGTnlibFZSUzBOQlVVRjBVbEYzTDAxTk1EZ3hhMEU0ZUdkbVJnbzBMMmxUUTA1NFMwSkNORXRRVnpSQk0yVnNlRkpaYWpNMFdVSXZhbnA1ZW1WdWFteE5TM2hyTkUweVdXZDNWMWQ2Y0VWa05VZEpUek5IU21aRU9XRklDbUZ4TTJ0MmJUaDZUVFpIYlhaWFJEQlNOR0pHUWpSWmJrWkJObXBNY0dKM1NURlRjVzFTTDBoSWNqSXJLMlpTSzJ0dGFWUnhkRVI1WkU0elpXeHdZWFlLTkhSSVNXOURORFU1UjNaaEt6TkdkaXR0TDBOc01GTkZibU5OV0dKWlozbFZVRTAzU0dWTk9XVkVNREprZDBaNldFZDZiM1ZLWVN0UldHSnFSRll4V1FvdmNETlRjbWwyTVdOM2FEbDZjbGRVTW5aSFZuUTFRWEo0U21kMVUyVkhPVXRVUVhCUWNVOU5OMHBQWXl0VFVXdFlWRlJQUlV0T2MwdE1WSG8xU1RWS0NqZG9abUUzVEZReFJrWTFheXRFTmxvMGFEUnhTMGhXV0c1eFdXcExOVUVyZVU5cFNYZEdkR2xsZEdoSVlrSnNTVTU0TjBWMFpFZDVWVGhaTHl0Q1UyTUtVVXQ0TVVGdlNVSkJSMUEwVmpOeFIxVnBTSGhETXpGYVdEWTVRWGxzZUUxeVRHZDNkR2Q2V25Nd2RqSXJaRFIyWkhKaFpXZDFXVUZVWjFOR1RWZDZaZ3BpZG0xbmRuaFBjRkJIT0VkQkx6Qk1kbGhFYVc4emFHWXJSaTlLTkdJeFJrcDZlbWxsWkVaRFpWUTNVbEp0WlZselRVbFVVRTlSUVZGdlNrWXJPVUZJQ2sweWJVcEZMMVJ4ZG1KT05VWmxUbFJuWVdKaWIxb3haVUp6V1ZsTFFsTTBjRU5IY1VwdWJHdG1jMVpKVmxWeVVVNW1jMlk1VDJoM0sycEZlbXRxZWtNS1duSXJLMFJoV0U0NFFVNWlVR1pzZUVkamVXSmhXV0pOZDFSUmVVYzBRMVowYVM5bmRIRnNNVWc1WVVGUVQwVm9ZWEp0WmpaQ1NuVnVVVVZEY0RWVWNRcHpUR1pUTVVKcmFXdHdUVkpPV1c5NFNtcDZSR0ZNVkRWNmNGTkpTMVpJZFN0RWNIQjROVXhLYlVkRlR6RXZOMVJIY25jMlVrMUNhbkZXUjJ0dlVWZHZDa2w1TW5WMWJGTjZRV0kyVVdwSEwyYzNXVk5oYURGSloxRkNRbTVKY1VWRFoyZEZRVTVSVTBORlJURkVRVk5tTVRSbE1tWmlWVEprYkhreFN5dGlLMjBLUXl0d09UUkdkMnQwTmxCYWVqQlZWSGhQZWpkMU9VaFFVVkF4S3pkUFlYTTBTSEZaYldwQmFIRkRWakJLVnpCUFFUTmFWUzlWY3k4clVYaDVLMHhKZWdwS1kwVmpXVVZ6U1hCRkswaERkazUyVkZvNFVpODNaSEphTTBjelpsbFlRblp2UW5FM1MxWjNjbTVWT0hNcldUSjVjbkk1TnpKSmRYaFBRVlV6TDFoQ0NrbHJOSFJ5UmtKYVdrdDNhbEk0UVdoaVVHVmxRMko2VkZCcWVrbzNNakF4YTFORVVYTkxRbGh5UkdaRE1VWmlRazlwVUU1aFNFUlpaVUZQVFU4ek4xWUtNM0JaVEZaTE1DdDRUbmgwTlVZNFJXSnJjRWRWUnpJMVVWSlpVbGxYWjJKd1JUUjZMM1p2TUcxYVRYaG5ZamhMY2pCdWIzUlpRMk5IYm1GaVZIcGxVUXBxVEhWeFV5dHhTVUpWVjFvM2VIaG5Xa1EyYWtaeVkxY3ZORmRYWWtSMWNtUXhkVGx6YW10UFZIUTFkeXRCU0hOelQzUnNNMDlEWTBKM1BUMEtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogdWg3NXEydzVrNzJzZTU0cjVkM2NoNXJib2duOXVrajk0OGs4NXA5cXAyeW92djcybmdvajUzbnN3d3VvNjFzY21sa3RjbmI3eWc5NGJyaDdla3Zvc283eHpkeGkycXFvNXhtMW1leGx2ZjRvN3o3ZGo4ZGxoaTV4amp6dmMycWwK\"\ - \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.19.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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n + }" headers: cache-control: - no-cache content-length: - - '13072' + - '2184' content-type: - application/json date: - - Fri, 16 Jun 2023 08:16:08 GMT + - Thu, 29 Jun 2023 11:46: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: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool list + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-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.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.19.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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n + }" + headers: + cache-control: + - no-cache + content-length: + - '2184' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:46:09 GMT expires: - '-1' pragma: @@ -569,8 +1758,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: code: 200 message: OK @@ -586,36 +1773,50 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --cluster-name --name --labels --node-count --tags + - --resource-group --cluster-name --name --labels --node-count --tags --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-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.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ - : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\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 }" + 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.19.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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n + }" headers: cache-control: - no-cache content-length: - - '1037' + - '2184' content-type: - application/json date: - - Fri, 16 Jun 2023 08:16:10 GMT + - Thu, 29 Jun 2023 11:46:10 GMT expires: - '-1' pragma: @@ -636,11 +1837,11 @@ interactions: - 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, "tags": {"key1": "value1"}, "nodeLabels": {"label1": "value1"}, "nodeTaints": - [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": - false}}' + "type": "VirtualMachineScaleSets", "mode": "System", "upgradeSettings": {}, + "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": + "Delete", "spotMaxPrice": -1.0, "tags": {"key1": "value1"}, "nodeLabels": {"label1": + "value1"}, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": + false, "enableFIPS": false}}' headers: Accept: - application/json @@ -651,43 +1852,42 @@ interactions: Connection: - keep-alive Content-Length: - - '503' + - '505' Content-Type: - application/json ParameterSetName: - - --resource-group --cluster-name --name --labels --node-count --tags + - --resource-group --cluster-name --name --labels --node-count --tags --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool3?api-version=2023-05-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.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 }" + 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.19.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/8172bd25-b527-4627-933e-0a154d4e7c95?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8e189515-b65d-41d4-91ce-3958b58c79ec?api-version=2016-03-30 cache-control: - no-cache content-length: - - '1069' + - '1071' content-type: - application/json date: - - Fri, 16 Jun 2023 08:16:17 GMT + - Thu, 29 Jun 2023 11:46:14 GMT expires: - '-1' pragma: @@ -715,16 +1915,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --cluster-name --name --labels --node-count --tags + - --resource-group --cluster-name --name --labels --node-count --tags --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8e189515-b65d-41d4-91ce-3958b58c79ec?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"25bd7281-27b5-2746-933e-0a154d4e7c95\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T08:16:17.6177408Z\"\n }" + string: "{\n \"name\": \"1595188e-5db6-d441-91ce-3958b58c79ec\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:46:14.7243906Z\"\n }" headers: cache-control: - no-cache @@ -733,7 +1933,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 08:16:17 GMT + - Thu, 29 Jun 2023 11:46:14 GMT expires: - '-1' pragma: @@ -763,26 +1963,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --cluster-name --name --labels --node-count --tags + - --resource-group --cluster-name --name --labels --node-count --tags --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8e189515-b65d-41d4-91ce-3958b58c79ec?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"1595188e-5db6-d441-91ce-3958b58c79ec\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:46:14.7243906Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 08:52:03 GMT + - Thu, 29 Jun 2023 11:46:44 GMT expires: - '-1' pragma: @@ -812,37 +2011,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --cluster-name --name --labels --node-count --tags + - --resource-group --cluster-name --name --labels --node-count --tags --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8e189515-b65d-41d4-91ce-3958b58c79ec?api-version=2016-03-30 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.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 }" + string: "{\n \"name\": \"1595188e-5db6-d441-91ce-3958b58c79ec\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:46:14.7243906Z\"\n }" headers: cache-control: - no-cache content-length: - - '1070' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 08:52:04 GMT + - Thu, 29 Jun 2023 11:47:15 GMT expires: - '-1' pragma: @@ -864,58 +2051,33 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - aks nodepool list + - aks nodepool add Connection: - keep-alive ParameterSetName: - - --resource-group --cluster-name + - --resource-group --cluster-name --name --labels --node-count --tags --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8e189515-b65d-41d4-91ce-3958b58c79ec?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\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ - ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ - ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ - : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ - : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\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 }" + string: "{\n \"name\": \"1595188e-5db6-d441-91ce-3958b58c79ec\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:46:14.7243906Z\"\n }" headers: cache-control: - no-cache content-length: - - '2184' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 08:52:06 GMT + - Thu, 29 Jun 2023 11:47:44 GMT expires: - '-1' pragma: @@ -937,58 +2099,33 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - aks nodepool list + - aks nodepool add Connection: - keep-alive ParameterSetName: - - --resource-group --cluster-name -o + - --resource-group --cluster-name --name --labels --node-count --tags --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8e189515-b65d-41d4-91ce-3958b58c79ec?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\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ - ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ - ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ - : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ - : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\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 }" + string: "{\n \"name\": \"1595188e-5db6-d441-91ce-3958b58c79ec\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:46:14.7243906Z\"\n }" headers: cache-control: - no-cache content-length: - - '2184' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 08:52:06 GMT + - Thu, 29 Jun 2023 11:48:15 GMT expires: - '-1' pragma: @@ -1010,7 +2147,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1020,48 +2157,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels --node-count --tags --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8e189515-b65d-41d4-91ce-3958b58c79ec?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\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ - ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ - ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ - : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ - : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\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 }" + string: "{\n \"name\": \"1595188e-5db6-d441-91ce-3958b58c79ec\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:46:14.7243906Z\"\n }" headers: cache-control: - no-cache content-length: - - '2184' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 08:52:08 GMT + - Thu, 29 Jun 2023 11:48:45 GMT expires: - '-1' pragma: @@ -1080,60 +2192,36 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": - 0, "osType": "Linux", "enableAutoScaling": false, "scaleDownMode": "Delete", - "type": "VirtualMachineScaleSets", "mode": "System", "upgradeSettings": {}, - "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": - "Delete", "spotMaxPrice": -1.0, "tags": {"key1": "value1"}, "nodeLabels": {"label1": - "value1"}, "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: - - '505' - Content-Type: - - application/json ParameterSetName: - --resource-group --cluster-name --name --labels --node-count --tags --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: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool3?api-version=2023-05-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8e189515-b65d-41d4-91ce-3958b58c79ec?api-version=2016-03-30 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.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 }" + string: "{\n \"name\": \"1595188e-5db6-d441-91ce-3958b58c79ec\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:46:14.7243906Z\"\n }" headers: - azure-asyncoperation: - - 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: - - '1071' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 08:52:13 GMT + - Thu, 29 Jun 2023 11:49:15 GMT expires: - '-1' pragma: @@ -1142,13 +2230,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: - - '1199' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -1163,14 +2253,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels --node-count --tags --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8e189515-b65d-41d4-91ce-3958b58c79ec?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2928ea7e-e5fd-e843-9c46-9c7d84ffb906\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T08:52:14.2010541Z\"\n }" + string: "{\n \"name\": \"1595188e-5db6-d441-91ce-3958b58c79ec\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:46:14.7243906Z\"\n }" headers: cache-control: - no-cache @@ -1179,7 +2269,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 08:52:13 GMT + - Thu, 29 Jun 2023 11:49:45 GMT expires: - '-1' pragma: @@ -1211,14 +2301,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels --node-count --tags --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8e189515-b65d-41d4-91ce-3958b58c79ec?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2928ea7e-e5fd-e843-9c46-9c7d84ffb906\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T08:52:14.2010541Z\"\n }" + string: "{\n \"name\": \"1595188e-5db6-d441-91ce-3958b58c79ec\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:46:14.7243906Z\"\n }" headers: cache-control: - no-cache @@ -1227,7 +2317,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 08:52:43 GMT + - Thu, 29 Jun 2023 11:50:15 GMT expires: - '-1' pragma: @@ -1259,15 +2349,15 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels --node-count --tags --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8e189515-b65d-41d4-91ce-3958b58c79ec?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"1595188e-5db6-d441-91ce-3958b58c79ec\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:46:14.7243906Z\",\n \"endTime\": + \"2023-06-29T11:50:43.8463677Z\"\n }" headers: cache-control: - no-cache @@ -1276,7 +2366,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 09:09:37 GMT + - Thu, 29 Jun 2023 11:50:46 GMT expires: - '-1' pragma: @@ -1308,26 +2398,25 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels --node-count --tags --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/nodepool3?api-version=2023-05-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.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 }" + 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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -1336,7 +2425,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 09:09:38 GMT + - Thu, 29 Jun 2023 11:50:47 GMT expires: - '-1' pragma: @@ -1368,26 +2457,25 @@ interactions: ParameterSetName: - --resource-group --cluster-name --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/nodepool3?api-version=2023-05-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.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 }" + 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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -1396,7 +2484,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 10:19:12 GMT + - Thu, 29 Jun 2023 11:50:47 GMT expires: - '-1' pragma: @@ -1428,53 +2516,53 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-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.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ - : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\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 }" + 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.19.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.19.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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n + }" headers: cache-control: - no-cache @@ -1483,7 +2571,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 10:19:12 GMT + - Thu, 29 Jun 2023 11:50:49 GMT expires: - '-1' pragma: @@ -1517,8 +2605,8 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/cliakstest000001/agentPools/nodepool1?api-version=2023-05-01 response: @@ -1526,17 +2614,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/89868e09-80ea-4c82-a07d-6bcf7ea67ecb?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Fri, 16 Jun 2023 10:19:16 GMT + - Thu, 29 Jun 2023 11:50:49 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/89868e09-80ea-4c82-a07d-6bcf7ea67ecb?api-version=2016-03-30 pragma: - no-cache server: @@ -1546,7 +2634,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' status: code: 202 message: Accepted @@ -1564,26 +2652,25 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -1592,7 +2679,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 10:19:17 GMT + - Thu, 29 Jun 2023 11:50:49 GMT expires: - '-1' pragma: @@ -1634,29 +2721,28 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.19.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/20637c65-b9f7-4073-a4cd-fff062c36f4e?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d4fd2ffe-547b-40cd-9e69-59bd91ffe8a1?api-version=2016-03-30 cache-control: - no-cache content-length: @@ -1664,7 +2750,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 10:19:21 GMT + - Thu, 29 Jun 2023 11:50:53 GMT expires: - '-1' pragma: @@ -1680,7 +2766,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -1698,14 +2784,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d4fd2ffe-547b-40cd-9e69-59bd91ffe8a1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"657c6320-f7b9-7340-a4cd-fff062c36f4e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T10:19:22.1042503Z\"\n }" + string: "{\n \"name\": \"fe2ffdd4-7b54-cd40-9e69-59bd91ffe8a1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:50:53.9905405Z\"\n }" headers: cache-control: - no-cache @@ -1714,7 +2800,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 10:19:21 GMT + - Thu, 29 Jun 2023 11:50:53 GMT expires: - '-1' pragma: @@ -1746,24 +2832,24 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d4fd2ffe-547b-40cd-9e69-59bd91ffe8a1?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 }" + string: "{\n \"name\": \"fe2ffdd4-7b54-cd40-9e69-59bd91ffe8a1\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:50:53.9905405Z\",\n \"endTime\": + \"2023-06-29T11:51:01.0594812Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '170' content-type: - application/json date: - - Fri, 16 Jun 2023 10:19:52 GMT + - Thu, 29 Jun 2023 11:51:24 GMT expires: - '-1' pragma: @@ -1795,26 +2881,25 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -1823,7 +2908,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 10:19:53 GMT + - Thu, 29 Jun 2023 11:51:24 GMT expires: - '-1' pragma: @@ -1855,26 +2940,25 @@ interactions: ParameterSetName: - --resource-group --cluster-name --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -1883,7 +2967,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 10:19:54 GMT + - Thu, 29 Jun 2023 11:51:25 GMT expires: - '-1' pragma: @@ -1917,8 +3001,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/cliakstest000001?api-version=2023-05-01 response: @@ -1926,17 +3010,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d4942d28-c25a-4e77-9c3c-7a18dbdb6d4a?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Fri, 16 Jun 2023 10:20:01 GMT + - Thu, 29 Jun 2023 11:51:32 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/d4942d28-c25a-4e77-9c3c-7a18dbdb6d4a?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_label_msi.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_update_label_msi.yaml index 062e9ed5872..32532e94e93 100644 --- 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 Jun 2023 15:25:18 GMT + - Thu, 29 Jun 2023 11:30:35 GMT expires: - '-1' pragma: @@ -53,11 +53,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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {}}}' headers: Accept: - application/json @@ -68,68 +69,67 @@ interactions: Connection: - keep-alive Content-Length: - - '1732' + - '1403' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-bz7mfsbl.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-bz7mfsbl.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/c919e762-6a9d-48e7-ae71-ec9230c16499?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cd26a180-2979-46b3-8548-cc74414e1586?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3539' + - '3210' content-type: - application/json date: - - Fri, 16 Jun 2023 15:25:25 GMT + - Thu, 29 Jun 2023 11:30:41 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cd26a180-2979-46b3-8548-cc74414e1586?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"62e719c9-9d6a-e748-ae71-ec9230c16499\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T15:25:26.2424199Z\"\n }" + string: "{\n \"name\": \"80a126cd-7929-b346-8548-cc74414e1586\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:30:41.0188516Z\"\n }" headers: cache-control: - no-cache @@ -175,7 +175,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:25:26 GMT + - Thu, 29 Jun 2023 11:30:41 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cd26a180-2979-46b3-8548-cc74414e1586?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"62e719c9-9d6a-e748-ae71-ec9230c16499\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T15:25:26.2424199Z\"\n }" + string: "{\n \"name\": \"80a126cd-7929-b346-8548-cc74414e1586\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:30:41.0188516Z\"\n }" headers: cache-control: - no-cache @@ -223,7 +223,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:25:57 GMT + - Thu, 29 Jun 2023 11:31:11 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cd26a180-2979-46b3-8548-cc74414e1586?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"62e719c9-9d6a-e748-ae71-ec9230c16499\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T15:25:26.2424199Z\"\n }" + string: "{\n \"name\": \"80a126cd-7929-b346-8548-cc74414e1586\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:30:41.0188516Z\"\n }" headers: cache-control: - no-cache @@ -271,7 +271,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:26:27 GMT + - Thu, 29 Jun 2023 11:31:41 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cd26a180-2979-46b3-8548-cc74414e1586?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"62e719c9-9d6a-e748-ae71-ec9230c16499\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T15:25:26.2424199Z\"\n }" + string: "{\n \"name\": \"80a126cd-7929-b346-8548-cc74414e1586\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:30:41.0188516Z\"\n }" headers: cache-control: - no-cache @@ -319,7 +319,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:26:57 GMT + - Thu, 29 Jun 2023 11:32:11 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cd26a180-2979-46b3-8548-cc74414e1586?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"62e719c9-9d6a-e748-ae71-ec9230c16499\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T15:25:26.2424199Z\"\n }" + string: "{\n \"name\": \"80a126cd-7929-b346-8548-cc74414e1586\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:30:41.0188516Z\"\n }" headers: cache-control: - no-cache @@ -367,7 +367,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:27:27 GMT + - Thu, 29 Jun 2023 11:32:41 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cd26a180-2979-46b3-8548-cc74414e1586?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"62e719c9-9d6a-e748-ae71-ec9230c16499\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T15:25:26.2424199Z\"\n }" + string: "{\n \"name\": \"80a126cd-7929-b346-8548-cc74414e1586\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:30:41.0188516Z\"\n }" headers: cache-control: - no-cache @@ -415,7 +415,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:27:57 GMT + - Thu, 29 Jun 2023 11:33:12 GMT expires: - '-1' pragma: @@ -447,14 +447,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cd26a180-2979-46b3-8548-cc74414e1586?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"62e719c9-9d6a-e748-ae71-ec9230c16499\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T15:25:26.2424199Z\"\n }" + string: "{\n \"name\": \"80a126cd-7929-b346-8548-cc74414e1586\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:30:41.0188516Z\"\n }" headers: cache-control: - no-cache @@ -463,7 +463,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:28:27 GMT + - Thu, 29 Jun 2023 11:33:42 GMT expires: - '-1' pragma: @@ -495,15 +495,159 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cd26a180-2979-46b3-8548-cc74414e1586?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 }" + string: "{\n \"name\": \"80a126cd-7929-b346-8548-cc74414e1586\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:30:41.0188516Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11: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 --location --dns-name-prefix --node-count --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cd26a180-2979-46b3-8548-cc74414e1586?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"80a126cd-7929-b346-8548-cc74414e1586\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:30:41.0188516Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:34: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 --location --dns-name-prefix --node-count --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cd26a180-2979-46b3-8548-cc74414e1586?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"80a126cd-7929-b346-8548-cc74414e1586\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:30:41.0188516Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:35: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 --location --dns-name-prefix --node-count --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cd26a180-2979-46b3-8548-cc74414e1586?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"80a126cd-7929-b346-8548-cc74414e1586\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:30:41.0188516Z\",\n \"endTime\": + \"2023-06-29T11:35:30.1552847Z\"\n }" headers: cache-control: - no-cache @@ -512,7 +656,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:28:57 GMT + - Thu, 29 Jun 2023 11:35:42 GMT expires: - '-1' pragma: @@ -544,65 +688,63 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-bz7mfsbl.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-bz7mfsbl.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/8b24d7de-7d5a-4a8e-8edf-d078f94cfc59\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4192' + - '3863' content-type: - application/json date: - - Fri, 16 Jun 2023 15:28:58 GMT + - Thu, 29 Jun 2023 11:35:43 GMT expires: - '-1' pragma: @@ -634,65 +776,63 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-bz7mfsbl.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-bz7mfsbl.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/8b24d7de-7d5a-4a8e-8edf-d078f94cfc59\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4192' + - '3863' content-type: - application/json date: - - Fri, 16 Jun 2023 15:28:59 GMT + - Thu, 29 Jun 2023 11:35:44 GMT expires: - '-1' pragma: @@ -726,15 +866,15 @@ interactions: ParameterSetName: - -g -n --file User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ - \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVVrM1dHbEljV1ZaVUcxV2JrUnBlRVF5U1RaRWRtOTNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDA1cVJUSk5WRlY0VG1wRmVGZG9aMUJOYWtFeFRYcEJNazFVV1hoT1ZFa3lUVlJHWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNqRTFOM2xZWVN0b2VVcG9jWHB0UWtZMlMxUjBWMHRrUWtRd1IyaENjVEYzZEc1SlduUnNPVlpIY21sT1JrdGFka3Q2T0dkb2VVTkVkRkJsT0hkWVZGY0taamx6U2pkNGRtTllZeXR0Wm14VU1XZzFMM2gwVVZjNVlYaHdZa00zVVZvM2FEa3diVkI1Ym5selYxTlNibTFYVkcwclVIUmthVlJvTmpoelRWRmFOUXBIZWpWa1NHSlJUSFJKTWtrd2RGaERWemhrYnpKNVFYUldURTA1U21OT01qUkhkR00xWWtKSmN5OWxhM2xRYVZKblZFUmtVRXRGUlZCd1oyUnhPSHBsQ25WMGEzVTNNV3BJYlU1TGVqRlNNSEZuY0RoM2VFSmpkbXRHYWpkb1kxQnhiaXRtWTNaWGFqRlhSek5CYTBZeGFYUTNZVXBoUkhKTk5GbGhkM2g0TTBzS1RsRmxaVVE0VWxad1drOVBTbGRLYlN0YU9YSjZXVnBIU0VFdmFteE5Oa2hOWkZRclNGQkxaMWdyVWpoTWVHcENSSGt6VTJGYWMwcFhXREIwUmxGTFR3cGlURXcxY3pKc1FrUXpjVVI0TWxjcmVEaE1lR3gxV1Zvek5XTTNWbXR6VkRJMmVERjZMM2xTZUVFMVVUSXlVMlp6V21GSlowcElXSFpxUVRZNGJsRjNDamgyVTFkVGJsZFViRXRCY1ZKc1VIVk9kMmxpUVhaalVsTlFibGRtTTFwSVF6WlBUbFpCZFZaSE5IUlhXVlEzT1RaeWJuYzJiVXhKVWtsUk9YZGtaVXdLYXpkTVUwSkdOSGhsTjFJemIyZGpaMkl5YW5kWmJHdGlkR2x3YjFKTFpuZ3hUMHRCVFVweE9IcFdOVTlJTUZoME5FSnVORTlWTmxoa01rMVZjRVZWZGdveWJEZE9NVTVFUjNacmNESmhMeXRNYWpBeGVtNTZZME5YVWxZMU1tOVZhbFJaVTFsdFdUUnlaaTl3VkhKamNuSk9ZM2hVZFVGeGRVcGxWVEpTZGtZM0NpOURjWGxhZVVOWU5FZFdlbWhQYVRSVFVGSmlkbGhSZGtkUlVFeHBlRE5IV0hsNmFFMUxWMjl3U1ZwNlVsRnZWa3gwVGpkVmVqVk9jV294VW5sSlNFNEtjSHBOTkZCamJHSjVXbEZpWmsxMFJHZGtjakp2TjFkWVJIbHFWRkEwVmk5RE5rVnJXVE5hYlVKTVJVTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1FqbFpVVE5LVTNsNFowWTRNVEJ1Q2l0dU0zVnNkMnRUYTNoTFNFMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlFVdEJUaXR6TTAxdGFGcE1aVVJ2ZUhwb1dVNDFNblUxVUZJS2FtTlpPRGwxV25wWFdXNWxkME5wYUhCak9VdE1NSGhuZVVkb2IwVTVOR3BIVlRObWNVWlVTVXBYU1ZwbWVEQmtiR2ROTjNGWlNsTXlka3hJVDFrMFV3cFdLM0kxTkhsU1ZuSlRZV2gxTVc4NVpWbExWR0pOYUVoaFpHbHFRa05FVFVkT2VGVnJkelJDYlRkU2FqWk5PWGxsZVRKaE9WQjZNbWxQTVhGaFVHYzVDaXRUT0dWelNURm5NUzlaWlhkS2FtRXJOVVozZEhkMVpDOUJTRXBXVG5sQldGaDNXSEl3Y0ROS2FqRXlWa3BWUVROcWJXUjFlRFZWT0dab1JXODNia0lLYldOR2NrWTNiazFhU25sTFRtaFRUMFI1TjNsTGJXeG5RVkpST1c5emFIVjVVa2N5TTJaTWFIWmxLekJzYVdsWFIyRk1aazU1YTNSblUwWjZRa1prS3dwRWNUbFRTVlZQWkZrd2VUUlFlR3RwT0VKMWJXdFVNa3BFZVhBeWRGcEVTV2R4ZVVwVGRFcHRjV0pQTlhSSmFsQnVVREpSY1RrMFEwWTRNV2gwVm1wV0NsVnVRemRwV213dkwwVXdTelZIUTI0ME0ybG9NVUpaTlZkbWREWjVZMDlDT1hNck9FUnphR3hOTlVwcVlrRTJNVVpZT0VGeU1USkNhMHR1TTBnNFpWb0thSGR6VFRrMmVtMWxVVU5oUlZSVUswMHlkRnByY1VSM1ZFdFFZek5HTlhkellUbFFiVWMwZEdjM2RqZHRlbTB4YlRFME9HZ3lZWE13VWxGb1RFOURaQXBFV2l0cmJYaDBXbEl2YkUxUVEyZEVaVmxpWWtoeU9EWnlaMGgyU0hOV2NrSmphQ3RyVUhOU2MyZFZjbXRtVkRWNE1FeGtiREZYUzJaVU1UTnlTVkZSQ21kWVdFbEpkbFJZVEVwMUwxa3plREl3T0dSd2NFNHJSR1E0TVRjeU9HcHJhMHhEWmlzd1NXdHJkSEJqV0VoSVMyRlRSVmg2UlhoWVUyOUxRbmx3ZFdnS2JqWTBVMmR0TWk5SWEyaEhSalZNTms5SFVWUTBaQ3RDUW5vd1ZHeExla280U0VOeWVrUkdWM05aY0doblJHbGFkRE54SzJsUEsyUkJSRlpYY1VGT09RcDZXVE5vTUdKR1drWlpabk5oYkdOSkwxRTlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5zc3ljc3R3ei11Nm1najJpNS5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdGgzZmwyYwpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdGgzZmwyYwogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdHN4eGx2eGNkNDJfY2xpYWtzdGVzdGgzZmwyYwogIG5hbWU6IGNsaWFrc3Rlc3RoM2ZsMmMKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0aDNmbDJjCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdHN4eGx2eGNkNDJfY2xpYWtzdGVzdGgzZmwyYwogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklWRU5EUVhkWFowRjNTVUpCWjBsUlVIQk9WREJrT1RGU2VrZFVkelpRUkc1WVVHa3pWRUZPUW1kcmNXaHJhVWM1ZHpCQ1FWRnpSa0ZFUVU0S1RWRnpkME5SV1VSV1VWRkVSWGRLYWxsVVFXVkdkekI1VFhwQk1rMVVXWGhPVkVVeVRWUkdZVVozTUhsT1ZFRXlUVlJaZUU1VVNUSk5WRVpoVFVSQmVBcEdla0ZXUW1kT1ZrSkJiMVJFYms0MVl6TlNiR0pVY0hSWldFNHdXbGhLZWsxU1ZYZEZkMWxFVmxGUlJFVjNlSFJaV0U0d1dsaEthbUpIYkd4aWJsRjNDbWRuU1dsTlFUQkhRMU54UjFOSllqTkVVVVZDUVZGVlFVRTBTVU5FZDBGM1oyZEpTMEZ2U1VOQlVVUkJkWE0xZVhFd2RFRnNZamxZV1RWV1prRlZRVTRLYm0xdVJEUnNjRzlDYjJwbFVHNWFOV3BrVFdkNEsyOUNTMmxRZERCR1kxRndLM3AzTVdJd1kxUm5jVkFyUVUwMFNtNXhSMXBvZEhZeVptSnZMMDlKTmdwWWVUUjVXaTlTZEVKNFRUWm1PVlZQYUV3eFVGRXlVRWhsVURCV2NYTktRV2hTVUhwbFRUaDNUa2RVYzBwbWVFZzBkbUowYTNSdlpsUlRhVnA0VUVOaENuWkZSV05XVVdWelppOUJjbGhIYjNKaVEyWlNZMEY1VW00eFZUSTBRbTFWY0d3d1dFMURUVGQwVWpSU016ZzJiMmRJVVVSc2NsZzNSalo2WlhRMFVXVUtNblpIVkc5T2VWaE9VVUpOYjNsemJFeDBVRzVHWWs5QmEzcFBkRmx1YmtwM1lqQTNWRTFWUzNSUlRVaFZNRWh1TDNobE5HOUplbGRWTUcwMGFtcERUd3BVYTBsWmRuaG9WWFp6VW1KNFdVMTBVbkU1WmtOeE5tMVlWWGwzUkdwUGJtdERWMnB3TlRsWlQyeGtORkJXTkRCeUwzTlFRbUV4T0ZKVWJGTllRVlJyQ210bmJqTXllbFZZTkRCUmFFSnRRVFJ2VG1odFZtOHdNM0ZWWlZaVmFHWm5hMU5QWkRkeVZEZElaMVZ2TUc5Qk1tdHpObG9yTkZWWVZXNW5PU3RRZUhJS0szcE9VbEZFT0VjMVkyMU9aVVZ6WlRoWE4wMUlaVmxFT1ZGWlRsUnZiakZPUXpSTVNWbGphbk5pWTNJME1YbDZORUpSWmt4dWVGVkZXWEYwVWpCTVpBcE9XR3R5YkhvMU1VOW9WMFpsWW5kSldUYzRTbGRMZFNzemRrWXJObEp0WWxaYUszSTVUREpZU0ZoNWFFb3ZNM1JoUjB4aGFtVjFkRTlVT1RSWlprOTBDa054TVRaSmJFUlRjMGs0Tm1JMk9XaERWR1JLU0ZCemNrTnJWVXMwVjBZeFlXWnFhV2xJTURFdlQxZ3JhR3BwZUhGWE5qWlRSMEZZWTJrNGNrOURVMWtLVlVodFRYUjNTazg1TlZrNGMwRjZjR1l4Ulc5SVNTczNaMGRVUlhvM1RqSnFaRkJJUlV0d1RqbGlkWFpNVDFCcFZ6azJUeXRpWTNWVlFuSnFhbEZWY2dwVGJqbFNkaXRwVFRsdFFsbGpjMXBoUTB4T1IyUlJTVVJCVVVGQ2J6RlpkMVpFUVU5Q1owNVdTRkU0UWtGbU9FVkNRVTFEUW1GQmQwVjNXVVJXVWpCc0NrSkJkM2REWjFsSlMzZFpRa0pSVlVoQmQwbDNSRUZaUkZaU01GUkJVVWd2UWtGSmQwRkVRV1pDWjA1V1NGTk5SVWRFUVZkblFsRm1WMFZPZVZWemMxa0tRbVpPWkVvdmNEazNjR05LUlhCTlUyaDZRVTVDWjJ0eGFHdHBSemwzTUVKQlVYTkdRVUZQUTBGblJVRlpZWEpGT0ZOTlNrTnpORGhKZWpSeVFrVllSZ296V1RoaE9DdENVRWhtU3k5U1ZWSm9jVlIzZG1SbldYTldORFZZVTNkQmRXRTFOamw0YlVKQ1JXNTBXbVYyTm1WaFFVbEVUVFF2SzFZeE1IZHhLMU00Q2pSbFNIbEVWelZJZVhJNU1FUkZZM05UYlRkd1dDdExVbUpSTWpScFExSmFaRVowVUdGcmJucDFSR0Z6Y1VZM1EwSjZNekZ0V2t3emIwTlVhbk5vY1VzS1YxbE5jazFuYVVoUlVHVlFPVk0zTVZVNGEySnhVRUprWVVwcFlUVXhRakF5VG1KQlUwMURVM2MzUTBvM01UWlFTRVJ1ZFVaS1YySmxiWGxqTm10QmVRb3dibU53VGpFME1IVnRXVlExWmxvMlNWaHRhM2hWVVhRMEwwNTRNVFpuUjBKWlNXVmxjVkJST1dOM00wOU5SMGQwWTBOdVVGTndLM0pSTDFFMVprTmFDbmxrVGtkRlZuRktaMU00Ym1GdlZHOU5Tbk5YTlU1R2JFTndSa1ZJTTFCd1Nsa3lSMHRNZHpkTlZIaExVRTFoUW5wbVNYRk1PRXhvU2xKQ1IwUlJWWEFLT0ROcWR6VjJTSFZKVFV3emIzazFTbTQ1V2tWblpqQTROM2RRZVV4cE0zRldZV1UzVm1GWGVsZGxOVk4zUWsxNlRsTlVUMVEzWTNFMVJrcDJUVVozYWdwVVYxbFNRM2hSV0RoNFptaE1ORmRNU2s1MUwzZFZNMjFIVjBSbVprMUJlSGR4VWpsc1dXWlRUbTlDTm5VNE9ESlVlbXRyYzNwTGFWZ3dkbVo1UmxOMUNtUldNVEZFUzNOdFlreHZVblEwYUc5MmIwNTNSelZLTUcxSE5IRlpaRTRyVmpOSVpYVjJRbEIzSzIxck5FMXJUUzk0YVZSWVUwOURMMjB3YzJodFRGVUtlakJ0T0dKVE1ra3ZWbTE2WXpjd1dESXJSMFYwWWtWSWNFSkpWSGRLVHlzM1RuWjFaVTlQUnpkT2VuQnVkbVFyZUc0M2RDdFNPVlZ5Ulhsd1oyNUhZUXAwYXpCeVFqUmhRbkYwWnpaM1MxWnFNR3hhWTI5Uk1WWldSVVpOUldKRUt6UkJRV1pRTnl0TWRFazRRVE5zTWs0eVdETjJVMVpoYTB4RldUbGhObTFYQ25GQ1IzSmFUVVJqY2pGWVRucFFlR3AxYTFreFExaG5QUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MxRkpRa0ZCUzBOQlowVkJkMHh5VDJOeGRFeFJTbGN2VmpKUFZsaDNSa0ZFV2pWd2R5dEtZV0ZCWVVremFqVXlaVmt6VkVsTlpuRkJVMjlxQ2pka1FsaEZTMlp6T0U1WE9VaEZORXRxTDJkRVQwTmFObWh0V1dKaU9XNHlObEI2YVU5c09IVk5iV1l3WWxGalZFOXVMMVpFYjFNNVZEQk9hbmd6YWprS1JtRnlRMUZKVlZRNE0ycFFUVVJTYXpkRFdEaFNLMHd5TjFwTVlVZ3dNRzl0WTFSM2JYSjRRa2hHVlVoeVNDOTNTekY0Y1VzeWQyNHdXRUZOYTFvNVZncE9kVUZhYkV0YVpFWjZRV3BQTjFWbFJXUXZUM0ZKUWpCQk5XRXhLM2hsY3pOeVpVVklkSEo0YXpaRVkyeDZWVUZVUzAxeVNsTTNWRFY0VjNwblNrMTZDbkpYU2pWNVkwYzVUekI2UmtOeVZVUkNNVTVDTlM4NFdIVkxRMDB4YkU1S2RVazBkMnByTlVOSFREaFpWa3czUlZjNFYwUk1WV0YyV0hkeGRYQnNNVTBLYzBFMGVuQTFRV3h2Tm1WbVYwUndXR1ZFTVdWT1N5ODNSSGRYZEdaRlZUVlZiSGRGTlVwSlNqazVjekZHSzA1RlNWRmFaMDlMUkZsYWJHRk9UalpzU0Fwc1ZrbFlORXBGYW01bE5qQXJlRFJHUzA1TFFVNXdURTl0Wm5WR1JqRktORkJtYWpoaEwzTjZWVlZCTDBKMVdFcHFXR2hNU0haR2RYcENNMjFCTDFWSENrUlZOa281VkZGMVEzbEhTRWszUnpOTEswNWpjeXRCVlVoNU5UaFdRa2RMY2xWa1F6TlVWalZMTldNclpGUnZWbWhZYlRoRFIwOHZRMVpwY25aME4zZ0tablZyV20weFYyWnhMMU01YkhneE9HOVRaamszVjJocE1tOHpjbkpVYXk5bFIwaDZjbEZ4ZEdWcFNsRXdja05RVDIwcmRsbFJhek5UVW5vM1MzZHdSZ3BEZFVab1pGZHVORFJ2YURsT1pucHNMMjlaTkhOaGJIVjFhMmhuUmpOSmRrdDZaMnR0UmtJMWFreGpRMVIyWlZkUVRFRk5ObGc1VWt0Q2VWQjFORUpyQ25oTkszcGtiek5VZUhoRGNWUm1WemR5ZVhwcU5HeDJaV3AyYlROTWJFRmhORFF3Umtzd2NDOVZZaTl2YWxCYVoxZElURWRYWjJsNlVtNVZRMEYzUlVFS1FWRkxRMEZuUlVGcU1uQjZUbVZHUW01ck0xRnNUR05HT0VONE9TOWhVbXRFT1M5bldtOW9NbFZQYzNGUWEyNU1WV2hzZUdsSGVGUlZRMUUwY0dGNFVRcEtUMkp2VlhGbVFVNUhTR0ZCTWpabGRtMVJPVUp1Tm5KMllsSjNieTg0ZGpSV1NqWkZTMlY2U2pGVU5IUnNWVkZwYlhOaVZrNVJlbWRIZDFKSlVFaHRDbHB6WWk5YWJDdFhkV2xQUzBZdlVrMTVNM28zTURBNFdGb3hWMngwV0Rsbk9VUlNVMEZaYzNseVVrZFlOemRuVERaVk16UkVSMVZGYUVaRkszUTVPRlVLV25GNmNtbDNTemN6V2tWMGRIcFlaa2h6ZVVodWRFWXZWV3AzT1d4TWFGbEVRVTF2U1RGNlRsaEViMUJaVW5ZemF6TTBVMnhTY2pBeVdrUjFSRGRUWWdwdVFWVkZiVE5OV0ZSa2QyMXlkbmxyUzJvNVQycHBOWE5NVjIxb2RVVlBSRFlyV2toMFRXaEJWbWR2YTBWM01FZGpla3d2ZHpoNWNIaEdhazVHTWs5ekNtNXdkV1JrTkc1NWFsRmpaR3Q0WkdoUE1IZ3JWRWh6TW5KS1RFNUVMM2dyTjI1T1QyZGFSSEJTTmsxalZ5OHlTVEZET1dSUU5VY3JSMnB3WlVkTVdWUUtjVko0VjA5VWNWUklhMGxwVGpCWlkwWk9Oa2xNTW1veWNXeE5Tak5FWTFKYVVXcFhla2N5ZW5SdGRUVjRNWE5IYkd0cU56SkhZbTh4UW5sYVRIbGtNUXBuVmxZeFlVRTNRemhvTUZwV1NWTklSVkZtYzBkc00zQXhLeXN5Y2trMGJVbFFVbFpQT1M5WVJqbDRkVWhWZGpCTVZsQjRjMDVYU1RoRlEyVmtZMXB4Q2k5elZXb3pXVEZoYjNWU1pXRlNPWGRzYVRaek1qRk1iRlpqWnpObFNVaHFUR3RtYm5sTFMyaG5lRVZPVFhGRVpqUXpWM05rU3pCdVJFNUxVMGwwVDI4S2NXTkhhR1pyY21WM2RWWk5OMmQ2UVZsclduVlNZVkl4Y1V0Tk0xRkNhREI1VURGNmQyOVllRzF0WjIxWU5YWjRhRFYwZUVGWGIyaEpZa0Y0YjFKb2Jnb3ljRkZtTkdwaFpIZHhNM1k0YzNSbFRFNWthalpOYWtwUFpTdHhSemx1T0N0alowWllkRGRhWTI0clRHZHZjazR3UVVWRFoyZEZRa0ZOVWtkYVFUbFhDbGh1ZVdoNFRubHVZMkpzWVZGWVRUbExOa1ZaVDNWU1owY3ZaR0Z0VDJzd05uSjRMMk5FWjJWdVNHOXFlVFJDT1dNMmRsZGxaR0p4Y2tVMGJYTTVTSFlLV25KdFIyTktkMVZpUmpWWVRETmpkbkZKWTFWSU1WSTNjbVE0YjFvemQwbDRjbFpTU0UxTk1IaHVWRlJpTlhkbllUZ3pURlozUWxST1VIRmhRUzlNVkFwTlZDOHdkSEZsTkRWQmNsSnlTbnB0YUVJMVkzRjRkR1ZwVW1OWWNucGtkR0oxUldSUFVHTktTMWxYY1VsWFZtaE1SRGRNUVZOM2RuRnZPVW92UVVwdENuaFFiMWhqVm1GSVRVdHZXREVyVTNObFpIZFBRMVpIT0dkTVVYQktjakZtVFdSS1JXODRlR2x0U0VJME1EUlBSU3QwTWxCSlZFUTROazlOWVZGbFYza0tNalJUTWtOaFlXTjNaM2d5U1VWb01HUkdNMDl5WW1RM09IaE9ORlJTTDFKcVIwYzBjV3hPTVc5dlZuSm5SRXh0VUdkSGIwNDFPRkV5ZVZKdVdVcFRUd295V0ZwRlUwZExjazVXY21OdlFqQkRaMmRGUWtGUWRHZFFiMnRJZUZBMldrdFJhRVkwYkVWblZWcDVRV2MzYW5CUWFqbHNWell3U25Ob0t6RllhbmR4Q21rNE9HWjVaVEEyU0c1bFJXbDBOSHBsU0ROYVJEQnpUSGsyWmtsSU0yOHdTa0paVlRGWFpYVk5jalJwV0VWR1Ftc3JiR0pLY2pKdFFURmFRbXRXSzJRS01IUkpibFpNZVNzMVNrMU1lRThyT0Zoa05qSmFWbXhaYUdvMVZ6SjFSWEUzYVVaRlYyTjFOM0pRZDJOcVlrbHhLMFk1TVd4Q1JVSlFZVzFzVkhaTVZ3cDNWRzEyU25GemJsUjBWR1pJVGpBMVNEVTRkakpVUjNKSmIxTldLMmwzY1M5VU5FYzJUMmRaY3pCd1pHeHZSbXBFUm1ocFptVnpja2xNU0dOblZEYzBDbTlhWkRoVE9VVTVOSEpQYVcwemJIWTNZVEZLWW05R1FXa3lWRkZJTXpSSFZrTnNXbTF4ZFVzMGN6UmFTRVpPTUdKeVFrNDNjR2xNTjBSQlNrd3hSaXNLUVRobGVEaFBiVU5xV0hwU1VtaFBObXBYVlVoMlVIQktOVmRLZW5NMlZuY3JRbEZzTkdkeVVVbEVhME5uWjBWQlUwNDFSbE5pYUhORVpVNVdTR2RMUVFwWmVYTlNMelJIYmxWQlExbzFTekpXTVVkb2NrOXlSblJ6U25WNlozWktRMkk0YjFsU1JsUlBLeXN6T1dZdkwxTkNjRmQ0ZW5aQlRtVkVWbXRYTVROMENuVmllWFZ1TlZsMlFVTTVSbFJ0TURSaFVrRnpSVEF5UXpCR1FWUXlTbXRuVlUxRmNYWTFSRGt4VVVvMFFUSlFaekpIVlZSelJGRmxTbUowY0d0TE1VRUtOVWs1YUdkVlRFaHlRMjlHVlVoNmVHTnZVbFpvWTA0MFJtUldkV28zUWpCSVR6ZEVlRlZ4YkZSWk5qWnRZbVk0YmpSUU9VeHljMDk1UkdGd01teEZTUXBxVXpKaE9XOW1aVWRuWlZGRFEzUjFjMUJTVTAxS05VWTVaVmRNTVd4aFNXUTRSWG8zWWtWVFNHVXlSV2xvV25KTk9URk5kRGhYUjFsRFptaFFNVEJXQ2xsbFJEbE1WV3R0TlhGcVZISTNiM2g2V0cxMFZVaElVWEF6YzFOeFZHVlZTbVZ3TmxKMWRGb3JLekpET0U5bmJVazRZa3BuV0ROcVYwWm5WR00yV2xNS1oySkNSazVSUzBOQlVVSmpkRkpCWWtwWWVHNXJWVVJ4ZUdsMFJGWkVTVVpFTDJsRlpEZEVNMWhKUWtVdmRrSnpaRlV3T1hvd2MydHdhM0Z2WWs5cVZBcHNNVkpJZDNBdlRHVm5VVVF6TWxCTGFYbHVaM1prTkZwTWNraE9kbEpqUm5aR1NtUXhjblZuVFc1bVJrNWlZa0pXZDJ0M1VrWndLMGQyWkV4aVVFOU1DbkkyYkM4MlR6Wk9kSEZOUjBsdWJsQXZLMUpXWVhGdVRVcDRUV1UyYVZwUlJFa3ZUbWczT1RKS1ZIcHZWVXBpV0ZCQ2IzcDNWRkZrTDBKVE9IaHdRbmtLVUZvMk9XbzVWM3AwWTJaaFdUUXdiR0pPUzBrck5HNVBSMGR3U2xCMVRGRnhSbVJpWmtwWlR5dHlVVXA1VTNkVWNrbHJWMGRyWjNWUlF6aFBRMnMzVkFwb1ZVeHNkRWgyY0dwek1YTmhZM1FyT0V0eVRYQmlWR2RWZVZkU05HNVVia2xoWlhGME5sRnBOMWh5ZWxVMVpGWXhLekZXYkhFek5rNW5kblJqY2t0UUNuUXZZWEZVUVVSa2J6ZzNNRlk1UWpkVlRWTlBXRmN5UVhOTUx5c3dUMk40UVc5SlFrRlJRMnhOVjJNMUt6UTRPV1E0U1c1MlF6RkJZbXB1Vm1kYVkxUUtUU3R1U0U5VGRGVmlLMUZyYkRSa2RqazJVeXRYZVM5eVVqQndibGxuTHk5eFJIUTNkSEIwT1ZreldrbG9UekJYZG1Kc0wzTnJjVkpaTkdrdlRGRmhad3BvTTNOVk5IY3JZMGROTm0wMVJYUk9Oa0pyTldOVE5FdDNPWHB0YUM5TGFYb3plWGhUUzJsSGNWTlVSMUEyWWpaMkwydERVRVJpTkZGSWMzVmpaaTlwQ2xoWGRUQlRSbTFWTmsxalQwUjJLMlV6VTFZd0x6UTBaRGN4UmpKbGMySkRLMWhLWjI5TVJHSXhiMlpwWWpGcmIxbzRSREIwYm1OemFEVnRVVWd6VFdNS01TOVNZbkI1VUhJMVZGbHNjMEZoVUhCaVoxbHlNMmt2U2xSR1V6WkZPVFIxTDFBMWVIZEdWbEpEVUhWdVpXY3hUVTlIYkdVeFlsRmlRblo0V2l0TVR3cE5kbVYyZEU1eVlYUXphVE53YjI5ellVVmlUVWhvYUVGWlNGTkphVkl6ZDA5RFYzUnlSakprWldWNWMyVlRXRVYyVDFWV2VWcHlRUzl4S3pjS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiByc2JyanVpOTh3dGt3bnNheXpmNWoycjJxeTQ4Z3FmM2hvajI2dzFtd2Z0MTdxbGswbnJkamJnM284d2M4ODU4Z3ExeXVjaWF2aml4cnVlMDNvbnIzaXQ0ZnF1bDVsd3FkYnhxZnBxN3RobG8wNDYzOHlneXM3bzJpMGE4MDJnbAo=\"\ - \n }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": + \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVZCM01rTnFWVkZHWm1aeWNWWmpNMFZ2Y2xrMWNrVjNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDA1cVNUVk5WRVY1VFZSSmVsZG9aMUJOYWtFeFRYcEJNazFxYTNoTlZFMTRUV3BPWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNuQlpOWE5zZGpOamNIRjZlREo1VmpRclpXVlVLMlF3WjI1U2NubHBTR0Z4YlhJMFlUZHNSbVl5TlV0cUszWTRiekEyV0RkMFdESnNaMHBUTlVOM05VZ0tTVmRuYTNKSlVIbzJOeTlRTlcxbGN6RlBNMmxGZVU1Q1ZWQkhRVWszVVhKRE5XcFVWVWhpUWlzdlZGTXhWR0prT0hvclJtODRhRWhEWVdoTE9ITkRjd3A1Y1hoa1RpczRheTlJZGtKV2NtMUZiRk5WYVhwSmVHcG9hMnMzVUZaRE1GSnljVlJtY0ZCMFdGTlhObll3U2tOQmVWTk9ZVGhZVkdNdk9IcFZlSEYxQ2toUFYwSXJMMWhKWmtOQk5WSXZWbFUwVTJvMGJscGtSSEY2YUhwVmMxaHBkaloxTkZsUllVVkZSa2wxZGtsSFJFdEJSRkpFWkhCdk1EWTNNVlJCYlRrS05EZFlSSEpqWmk5aFkwMU9WekE0VFRnMk1FOVNjMFZ1U2xscVkwOVJSRnBhZG5obWF6ZEtkRGxaYXpkaVNUQTNSMWRRVDJkU05tMTJkbWR1YkhwU01Rb3dNVXBHYUhoNmRVcGlhelF5SzNRd2NsSmpNbGN6Vm1GS1ZGSlBjVzlZYjBOa1ptdGFibTFITTJRMVZGWTFXRlZXTmxGM01VOVpSV3RrY1dST2RXaHhDbUpMZVhOTVVuSkJNRzh5YTJ4UU5UQm1NR05KVTFKRFJuSjVMekJZWXpoV1QyOTJhM1l2VGtoVVIwNWFaRkIwWjJ4NFZtZFdTazl0YzBWclkzaHlLMjRLYm1kclNtbE9SMmR1TjJSU1VXVkhNMlpEVVVNM1ltMU5WbXhwVDJ0MFNtWnVjM2xqWWpaWVpteGFiamhuTjFCVFdEZEVObFp5Tm10WFYxRm5WMGxITlFweVlub3ZibEY0Wm1STk9FNUVVSGw0VlRSeGRGWjZPRTFPVmtsR2FDdDNTVVJWTldsRllrMU1kRWxCZVd4M1dtODVTREpPVTNOalJEbFRkMllyZVRWNkNubFFhRzk1ZEZWNGJ6UXpTVzl6VTFGMFdIQjRiVkZHVFZWamVWWXhlbk5SYlROaGQyWkJaRFpDUVU5bVRIcGhRa2xEUkVwb2VEUTRibGhhTmtwalJHY0tZbWh4V1ZoV1QzcFVUekpHVURGSFIzTXhSaXRVVTB4R1NXOHpVbE5pYjJaSWNsTnFhbUV5ZEZSTlJVTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1FWWTNNVlZhV2xKMU1YaE1WR2hIQ25keVEyeE1WbUpPYlc1aWQwMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlFVVjFhWG96Um1oUFIwSTBWa3BsV0dKSGIwTXhZV3A1ZVdrS1dEQk5UV2RoWlRaR1RsTkVPVkJvWm05ME9ETk5NVzAwWXpKNlVEWmhURzlHU2k4Mkx6Wk1PRWN6ZDBRM2VERm1jbVpoT0hKMFFUSnlSVFJCVnpKUlFRcHJOMmxoWlZWcWVFTXlNMmN5VkRRd2JqUkJWMnRXZWtrMk56VkxOMmhWSzJkc1pESk5lbGRaYTNFMUswNTVSMmxWUnpsbWRIa3ZkM0JsZVdsRWFIVnBDblJqVVVwMVNtaHBLM1Z1WkM5MFRVZHNla2N4V1ZoTllUbHBiMnMyYXpGaFdFbGlhSFpHU1RWR2QwTmtSMnhzZGtwa2IySnZibE4xUzNSRmNsaE5hM1FLVkRoV1UxRkdNV0ZPUlRBdmVsbDVVRFkyVEhaQlpUUnJlV2ROZEdkRldWWlpaekphTm5KNmRsSmxXbmczUnl0a1ZUTXpWV0p2TURKa09XVTBMM3BRYUFwTWIyNTRiM2xvTlVsQlowTkNUamR4VVVaRVVqaEJNMmg1VjBGdmVqaHhhVzF3WVdkUlEzZzJUMEkzUVc5NE1rb3dTREV5T0ZwMFEzVkhiWHB1ZWpsbENqTTJMM1paWm10NlluSnFWWGRRWVhRd1dXWm9RelZ5WkVreWNYbGhZMVkxWWxaRGJtVnFNemg1U0ZWNWQxZGxRalZUVWpWbVFtZGphalIzTlVJNWF5c0tPRmhCUlcxM1MxcFNaVEZCUVZKRWRISlZjWGR1TUhCV1VHbHNWVFZNVG5Oa1IyZFNiR1ZzU1ZJME1VRklaakpxTmtvMWJHSkNUMk5QTUUxVGVUaDFiZ3B0V25aTk9GcExXSGhoWm1scE5VRjBjbmh0WVVkRWNURTJla1EyVEcxaWRtNVRLMUYyVXpGTVRFbE5hVzFsWVZCM01sbDRTMmwwZVVKdFlpdHBkbGxrQ2xOT2VEbHFkVXB6VWtkTVVIUmFPVFZGU0ZOWE0xZGxjMHN4U2tGemNrMUVkbFpsWTBJNVRrUlpVakJYTkdnMFltY3hOazl4YURadE1XcEhPV3hMTTFJS01qQnBiWFZ6WWpSQmNIZ3ZOMmx1V2paSFpXNTZNV1JYZEROclVFNTRjM1pYT0hKeFdHTkViVGRVYW5WMmR6UklNeXRRV0hsQmEzVnplVm93T1ROTlpRcGhVV2w0YTNVNWNuWkhaSGhtYkRSVGRXYzlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5zanJ3Y3FpNC1iejdtZnNibC5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdHRieXhiZwpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdHRieXhiZwogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdHRvYnJvZ3Bra3lfY2xpYWtzdGVzdHRieXhiZwogIG5hbWU6IGNsaWFrc3Rlc3R0Ynl4YmcKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0dGJ5eGJnCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdHRvYnJvZ3Bra3lfY2xpYWtzdGVzdHRieXhiZwogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklWRU5EUVhkWFowRjNTVUpCWjBsUlRWRk9Vbk00VGtKVk5YTnpiMHcxTkdseGNqWlBha0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRnpSa0ZFUVU0S1RWRnpkME5SV1VSV1VWRkVSWGRLYWxsVVFXVkdkekI1VFhwQk1rMXFhM2hOVkVsNFRXcE9ZVVozTUhsT1ZFRXlUV3ByZUUxVVRYaE5hazVoVFVSQmVBcEdla0ZXUW1kT1ZrSkJiMVJFYms0MVl6TlNiR0pVY0hSWldFNHdXbGhLZWsxU1ZYZEZkMWxFVmxGUlJFVjNlSFJaV0U0d1dsaEthbUpIYkd4aWJsRjNDbWRuU1dsTlFUQkhRMU54UjFOSllqTkVVVVZDUVZGVlFVRTBTVU5FZDBGM1oyZEpTMEZ2U1VOQlVVUnNNU3QwVkVjMlQxZG1XbHBEUmxWbWFGb3pZa01LUTIxbmNVcGFkVVowZUN0U1VpOHdZbXBvVm1aeWVUVkVaMmxpV21ONFRIRm9LMkkyTVN0SlEyOW5lVkU0ZUU5bGQzRkZjelIxVlhkbU1XOW5ha280U1FwaGMzVkRjakptWnpNMWN5OVNhWFozWVdwb2NWWnBRVWRQUm5aNmRtVkxkak5zVlV3eWEwZElSekpIZDFsNk4yc3ZZbTRyUVd0VllVOXZOMkV3U0cxdkNtWmhXQzh5ZUhONmNuUndibmRaUTJ0UFpVTk9MMWQzT1c0dmEwYzJOVmRTYkdFcmFFVktabXB3V1RCcGVGVnpVR05zZDFOaFpYaFpWWFozVW5WWU5USUtXa1p3TVVWTFdrdFFUM1pyTUhnMllpdGFRVTFCUjBkU1JFTjVNa2R1VDB0V05rUkROWGQzY0hGNlNXVnlNbVpRTUM4MVYzZzNRVzFJVUhwck9Xb3JOZ3B4V0VNek5ISlBPRVJEUkdReFozVnFUek5aZGt4TFFWUTVTVWxYUkRKbWFVdE1XazVoYUhodGIxaFlkM1ZMTlZSM1QyOVdkVFZoVUdKTFdFSm9lV2RWQ2pKc1IzWndTRlpRVjFOblZFVlFRVko0U0RSc05UVjNWbVF3UWxoUU16QkVTbXB2VVVaUlJIVk9WRzExZWxGVVQzZHNUM0ZPTlM5b05YTmxiSGRFUW00S1JWQjRXRWR6VVRFeEwyMTJVbE5hVm5WNmRXSmtOMEZIUzJRME0wVnZZVzFQZEZwVFNUbElNa3hJSzJOS01EVnBSalJhYUZkTlFXbFpTRmsxSzNscmJncHJkWFp0TnpkblJrUTBZM0Z1YUZoeFNVcEZPU3MzZUdKM1kzSlFZV3R3Wm1aVk5UWkVjRVpOUkZaaldtbExXa1ZYT0haNGRHWkpWRGxpV21nNU4xVlZDbTk1ZUd4UldWSmtVbHBzYkhOdlFUQktLekJzZDJsUFNISkhjemt4WWs1WVkwVnFiMEY2VEV0dmEzWkxhV05RVjBZd1FUTTFaVEU1Y1hCWGNEZDNSMElLTkZsV2VFaEJhbFJuVkZaaVIzWk9WMFZKV1RSYVduQnBaRk5NY1c1RGVsQTJhMWh6TTJSd1IwbExhR3RFU0RaTE1HUTNLME5KSzFCTldFZGFjRWRpTVFvdlp6bGFkV3hyZEcxSFRGVjJUR0pQVW0xNFowRlJTVVJCVVVGQ2J6RlpkMVpFUVU5Q1owNVdTRkU0UWtGbU9FVkNRVTFEUW1GQmQwVjNXVVJXVWpCc0NrSkJkM2REWjFsSlMzZFpRa0pSVlVoQmQwbDNSRUZaUkZaU01GUkJVVWd2UWtGSmQwRkVRV1pDWjA1V1NGTk5SVWRFUVZkblFsRkdaVGxXUjFkVlluUUtZMU13TkZKelMzZHdVekZYZWxwd01qaEVRVTVDWjJ0eGFHdHBSemwzTUVKQlVYTkdRVUZQUTBGblJVRkhTMGc1VEV4elEzcDJWVGg1TUVneVkwRjRTZ3BzUWxac2F6ZE5ORmgwU3pGdWJXRlBlalUzVkcxUlpGaGpha05PVW5sTWRtTm5PVk5WVDBvMGRFRnFSMjUzZDFJeU1XTldSVEp5WTBsdGMydHRZalZ4Q2xSemFIVlJiWEZGVFdkcGNESTBNV1JIYzNGaWFXRTNjV2MyY2tRMFZtWmhaVGRIUVhZMlZqaE9OaXR1UkVWTGQxRXpXR1F4V25WWWVDdGFkMmxWYm1ZS2IwWldVMkZuUlROMVdIaDBXa2N2VlRaUE1YWkdVamRLYTNZMGJqQkROekp4ZWtSbFpESmxUelJsV0VKUFQxZDJia0Z2T0cxek5HOHZiR2RqYm01UGJRcHZTWGNyVm5kVE9FTjVWRGt4VDNOa1RTODNlVFYzVGxWS1lYSlpOVlpZV0RsRFNIZzJWbmQyVms5V2VqbEtjVWt5ZWtKR1IzTjZVak4yVWtkR1NHRkdDakE0V0dsSmFHVm1LM0J6VGtKVGVtbHRSeTkwYkV4UVFVSjBMMWxhZDBoa1ZEVklhM2gxTW1wRlZtSjZjVVJZTlM5TVZGRjRSVVJNVGpSdWVGSmlPVEFLUzNvMGNHeDBaa1F3WVVFeFVXNWxPR2t6VVZWc1UzbFVUbUZtV0hGelkyMURPSEJhVUU1d2RGcGxZaTlzTDFKVVdGVmhNV0o1UTBKak5IZFpkbXg1VkFvelMwNWthVmxQVVRObFJtZ3hLemhUYUVrNWJVMXNOV2xVVlVveFIwTnFaMnh4WnpKeVpHVjVkalEyTmtReGJVcE5jRFoxY25OME9GSXdablZJTnpsWUNsbHliV1l6YlU1M1ZrVkNSVGN3Y1VGdE1WWXZkRzFzZDNBd1ZqaHBhV1pHTURST1MwSlVOVkJSV2pCaU0yTm5VMVE1T0hWYU5XaEZWekJpWVd4WE5sWUtjMHQzVVdJMlJHMDNlR1J5ZWxZeFkwOTZlbXB3ZVZaSllXOUZka3RuU1VaaE9IaERVRWw2VDFaR1lXRnhUbUpTTjNoSFoxVmpNRXRtU2xsS1VYSkpkd3BUVVZWaE9FUlVRM0prVWl0WFltaHBXRk0zYWtNMFdrNVBlams1UldwaldFVkZaMFJ0WkRVd1QwMTJPV1ZEY3psM1ZVcERUa3hxWlc5c1EzRm9Sa3N2Q21aQk5tTlpVVTlVU25FMVMwSnVaRkZyYzFSSllVRTBQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MxRkpRa0ZCUzBOQlowVkJOV1JtY2xWNGRXcHNiakpYVVdoV1NEUlhaREozWjNCdlMybFhZbWhpWTJaclZXWTVSelEwVmxnMk9IVlJORWx0Q2pKWVRWTTJiMlp0SzNSbWFVRnhTVTFyVUUxVWJuTkxhRXhQVEd4TlNEbGhTVWw1WmtOSGNreG5jVGx1TkU0cllsQXdXWEk0UjI4MFlXeFpaMEpxYUdJS09EY3phWEk1TlZaRE9YQkNhSGgwYUhOSFRTczFVREkxTDJkS1JrZHFjVTh5ZEVJMWNVZ3liQzg1YzJKTk5qZGhXamhIUVhCRWJtZHFaakZ6VUZvdk5RcENkWFZXYTFwWGRtOVNRMWcwTmxkT1NYTldURVF6U21ORmJXNXpWMFpNT0VWaWJDdGtiVkpoWkZKRGJWTnFlbkkxVGsxbGJTOXRVVVJCUW1oclVYZHpDblJvY0hwcGJHVm5kM1ZqVFV0aGMzbEljVGx1ZWpsUUsxWnpaWGRLYUhvNE5WQlpMM1Z4YkhkMEswdDZka0YzWnpOa1dVeHZlblF5VEhsNVowVXZVME1LUm1jNWJqUnBhVEpVVjI5alduRkdNVGhNYVhWVk9FUnhSbUoxVjJveWVXeDNXV052Ums1d1VuSTJVakZVTVd0dlJYaEVkMFZqVWl0S1pXVmpSbGhrUVFwV2VqazVRWGxaTmtWQ1ZVRTNhbFUxY25Nd1JYcHpTbFJ4YW1WbU5HVmlTSEJqUVhkYWVFUTRWbmh5UlU1a1pqVnlNRlZ0Vm1Kek4yMHpaWGRDYVc1bENrNTRTMGR3YW5KWFZXbFFVamxwZUM5dVEyUlBXV2hsUjFsV2FrRkpiVUl5VDJaemNFbzFUSEkxZFNzMFFsRXJTRXR3TkZZMmFVTlNVR1oxT0ZjNFNFc0tlakp3UzFnek1VOWxaelpTVkVFeFdFZFphVzFTUm5aTU9HSlllVVV2VnpKWlptVXhSa3ROYzFwVlIwVllWVmRhV21KTFFVNURablJLWTBscWFEWjRjZ3BRWkZkNlZqTkNTVFpCVFhsNWNVcE1lVzl1UkRGb1pFRk9LMWgwWm1GeFZuRmxPRUpuWlVkR1kxSjNTVEEwUlRGWGVISjZWbWhEUjA5SFYyRlpibFZwQ2pad2QzTjZLM0JHTjA0ellWSnBRMjlhUVhncmFYUklaUzluYVZCcWVrWjRiV0ZTYlRsbU5GQlhZbkJhVEZwb2FURk1lVEo2YTFweldVRkZRMEYzUlVFS1FWRkxRMEZuUVVwQ2FFbHBTVU54Y2tKUFJUWldVRmRQWm5VMWJISmtlbkpGY2tSd1ltZG5ZVkI0V2t3eE5tTXhTek0yU1dabWNXbG1UMk5aVDBJck1BcGFNMlJxU0ZKUFlrOVVMMms0YzJNM1MwOXNVVzU0T1dSMVkyVm5iaTlwTDJRM01TOVZZV2RhYzNSeFZYaE5ZbFZRWlRsb04zbExSa1JyV25oSGVYbENDbTAxT0VrcksxVTBPVXA1UzJoMksyWlliREY1UzNsNGFXOU9OakUwT0VRMWNUVlBSVEIxSzFkT1ZESnJkRkJWUVM5b2MyRjZSVmxPY0VsQmNIbENUM1VLU1dsWGEyUlhTakpLUVV4UVdqTkVMemxDUzI5WlVrZDFZa2hpZG14UU9FMUxOSGR5ZVM5eFF6aEdjalpUY2tWRFJqVXlPVUZTY0dOU0szVlVWMlE1WndvMU5IUk9jek12ZWxCdVZ6TTNhRE5HVFVjdlZTOTZlR0ZxVDFKNGIzRmtabEZPU2tod2NqUXZiREpETjJ4MVJVdzVlR1ZPTUZGTGRXUlJjR2xGWWtWbENteDJWRzltY0hoUWVVTkNiaTh5U0hoWGJqQk9kMjVyTjJkT0wzTTFjR3haVVdSeFFUZG5iVzFoTkdWSVVHdDVWVlp2SzFGNlEyMHlTRWQwVDFFemJIZ0tUM1ZLUjJKV1NqRlVaMEpoWVRBclV6QndjakpMVG5OSGFsWnFSakJhUVU5TWIzVTVORnBqWWxSNWRHVkpSeXQxVEc1TFlWaEVVVVY2UjFkdVlsaFRNd3BxT1M5NlVGSmlhalIwTlVZelNFWjZSelZYV1UwelNGUkVZVmxOVVZCT1MyVnlaM2xyYlRsS1JUZG9iMk55UW5SM2VXbE1XSEV3YUUweFJqTTBkR1ZFQ20xRGJUSklRbEoyZVRKTllYZFZVaXREU0RCWFdFWlpXbk50UlZGVWFEaEtRWFozSzJWMVRUVnpkWHBaV21GR1FraHNXamwwYTJsNFoxRk1TRmh1TkVjS1QySjZURmM0WmtWMWEwbFZkREZSYWxaUlRWbHZWQzlPT1VGUEsySjFRMnMzY1hNM1R6SXdUVFo0V1ZVdlYxUjFlU3RxWW5Oa1ZVeHRTVUpVVldOVVN3cDJkbG8wTlN0a2FUaG1WMU5tZUM5VmEyOUdVWEY2U21kNlNIazBSekUyVFVwM1ZHUTRUbUpDY0VJMVVsbHZMMEprVVV0RFFWRkZRUzlLYzBkbFUxUldDa0pKVUhObVdGUkdUWGRQVEhkcE9VMUpTemROYmtaTWEyOU5jM2xHT0hKdlZrdEZiR1ZzVmtkMFltaEtSazExYmtkNGNTOU5NbFF5VHpsV2RUTlFkVVFLV0ZwcFkxWlZlRFpCWWxsTVlXYzBOV2hFZURZNFkxaEJkR3hpUkRCUWFHZDNTWGMwUWtGUmNrOHhZekUyT1haWU5HSjBaVFpWTVc1MVNuQlVjblpwVmdweFpUQk1iSFUxYTJGSGNFeFljV1p0WlVaV1N5dFpOVXhDYUVKYVVEWldRamRWV0hSdWNrWmpWbXRHUWtWR1dreFJXbVI0Y0RkWlpFOXlNR2xFVVN0VUNuaGhSakpCU2swMlRrNWpjME0zVFUxS1VWTmpSbWhQU2swd1J6SlBabVpZUVZCRFIyYzRlRlJ2V2toeVRGSmFRbU5LVTBsb1lVOUtVSEJEY25reGJUSUtOR2xJV0M5WFMyczBZVGxxYXpORlNFOXhPSGsxZDJadlQzSTVhVzloYWtkb1NqQjBWa1pJVldGWE9VSlJWRmx6UjBWTlZrUlFRazg0TkRsQmVFTXJSZ3B1TlRGS1RUZHFaV0ZPUkU0NWQwdERRVkZGUVRaUE5saFdkMUYyTW5NeFRIaFBLMGxHVms4NFZ6aEpNMmRZTDI1WGJqTnpOVk13YUdGblNVOVNiVkIzQ2pKbE4yVktWV2hLZGt0MFkxWXZTRkJXUzFjelVHUlZMMVp6VUVocFlsQmtSbFJIVmxSVmNHMTNRWGQwY2toWFVFaFhlbGhTTWxScWRYaElTbVJDYVRBS1VWWktUVFJITlN0Tk5YcEhhalpSTkdwRWIxVm9aVk5XT0VSQ2RXOTZVVmRyWjBFd2FGbzNLMDFxUlc4eWJDdExhMGxIYmk5R1QzTXhSakJxVlZoWmNnb3hVR3R5Y0VKNVpXTlFZVGgxVG01S1dFMUdVSEJFU2pGUU5uZ3hUblptTms5bWNqVkhlbVZJZFROUU1YVjRhMDFEWkVjeU1VbFVOelJxVDFWWE1IbDNDbGgwVjNaR05VeEdMMkk1T1RJNVlsUlBaMjF1YkdkUFpGTlpSVTlQYnpkNlltNVNWVWMyVkROTFdURnFWVmhaVVVkeFREZHJNRWxLVlVobU1FeG9TM2NLTTFaWFVGQk1ia3R5VEVsbFpuUjRWamhUWml0R2VFa3dSVlJyZFdGNE9FczFjRGRsYTAxcGFuaDNTME5CVVVFMk4xRTNPV2MxU1U1ck5Xa3ZVekZaVmdwTFIyRmFlbVEyT0ZsUmNIRkVVWGMwVm1rMVFsUndkMVEwWlU5VlVHZENXWE0zZVZsc1ZXeFBSVlpqTkRkbWVHbDVUVGh5ZW1GQkwxaFVTbUV3TlZKRENtZGxlak4xU1c1RFVucHRSek5PUzNaMGJETklhV0ZzU1ZGWE1YWjNiV3Q2Vm05NlJtdEhjM3A0Vkc1SGQzSXZTRmRJYW1SQlJFRndhVFZ4UVdkMWRqVUtWRFZLTVdGclZtaElUVkkwYjNKRWRHOVVTM2R1YVZKaE4xVXdXa1E1WVhsaFJsbzVUVk5SZEVWT056WmxTV3R3UVhGWVJ6RnFUbkZxZEdWM1IzRm5hQXBYTTBKNU5tcHRWRU5TYUVGTWFEVTNWRzlFY2pGT2VtRTBNRVE1ZW1SU1ZXaEhNbEF2ZG10V1FXaEZNakkwWkZGcFVEaExWMDEwU1hoUmVGWnNORlpRQ2tGR1RVTlBaMDkwZEU5RWVUZ3JNVUZvZUZSRVJWWlFPVFkwZUM5a2RtUlBRVkl6THpCR2RFazNXakJxWmpSMGNsWmhaVTlJUjJaWVlrTkdMMW93YVRZS2RYSnlVa0Z2U1VKQlVVUm9ZekI2TXpWQk1rNWpXR05OZG1WeGR5dGpUWFEzVDFaallXcGxOakZ1WTJKMWJuSkZOa0ZvTlVOUVNuUm1WVEV5VDBkc2JRcFBNVmM1Y1ZWYVRGZzNibXRHZVhGbVEwRTVlSE5MTUdwbWEwcE1PVTQ1VDNOdWNtbHRWVnBVTjB0NlVscFZNRzFIZVd0d1VGWXZObVZZV0M5SkwweDVDbU5oVDJWR1FYcElZazB2UVdGSFlsaGxOR3RoV0dGbllUSkRaamw2VFRKelRuWnBZbkJETW5oblJYcG1XbEF5TmpkbmNuQktZamt5S3pGVVMwZDNhMllLZGxSRlkyMVhOMVZaUTFvNVptNXJUbXRDV2tSb1prTnFabU0zZFVWUGJFY3Zaeko0WTJGVE9WQkZXVUp1UmxaUWMzbDVPREJhVmtSMFVEaHlhV1IzYndwd1pHUnFiVXRKU2xsd04yRkRPVmRKT1RKcFYwNVNXbGx4YVRsbFRXMVZibmx5YkN0a2R6bFFUMDFFVnpOMWRUQXZkVlpSVlhKaWRFRTBjMGc0Tm5VdkNsTjNaRXBOYlc1allVTkVLMjgxWmxKek9EZENlaXRJTVVwWUt6SkZkbmw0UVc5SlFrRlJRMmg0Y1Rkb05sTjVhVEZOTDJaVWVVdENVVFoxWlZwQlNVa0thWE5FWm1SMGNrVkZOM2xHWVdaQ1pFVlZNV1pzTldSd1ZUQjVNQ3RaTTFSbmQwVlJhVXRQUWtKRGVVTXlZM2xSZWtveFR5OUdTVmxrZUZCSWNXZzRSd3B6YjJaallqSktVMlp1WlhKd1FYazVORzUyUzFJMk9WTnNlbVUxVTBoNmR6RXdja1JJWkZoVVRYYzNPVU14U1UwdlYyMW9SVkpKZUZWbFRXbFRXbmxSQ2tadmNXMXlWSG8zYTJVMFpVSkJiakJETTFWbGIwbHBNRE5GVTBoUlZrWnpUa2w2VFVoTVFtWTNWMlZrTW1aTmRFWmtRbVJPWWpoSlVEUnBZa1ZoV2xRS2RtSnJjV2RUU2tkaFNXUXhSbmQwVDNwQ04wbFRTVGN2TnpkS01USnVaV1psYkROSGRtUndWbXQzYVhKblNGaGlOVEExTjJwMUt6TkVTek53T0RBcmVBcHJkbGRsU1RWcFVFTjZRalJTU1RGYVVGVjBkbWhvYkRrM2JHeEJRM1pIZHk5WGJuTmxUREF6YkZnNWVVUlZlR1I1TDBOdU1HTlNkV051T1RFS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiBydG5xM3U1N3VzYWl4azduNm5kYThscnRsMmdrZzhmdG0yMjZvODQ3MWNuNDlibXphbjJ5ZG5idWs2ZmVhYWFyZnY1ZTNjaHB1aDl0bGRsNXpkMXMxZ3NpMjNkcHd6YWQ5am96Z2p2YjN3NW52emZoOXRhdnZjdHQ4dHYxc21yMgo=\"\n + \ }\n ]\n }" headers: cache-control: - no-cache @@ -743,7 +883,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:29:01 GMT + - Thu, 29 Jun 2023 11:35:45 GMT expires: - '-1' pragma: @@ -777,24 +917,24 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/nodepool1?api-version=2023-05-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.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ - : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"\ - Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ - ,\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.19.0\",\n \"upgradeSettings\": + {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -803,7 +943,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:29:03 GMT + - Thu, 29 Jun 2023 11:35:45 GMT expires: - '-1' pragma: @@ -844,28 +984,28 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.19.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/264fabe5-532f-4659-925e-858531260ce6?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7af0cf6d-1522-4f2f-a90f-3a516007066d?api-version=2016-03-30 cache-control: - no-cache content-length: @@ -873,7 +1013,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:29:07 GMT + - Thu, 29 Jun 2023 11:35:48 GMT expires: - '-1' pragma: @@ -889,7 +1029,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -907,14 +1047,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7af0cf6d-1522-4f2f-a90f-3a516007066d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e5ab4f26-2f53-5946-925e-858531260ce6\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T15:29:07.3835825Z\"\n }" + string: "{\n \"name\": \"6dcff07a-2215-2f4f-a90f-3a516007066d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:35:49.4256181Z\"\n }" headers: cache-control: - no-cache @@ -923,7 +1063,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:29:07 GMT + - Thu, 29 Jun 2023 11:35:48 GMT expires: - '-1' pragma: @@ -955,15 +1095,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7af0cf6d-1522-4f2f-a90f-3a516007066d?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 }" + string: "{\n \"name\": \"6dcff07a-2215-2f4f-a90f-3a516007066d\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:35:49.4256181Z\",\n \"endTime\": + \"2023-06-29T11:35:53.5821863Z\"\n }" headers: cache-control: - no-cache @@ -972,7 +1112,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:29:37 GMT + - Thu, 29 Jun 2023 11:36:18 GMT expires: - '-1' pragma: @@ -1004,25 +1144,25 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/nodepool1?api-version=2023-05-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.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 }" + 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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -1031,7 +1171,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:29:37 GMT + - Thu, 29 Jun 2023 11:36:19 GMT expires: - '-1' pragma: @@ -1063,26 +1203,25 @@ interactions: ParameterSetName: - --resource-group --cluster-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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-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.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 }" + 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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache @@ -1091,7 +1230,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:29:40 GMT + - Thu, 29 Jun 2023 11:36:20 GMT expires: - '-1' pragma: @@ -1123,25 +1262,25 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/nodepool1?api-version=2023-05-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.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 }" + 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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -1150,7 +1289,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:29:41 GMT + - Thu, 29 Jun 2023 11:36:21 GMT expires: - '-1' pragma: @@ -1191,28 +1330,28 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.19.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/32bfdfdd-f308-41cc-8c9b-f7d342a42561?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/756fe29a-3e04-45c2-9c42-72c285fd8769?api-version=2016-03-30 cache-control: - no-cache content-length: @@ -1220,7 +1359,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:29:47 GMT + - Thu, 29 Jun 2023 11:36:24 GMT expires: - '-1' pragma: @@ -1254,23 +1393,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/756fe29a-3e04-45c2-9c42-72c285fd8769?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dddfbf32-08f3-cc41-8c9b-f7d342a42561\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T15:29:45.3994086Z\"\n }" + string: "{\n \"name\": \"9ae26f75-043e-c245-9c42-72c285fd8769\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:36:25.191395Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Fri, 16 Jun 2023 15:29:47 GMT + - Thu, 29 Jun 2023 11:36:24 GMT expires: - '-1' pragma: @@ -1302,15 +1441,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/756fe29a-3e04-45c2-9c42-72c285fd8769?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 }" + string: "{\n \"name\": \"9ae26f75-043e-c245-9c42-72c285fd8769\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:36:25.191395Z\",\n \"endTime\": + \"2023-06-29T11:36:29.9887689Z\"\n }" headers: cache-control: - no-cache @@ -1319,7 +1458,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:30:17 GMT + - Thu, 29 Jun 2023 11:36:55 GMT expires: - '-1' pragma: @@ -1351,25 +1490,25 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/nodepool1?api-version=2023-05-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.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 }" + 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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -1378,7 +1517,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:30:18 GMT + - Thu, 29 Jun 2023 11:36:56 GMT expires: - '-1' pragma: @@ -1410,25 +1549,25 @@ interactions: ParameterSetName: - --resource-group --cluster-name --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/nodepool1?api-version=2023-05-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.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 }" + 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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -1437,7 +1576,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:30:20 GMT + - Thu, 29 Jun 2023 11:36:57 GMT expires: - '-1' pragma: @@ -1469,25 +1608,25 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/nodepool1?api-version=2023-05-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.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 }" + 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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -1496,7 +1635,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:30:22 GMT + - Thu, 29 Jun 2023 11:36:57 GMT expires: - '-1' pragma: @@ -1537,27 +1676,27 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ - : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"\ - Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ - ,\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.19.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/90a34d76-2838-4257-96d7-5baf4c349ca8?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/32f70063-5fef-4510-baa7-058d5d14c0f0?api-version=2016-03-30 cache-control: - no-cache content-length: @@ -1565,7 +1704,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:30:25 GMT + - Thu, 29 Jun 2023 11:37:00 GMT expires: - '-1' pragma: @@ -1581,7 +1720,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -1599,14 +1738,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/32f70063-5fef-4510-baa7-058d5d14c0f0?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"764da390-3828-5742-96d7-5baf4c349ca8\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T15:30:25.8057774Z\"\n }" + string: "{\n \"name\": \"6300f732-ef5f-1045-baa7-058d5d14c0f0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:37:00.6290557Z\"\n }" headers: cache-control: - no-cache @@ -1615,7 +1754,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:30:25 GMT + - Thu, 29 Jun 2023 11:37:00 GMT expires: - '-1' pragma: @@ -1647,24 +1786,24 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/32f70063-5fef-4510-baa7-058d5d14c0f0?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 }" + string: "{\n \"name\": \"6300f732-ef5f-1045-baa7-058d5d14c0f0\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:37:00.6290557Z\",\n \"endTime\": + \"2023-06-29T11:37:06.5530997Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '170' content-type: - application/json date: - - Fri, 16 Jun 2023 15:30:55 GMT + - Thu, 29 Jun 2023 11:37:30 GMT expires: - '-1' pragma: @@ -1673,10 +1812,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -1696,24 +1831,24 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/nodepool1?api-version=2023-05-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.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ - : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"\ - Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ - ,\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.19.0\",\n \"upgradeSettings\": + {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -1722,7 +1857,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:30:56 GMT + - Thu, 29 Jun 2023 11:37:30 GMT expires: - '-1' pragma: @@ -1731,10 +1866,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -1754,24 +1885,24 @@ interactions: ParameterSetName: - --resource-group --cluster-name --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/nodepool1?api-version=2023-05-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.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ - : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"\ - Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ - ,\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.19.0\",\n \"upgradeSettings\": + {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -1780,7 +1911,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:30:58 GMT + - Thu, 29 Jun 2023 11:37:32 GMT expires: - '-1' pragma: @@ -1814,8 +1945,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/cliakstest000001?api-version=2023-05-01 response: @@ -1823,17 +1954,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a210b721-e909-4998-9d57-c94b0fe50025?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Fri, 16 Jun 2023 15:31:01 GMT + - Thu, 29 Jun 2023 11:37:33 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/a210b721-e909-4998-9d57-c94b0fe50025?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 index 103ac416e4d..485ae722c0a 100644 --- 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 Jun 2023 15:31:07 GMT + - Thu, 29 Jun 2023 11:31:02 GMT expires: - '-1' pragma: @@ -53,11 +53,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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {}}}' headers: Accept: - application/json @@ -68,68 +69,67 @@ interactions: Connection: - keep-alive Content-Length: - - '1732' + - '1403' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-wxiwyv8a.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-wxiwyv8a.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/cde77f4f-148f-4b1a-b57b-c42a53e4ce4b?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/82319bd0-591a-41f4-b059-4cd7320e9ca3?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3539' + - '3210' content-type: - application/json date: - - Fri, 16 Jun 2023 15:31:16 GMT + - Thu, 29 Jun 2023 11:31:09 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/82319bd0-591a-41f4-b059-4cd7320e9ca3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4f7fe7cd-8f14-1a4b-b57b-c42a53e4ce4b\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T15:31:15.4309378Z\"\n }" + string: "{\n \"name\": \"d09b3182-1a59-f441-b059-4cd7320e9ca3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:31:08.8001282Z\"\n }" headers: cache-control: - no-cache @@ -175,7 +175,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:31:16 GMT + - Thu, 29 Jun 2023 11:31:09 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/82319bd0-591a-41f4-b059-4cd7320e9ca3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4f7fe7cd-8f14-1a4b-b57b-c42a53e4ce4b\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T15:31:15.4309378Z\"\n }" + string: "{\n \"name\": \"d09b3182-1a59-f441-b059-4cd7320e9ca3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:31:08.8001282Z\"\n }" headers: cache-control: - no-cache @@ -223,7 +223,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:31:46 GMT + - Thu, 29 Jun 2023 11:31:39 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/82319bd0-591a-41f4-b059-4cd7320e9ca3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4f7fe7cd-8f14-1a4b-b57b-c42a53e4ce4b\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T15:31:15.4309378Z\"\n }" + string: "{\n \"name\": \"d09b3182-1a59-f441-b059-4cd7320e9ca3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:31:08.8001282Z\"\n }" headers: cache-control: - no-cache @@ -271,7 +271,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:32:16 GMT + - Thu, 29 Jun 2023 11:32:08 GMT expires: - '-1' pragma: @@ -303,15 +303,303 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/82319bd0-591a-41f4-b059-4cd7320e9ca3?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"d09b3182-1a59-f441-b059-4cd7320e9ca3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:31:08.8001282Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:32: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.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/82319bd0-591a-41f4-b059-4cd7320e9ca3?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"d09b3182-1a59-f441-b059-4cd7320e9ca3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:31:08.8001282Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:33: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.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/82319bd0-591a-41f4-b059-4cd7320e9ca3?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"d09b3182-1a59-f441-b059-4cd7320e9ca3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:31:08.8001282Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:33: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 + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/82319bd0-591a-41f4-b059-4cd7320e9ca3?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"d09b3182-1a59-f441-b059-4cd7320e9ca3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:31:08.8001282Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:34: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.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/82319bd0-591a-41f4-b059-4cd7320e9ca3?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"d09b3182-1a59-f441-b059-4cd7320e9ca3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:31:08.8001282Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:34: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.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/82319bd0-591a-41f4-b059-4cd7320e9ca3?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"d09b3182-1a59-f441-b059-4cd7320e9ca3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:31:08.8001282Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:35: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 + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/82319bd0-591a-41f4-b059-4cd7320e9ca3?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"d09b3182-1a59-f441-b059-4cd7320e9ca3\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:31:08.8001282Z\",\n \"endTime\": + \"2023-06-29T11:35:36.2873559Z\"\n }" headers: cache-control: - no-cache @@ -320,7 +608,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:37:52 GMT + - Thu, 29 Jun 2023 11:35:40 GMT expires: - '-1' pragma: @@ -352,65 +640,63 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-wxiwyv8a.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-wxiwyv8a.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/c3178b52-8e04-4553-bf88-ea36dc50094a\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4192' + - '3863' content-type: - application/json date: - - Fri, 16 Jun 2023 15:37:53 GMT + - Thu, 29 Jun 2023 11:35:40 GMT expires: - '-1' pragma: @@ -442,65 +728,63 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-wxiwyv8a.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-wxiwyv8a.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/c3178b52-8e04-4553-bf88-ea36dc50094a\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4192' + - '3863' content-type: - application/json date: - - Fri, 16 Jun 2023 15:37:54 GMT + - Thu, 29 Jun 2023 11:35:41 GMT expires: - '-1' pragma: @@ -534,24 +818,24 @@ interactions: ParameterSetName: - -g -n --file User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ - \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSUm5sbE1FWm5OalJ2YkZobVQyMXJWSEpNVjI1M2FrRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxVVdYaE9WRWw0VGxSb1lVZEJPSGxOUkZWNlRVUlplRTVxUlRGTmVrVXhUMFp2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVNd0NsQXJVa1ZSZUhrcmJ6aFRlbVJ5TTBkblozTkJTMDlvT0ZkeFRsaG5URGsxU1ZOeVNGVTBXVWhDZWtaRlRrbFpUa3BHUW1OVlpGUkNZM1F3YWpaYVdrb0tOVEozTmk4MmJFeFliQ3N4UWtSTlFUWnRXRkJoU0hZM2VESlpaMVl5YjNsaGMzcFBlbXRrUVhBMlRYZEJSbEZ4V2xKM1V6VXJhWGdyYlVSS1RHSmFWd3B3UjJOTVEyeFpSRWt2YUROSWVrVnJlbEpUU1hwb2RIQm5lbkJCY0VrNVZUZG1LMWhsU0RkS04wUkVTRFpxV21GbGVFSkVhWHBuYVhBeE1sZGpjazVPQ21GNGFtcGFlbEU1VG5ScU5EUnJWR1l5TWpSRFZ5OU1jQ3N5Y0hsSWNIRlhjM1EzUzBsR2FISTBLMlZDVm5GWmIzTlJibkV3Y1hKalVHRXdUVE5qV0RFS2VXVlVTa3hWYVhwdlpEQjZZeTl3V2toVFQzQktjVkpTZURaMmVsazVaRkY2V1ZCdGIwdHlWbk5XUzNJNE5XSXpOekpFWVV0NFJGZHpNa2hCT0ZVeVNncERha2N5UzFwV1pFcGxiamh4ZUV3emRYTmhabTlCTDBsaWVUaHdkazlFZEZKd2QxcHdURVEwY0hFd2FFdHZhVGRWV1hWU1dVWmpZVzVGWkdSelJuZDVDbTk0V2xnNGFsaEhWWFI1TUdJNVFXdEtaMVpaS3poSkswRkhhMlJpYTAxWFlWZFRUVzlIZDJ4T2RrNXZkV3BtYUhCcFZXaEtkMWRWTjNKalNtaHlSSGNLTm5sNFdYWmtZVTFpWXpkNVVVRnRObmx2VUZKbWFrSlZNVlUzWXpkMU5XeFdTbFZoYlRSQmNVaGhkV1ZoTTFRNFJGWnVVRFJSYVU5UWVWaHFTREI1ZFFwTlRURllaVE01YmpSWVRXdGxRMFJUVFdSSldEQkVabmRRTkVkWVZtUm1NbHBXVW5sbE1EUXpOMUJPTkM5Mk9GcFdTa1JJTld0cVpIaGFXVVIxVFdGb0NtZEdZa1V5YVdsQldVUTNiSHBHUzNOeVRrODBSVWhrUTBWcUt6TjRSMGMwVUZkcWVuSlpSMGhLYWxKSWREVXZhVlIxVVVKaFRYaDVORkEwVlUxdVptTUtXVmxCWlZWT01GTnlaREZ4Y0M4MmFFeFdibmRFYUhNMFIwTnplRXh2Wkc5MmNuSlFLMWhKWWtWUlNVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWWGNqQnBaWEJOY1V4Q2VuVmhVM1I0Q21wMldYVlFlbmxQZEdsUmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGTE1GWkJVa00wYUVKMldWbG9OSGhUUVZWWlpEUkRjaXR0TVRRS09FRkpkbXB2Y2s1WGNUWlRVa1J0SzBGbmJtOHlWbUZFVldGdWNUQkZlR3RQU205UFNHeGlVekpEVjJsWFYwWnlNa1pMSzBoRFFuaG5ZbEZRVkd4c0x3cFZTV05oTkU1RmNIcHNjRmhEVW5jMlVtVkJkVTl2ZUdkVVVuQlhVREEyWVZaQ1ZrcFpjMjVMVFhCT2VtUXhSRWMwYm5kVWVGcHNhbU5aVEU1NGQwWnJDbEU1VVZGQmFqUjZWVmRSVm5aa1ZUWkZlWGxUV0RRdmEyTnhSa3hOY1dwNlVDOXdRbTkzYld4NWFrbHZRbWxXUTFkRk0xTjNhRWt2YUVsMU9UVXlVR3NLTUc5RmRFc3dWbmhaWms4dmRWSlRUSEZqTm1FdlZVdEplVlI2ZGxKMmNVUldjV2g1U1M5SUwybGxaemhSTTIxTFYyRktVRzkwYjBGNlZ5OXhNakpFWmdwVldFUldNek5STW5odVREbGlSVTB2ZWxwc01qSmlORXBDU2pCNFRUSnFXVmhrWVZkRFdXVnlOaXQ2Y2xGNk5rRnFLMkUyVFdOcGJsTlpVR0ZzTlhGRUNqVk1PVVZqYVVSRFVWVjRWbkpVV1dkWVl6VktSMmhCU2pSMGNsZ3ZLM3BEVXpSd2VtOVBUeTlKTXpSMWEwcFJkRmRzUmxKNkwzUlVlVFkwUlZrdk4xRUtSelpZWkVKWlpHWjZlRnA0TnpSQmNUZFRUV1ZtY1dnMmQyZDZiMWR1TUU1VVNWSnlNM0kyVldSb2FtcDFkV1J5V1VZd1EyUkhSMnBPY1RKa2RrTkNkUXBaVERkVGJ6UlJWMUI2U1cxWFMzUjFOelJ0YkhBdmR6TklXVnByVXpZM1puZFVObXN5VVZoS1FYbEpWWGQyWVVsdGRWZGFkVTlJUjNFNE5tc3JiR2wxQ21GNFRtWnJMekpPYlRSVlNVNVZWV3N3YmtFeVNrdFBSa05qUjNOdVltWjZOR0l5VkdVNGNXTkRhbWRFTnpCcVJYUXJiek52YmxoUFZsaFNaRkppWVU0S09URkJhR1pqVTNseGFXaFVWMnRrVEhNNVdua3ZOVGRSUjFkUVFtWm1SelY0UkVkNmRubDFWSGxTVWtaeE9VZHVZblZ1U1VnNFZHaEZha1Z6WVc1MFlRcFlVa3RTU1hsT1l5dFhiMVF4VUhWTkNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc2w1ZnF1NGsteHczZmVwZDAuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3R4dGI1bjMKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3R4dGI1bjMKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3Rua2Q0bnl2djdvX2NsaWFrc3Rlc3R4dGI1bjMKICBuYW1lOiBjbGlha3N0ZXN0eHRiNW4zCmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdHh0YjVuMwpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3Rua2Q0bnl2djdvX2NsaWFrc3Rlc3R4dGI1bjMKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJVkVORFFYZFhaMEYzU1VKQlowbFJUbFpyZUVweGNUSk1TREoxTTBVMFRHcGpNMnhwVkVGT1FtZHJjV2hyYVVjNWR6QkNRVkZ6UmtGRVFVNEtUVkZ6ZDBOUldVUldVVkZFUlhkS2FsbFVRV1ZHZHpCNVRYcEJNazFVV1hoT1ZFbDRUbFJvWVVaM01IbE9WRUV5VFZSWmVFNVVUWGhPVkdoaFRVUkJlQXBHZWtGV1FtZE9Wa0pCYjFSRWJrNDFZek5TYkdKVWNIUlpXRTR3V2xoS2VrMVNWWGRGZDFsRVZsRlJSRVYzZUhSWldFNHdXbGhLYW1KSGJHeGlibEYzQ21kblNXbE5RVEJIUTFOeFIxTkpZak5FVVVWQ1FWRlZRVUUwU1VORWQwRjNaMmRKUzBGdlNVTkJVVVJPYWl0YVVub3phVmhIZUdWdlpsQmFNVWQzY3pNS2RUSXhTamxqUldSc1ZsbHpTU3MzVmxoUmNqWnllSGd2Um5FeVZtNHJWRkZzYWxCTmF6VkJjR1Z3VFVORlkxaDRXa1F5VHpGdVlucFZNRE5OWlhCWU1BcFJSbFUwUW1sU05WRXlOalptU3pOVU5tcEdTM05sVTNKSlp5dHhReXRVWjNaNVZsTkhWVm96T1ZaamFWUXlVRGhhUm5GaGExRXdXRGMxWWtkQ1pFMXRDbEpMTW0xdFJtMHdXR1ZxY0dOVE1ERmpNamRLV21sV1F6UkVSRGROWldaTlFXTnVWMmRYVjFGYVowWXZXak1yWmk5M2FsQlhOWGt5ZDFsQ1NFdFlWeklLUVVsVVppOHJObFZIVVVzcmQzYzJSRGN3YlU1VlNXa3dRMDQ0TmxaSGJWVkZhbEpHYkhSNlRUaE9TRlJNU0RGUGFXZzRjVWhDWjA0NWRIUk1TR0ZMZHdvcmEweFdUWEZwUTFSTGExSkhNMVV5YlhaSlRDdHdiM0pLYWtJMWVWVjVTa2RVYkVoYVRDOVpkazl3VlRGQlpUVkZOVXd6ZEVwT1VHZ3hPWGRRVDJnekNtOHZWMVJrZUU1MU1IWlFlRTVPWlhSNk1UZE5NRlZOTDNSNFZEQnVSMlo1Y0RoT1JXWkpaVWxIUjBKb1pqTklWbWhRZW5WM1JsTlNiVkYxVkdOb1VYa0thbkpGTW5SRGJrTkdRUzlQZEZaWFZGVmpXV3BxTmt0d1lWZzJjMjlNYTBrck5WQjJabTlOTkdzM2JrZG9abEpDT0RWRk5tWkdWVEpJYWpocGRWUnlVQXA1TUZwa0wyOU5jV2xOZFVwMmJYQklibkpYTm01M2FsZzFkazVhYmt0SlpsbHlRbmNyVUhsMFNFeEZabEUzTDJGU04wWkVhRk5CUVhsa2RVeERhRU5qQ2tSTFFXdzFVVXBxTnpSRk5WQlBRbTh2ZUZaeVpIQmxTRGRGZFVscGRuWk5iak5oU2tNMVRXSnpNVkpQZW1OaVRsUkJORzlsU2l0elUwc3pjbVJVVVZrS1NrVkVUMWNyVldoRVNuUmpiek5pVHk5T1VsVjVXbGh3WkRObU5tUm1OazFZZDFwRVJHbERhRWhEY1hCbU1sVTJOa1ptWTI5NFpFOHZaMnQxYjNKemVBb3pUVzFqYWtWWU9XWnBRWEZQVmxWR2FsbHNRbFJSU1VSQlVVRkNiekZaZDFaRVFVOUNaMDVXU0ZFNFFrRm1PRVZDUVUxRFFtRkJkMFYzV1VSV1VqQnNDa0pCZDNkRFoxbEpTM2RaUWtKUlZVaEJkMGwzUkVGWlJGWlNNRlJCVVVndlFrRkpkMEZFUVdaQ1owNVdTRk5OUlVkRVFWZG5RbEpoZGxOS05tdDViM01LU0U4MWNFc3pSMDg1YVRRdlVFazJNa3BFUVU1Q1oydHhhR3RwUnpsM01FSkJVWE5HUVVGUFEwRm5SVUZxZW10WVNIZ3lSM1ZqZEhWNk56VnhUbU16Ymdvd2RuQlpNRWQzUkRaclZXMTFSVTR5VTAwdlExSTBXRFUyT1VSa09FbGpjMUJCVTFoc1EyWjFTQzlEVWxWNFdHZFZWV3QxTkVneVFXNUhObGg0WmtScUNtaFljVWwwTWpOUVJ6ZEtURmQxYTI1eU5XWmFZa3ByUkVwRGFYQnNVbVIxU2xWaFltd3daa2hLVURBeWQzSlRZa2R4WVhCMGRHNXRRVTlTZHpsV1Nsa0tVVXBXYkVKaE9GVlhUbTlVUkV4Uk9EbGxNalZuZFhRNU16bEhUbTlFWkRCclUzRXpOVVo2YzJFMGJFbExOMk5xWVhWcVNHRXhPR2R0UjBoS1pHbFRZUXB0WVVkVGRIUnNLekk0Vm1wQ1puRkllWGc0VTJ0cVFtVmxWMW96YWs1M2RESTJSR3hUUkV4S1dXTkRla3hKYjI5VldVYzNlVmMxVHpnd1NraFdkSEF4Q25GQkwyaG5hRWhKV2paVWFpdHRWR2hJZEROS1oyMTRkSGRuY1RKWkt6bHNVM0JOYzNoelVrVTRNVXBNVjFkaFVESTViSEZ3ZFVwV1RISm5TMnhNVkdrS09GcExhWEZDZFhGTU1tZ3dOak5MTkd3MlRYTTJaVXQzTDNOVlZDOU9hRmRrU2xScmRHZG1Oek5CTlV4eVFWZHhUV2QyYjA1SVlXaDFURWwxUTBSS1V3b3lWRU5YTkVveFRIUjJaVWd4YmxGMlFrMVZOSEEzZEVJeWVVbHBPRVF5YXl0bE1VVTBNbHBEZVdoNmFTOVpOMDFuUjJKUWFGWnBXakJYYkV0S05GcGlDa2x0TjBOdmJWRmhVbVZFWWpCbVRYZDNVM2hFUlV4TlJ6Tm5WazlDVG1sTFJ6SXdZbEZQWkVONmNUa3pTVlpGZUZOQ1lUbDVWV1JGY21GbU5VWm9kM0VLV1VZdksxWmpjazFHUkRCVlZ6Z3hVRFJHWXpkVE9UQlFTRUpLUW1OVGFHNTZWMkZ3V2paallVVlVXVFpJU2tscFlscFZhR3RMV0M5MWNVSTFjbXQxUlFwaFl6VTVVRGhGUVZZMU5WcFZVM2RIYURsdksySnZjWE52VmxWTlNtbFpVSGhIVG5sWU5EYzVPRGRPTVM5T2VteDJMMFY2Wm10TlpWQjFRVEZPVGtFMUNsUXhiR05hSzJadmRIVkdXRXhUYjFsRFEwNTFNM05WUFFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMEZKUWtGQlMwTkJaMFZCZWxrdmJWVmpPVFJzZUhOWWNVaDZNbVJTYzB4T04zUjBVMlpZUWtoYVZsZE1RMUIxTVZZd1N5dHhPR05tZUdGMENteGFMMnN3U2xsNmVrcFBVVXRZY1ZSQmFFaEdPRmRST1dwMFdqSTRNVTVPZWtoeFZqbEZRbFpQUVZsclpWVk9kWFZ1ZVhRd0syOTRVM0pJYTNGNVNWQUtjV2QyYXpSTU9HeFZhR3hIWkM5V1dFbHJPV292UjFKaGJYQkZUa1lySzFkNFoxaFVTbXRUZEhCd2FGcDBSak52TmxoRmRFNVlUblY1VjFsc1VYVkJkd29yZWtodWVrRklTakZ2Um14clIxbENaakprTDI0dk9FbDZNWFZqZEhOSFFWSjViREYwWjBORk15OHZkV3hDYTBOMmMwMVBaeXM1U21wV1EwbDBRV3BtQ2s5c1VuQnNRa2t3VWxwaVkzcFFSRkl3ZVhnNVZHOXZaa3RvZDFsRVptSmlVM2d5YVhOUWNFTXhWRXR2WjJ0NWNFVlNkREZPY0hKNVF5OXhZVXQ1V1hjS1pXTnNUV2xTYXpWU01sTXZNa3g2Y1ZaT1VVaDFVazlUT1RkVFZGUTBaR1pqUkhwdlpEWlFNV3N6WTFSaWRFeDZPRlJVV0hKak9XVjZUa1pFVURkalZRbzVTbmh1T0hGbVJGSkllVWhwUW1obldWZzVlREZaVkRnM2MwSlZhMXByVEdzelNWVk5ielo0VG5KUmNIZG9VVkI2Y2xaV2F6RklSMGswSzJseFYyd3JDbkpMUXpWRFVIVlVOek0yUkU5S1R6VjRiMWd3VVdaUFVrOXVlRlpPYURRdlNYSnJObm80ZEVkWVpqWkVTMjlxVEdsaU5YRlNOVFl4ZFhBNFNURXJZbm9LVjFwNWFVZ3lTM2RqVUdvNGNsSjVlRWd3VHk4eWEyVjRVVFJWWjBGTmJtSnBkMjlSYmtGNVowcGxWVU5aS3l0Q1QxUjZaMkZRT0ZaaE0yRllhQ3Q0VEFwcFNYSTNla281TW1sUmRWUkhOMDVWVkhNelIzcFZkMDlMU0dsbWNrVnBkRFl6VlRCSFExSkJlbXgyYkVsUmVXSllTMDR5ZW5aNlZWWk5iVlkyV0dRekNpdHVXQ3RxUmpoSFVYYzBaMjlTZDNGeFdEbHNUM1ZvV0ROTFRWaFVkalJLVEhGTE4wMWtla3B1U1hoR0wxZzBaMHRxYkZaQ1dUSktVVlV3UTBGM1JVRUtRVkZMUTBGblJVRnNiVzl6WlRCTFdVWXJSM2RNZHpZMVpreHJPRkJTZVRsbVRHZERRbXBoYmtwdlpHOXNUMGRRVkdnemFXVlVRa3c1YTJSWmRFUlRhd3BXU21KS2FqQkNjek0zTDBodGNtNW9kbGR2TjBGb1R6ZDNkSE5WWWxCVVEwcHpkQzh4ZFdVM01USlBlVUZ1V0VWbFkyRjJOek5XZFVKMGVreE1jRlpRQ25CelNuUTJVWE41U21nek0zRk9RalUxT0RSd2VWcEVPRkEwZHpGc1JGQXJObEE1YWpkSVNXNUpkVWswTVZoeVVUTjZaMHRJWlZKVmEzZHdVMlJrYmprS1MybFFia0ZKUmxSeFZHc3ZhbmREWTBoeVkwaGthMk5xUzFjNGVDOWxjR3hWUlRsRE9GVldXREVyVWpnNE5XVmtkRE5VZEdkMVpGaERTMU5LTWs1d01RcFBNVXRJTkUxS05teHpOV2RLY0Rnd04wdG9RVUppTDFSbFUxTklWRzQzYUdSdlYzQXZhVnBCVGtFNWJXUnVNWE5xWXpGcVJVSXpVM0pPY21GVlVuVlBDalpUYmxWdk4wTm5kVEFyYmtWM2N6WnhSbmxQZVd0MmFGUjNlVk5uVDBSRWJGTmtaRFIxTWxkTlFXbEpTMDh3VEhwYVRGTlpkblF6Y3pKclJqRjNRU3NLUTI5dlZqZGtVMk15TldjeVZ6UnZUVmRIY1VKeGIxbERTVTg1VkZZNFNqTlViRkpXVkdaeVJIQTRSbTV6YjBWcmVrb3ZSbmhQWkN0NGJ6RjFhR05EVndwTWIwMXhNVnA1WlcxaGMxVXZSRGhzYjJ3cmRYWlNUbTQwU1hseFEwRkthREJvV2pKc1VHODRNakZ2UlVSU2FUSlZjMFZuUW5SU00xSXJObkkzYkVwQkNtTm1jWFpSY1dzMWN6QXpXQ3M0ZDBVelZIaDFPRTF2U205V1UxZDZUa2RaY1VOaGVsWklURk50Vlc5bVFtZHJhakpEUXpkbFVWWnRaMEZ2ZWtSUVVrWUtTWFpNYVRNMWJtMVlUMjlhWlRsU1QyVXZiMk4wZDNOM2RqQTFjamQ0TVVOdU9HaFlWRFJNV2tOb05ESnNPRU12WkdSbVdTdDRSa0ZUTVhGaU5VeDFad28zUmpKSVYzcHFlQ3RaTlhCSFRsTXhOVTFPTlRaTmVuVnRaR2RCYkRsbFpHOVVUblIxVDJ0aVMwVktVMmd4TXk5YWEwVkRaMmRGUWtGUVRYSjRRbTA0Q25vdmNYUkhVM0Y0ZUZkYU1sRjFSbE5aUkdOVVprOU5SMVk0UVcxNlJrRjBOamhZYTBKbU5WVk9WM2RtYVZCNUwxSlNjRFJMUzFZMllscExSbEk0TDNZS09XTTFUU3QyY0d4dmVqRXZObTF0V1RNd01sRmphbVpRVUdGemQyYzVNRXcxVFZGT1IyOVlOMWhaYzI5d1kwOTVWMFZoUkZVd05XVkZTQ3R5T0dGTVV3cHBWemhLVDJoc1dHSTVabnBhTm1STVEwVkNlVVpZUzBSUkwzbFVNMmN6TkVaTk56SmFPR2RwT0RCcFZuSnFNMGhWYWpOSlNqUTRLMHRIVUVRNU1IWk9DakJQU0ZKcVNXWXpXVVJJZHpGMmJGZGtWamR2TDI1TlRXVnBaM05rZFhrNWNXRnFSRTEyVlRGYVptRm1UVzFYUWtabFRVVjZTMVoyTlV0VVJqbHpNR29LT1U4eWNVMUhNSHBEYTI5SWQwOWxZbTVFT1hoaGEwcFFOalppWkhJeVdIcFBZMFJFUm14V2NrRkxTVEJ1TVVwcGEyeElNbWxFZWxnelNEQXZXbVp0U2dwVGRGaE5LekF5Y2tWbFpHOXZOekJEWjJkRlFrRk9hRzlOV2tKSlMzZFJlREIwVXpOTmRUWlJNV3hxVDNSQ1JuUXlUMWtyVTNKbFZTdDRlQzltWlRjMUNuVk5kalYxWmxGM05tUkNZek5LY2toME5Xd3liSFZFTjNKUWJrUlBTbkJuUzNBelptVkVTblF3UldRM1JqVlFhRWxMZDNWYWMzSnFUblZHTkdvNE1GSUtaVmRQU1hWblZrODJWazkwVkVsdGJuaFVWVzU2TjFabmQxbDFPRzVKZUVsb1QxVTJVa0pKTld4SUszZFZUMnRLVHpCeVprOVdNRU13U3k5Mk9HTlJid3ByVUZGRVNXbG1kRXhzUlV4c1JIRjVTa3h1TXpsUEsyWllPVnBsYkdoemRXRldiRnA2VUZCT2VFUjZWbFZIYVVaWGJ6RkhkMHR6T1RGMWFGRmtSVmxtQ2toQmRtVkNiazFKWVZGWFpHVlVOakZQUkRrd1RIQlRVRGxrVDBKeVNFWnVOR0Z4UkdvNGJsSkpUWGRWYzBsTE9VNU1iVUk0ZHpSaWFXMVNOM1p6VUhjS1YyVkNVR0UzTjFKVVpEUlRaMDlFV0VablZEVk9NV0YxVjNNelpYbHpURk01ZUV4aGFuaHJOVXBPUlVOblowVkJVbXB6ZEhWQlJrRlZSRmxQVUhKYU5RcFFUVFpNU1cxcFdWRlZMM1pyWlVsVVJtWjNaWEJyYldNdmRIRk5iMHBtVW14b2FrWm9OMjR5VXpFM1NUTnZTWFJuTVZCaVIyTk9SVk4zUlZGMU5rUXZDazVLVUhSTUwwcHVSRUV2WWpkVFNqbDJVMDlXT0doSGRGVk1TVFJLZEc5cFpXbzJWRWxoU1hkMlMzcFNUWEZGV1ZGelpESlZiMEpqUlZOWGNFVm5hV1VLTVU1QlNEYzViRXd5VGtWaFVVdHBTWGxxYjNGMEx6UmxhRWRtUjAxYVpHMXFSMEYxYjNOclpXZzFiRE5WTTJWM1ZYRkJWMjVHTkd4S2FFNVFZM3BYVUFwSmRERmpUMVZqZGxCMWIzTkZlVFZZVjJGTU9UbG5TVkpNYUhsNVlYWXJlRWw2YkROYVRHMVVhVXN5Y1V4V00xUjFORTE0WkVzMFpETXdXalJHYUVoWUNuUjFibTFZVURSclkyMDFaazFwWmtNNU56WjJSMlJNVm5Fd1lYTXZTalpoTkVRMGVXaGhhbE5sWW0xeFVESm9XVEZvVDNCalFtbHRPVWhxZGxjNE9EZ0tja2xyWTFGUlMwTkJVVUZLZFV0VFFsWnllVmc0TmxWRk5sUllaMmRoUldaWVEyMDJibkpUWm05NWVUUkZibXN4Vkc5VVduUXhORlo1TmtsUE1XbFBjUXAxU1VWM1kzTm9UVzVKWTNGc1EwOTRSa3BRTWxjeGRVOTFMM054VTAxVFUyTllWV1J5TXpsSlVFMHhhRlE1VDI1VVZVMXZZM2xEUVRKRFQwUkhXV2hvQ25WbFl6SlNPVTFWUlVSWVJXTkNVa0p6Y21SV2JHVjRhVmczZFhaR1pXTldNVlpZVGtsb01FaDJMemxVY210NWVHMXdXRUoxYUVSSk5WWnphbU5CVVdzS2JpdERTWGR1Wm1vMGNpdGxRa0Z5UzBadVYyNTNkVE0wYkZwQlpsazFOM1JJUzJkQlEyWXlTRmQ1V2sxcGRuRmpaRkZFUlVwaFIyTTFkSGhxVkc0eGNBcFJlVzEyU2pOVVpscE9hWGt3T0ZNelR6VjNSR1pEWTI1QlkwaDZlblpGY1U5alR6QkhPSFpEYVZwUWFHcHNjM0JMUjFod1dqSkxhVTFQT0cxSk1FUmpDazlRYVZKSlVtaGpTVTVZWW1wMmJVWlNabnBXZHpaU1ZuUklkVFZLYkdkQ1FXOUpRa0ZFVDFKeVdsbHdWMWhrV1ZaSmJHWnNjM1ZvU1M4NGVIWnJVRFFLTkc1clRESmhTMkpuUTNsTE1qTnBaRU5CYzBsVUt6bEZSbnB5U0N0Rk1Ga3ZlV0pQZEdnMk0wSXlZVXhrZFVGQ1REZHlaMDVyTURobllrSnVZbkZyTHdwak1VbG5LM1EyU0ZOMk5URmxZVTFxUmpScGRXeGFXRTlOVlZwV1ltbHhkRVJKYXpCMk1UTktaVVo0VWpKWGJVNXNNRWx1VDJoelFYSlBWR3g2YjNkb0NqWnRRa3czUVhwVk1WTTBiazR6SzBsdFJtMUVWekJVV0ZsV00xUnhiV3N2YW1jelVXWkliMFJ4T1RFd2NuTnFUa3c1WkRWMmVHeFBUVmt5VEVoQ00wZ0tUMWRKVDNGc2FWQmtjelZKYUVzdlFqVjVLMU5YVUdOcFJWb3piRVU0Y0U5T1prUkpZMFpuTlhkeGEyTnBOSGRNTUVOM1lUVnRaRWN4UjFaTlZXVnZjZ3B0YTFGNVpFdFpWbk5SU0VKT2VVTk9OV0oyZEhaU2RVaE5UVWhzZERaR1JuaG5Oa1U0V0dsQ09ETlFhbXhYVFZWTmJUZ3ZXa1F6Wkc1V09EMEtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogazl6Ynhwd2ZwNmI4MWhpN3hiaHZucXVrc21tdDVhOHd1ZTFtbmhrMHVmOXBrYjlucWp3MWd5dm5xMnhpNDdvZHV2ZmY2MWJ5OXoydGl2d2d6a2F2YTdrY3BqeWw1aW51dHNncTR1NWF4dm1tNHFvMG5sMHhueTRpb3J5MmxzZWgK\"\ - \n }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": + \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSVUhFNVRXRkZhMnhxT0RScE4wNW9UbXgzT0VSUGFrRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxcWEzaE5WRWw0VGxST1lVZEJPSGxOUkZWNlRVUlplVTlVUlhoTmVrVXhUVEZ2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVSRkNuUXhZV3N5ZVVGa1Z6RlFObVZQVlhGT1IwVkhNR0ZqZVVvMFozZFhhbFJ1TVZONk1qWXljMjFYVTBWbmVscHVhVWxoYmlzeVNqY3hMMjgwU1ZGSlpUVUtWWEpGYlVKTFJWTXZZbTFVYTFwSFkyVnJSVzRyWTB4QldGaHdWV2htYTJOWldtbGFNMk5MUVhONmIyMXBPRWREYTBoa1oweHNWbVV2Yms1M1MyVlZXQXBYZEc5MGVYWmxjbFpLYjBwdVVHMVBjVU0wUjFGcVREUndjMDlMYWtoNlRIQm1UVFF2YlVkamFtbHFiemhGZVRSNGRrNU1iMEZvTkdJeU1ITXZOVUZoQ20xTE1HNW9ha3NyZUZZcmNVWk5XRUUxVGtJcmREVTBWa1ZOUVhGTFNEUmlUVXgxUkc0dmJsVk1aMjFHVmtaSk5uZFJWQzl6VTFkRFltd3hjM1J6UkV3S2EwRlJhWGQ2VmtsdE1qSnRPVVprVFVSdFVrZGxSVTU0ZEhjNGR6STVURGxOZUdKR1VWUnVhRmM0V0RKQlRHWTJZM0p5VWpodU0zUlJUeTk1WTJWSlVRbzBTVFZ6VjBwblVHbzNZazFDWVVZclJESXhWMk54V1hob09XTXZZMG9yWjBWelRHVk9RazFHTVd0bGQwZzBURkJCV1hWUFpISnZRM2h6WjJwalRVc3JDamh5YVZSTE1qbGhiVzl2YW1vMFdXaFBTRkpTVmxBNFRWRklUVEZ1TTJOVVpGaHJNRFpTZGk5c1dUa3hPR0pFWjBjeVdtb3haVXAzUW5Cb1pHNUtkV1VLYUZGWFFWRjRTMGN5VUc1TWFYVk9XRUZQT1c5T2VVRm5WVlE1WjAxVFlreHJUbll4ZEhrM2RITkdiRkZMTW1oa1JWVlRWRzB4WlZWU1UyVm5NMDlaVVFwVlQwTmljSGxYSzNVNWJVRlpibFJLUXpWcWF6YzRUbFZ1TkZocVNHUTVWMlpvWVhaNVJFbDZhSE5YWW5CdGMxUjJkbFp5ZVROWU1VTXZTM2hLV0c5UENsUXlaVzVHYVdGTVVrMTNlV2h6TjI1dVNHeDRiWHBJZEVoS2VtWnNTWEUxYjJoM05XZERlRWc1YkVKdlFWZGxOR0ZqYUd0dk5VWllUbXRNWjNJclZYUUtiVTQyU3pGd2FYZEVRVEZNWkVOd2NVeDNkMkpSY1c5V1pVcHhSbEYyT0VrdlRUVTNibFJOWldWM1NVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWa1YwMHJUa2M0U0d0Q00zRndkWGRaQ2k5NlRrMWtLMGcwV1dWVmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGR2JVWnhRVmxvU1N0cmRWUnRPRlZIWkN0UVluRnVVM2hpYkNzS1dHdzBjblJtVVZjeGR6bHhaRUV2YkdSbVppOXpNbE5hWms1c1RsWXJha3R0TTNWRVpXNURjMlJMVjBNelppOWxWVlpFT0hWck9WQmthVFZUVlZkUlNBb3pNRWRWVmxSbGFIUjNlazg1YWs1WFVFWllXR3BaU0VscVlpdEZaVTF4YTBsMGVITXljVGhTTVdoU1NVaGxLM294UlhKcFNFVlRiRTF2VTJ3ellWRXJDbEIxWVUxTFVGbG9PVFpRTjBOSUwyVkZVMVVyTUU1d1NHaEpiM1ZTYzNsNFNYWkZhelZGYm5oRFduRkdiMmh1Y1VweFdVcDVWRTFhYjI5TE4ydzFOazhLU1ZvdlJHMVNjMlpzVERkaU4zVnRSMDlZTTBKdVVYTXJjbUUyY0ZWa1IyazFSWEZrVTI1TlEwcHRjbE41TVdsRFJrRlpaMmhJTWtWYWRIUlpRMnhuZHdwb01sSkRTV042Vnk5R1JXTXpTRzlNSzFoaGIwOVVTako2VlhsNmFuWnpha1UzYTB0WGFGWTNaelJ0TVN0ek9XTnpZVUp0YUdoV1ozazJlWFZrTmtzM0NraFZlSHAwYnpGQ1pXSldjV0kzUWxsVFZFeFJOVzlKTlhGTVRUTlhlR2xSVEhaUmRXNHhkbU5PTUhSWFEwNW9XVll5WTBGSmJVMTBWVzh5YzFjdmFHOEthV2h5UlZObGIyWktWV3hxY0RSSk1rOVliVzEwUTJwbGNsSndZV2RwYXpscVRWZHhUM2gyVDFkSlJreENVbmh6UVdGVk9DczBUV2RCT1RCaWJuQnhSZ29yVTJ0UmMweDBjR05uTkcxcFJrOU5TREJzTlN0dVRrNTJlV2xRVkdKU1RVWXhUSE5vVlNzMk1VWmlheklyYTFBdk0yMHdWbGxZZERKMkwyWmFOR3RZQ2pKQ1QwaFNiREJGUWxGeGFXTTJUSE5OTkVsb2QwZ3ZRMVJhUkhOSGVIUnNSVWQ1ZUROelNqTm5Rakp1VEVWeGFtcGtWVEZuU2t0ME5YRlBabkYwSzNBS1kyRkpRV2hhY21Odk4ycGxNakpOYUV0R09GbGhRVlp3UjBZMWRHY3pVREpPUVhOSllUQXJkRGhhVG1sc09WZDRaRlZ5UmpOMFJGZG9TMEpZTjBsVVVRcFRWSGN3U1hKWkt6WkNaSFV6Um1KMENpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruczc1eGNuYTUtd3hpd3l2OGEuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3R6ZTdjeXAKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3R6ZTdjeXAKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3Rnemtwc2MyczVnX2NsaWFrc3Rlc3R6ZTdjeXAKICBuYW1lOiBjbGlha3N0ZXN0emU3Y3lwCmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdHplN2N5cApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3Rnemtwc2MyczVnX2NsaWFrc3Rlc3R6ZTdjeXAKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJYWtORFFYZGhaMEYzU1VKQlowbFNRVTAwYVVkeFRHTnJZa1ZWT0docFMzSmpRbTlOVTNOM1JGRlpTa3R2V2tsb2RtTk9RVkZGVEVKUlFYY0tSRlJGVEUxQmEwZEJNVlZGUVhoTlExa3lSWGRJYUdOT1RXcE5kMDVxU1RWTlZFVjVUVlJWZWxkb1kwNU5hbFYzVG1wSk5VMVVSWHBOVkZWNlYycEJkd3BOVW1OM1JsRlpSRlpSVVV0RmR6VjZaVmhPTUZwWE1EWmlWMFo2WkVkV2VXTjZSVlpOUWsxSFFURlZSVUY0VFUxaVYwWjZaRWRXZVZreWVIQmFWelV3Q2sxSlNVTkpha0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRkZSa0ZCVDBOQlp6aEJUVWxKUTBOblMwTkJaMFZCY2xvMU5rczBSVlkxV0VaSGNWaEdORUZxV2pRS2RHaHdiV2Q1TUc4eWJVOVZiak5zVGk4d1lrbHFPVlY1VjBFM2NuUkZRVVp0YTNCSE1tSnNPRmx2TkhGdFYyVkZkVUo2YkVsTFltcDZSa3g0YUZwS05ncDVlWE52VWt4a2JtWkZNa3BxZDI5MVF6SXdVRlZ6TDFwb2VqZEJTakpWTDNsbmJWTkhlRXBuZVhobFNtOVlUa3RhV1hocFNqWlRZMnBYU0ZsUVZucEZDbEJGY0VJNFNsZ3phbTlKZGtsdWJWZE9lakZNUVU1R1RreE9NV3hwWW05TmFrYzRNM1I0UTFaR2QzYzRZM1pGZFdsSlF6SnFSa1poVVcxNU1XNXZibUlLVjNreFdtVTBVa1ZOUW10QlIyWnVhalpMUmpKSmJuTmpZbXRVYVZGc1VrUnlURTloSzJoNGRVbHRVVVIzV0dnMEwxRlJNRlZDWkhKMGJ6Vk9TSFptV2dwSVJucGlkbEVyYkZsb1JIZ3diMUZ4Y1dGSVNrTTFiVkZJZWtFeGFuQnFOV0ptUkM5RE1XWkxWVFpTYkd4eVMxTktibU52TTJ4Vk5XTjZjRXBUV2tSRUNrMTVRVEpOZFhsdWVWQlRkSGhGU1hwdlQyeEtZMjFNVDFsR2FsY3Jka3cyWmpFME1rUlVOVTloVjBWaEwxb3hRMnN6T0dkc2IzZEtZelZDYWs5bldUWUtOWEZ3T1U1SmQyeHhaaXR5VTNWVFNtTnpaMU5VTW1oWFZEVktjWFpaWldaT2IzSkZNUzlHTW1oelVYVnNiMHMwYXpoSldFdDJUVVJ0YUZSRU5tVjFRd3BqYkZoNlpsaFVhV2xyYjFGbU5XRnRTRVpvYkU5dFJIRkVNR1J5YTA1TlZYVm1PRmxETkRobk5rbEpORmhhZFRWSGJIQkdPRFY0TW5kYWFURk5Sa1JVQ2poelFXbDFVREpUYzBGcWVsZzNkMHRHVkdwcE1tUnljRmRhYTFGa1ZrSklaVk5oYmtrM1NXMW5SbEpwYlVKc1ZWVlVia0pYU2xWSFozb3hURU5EUW1RS1dsRk5SekJFUzNoc2EycEdWWFpsUjAwMU4xbDVMM1ZsVVZwd1JsWnJVR3RWV1ZGeVlsaHVOMmRwVmtKVlF6bEtjMnBxWkhscFRIUnphRE5PYms4Mkx3cDVielJtYlhSYVVEVjJOazF6YzJacFMxZFhXbWhEYzBOQmQwVkJRV0ZPVjAxR1VYZEVaMWxFVmxJd1VFRlJTQzlDUVZGRVFXZFhaMDFDVFVkQk1WVmtDa3BSVVUxTlFXOUhRME56UjBGUlZVWkNkMDFEVFVGM1IwRXhWV1JGZDBWQ0wzZFJRMDFCUVhkSWQxbEVWbEl3YWtKQ1ozZEdiMEZWWkZkTkswNUhPRWdLYTBJemNYQjFkMWt2ZWs1TlpDdElORmxsVlhkRVVWbEtTMjlhU1doMlkwNUJVVVZNUWxGQlJHZG5TVUpCUVdZM1IzUTNaM014ZEdGYVRuUjFLMXBOY1Fvd1NHODJNelJ0WTFoWlZETjNVa293YUVSVVVWaHRRV0pxVG1aemNXVjRaazgzVm1zd05GVkZiV1JOU2tKak5IUjVPVWRsZDBoTFluZEJVRzlTTTBkM0NraGhOSEZsTkUxa1lWaFROR3h0TVhObWQwWkZTbFI2WTNoclUwa3dhR2cxVkdabFZGQXhiWGhLYkhWMFZEbFhTMnRqUVVSNGNscE5XWEUyT0VkcGNFUUtaMWxZYWpGWU5GUjFXbG94YjBsTlIyTmxlbVZvUVdGU1NFZDBTa2hXYm5wc2RVMXRNMVpEVlVKMVJuVTJRMGgxYmxGUlVrSTBkbFJRZUdORVUweDZTd3B0UVhKNlJuTjVUVEUwZDNSS2JsQnRUVlZNYUROUlpsUjBiMGRpYTJSa05tNVdXRzA1YUdGaGNVc3llbU42ZVdkMlIwdG1VM1pGVlRGamRsY3ZNbkJ5Q2pKVkx6ZzNLMUp4WVZGTlVEUjZTVlZSWlZOTk9YbFVabEpvY1RBM1p6RlJVRGg1Y1dwbWJrMXBPR0Z0T0ZSeE5UbHphVkUxZFhKYUsxRnJVRGN3UWtZS2NVMDJjRlpTVG01T2JucDJkRmw1TlhwUldYTjNlRWQxTTB0dVVWWXhOazFFVGxsQlNtNTFOMFVyTTBRcmJXcEhabmRNTnpCdWRVVjJSMHN5Ukhadk1RcFpia1E0V2pNck1qSTBLM2xIVFhaamExZEJTR0ZSV0N0SVpGVmhUM2R1ZWl0VVExQnRLMUZLUVVoVWFHWjNTRTByWW14NmN6ZHFNelZWVjFaYVJsQmFDblF3VlhjeE1qZDRhVVJNTlVWSWJrODRTRUYxY1ZaeWNqWnZhMjR5Y0ZNelNFbHlNMWN2WVVGbUwyWm1NbFJ0YkM4eE1WaGpheXRvWlUxdk4ySkVRVk1LUmpCWlYzQnpkVkpyUzAxaGVGbDZORTB3ZG1kSE1pdHJWeXN4Vm5GbFJuVm1hbmt4UTI1VVRHTkRZMGhwWVdJMFlYRndWVzlLWVdoUE5tOTRVWEZRWmdwMGFuRTRSRWxVUlZkaFZEYzViREpWZVU5clpISTVjVkZ6Wml0NlNYQjFNSGhJTUc1cWJuazNORkkwUWpNclEwSmtiRWxuTkZJeFFpOWFibFp4Y201R0NtSnlNVmxKWm1sNGJIQk5lV0oyVEdkb1lYSjJjbTl6ZWdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMmRKUWtGQlMwTkJaMFZCY2xvMU5rczBSVlkxV0VaSGNWaEdORUZxV2pSMGFIQnRaM2t3YnpKdFQxVnVNMnhPTHpCaVNXbzVWWGxYUVRkeUNuUkZRVVp0YTNCSE1tSnNPRmx2TkhGdFYyVkZkVUo2YkVsTFltcDZSa3g0YUZwS05ubDVjMjlTVEdSdVprVXlTbXAzYjNWRE1qQlFWWE12V21oNk4wRUtTakpWTDNsbmJWTkhlRXBuZVhobFNtOVlUa3RhV1hocFNqWlRZMnBYU0ZsUVZucEZVRVZ3UWpoS1dETnFiMGwyU1c1dFYwNTZNVXhCVGtaT1RFNHhiQXBwWW05TmFrYzRNM1I0UTFaR2QzYzRZM1pGZFdsSlF6SnFSa1poVVcxNU1XNXZibUpYZVRGYVpUUlNSVTFDYTBGSFptNXFOa3RHTWtsdWMyTmlhMVJwQ2xGc1VrUnlURTloSzJoNGRVbHRVVVIzV0dnMEwxRlJNRlZDWkhKMGJ6Vk9TSFptV2toR2VtSjJVU3RzV1doRWVEQnZVWEZ4WVVoS1F6VnRVVWg2UVRFS2FuQnFOV0ptUkM5RE1XWkxWVFpTYkd4eVMxTktibU52TTJ4Vk5XTjZjRXBUV2tSRVRYbEJNazExZVc1NVVGTjBlRVZKZW05UGJFcGpiVXhQV1VacVZ3b3Jka3cyWmpFME1rUlVOVTloVjBWaEwxb3hRMnN6T0dkc2IzZEtZelZDYWs5bldUWTFjWEE1VGtsM2JIRm1LM0pUZFZOS1kzTm5VMVF5YUZkVU5VcHhDblpaWldaT2IzSkZNUzlHTW1oelVYVnNiMHMwYXpoSldFdDJUVVJ0YUZSRU5tVjFRMk5zV0hwbVdGUnBhV3R2VVdZMVlXMUlSbWhzVDIxRWNVUXdaSElLYTA1TlZYVm1PRmxETkRobk5rbEpORmhhZFRWSGJIQkdPRFY0TW5kYWFURk5Sa1JVT0hOQmFYVlFNbE56UVdwNldEZDNTMFpVYW1reVpISndWMXByVVFwa1ZrSklaVk5oYmtrM1NXMW5SbEpwYlVKc1ZWVlVia0pYU2xWSFozb3hURU5EUW1SYVVVMUhNRVJMZUd4cmFrWlZkbVZIVFRVM1dYa3ZkV1ZSV25CR0NsWnJVR3RWV1ZGeVlsaHVOMmRwVmtKVlF6bEtjMnBxWkhscFRIUnphRE5PYms4MkwzbHZOR1p0ZEZwUU5YWTJUWE56Wm1sTFYxZGFhRU56UTBGM1JVRUtRVkZMUTBGblFVSklkQ3M0TDJsV1RrTk9SV2s0VG1WTlpFSjFUbGRXYUVkRGJtMVZRakJoUkZSUU5HazBjWE5UZFhCaFRHMVFWVTluWTJSSVpYRnNRUXBoU1VWVlFtTlVhVzV3WkhSMFRXOUtlblZ1ZW1aTGJWRmhhVk5sZDFKWFQyTXZlVmxCWTNkalpub3hVekUwTldOM00ybHpPV04xTlhSV05saERSRGRKQ2tzdlRYZ3ZSMGh2UWpreE5FVkdUR3d6U25OcFJXNXhXakJ6Y0RGa1UyczVlVEJ2UVhkdWFGcGhXakU1YkRocGRrcGhjWGN5YmtRMFZscHZWa2xtWVdvS1IwNXNUbVk0WlRSSGFsSndjbmxNSzJaMGRuUlNPVkpaVWtveVJURnBUVmwwTHpkVmNrdFRhV2hyYkdoVVFVWXJUVmh6Tm1aMmJGTTBhMXBhYWtGTk5RcEZRWFp3TjNWc1ZGTXhja1ZxTURGcVNYWlBVVUo0VldGWFVrVjFja3MzUTFweFNucHZjRnBqTDBoMGJVRjFVbEZVWkhCMlUxSnNabHBVT1dVMVZYQlJDa2xYTTNRMGEySkNiRlE1TmxCb1UyMWpjbWhtVGxGWllVVnVVV2RGY1VaeFYyUkZjblZPT0daQ2VsWTFaSEk1VUhWM09FTnJNekZxV0VkR1pHdHJXbFFLTkVsRWFEZFFORnBuUm1Zek5WQlhORlZQWTBWSVdVbERUMFpNTVhSS1ZXWlJkRWRwWm01bVIyWnhhSFZVV2tjeFVHdHNSV3hOZGtwalVscHNTMVV2VmdwblZIUjRZMWcxU2tFclVVMXpTalI1YUVaNFlXRllVRGx2ZFhsS1N6TlJSRGxaVTBSMVZGZDRaMUZVWmpWWWVVbGlWRkpCVlZaMmFHeFJSWE5qZFdRdkNqQllVbE5LV0VjeGNEQmtUSFpUWW05VUsyaGhhMWM1YzNGVWNVWmxXakV6Ym1jMFZXVk5VRkZDYzJ3eVpubHRSVzl2T0ZWRlMzWm1iSEJYUWtkSE5UTUtXbUpQTjA1VlYwOXRNRlZTYjFoUWJIaERVMnRRVkVaR1FqVnhUM2gxZEdaaFJFUnZVVFZwZVU5aFFUa3ZWVzFPVG5wNk1tUlJka0ZKVFhGUVZXbFZXQW8yYzNGMlZuZ3JVR1V6VUdJd1dEQkNOSG92UzBrNGRrdzBWV1JaV1ZKdVdWaEJWV1EyUlZsWllWZERWV0oyZEVrNFVVdERRVkZGUVRGT1YwUmFaVWR4Q2l0V1RFeEZiWEZ3YWpod1ExUjFaV1lyWmpaRFVFUmlhbFJWVG1nMU9IUnNiRUUyVGs5RlYzVmpTVFk0WnpJMmIzQTBSSFpKTldsUlJtMWFSaTlSVG1RS2MzQXpWemRyYWxsdk1WVlhhbkJrTW0xUGVWUjRSVzk1VEhGSFJtbDVabXRWVTBWM1V6RkhRbW8zUzFaaGMxQXdRa3AxTlhFMk9UVmpaa3B4YmxGTlFRb3JkMWhWWVhkVlIwSk5hRlJuUjFkR2FWaFBNVE5SYVRWNlptRkRkRllyZVhFMGEwZEVkMHhKY2xSYVZtb3ZNVzQwUkVoR1drTm1jRzR4UjNsSFR6SlFDbUo1VEd4RFUwRjRSMDlWTTA5RWNFNXpjMkZoY2tvMmJWZFJia05wZFhwS2RsVTJabHBDTm5OVWFGQXphRmxVWW1OSFdUbENhVVpNU0hwb1dGZDRja2tLV20xdk5VMW5NMnRIT1U5VlZWZHdUR3MzTHpod2NqZHZjamh4VjNScFRsUmpURkZtU1c0M2NIbHJjV3hNVTBwVVVHMDFLMlZ4TVM5dU5tcE9ibmhSYndwU2JEaFJXV2xZV0ZGTmNtdEZkMHREUVZGRlFUQk9WR3hRTmxwVFFVOVhaMEppYWxNMWVpOHhTbXBpWWpaRU9YbE5iVkZGV1U5V1JGZElhMU5hYzBWWkNsZ3dSeXRZYUZkbFYwOVZOSFpVZDBjMWMwMUJWRGcxYmtJMlNFOVhNbTlUVVhsb2NUaENVamhEUVd4bFJrbEZUR3hFYldnME4xTjFWMkZGYWxwVmQwa0tWR05HTHpoSU5rZHhNak5KUld4WFIxQlZlVkJzTmsxRmJXUnpibUowTVhweGJqUktXbWd4UWpCUWJ6aG5lVk4wUTFCVE5ta3ZSa3BXVTBkMGVqUktMd3BuUVdsa2NWRnVhbmRxZVVzemNWWkJTMnR5U0VaRFVtNWhUVTFTYTBwQ01GTk1WVkpKZDBncmJFWlZXbGhaZW1aNmVUSlBaRVU1Y0docGIwbFRiSGRSQ21Gc2VIWTRPVk5XYzBRMEwwMHphRlE1Um5SWVZrOU9NRE54YkV0UlF5dHBWMmhGVGpGSFZXb3daMjVKUW0xVmNsTnRkMjFpTm05SU1uaFZObFZtWVRnS1VGRkNOMWhKV1RGS1ZFbEZPSE5pVGpadk16RTNkVGN4VUZwdmVsTlhla1ZCUzNkWlZERmtlV2xSUzBOQlVVVkJibU5xTUhOMlJrMVhZVFpDYTJ4UE1RcENWRGRFVkdNdk1rUTVXVnBKZURkdFFVZ3JNVGcyZDJNd1JtcENXbFJvZW1wRmNXeG5lVXhyYzJSdGNXTkZPVWxqZGtzM1lrVnRNR2w0YW5SSlNtRnpDakZPYm1RNFZGSnJNMmhhTVhKbk16ZHBaM0ZDUVVwMFFXSnpNRmREY1VOUlZuTklhMlE1VW5nNFdVTndZelZwVW1odFNtSnROaXRCWVVwcU16QTJaRlFLZDFCUWNYYzRUaTgzYkdvd1QweDFhRlpCYjNVclRuWk1hamxRZW5jcmEybGpVbVJaT0ROcVFVczNkRFpTVkdjMWQwd3hSMDVoYWxseU1raEdVSEpETkFvNVYxaHdVRU4zZEUxb05TdDVVRFpPUVVoR01UUndlVTVMTWxaQlZWYzVWQ3RyV21aUFNVMDBWU3R1V0hvNVYyRTFZbWhXVDNSMGRVOXJPRUoyUWxGRkNsTnZWR1UzYTFSS1duVXpjMFp2Y0hRMGRsWnJTMllyYVdWdGJIVnpOVzh6U2twMVYxQlNSek5sVVRsa1oxRkdha2hxUWpnd1JGTllZbmxTUnpsNGVIRUtjV3RTUVU1UlMwTkJVVVZCY0ZCNFpEbG9Rbll6ZUdWTVpYQnVVSFpxVm5ka0wxZEdabHBMUzNCVVkxSnZiaTlsTW1kdmJFOUtjemR3ZURWdmVWTnZjQXBTVkVGeWVVa3lhRWxxVmxScVRHMVVLM0J4YVZSMVUxcGpkMlFyYmxKcFFpdFdUakZUV25VclUzbG1VazR2V1hGbVRrNXlRa2dyZVZjNFVWSlZVelpXQ2s1UFJIZ3pWa3BIVlZNeWIydElUMUpyWjBKeWQyaEphR0pOVWxGd2NWWmpkSG8zVFVObmQzbDZUVEpWYVVSV2FqWXlaRVpUTld4a1NrRnJjV3BxT0hFS0szVXdZMEprVkcxM1kwdzRWRE5UU0ZsdFVXa3ZNbE40UTJwU1RGTnhOSEowU1UxaVNFTmlUazQwUWxabFNuazBNRTg1Y1ZJeE1DczVkR28yT1dSbGVBcFFNa2RsVTNkeE5IZFhhR056WTNSWFRGRm1kMmx2T1ZodkwwdDJVekowZDJodFQwWTNWU3RIYVZSRGVXMVRkbkpOZGtsMFpHczBTak1yVUN0cmJGaFNDbkpSV1Roc1NsaDFXREkwZVhFNFpVMWFNVkJ3VTNkM2MwOW9LemgzVVhCcmFWRkxRMEZSUlVGelZIZHhMMVZGUW5SdVZUWjNjbGRuVmxkUE1YQkZaMmtLZW1GcFUwazFTREZaUlZVeGJ6bERVRnBhSzNWTE5HWTNlVFpDUzFsblJHWlFORzVFYVRaNlNrOHZRVXhXTVhaV05FRjJNelZ4V1hRNFppOHJWMjVpWkFwaE5HNXBXSFpUY1RrMU5uVndSRWREVlVweVNVRkhSa1ZHV0ZkR1pXOVRUWEYzU1Vwc2EySmxXRmxNY0VJdlRXbHlORGh2UkhOTVEzUnJURUV4TnpaS0NtdHZhbmhLYldFdlQxTjJRVGN6YldaNFNrbHhaVmgzTkdOS1ZWb3lSVk5HTjFKNlNXMXJiWFZDWjJaSlZFdE5NSFJHVDFKaWFXNW9TRFJFY2pWaVlVa0tjelJMYVRWQlNTczVXV2gxTVZsbVF5OVJiVEZKYTNSM09ERTRhREppWXl0RWVsSldjMVZ2VHpaWlpVNHhRV2d4VlVsNFJYQm9UWE5KV21sMlpGaExXZ3BsVWxCUGRucE5ORUZQU0ZWaGRYWk1Oa2hZUzNwVWExcFRWV1JNVUZGeVoya3pVRWxaZERoaFZ6bHBRblZxWldSdVkxZEVTRlp0VjBGclVrOUVVVDA5Q2kwdExTMHRSVTVFSUZKVFFTQlFVa2xXUVZSRklFdEZXUzB0TFMwdENnPT0KICAgIHRva2VuOiBtNDhuNGVkMmFxcGNxOXRtemloZ2ZrdWxsOTRzczRnMXBpang2ZnJqdHljMTltano1dnY0cHpkdTJwdTk4bW9vcDNsZ3hjOWVhbHdpcGxmYmVvY2xhdWZpdmFxbzRtMTZsenRzejFvdno5eTY2Y3R2eXhtcTdvMHFwMmhjeTkxYQo=\"\n + \ }\n ]\n }" headers: cache-control: - no-cache content-length: - - '13072' + - '13084' content-type: - application/json date: - - Fri, 16 Jun 2023 15:37:55 GMT + - Thu, 29 Jun 2023 11:35:42 GMT expires: - '-1' pragma: @@ -585,24 +869,24 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/nodepool1?api-version=2023-05-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.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ - : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"\ - Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ - ,\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.19.0\",\n \"upgradeSettings\": + {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -611,7 +895,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:37:57 GMT + - Thu, 29 Jun 2023 11:35:43 GMT expires: - '-1' pragma: @@ -652,28 +936,28 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.19.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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/60d8f22a-e927-4a66-9e3b-560ba03699f9?api-version=2016-03-30 cache-control: - no-cache content-length: @@ -681,7 +965,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:38:01 GMT + - Thu, 29 Jun 2023 11:35:46 GMT expires: - '-1' pragma: @@ -715,14 +999,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/60d8f22a-e927-4a66-9e3b-560ba03699f9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f0b0d136-d9c9-1049-bc2b-3e3b5f6297f9\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T15:38:01.6038811Z\"\n }" + string: "{\n \"name\": \"2af2d860-27e9-664a-9e3b-560ba03699f9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:35:46.7850201Z\"\n }" headers: cache-control: - no-cache @@ -731,7 +1015,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:38:01 GMT + - Thu, 29 Jun 2023 11:35:46 GMT expires: - '-1' pragma: @@ -763,15 +1047,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/60d8f22a-e927-4a66-9e3b-560ba03699f9?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"2af2d860-27e9-664a-9e3b-560ba03699f9\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:35:46.7850201Z\",\n \"endTime\": + \"2023-06-29T11:35:53.2495057Z\"\n }" headers: cache-control: - no-cache @@ -780,7 +1064,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:38:31 GMT + - Thu, 29 Jun 2023 11:36:16 GMT expires: - '-1' pragma: @@ -812,25 +1096,25 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/nodepool1?api-version=2023-05-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.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 }" + 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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -839,7 +1123,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:38:32 GMT + - Thu, 29 Jun 2023 11:36:17 GMT expires: - '-1' pragma: @@ -871,26 +1155,25 @@ interactions: ParameterSetName: - --resource-group --cluster-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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-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.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 }" + 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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache @@ -899,7 +1182,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:38:34 GMT + - Thu, 29 Jun 2023 11:36:18 GMT expires: - '-1' pragma: @@ -931,25 +1214,25 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/nodepool1?api-version=2023-05-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.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 }" + 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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -958,7 +1241,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:38:35 GMT + - Thu, 29 Jun 2023 11:36:18 GMT expires: - '-1' pragma: @@ -999,28 +1282,28 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.19.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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7e31fed1-9fc6-4cf3-9d15-e63cc34c3bfe?api-version=2016-03-30 cache-control: - no-cache content-length: @@ -1028,7 +1311,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:38:39 GMT + - Thu, 29 Jun 2023 11:36:21 GMT expires: - '-1' pragma: @@ -1044,7 +1327,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' status: code: 200 message: OK @@ -1062,14 +1345,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7e31fed1-9fc6-4cf3-9d15-e63cc34c3bfe?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"144fdfc9-787b-894e-8822-27c5d5a1ea86\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T15:38:39.6977308Z\"\n }" + string: "{\n \"name\": \"d1fe317e-c69f-f34c-9d15-e63cc34c3bfe\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:36:22.8007349Z\"\n }" headers: cache-control: - no-cache @@ -1078,7 +1361,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:38:39 GMT + - Thu, 29 Jun 2023 11:36:22 GMT expires: - '-1' pragma: @@ -1110,15 +1393,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7e31fed1-9fc6-4cf3-9d15-e63cc34c3bfe?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"d1fe317e-c69f-f34c-9d15-e63cc34c3bfe\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:36:22.8007349Z\",\n \"endTime\": + \"2023-06-29T11:36:29.9590607Z\"\n }" headers: cache-control: - no-cache @@ -1127,7 +1410,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:39:09 GMT + - Thu, 29 Jun 2023 11:36:53 GMT expires: - '-1' pragma: @@ -1159,25 +1442,25 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/nodepool1?api-version=2023-05-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.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 }" + 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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -1186,7 +1469,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:39:10 GMT + - Thu, 29 Jun 2023 11:36:53 GMT expires: - '-1' pragma: @@ -1218,25 +1501,25 @@ interactions: ParameterSetName: - --resource-group --cluster-name --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/nodepool1?api-version=2023-05-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.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 }" + 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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -1245,7 +1528,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:39:12 GMT + - Thu, 29 Jun 2023 11:36:53 GMT expires: - '-1' pragma: @@ -1254,10 +1537,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -1277,25 +1556,25 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/nodepool1?api-version=2023-05-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.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 }" + 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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -1304,7 +1583,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:39:14 GMT + - Thu, 29 Jun 2023 11:36:55 GMT expires: - '-1' pragma: @@ -1345,27 +1624,27 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ - : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"\ - Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ - ,\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.19.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/a8143839-2ae6-43a2-9fe5-75bb87f8cbf2?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c39a96b0-d934-4f70-823d-eacafb9eec07?api-version=2016-03-30 cache-control: - no-cache content-length: @@ -1373,7 +1652,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:39:17 GMT + - Thu, 29 Jun 2023 11:36:58 GMT expires: - '-1' pragma: @@ -1407,23 +1686,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c39a96b0-d934-4f70-823d-eacafb9eec07?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"393814a8-e62a-a243-9fe5-75bb87f8cbf2\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T15:39:17.6665685Z\"\n }" + string: "{\n \"name\": \"b0969ac3-34d9-704f-823d-eacafb9eec07\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:36:58.5822Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '123' content-type: - application/json date: - - Fri, 16 Jun 2023 15:39:17 GMT + - Thu, 29 Jun 2023 11:36:58 GMT expires: - '-1' pragma: @@ -1455,24 +1734,24 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c39a96b0-d934-4f70-823d-eacafb9eec07?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 }" + string: "{\n \"name\": \"b0969ac3-34d9-704f-823d-eacafb9eec07\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:36:58.5822Z\",\n \"endTime\": + \"2023-06-29T11:37:06.3284493Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '167' content-type: - application/json date: - - Fri, 16 Jun 2023 15:39:47 GMT + - Thu, 29 Jun 2023 11:37:28 GMT expires: - '-1' pragma: @@ -1504,24 +1783,24 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/nodepool1?api-version=2023-05-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.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ - : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"\ - Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ - ,\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.19.0\",\n \"upgradeSettings\": + {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -1530,7 +1809,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:39:48 GMT + - Thu, 29 Jun 2023 11:37:29 GMT expires: - '-1' pragma: @@ -1562,24 +1841,24 @@ interactions: ParameterSetName: - --resource-group --cluster-name --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/nodepool1?api-version=2023-05-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.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ - : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"\ - Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ - ,\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.19.0\",\n \"upgradeSettings\": + {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -1588,7 +1867,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:39:49 GMT + - Thu, 29 Jun 2023 11:37:30 GMT expires: - '-1' pragma: @@ -1622,8 +1901,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/cliakstest000001?api-version=2023-05-01 response: @@ -1631,17 +1910,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a2d8bbc0-88ae-4454-9b56-78ecc723a15d?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Fri, 16 Jun 2023 15:39:52 GMT + - Thu, 29 Jun 2023 11:37:31 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/a2d8bbc0-88ae-4454-9b56-78ecc723a15d?api-version=2016-03-30 pragma: - no-cache server: @@ -1651,7 +1930,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_private_cluster.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_private_cluster.yaml index 01c18036bf9..d07ee81649f 100644 --- 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 Jun 2023 15:39:56 GMT + - Thu, 29 Jun 2023 11:39:17 GMT expires: - '-1' pragma: @@ -54,12 +54,13 @@ 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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "apiServerAccessProfile": {"authorizedIPRanges": + [], "enablePrivateCluster": true}, "disableLocalAccounts": false, "storageProfile": + {}}}' headers: Accept: - application/json @@ -70,75 +71,74 @@ interactions: Connection: - keep-alive Content-Length: - - '1816' + - '1487' 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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\": \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-knxt9l7l.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"3d87602b7b437a1b9e69799eac99ccc2-priv.portal.hcp.westus2.azmk8s.io\",\n + \ \"privateFQDN\": \"cliaksdns000003-14b4w5f0.06325289-cff0-4e26-a41a-fa80a39759c1.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"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/e9b52d89-16b4-4cea-b1d8-385b4e2ef142?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f8f52e6-dfac-4c2d-8e62-f4e7e601dbf3?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4047' + - '3718' content-type: - application/json date: - - Fri, 16 Jun 2023 15:40:03 GMT + - Thu, 29 Jun 2023 11:39:24 GMT expires: - '-1' pragma: @@ -169,14 +169,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --enable-private-cluster User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f8f52e6-dfac-4c2d-8e62-f4e7e601dbf3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"892db5e9-b416-ea4c-b1d8-385b4e2ef142\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T15:40:03.3853441Z\"\n }" + string: "{\n \"name\": \"e6528f0f-acdf-2d4c-8e62-f4e7e601dbf3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:39:24.4733561Z\"\n }" headers: cache-control: - no-cache @@ -185,7 +185,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:40:04 GMT + - Thu, 29 Jun 2023 11:39:24 GMT expires: - '-1' pragma: @@ -218,14 +218,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --enable-private-cluster User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f8f52e6-dfac-4c2d-8e62-f4e7e601dbf3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"892db5e9-b416-ea4c-b1d8-385b4e2ef142\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T15:40:03.3853441Z\"\n }" + string: "{\n \"name\": \"e6528f0f-acdf-2d4c-8e62-f4e7e601dbf3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:39:24.4733561Z\"\n }" headers: cache-control: - no-cache @@ -234,7 +234,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:40:33 GMT + - Thu, 29 Jun 2023 11:39:55 GMT expires: - '-1' pragma: @@ -267,14 +267,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --enable-private-cluster User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f8f52e6-dfac-4c2d-8e62-f4e7e601dbf3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"892db5e9-b416-ea4c-b1d8-385b4e2ef142\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T15:40:03.3853441Z\"\n }" + string: "{\n \"name\": \"e6528f0f-acdf-2d4c-8e62-f4e7e601dbf3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:39:24.4733561Z\"\n }" headers: cache-control: - no-cache @@ -283,7 +283,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:41:04 GMT + - Thu, 29 Jun 2023 11:40:25 GMT expires: - '-1' pragma: @@ -316,14 +316,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --enable-private-cluster User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f8f52e6-dfac-4c2d-8e62-f4e7e601dbf3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"892db5e9-b416-ea4c-b1d8-385b4e2ef142\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T15:40:03.3853441Z\"\n }" + string: "{\n \"name\": \"e6528f0f-acdf-2d4c-8e62-f4e7e601dbf3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:39:24.4733561Z\"\n }" headers: cache-control: - no-cache @@ -332,7 +332,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:41:34 GMT + - Thu, 29 Jun 2023 11:40:55 GMT expires: - '-1' pragma: @@ -365,14 +365,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --enable-private-cluster User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f8f52e6-dfac-4c2d-8e62-f4e7e601dbf3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"892db5e9-b416-ea4c-b1d8-385b4e2ef142\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T15:40:03.3853441Z\"\n }" + string: "{\n \"name\": \"e6528f0f-acdf-2d4c-8e62-f4e7e601dbf3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:39:24.4733561Z\"\n }" headers: cache-control: - no-cache @@ -381,7 +381,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:42:04 GMT + - Thu, 29 Jun 2023 11:41:25 GMT expires: - '-1' pragma: @@ -414,14 +414,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --enable-private-cluster User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f8f52e6-dfac-4c2d-8e62-f4e7e601dbf3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"892db5e9-b416-ea4c-b1d8-385b4e2ef142\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T15:40:03.3853441Z\"\n }" + string: "{\n \"name\": \"e6528f0f-acdf-2d4c-8e62-f4e7e601dbf3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:39:24.4733561Z\"\n }" headers: cache-control: - no-cache @@ -430,7 +430,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:42:34 GMT + - Thu, 29 Jun 2023 11:41:55 GMT expires: - '-1' pragma: @@ -463,14 +463,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --enable-private-cluster User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f8f52e6-dfac-4c2d-8e62-f4e7e601dbf3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"892db5e9-b416-ea4c-b1d8-385b4e2ef142\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T15:40:03.3853441Z\"\n }" + string: "{\n \"name\": \"e6528f0f-acdf-2d4c-8e62-f4e7e601dbf3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:39:24.4733561Z\"\n }" headers: cache-control: - no-cache @@ -479,7 +479,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:43:04 GMT + - Thu, 29 Jun 2023 11:42:25 GMT expires: - '-1' pragma: @@ -512,14 +512,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --enable-private-cluster User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f8f52e6-dfac-4c2d-8e62-f4e7e601dbf3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"892db5e9-b416-ea4c-b1d8-385b4e2ef142\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T15:40:03.3853441Z\"\n }" + string: "{\n \"name\": \"e6528f0f-acdf-2d4c-8e62-f4e7e601dbf3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:39:24.4733561Z\"\n }" headers: cache-control: - no-cache @@ -528,7 +528,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:43:35 GMT + - Thu, 29 Jun 2023 11:42:55 GMT expires: - '-1' pragma: @@ -561,14 +561,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --enable-private-cluster User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f8f52e6-dfac-4c2d-8e62-f4e7e601dbf3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"892db5e9-b416-ea4c-b1d8-385b4e2ef142\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T15:40:03.3853441Z\"\n }" + string: "{\n \"name\": \"e6528f0f-acdf-2d4c-8e62-f4e7e601dbf3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:39:24.4733561Z\"\n }" headers: cache-control: - no-cache @@ -577,7 +577,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:44:04 GMT + - Thu, 29 Jun 2023 11:43:25 GMT expires: - '-1' pragma: @@ -610,14 +610,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --enable-private-cluster User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f8f52e6-dfac-4c2d-8e62-f4e7e601dbf3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"892db5e9-b416-ea4c-b1d8-385b4e2ef142\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T15:40:03.3853441Z\"\n }" + string: "{\n \"name\": \"e6528f0f-acdf-2d4c-8e62-f4e7e601dbf3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:39:24.4733561Z\"\n }" headers: cache-control: - no-cache @@ -626,7 +626,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:44:35 GMT + - Thu, 29 Jun 2023 11:43:56 GMT expires: - '-1' pragma: @@ -659,14 +659,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --enable-private-cluster User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f8f52e6-dfac-4c2d-8e62-f4e7e601dbf3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"892db5e9-b416-ea4c-b1d8-385b4e2ef142\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T15:40:03.3853441Z\"\n }" + string: "{\n \"name\": \"e6528f0f-acdf-2d4c-8e62-f4e7e601dbf3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:39:24.4733561Z\"\n }" headers: cache-control: - no-cache @@ -675,7 +675,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:45:05 GMT + - Thu, 29 Jun 2023 11:44:26 GMT expires: - '-1' pragma: @@ -708,14 +708,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --enable-private-cluster User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f8f52e6-dfac-4c2d-8e62-f4e7e601dbf3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"892db5e9-b416-ea4c-b1d8-385b4e2ef142\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T15:40:03.3853441Z\"\n }" + string: "{\n \"name\": \"e6528f0f-acdf-2d4c-8e62-f4e7e601dbf3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:39:24.4733561Z\"\n }" headers: cache-control: - no-cache @@ -724,7 +724,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:46:14 GMT + - Thu, 29 Jun 2023 11:44:56 GMT expires: - '-1' pragma: @@ -757,14 +757,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --enable-private-cluster User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f8f52e6-dfac-4c2d-8e62-f4e7e601dbf3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"892db5e9-b416-ea4c-b1d8-385b4e2ef142\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T15:40:03.3853441Z\"\n }" + string: "{\n \"name\": \"e6528f0f-acdf-2d4c-8e62-f4e7e601dbf3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:39:24.4733561Z\"\n }" headers: cache-control: - no-cache @@ -773,7 +773,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:46:44 GMT + - Thu, 29 Jun 2023 11:45:26 GMT expires: - '-1' pragma: @@ -806,14 +806,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --enable-private-cluster User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f8f52e6-dfac-4c2d-8e62-f4e7e601dbf3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"892db5e9-b416-ea4c-b1d8-385b4e2ef142\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T15:40:03.3853441Z\"\n }" + string: "{\n \"name\": \"e6528f0f-acdf-2d4c-8e62-f4e7e601dbf3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:39:24.4733561Z\"\n }" headers: cache-control: - no-cache @@ -822,7 +822,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:47:15 GMT + - Thu, 29 Jun 2023 11:45:56 GMT expires: - '-1' pragma: @@ -855,15 +855,505 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --enable-private-cluster User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f8f52e6-dfac-4c2d-8e62-f4e7e601dbf3?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"e6528f0f-acdf-2d4c-8e62-f4e7e601dbf3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:39:24.4733561Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:46: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 --dns-name-prefix --node-count --ssh-key-value + --load-balancer-sku --enable-private-cluster + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f8f52e6-dfac-4c2d-8e62-f4e7e601dbf3?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"e6528f0f-acdf-2d4c-8e62-f4e7e601dbf3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:39:24.4733561Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:46: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 --dns-name-prefix --node-count --ssh-key-value + --load-balancer-sku --enable-private-cluster + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f8f52e6-dfac-4c2d-8e62-f4e7e601dbf3?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"e6528f0f-acdf-2d4c-8e62-f4e7e601dbf3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:39:24.4733561Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:47: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 --dns-name-prefix --node-count --ssh-key-value + --load-balancer-sku --enable-private-cluster + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f8f52e6-dfac-4c2d-8e62-f4e7e601dbf3?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"e6528f0f-acdf-2d4c-8e62-f4e7e601dbf3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:39:24.4733561Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:47: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 + --load-balancer-sku --enable-private-cluster + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f8f52e6-dfac-4c2d-8e62-f4e7e601dbf3?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"e6528f0f-acdf-2d4c-8e62-f4e7e601dbf3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:39:24.4733561Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:48: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 + --load-balancer-sku --enable-private-cluster + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f8f52e6-dfac-4c2d-8e62-f4e7e601dbf3?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"e6528f0f-acdf-2d4c-8e62-f4e7e601dbf3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:39:24.4733561Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:48: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 + --load-balancer-sku --enable-private-cluster + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f8f52e6-dfac-4c2d-8e62-f4e7e601dbf3?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"e6528f0f-acdf-2d4c-8e62-f4e7e601dbf3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:39:24.4733561Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:49: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 + --load-balancer-sku --enable-private-cluster + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f8f52e6-dfac-4c2d-8e62-f4e7e601dbf3?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"e6528f0f-acdf-2d4c-8e62-f4e7e601dbf3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:39:24.4733561Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:49: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 + --load-balancer-sku --enable-private-cluster + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f8f52e6-dfac-4c2d-8e62-f4e7e601dbf3?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"e6528f0f-acdf-2d4c-8e62-f4e7e601dbf3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:39:24.4733561Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:50: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 + --load-balancer-sku --enable-private-cluster + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f8f52e6-dfac-4c2d-8e62-f4e7e601dbf3?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"e6528f0f-acdf-2d4c-8e62-f4e7e601dbf3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:39:24.4733561Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:50: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 + --load-balancer-sku --enable-private-cluster + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0f8f52e6-dfac-4c2d-8e62-f4e7e601dbf3?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"e6528f0f-acdf-2d4c-8e62-f4e7e601dbf3\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:39:24.4733561Z\",\n \"endTime\": + \"2023-06-29T11:51:08.9620377Z\"\n }" headers: cache-control: - no-cache @@ -872,7 +1362,417 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:47:45 GMT + - Thu, 29 Jun 2023 11: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 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.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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\": + \"cliaksdns000003\",\n \"fqdn\": \"cliaksdns000003-knxt9l7l.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"3d87602b7b437a1b9e69799eac99ccc2-priv.portal.hcp.westus2.azmk8s.io\",\n + \ \"privateFQDN\": \"cliaksdns000003-14b4w5f0.06325289-cff0-4e26-a41a-fa80a39759c1.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d19f2764-44be-482a-b347-63a7a4e880df\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.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: + - '4568' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11: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: + - application/json + 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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\": + \"cliaksdns000003\",\n \"fqdn\": \"cliaksdns000003-knxt9l7l.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"3d87602b7b437a1b9e69799eac99ccc2-priv.portal.hcp.westus2.azmk8s.io\",\n + \ \"privateFQDN\": \"cliaksdns000003-14b4w5f0.06325289-cff0-4e26-a41a-fa80a39759c1.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d19f2764-44be-482a-b347-63a7a4e880df\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.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: + - '4568' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:51:29 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: + - application/json + 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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\": + \"cliaksdns000003\",\n \"fqdn\": \"cliaksdns000003-knxt9l7l.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"3d87602b7b437a1b9e69799eac99ccc2-priv.portal.hcp.westus2.azmk8s.io\",\n + \ \"privateFQDN\": \"cliaksdns000003-14b4w5f0.06325289-cff0-4e26-a41a-fa80a39759c1.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d19f2764-44be-482a-b347-63a7a4e880df\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.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: + - '4568' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:51: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: '{"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.25.6", + "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": + false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_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/d19f2764-44be-482a-b347-63a7a4e880df"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "apiServerAccessProfile": {"enablePrivateCluster": true, "privateDNSZone": + "system", "enablePrivateClusterPublicFQDN": 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"}}, + "privateLinkResources": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/privateLinkResources/management", + "name": "management", "type": "Microsoft.ContainerService/managedClusters/privateLinkResources", + "groupId": "management", "requiredMembers": ["management"]}], "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: + - '2998' + Content-Type: + - application/json + ParameterSetName: + - -g -n --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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\": + \"cliaksdns000003\",\n \"fqdn\": \"cliaksdns000003-knxt9l7l.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"3d87602b7b437a1b9e69799eac99ccc2-priv.portal.hcp.westus2.azmk8s.io\",\n + \ \"privateFQDN\": \"cliaksdns000003-14b4w5f0.06325289-cff0-4e26-a41a-fa80a39759c1.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d19f2764-44be-482a-b347-63a7a4e880df\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.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-180/providers/Microsoft.Network/privateLinkServices/a88ec544516284e23b759abd21d02fc0\"\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/8d5962b9-aa7a-4f7f-a392-501aa6a3b53c?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '4577' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:51:37 GMT expires: - '-1' pragma: @@ -887,6 +1787,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK @@ -898,79 +1800,29 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks scale Connection: - keep-alive ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --load-balancer-sku --enable-private-cluster + - -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8d5962b9-aa7a-4f7f-a392-501aa6a3b53c?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.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 }" + string: "{\n \"name\": \"b962598d-7aaa-7f4f-a392-501aa6a3b53c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:51:36.4594616Z\"\n }" headers: cache-control: - no-cache content-length: - - '4897' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 15:47:45 GMT + - Thu, 29 Jun 2023 11:51:37 GMT expires: - '-1' pragma: @@ -992,82 +1844,81 @@ interactions: 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8d5962b9-aa7a-4f7f-a392-501aa6a3b53c?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"b962598d-7aaa-7f4f-a392-501aa6a3b53c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:51:36.4594616Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: - application/json + date: + - Thu, 29 Jun 2023 11:52: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 + - aks scale Connection: - keep-alive ParameterSetName: - - -g -n --api-server-authorized-ip-ranges + - -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8d5962b9-aa7a-4f7f-a392-501aa6a3b53c?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.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 }" + string: "{\n \"name\": \"b962598d-7aaa-7f4f-a392-501aa6a3b53c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:51:36.4594616Z\"\n }" headers: cache-control: - no-cache content-length: - - '4897' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 15:47:47 GMT + - Thu, 29 Jun 2023 11:52:37 GMT expires: - '-1' pragma: @@ -1089,7 +1940,55 @@ interactions: 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8d5962b9-aa7a-4f7f-a392-501aa6a3b53c?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"b962598d-7aaa-7f4f-a392-501aa6a3b53c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:51:36.4594616Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: - application/json + date: + - Thu, 29 Jun 2023 11:53: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: @@ -1099,72 +1998,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8d5962b9-aa7a-4f7f-a392-501aa6a3b53c?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.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 }" + string: "{\n \"name\": \"b962598d-7aaa-7f4f-a392-501aa6a3b53c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:51:36.4594616Z\"\n }" headers: cache-control: - no-cache content-length: - - '4897' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 15:47:49 GMT + - Thu, 29 Jun 2023 11:53:38 GMT expires: - '-1' pragma: @@ -1183,117 +2033,180 @@ interactions: code: 200 message: OK - request: - 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.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_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": - {"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"}}, - "privateLinkResources": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/privateLinkResources/management", - "name": "management", "type": "Microsoft.ContainerService/managedClusters/privateLinkResources", - "groupId": "management", "requiredMembers": ["management"]}], "disableLocalAccounts": - false, "securityProfile": {}, "storageProfile": {"diskCSIDriver": {"enabled": - true}, "fileCSIDriver": {"enabled": true}, "snapshotController": {"enabled": - true}}, "workloadAutoScalerProfile": {}}}' + 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8d5962b9-aa7a-4f7f-a392-501aa6a3b53c?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"b962598d-7aaa-7f4f-a392-501aa6a3b53c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:51:36.4594616Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:54: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 scale + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8d5962b9-aa7a-4f7f-a392-501aa6a3b53c?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"b962598d-7aaa-7f4f-a392-501aa6a3b53c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:51:36.4594616Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: - application/json + date: + - Thu, 29 Jun 2023 11:54: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 scale Connection: - keep-alive - Content-Length: - - '3327' - Content-Type: + ParameterSetName: + - -g -n --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8d5962b9-aa7a-4f7f-a392-501aa6a3b53c?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"b962598d-7aaa-7f4f-a392-501aa6a3b53c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:51:36.4594616Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: - application/json + date: + - Thu, 29 Jun 2023 11:55: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 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: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-05-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8d5962b9-aa7a-4f7f-a392-501aa6a3b53c?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.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 }" + string: "{\n \"name\": \"b962598d-7aaa-7f4f-a392-501aa6a3b53c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:51:36.4594616Z\"\n }" headers: - azure-asyncoperation: - - 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: - - '4906' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 15:47:56 GMT + - Thu, 29 Jun 2023 11:55:38 GMT expires: - '-1' pragma: @@ -1308,8 +2221,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: code: 200 message: OK @@ -1327,14 +2238,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8d5962b9-aa7a-4f7f-a392-501aa6a3b53c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c45a0c97-528c-e841-8477-492a84771638\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T15:47:55.7771013Z\"\n }" + string: "{\n \"name\": \"b962598d-7aaa-7f4f-a392-501aa6a3b53c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:51:36.4594616Z\"\n }" headers: cache-control: - no-cache @@ -1343,7 +2254,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:47:56 GMT + - Thu, 29 Jun 2023 11:56:09 GMT expires: - '-1' pragma: @@ -1375,14 +2286,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8d5962b9-aa7a-4f7f-a392-501aa6a3b53c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c45a0c97-528c-e841-8477-492a84771638\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T15:47:55.7771013Z\"\n }" + string: "{\n \"name\": \"b962598d-7aaa-7f4f-a392-501aa6a3b53c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:51:36.4594616Z\"\n }" headers: cache-control: - no-cache @@ -1391,7 +2302,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:49:06 GMT + - Thu, 29 Jun 2023 11:56:38 GMT expires: - '-1' pragma: @@ -1423,14 +2334,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8d5962b9-aa7a-4f7f-a392-501aa6a3b53c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c45a0c97-528c-e841-8477-492a84771638\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T15:47:55.7771013Z\"\n }" + string: "{\n \"name\": \"b962598d-7aaa-7f4f-a392-501aa6a3b53c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:51:36.4594616Z\"\n }" headers: cache-control: - no-cache @@ -1439,7 +2350,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:49:36 GMT + - Thu, 29 Jun 2023 11:57:09 GMT expires: - '-1' pragma: @@ -1471,14 +2382,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8d5962b9-aa7a-4f7f-a392-501aa6a3b53c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c45a0c97-528c-e841-8477-492a84771638\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T15:47:55.7771013Z\"\n }" + string: "{\n \"name\": \"b962598d-7aaa-7f4f-a392-501aa6a3b53c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:51:36.4594616Z\"\n }" headers: cache-control: - no-cache @@ -1487,7 +2398,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:50:06 GMT + - Thu, 29 Jun 2023 11:57:39 GMT expires: - '-1' pragma: @@ -1519,14 +2430,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8d5962b9-aa7a-4f7f-a392-501aa6a3b53c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c45a0c97-528c-e841-8477-492a84771638\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T15:47:55.7771013Z\"\n }" + string: "{\n \"name\": \"b962598d-7aaa-7f4f-a392-501aa6a3b53c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:51:36.4594616Z\"\n }" headers: cache-control: - no-cache @@ -1535,7 +2446,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:50:36 GMT + - Thu, 29 Jun 2023 11:58:08 GMT expires: - '-1' pragma: @@ -1567,14 +2478,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8d5962b9-aa7a-4f7f-a392-501aa6a3b53c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c45a0c97-528c-e841-8477-492a84771638\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T15:47:55.7771013Z\"\n }" + string: "{\n \"name\": \"b962598d-7aaa-7f4f-a392-501aa6a3b53c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:51:36.4594616Z\"\n }" headers: cache-control: - no-cache @@ -1583,7 +2494,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:51:07 GMT + - Thu, 29 Jun 2023 11:58:39 GMT expires: - '-1' pragma: @@ -1615,14 +2526,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8d5962b9-aa7a-4f7f-a392-501aa6a3b53c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c45a0c97-528c-e841-8477-492a84771638\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T15:47:55.7771013Z\"\n }" + string: "{\n \"name\": \"b962598d-7aaa-7f4f-a392-501aa6a3b53c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:51:36.4594616Z\"\n }" headers: cache-control: - no-cache @@ -1631,7 +2542,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:51:37 GMT + - Thu, 29 Jun 2023 11:59:09 GMT expires: - '-1' pragma: @@ -1663,15 +2574,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8d5962b9-aa7a-4f7f-a392-501aa6a3b53c?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"b962598d-7aaa-7f4f-a392-501aa6a3b53c\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:51:36.4594616Z\",\n \"endTime\": + \"2023-06-29T11:59:23.4285806Z\"\n }" headers: cache-control: - no-cache @@ -1680,7 +2591,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 15:52:07 GMT + - Thu, 29 Jun 2023 11:59:40 GMT expires: - '-1' pragma: @@ -1712,72 +2623,70 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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\": \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-knxt9l7l.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"3d87602b7b437a1b9e69799eac99ccc2-priv.portal.hcp.westus2.azmk8s.io\",\n + \ \"privateFQDN\": \"cliaksdns000003-14b4w5f0.06325289-cff0-4e26-a41a-fa80a39759c1.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d19f2764-44be-482a-b347-63a7a4e880df\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.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: - - '4897' + - '4568' content-type: - application/json date: - - Fri, 16 Jun 2023 15:52:07 GMT + - Thu, 29 Jun 2023 11:59:40 GMT expires: - '-1' pragma: @@ -1809,72 +2718,70 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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\": \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-knxt9l7l.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"3d87602b7b437a1b9e69799eac99ccc2-priv.portal.hcp.westus2.azmk8s.io\",\n + \ \"privateFQDN\": \"cliaksdns000003-14b4w5f0.06325289-cff0-4e26-a41a-fa80a39759c1.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d19f2764-44be-482a-b347-63a7a4e880df\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.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: - - '4897' + - '4568' content-type: - application/json date: - - Fri, 16 Jun 2023 15:52:09 GMT + - Thu, 29 Jun 2023 11:59:41 GMT expires: - '-1' pragma: @@ -1908,8 +2815,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -1917,17 +2824,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/78c47c55-15db-44f9-903b-47df9034b897?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Fri, 16 Jun 2023 15:52:11 GMT + - Thu, 29 Jun 2023 11:59:42 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/78c47c55-15db-44f9-903b-47df9034b897?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_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 index 2ec2775112f..b3d516dcbf3 100644 --- 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 Jun 2023 15:52:15 GMT + - Thu, 29 Jun 2023 11:42:35 GMT expires: - '-1' pragma: @@ -47,20 +47,20 @@ interactions: message: Not Found - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestxecpa7plu-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestk5ocodrck-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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "apiServerAccessProfile": {"authorizedIPRanges": + [], "enablePrivateCluster": true, "enablePrivateClusterPublicFQDN": false}, + "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -71,75 +71,73 @@ interactions: Connection: - keep-alive Content-Length: - - '1876' + - '1547' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --enable-private-cluster --disable-public-fqdn --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestk5ocodrck-79a739\",\n \"azurePortalFQDN\": \"0407590efc901f0bee678d0409e6f09f-priv.portal.hcp.westus2.azmk8s.io\",\n + \ \"privateFQDN\": \"cliakstest-clitestk5ocodrck-79a739-1vl9k6rg.c034f331-7173-47d5-afaf-5ec70a11871b.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"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/963d47b1-1eb6-45d0-af9e-aae7a31f0246?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/38b4b55c-999a-4565-918a-be95b2e864a8?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4025' + - '3696' content-type: - application/json date: - - Fri, 16 Jun 2023 15:52:23 GMT + - Thu, 29 Jun 2023 11:42:42 GMT expires: - '-1' pragma: @@ -151,7 +149,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -170,23 +168,268 @@ interactions: - --resource-group --name --location --enable-private-cluster --disable-public-fqdn --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/38b4b55c-999a-4565-918a-be95b2e864a8?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"5cb5b438-9a99-6545-918a-be95b2e864a8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:42:41.9583196Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:42: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 --location --enable-private-cluster --disable-public-fqdn + --node-count --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/38b4b55c-999a-4565-918a-be95b2e864a8?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"5cb5b438-9a99-6545-918a-be95b2e864a8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:42:41.9583196Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:43: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 --location --enable-private-cluster --disable-public-fqdn + --node-count --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/38b4b55c-999a-4565-918a-be95b2e864a8?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"5cb5b438-9a99-6545-918a-be95b2e864a8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:42:41.9583196Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:43: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 --location --enable-private-cluster --disable-public-fqdn + --node-count --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/38b4b55c-999a-4565-918a-be95b2e864a8?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"5cb5b438-9a99-6545-918a-be95b2e864a8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:42:41.9583196Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:44: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 --location --enable-private-cluster --disable-public-fqdn + --node-count --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/38b4b55c-999a-4565-918a-be95b2e864a8?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"5cb5b438-9a99-6545-918a-be95b2e864a8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:42:41.9583196Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:44: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 --location --enable-private-cluster --disable-public-fqdn + --node-count --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/38b4b55c-999a-4565-918a-be95b2e864a8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b1473d96-b61e-d045-af9e-aae7a31f0246\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T15:52:22.871421Z\"\n }" + string: "{\n \"name\": \"5cb5b438-9a99-6545-918a-be95b2e864a8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:42:41.9583196Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 15:52:23 GMT + - Thu, 29 Jun 2023 11:45:13 GMT expires: - '-1' pragma: @@ -219,23 +462,23 @@ interactions: - --resource-group --name --location --enable-private-cluster --disable-public-fqdn --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/38b4b55c-999a-4565-918a-be95b2e864a8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b1473d96-b61e-d045-af9e-aae7a31f0246\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T15:52:22.871421Z\"\n }" + string: "{\n \"name\": \"5cb5b438-9a99-6545-918a-be95b2e864a8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:42:41.9583196Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 15:52:53 GMT + - Thu, 29 Jun 2023 11:45:43 GMT expires: - '-1' pragma: @@ -268,23 +511,23 @@ interactions: - --resource-group --name --location --enable-private-cluster --disable-public-fqdn --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/38b4b55c-999a-4565-918a-be95b2e864a8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b1473d96-b61e-d045-af9e-aae7a31f0246\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T15:52:22.871421Z\"\n }" + string: "{\n \"name\": \"5cb5b438-9a99-6545-918a-be95b2e864a8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:42:41.9583196Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 15:53:23 GMT + - Thu, 29 Jun 2023 11:46:13 GMT expires: - '-1' pragma: @@ -317,23 +560,23 @@ interactions: - --resource-group --name --location --enable-private-cluster --disable-public-fqdn --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/38b4b55c-999a-4565-918a-be95b2e864a8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b1473d96-b61e-d045-af9e-aae7a31f0246\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T15:52:22.871421Z\"\n }" + string: "{\n \"name\": \"5cb5b438-9a99-6545-918a-be95b2e864a8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:42:41.9583196Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 15:53:54 GMT + - Thu, 29 Jun 2023 11:46:43 GMT expires: - '-1' pragma: @@ -366,23 +609,23 @@ interactions: - --resource-group --name --location --enable-private-cluster --disable-public-fqdn --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/38b4b55c-999a-4565-918a-be95b2e864a8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b1473d96-b61e-d045-af9e-aae7a31f0246\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T15:52:22.871421Z\"\n }" + string: "{\n \"name\": \"5cb5b438-9a99-6545-918a-be95b2e864a8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:42:41.9583196Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 15:54:24 GMT + - Thu, 29 Jun 2023 11:47:13 GMT expires: - '-1' pragma: @@ -415,23 +658,23 @@ interactions: - --resource-group --name --location --enable-private-cluster --disable-public-fqdn --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/38b4b55c-999a-4565-918a-be95b2e864a8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b1473d96-b61e-d045-af9e-aae7a31f0246\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T15:52:22.871421Z\"\n }" + string: "{\n \"name\": \"5cb5b438-9a99-6545-918a-be95b2e864a8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:42:41.9583196Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 15:54:54 GMT + - Thu, 29 Jun 2023 11:47:44 GMT expires: - '-1' pragma: @@ -464,23 +707,23 @@ interactions: - --resource-group --name --location --enable-private-cluster --disable-public-fqdn --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/38b4b55c-999a-4565-918a-be95b2e864a8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b1473d96-b61e-d045-af9e-aae7a31f0246\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T15:52:22.871421Z\"\n }" + string: "{\n \"name\": \"5cb5b438-9a99-6545-918a-be95b2e864a8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:42:41.9583196Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 15:55:24 GMT + - Thu, 29 Jun 2023 11:48:14 GMT expires: - '-1' pragma: @@ -513,23 +756,23 @@ interactions: - --resource-group --name --location --enable-private-cluster --disable-public-fqdn --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/38b4b55c-999a-4565-918a-be95b2e864a8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b1473d96-b61e-d045-af9e-aae7a31f0246\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T15:52:22.871421Z\"\n }" + string: "{\n \"name\": \"5cb5b438-9a99-6545-918a-be95b2e864a8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:42:41.9583196Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 15:55:55 GMT + - Thu, 29 Jun 2023 11:48:43 GMT expires: - '-1' pragma: @@ -562,23 +805,23 @@ interactions: - --resource-group --name --location --enable-private-cluster --disable-public-fqdn --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/38b4b55c-999a-4565-918a-be95b2e864a8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b1473d96-b61e-d045-af9e-aae7a31f0246\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T15:52:22.871421Z\"\n }" + string: "{\n \"name\": \"5cb5b438-9a99-6545-918a-be95b2e864a8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:42:41.9583196Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 15:56:24 GMT + - Thu, 29 Jun 2023 11:49:13 GMT expires: - '-1' pragma: @@ -611,23 +854,23 @@ interactions: - --resource-group --name --location --enable-private-cluster --disable-public-fqdn --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/38b4b55c-999a-4565-918a-be95b2e864a8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b1473d96-b61e-d045-af9e-aae7a31f0246\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T15:52:22.871421Z\"\n }" + string: "{\n \"name\": \"5cb5b438-9a99-6545-918a-be95b2e864a8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:42:41.9583196Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 15:56:54 GMT + - Thu, 29 Jun 2023 11:49:44 GMT expires: - '-1' pragma: @@ -660,23 +903,23 @@ interactions: - --resource-group --name --location --enable-private-cluster --disable-public-fqdn --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/38b4b55c-999a-4565-918a-be95b2e864a8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b1473d96-b61e-d045-af9e-aae7a31f0246\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T15:52:22.871421Z\"\n }" + string: "{\n \"name\": \"5cb5b438-9a99-6545-918a-be95b2e864a8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:42:41.9583196Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 15:57:25 GMT + - Thu, 29 Jun 2023 11:50:14 GMT expires: - '-1' pragma: @@ -709,23 +952,23 @@ interactions: - --resource-group --name --location --enable-private-cluster --disable-public-fqdn --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/38b4b55c-999a-4565-918a-be95b2e864a8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b1473d96-b61e-d045-af9e-aae7a31f0246\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T15:52:22.871421Z\"\n }" + string: "{\n \"name\": \"5cb5b438-9a99-6545-918a-be95b2e864a8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:42:41.9583196Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 15:57:55 GMT + - Thu, 29 Jun 2023 11:50:44 GMT expires: - '-1' pragma: @@ -758,23 +1001,23 @@ interactions: - --resource-group --name --location --enable-private-cluster --disable-public-fqdn --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/38b4b55c-999a-4565-918a-be95b2e864a8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b1473d96-b61e-d045-af9e-aae7a31f0246\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T15:52:22.871421Z\"\n }" + string: "{\n \"name\": \"5cb5b438-9a99-6545-918a-be95b2e864a8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:42:41.9583196Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 15:58:25 GMT + - Thu, 29 Jun 2023 11:51:14 GMT expires: - '-1' pragma: @@ -807,23 +1050,23 @@ interactions: - --resource-group --name --location --enable-private-cluster --disable-public-fqdn --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/38b4b55c-999a-4565-918a-be95b2e864a8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b1473d96-b61e-d045-af9e-aae7a31f0246\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T15:52:22.871421Z\"\n }" + string: "{\n \"name\": \"5cb5b438-9a99-6545-918a-be95b2e864a8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:42:41.9583196Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 15:58:55 GMT + - Thu, 29 Jun 2023 11:51:45 GMT expires: - '-1' pragma: @@ -856,23 +1099,23 @@ interactions: - --resource-group --name --location --enable-private-cluster --disable-public-fqdn --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/38b4b55c-999a-4565-918a-be95b2e864a8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b1473d96-b61e-d045-af9e-aae7a31f0246\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T15:52:22.871421Z\"\n }" + string: "{\n \"name\": \"5cb5b438-9a99-6545-918a-be95b2e864a8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:42:41.9583196Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 15:59:26 GMT + - Thu, 29 Jun 2023 11:52:15 GMT expires: - '-1' pragma: @@ -905,23 +1148,23 @@ interactions: - --resource-group --name --location --enable-private-cluster --disable-public-fqdn --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/38b4b55c-999a-4565-918a-be95b2e864a8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b1473d96-b61e-d045-af9e-aae7a31f0246\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T15:52:22.871421Z\"\n }" + string: "{\n \"name\": \"5cb5b438-9a99-6545-918a-be95b2e864a8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:42:41.9583196Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 15:59:56 GMT + - Thu, 29 Jun 2023 11:52:45 GMT expires: - '-1' pragma: @@ -954,24 +1197,171 @@ interactions: - --resource-group --name --location --enable-private-cluster --disable-public-fqdn --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/38b4b55c-999a-4565-918a-be95b2e864a8?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"5cb5b438-9a99-6545-918a-be95b2e864a8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:42:41.9583196Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:53: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 --location --enable-private-cluster --disable-public-fqdn + --node-count --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/38b4b55c-999a-4565-918a-be95b2e864a8?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"5cb5b438-9a99-6545-918a-be95b2e864a8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:42:41.9583196Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:53: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 --enable-private-cluster --disable-public-fqdn + --node-count --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/38b4b55c-999a-4565-918a-be95b2e864a8?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"5cb5b438-9a99-6545-918a-be95b2e864a8\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:42:41.9583196Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:54: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 --enable-private-cluster --disable-public-fqdn + --node-count --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/38b4b55c-999a-4565-918a-be95b2e864a8?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"5cb5b438-9a99-6545-918a-be95b2e864a8\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:42:41.9583196Z\",\n \"endTime\": + \"2023-06-29T11:54:24.4736022Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' content-type: - application/json date: - - Fri, 16 Jun 2023 16:00:26 GMT + - Thu, 29 Jun 2023 11:54:45 GMT expires: - '-1' pragma: @@ -1004,72 +1394,69 @@ interactions: - --resource-group --name --location --enable-private-cluster --disable-public-fqdn --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestk5ocodrck-79a739\",\n \"azurePortalFQDN\": \"0407590efc901f0bee678d0409e6f09f-priv.portal.hcp.westus2.azmk8s.io\",\n + \ \"privateFQDN\": \"cliakstest-clitestk5ocodrck-79a739-1vl9k6rg.c034f331-7173-47d5-afaf-5ec70a11871b.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/366b95a9-b40f-4f65-862c-e6ffe2d2a69c\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.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: - - '4875' + - '4546' content-type: - application/json date: - - Fri, 16 Jun 2023 16:00:27 GMT + - Thu, 29 Jun 2023 11:54:46 GMT expires: - '-1' pragma: @@ -1101,72 +1488,69 @@ interactions: ParameterSetName: - --resource-group --name --enable-public-fqdn User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestk5ocodrck-79a739\",\n \"azurePortalFQDN\": \"0407590efc901f0bee678d0409e6f09f-priv.portal.hcp.westus2.azmk8s.io\",\n + \ \"privateFQDN\": \"cliakstest-clitestk5ocodrck-79a739-1vl9k6rg.c034f331-7173-47d5-afaf-5ec70a11871b.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/366b95a9-b40f-4f65-862c-e6ffe2d2a69c\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.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: - - '4875' + - '4546' content-type: - application/json date: - - Fri, 16 Jun 2023 16:00:32 GMT + - Thu, 29 Jun 2023 11:54:47 GMT expires: - '-1' pragma: @@ -1187,21 +1571,20 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": - "cliakstest-clitestxecpa7plu-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": + "cliakstest-clitestk5ocodrck-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.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"}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_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/d3fb3c65-4093-4672-b3e8-01347a24b02d"}]}, + "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": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/366b95a9-b40f-4f65-862c-e6ffe2d2a69c"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "apiServerAccessProfile": {"enablePrivateCluster": true, "privateDNSZone": "system", "enablePrivateClusterPublicFQDN": true}, "identityProfile": {"kubeletidentity": @@ -1222,81 +1605,78 @@ interactions: Connection: - keep-alive Content-Length: - - '3315' + - '2949' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-public-fqdn User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestk5ocodrck-79a739\",\n \"fqdn\": \"cliakstest-clitestk5ocodrck-79a739-qocs6tk6.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"0407590efc901f0bee678d0409e6f09f-priv.portal.hcp.westus2.azmk8s.io\",\n + \ \"privateFQDN\": \"cliakstest-clitestk5ocodrck-79a739-1vl9k6rg.c034f331-7173-47d5-afaf-5ec70a11871b.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/366b95a9-b40f-4f65-862c-e6ffe2d2a69c\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.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-125/providers/Microsoft.Network/privateLinkServices/af31427bbbbdd41589dc3c8c5ed87156\"\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/69f76f49-2661-4fb3-b03f-9dee4e22d0ac?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d69b67f3-fb03-481f-b28d-e2b5c6d27781?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4963' + - '4634' content-type: - application/json date: - - Fri, 16 Jun 2023 16:00:38 GMT + - Thu, 29 Jun 2023 11:54:53 GMT expires: - '-1' pragma: @@ -1330,14 +1710,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-public-fqdn User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d69b67f3-fb03-481f-b28d-e2b5c6d27781?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"496ff769-6126-b34f-b03f-9dee4e22d0ac\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T16:00:37.7475096Z\"\n }" + string: "{\n \"name\": \"f3679bd6-03fb-1f48-b28d-e2b5c6d27781\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:54:52.7726406Z\"\n }" headers: cache-control: - no-cache @@ -1346,7 +1726,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 16:00:38 GMT + - Thu, 29 Jun 2023 11:54:53 GMT expires: - '-1' pragma: @@ -1378,14 +1758,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-public-fqdn User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d69b67f3-fb03-481f-b28d-e2b5c6d27781?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"496ff769-6126-b34f-b03f-9dee4e22d0ac\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T16:00:37.7475096Z\"\n }" + string: "{\n \"name\": \"f3679bd6-03fb-1f48-b28d-e2b5c6d27781\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:54:52.7726406Z\"\n }" headers: cache-control: - no-cache @@ -1394,7 +1774,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 16:01:08 GMT + - Thu, 29 Jun 2023 11:55:23 GMT expires: - '-1' pragma: @@ -1426,14 +1806,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-public-fqdn User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d69b67f3-fb03-481f-b28d-e2b5c6d27781?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"496ff769-6126-b34f-b03f-9dee4e22d0ac\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T16:00:37.7475096Z\"\n }" + string: "{\n \"name\": \"f3679bd6-03fb-1f48-b28d-e2b5c6d27781\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:54:52.7726406Z\"\n }" headers: cache-control: - no-cache @@ -1442,7 +1822,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 16:01:38 GMT + - Thu, 29 Jun 2023 11:55:54 GMT expires: - '-1' pragma: @@ -1474,14 +1854,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-public-fqdn User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d69b67f3-fb03-481f-b28d-e2b5c6d27781?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"496ff769-6126-b34f-b03f-9dee4e22d0ac\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T16:00:37.7475096Z\"\n }" + string: "{\n \"name\": \"f3679bd6-03fb-1f48-b28d-e2b5c6d27781\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:54:52.7726406Z\"\n }" headers: cache-control: - no-cache @@ -1490,7 +1870,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 16:02:09 GMT + - Thu, 29 Jun 2023 11:56:24 GMT expires: - '-1' pragma: @@ -1522,14 +1902,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-public-fqdn User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d69b67f3-fb03-481f-b28d-e2b5c6d27781?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"496ff769-6126-b34f-b03f-9dee4e22d0ac\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T16:00:37.7475096Z\"\n }" + string: "{\n \"name\": \"f3679bd6-03fb-1f48-b28d-e2b5c6d27781\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:54:52.7726406Z\"\n }" headers: cache-control: - no-cache @@ -1538,7 +1918,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 16:02:39 GMT + - Thu, 29 Jun 2023 11:56:54 GMT expires: - '-1' pragma: @@ -1570,14 +1950,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-public-fqdn User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d69b67f3-fb03-481f-b28d-e2b5c6d27781?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"496ff769-6126-b34f-b03f-9dee4e22d0ac\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T16:00:37.7475096Z\"\n }" + string: "{\n \"name\": \"f3679bd6-03fb-1f48-b28d-e2b5c6d27781\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:54:52.7726406Z\"\n }" headers: cache-control: - no-cache @@ -1586,7 +1966,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 16:03:09 GMT + - Thu, 29 Jun 2023 11:57:23 GMT expires: - '-1' pragma: @@ -1618,14 +1998,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-public-fqdn User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d69b67f3-fb03-481f-b28d-e2b5c6d27781?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"496ff769-6126-b34f-b03f-9dee4e22d0ac\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T16:00:37.7475096Z\"\n }" + string: "{\n \"name\": \"f3679bd6-03fb-1f48-b28d-e2b5c6d27781\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:54:52.7726406Z\"\n }" headers: cache-control: - no-cache @@ -1634,7 +2014,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 16:03:39 GMT + - Thu, 29 Jun 2023 11:57:54 GMT expires: - '-1' pragma: @@ -1666,15 +2046,15 @@ interactions: ParameterSetName: - --resource-group --name --enable-public-fqdn User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d69b67f3-fb03-481f-b28d-e2b5c6d27781?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"f3679bd6-03fb-1f48-b28d-e2b5c6d27781\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:54:52.7726406Z\",\n \"endTime\": + \"2023-06-29T11:58:08.0761686Z\"\n }" headers: cache-control: - no-cache @@ -1683,7 +2063,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 16:04:09 GMT + - Thu, 29 Jun 2023 11:58:24 GMT expires: - '-1' pragma: @@ -1715,73 +2095,70 @@ interactions: ParameterSetName: - --resource-group --name --enable-public-fqdn User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestk5ocodrck-79a739\",\n \"fqdn\": \"cliakstest-clitestk5ocodrck-79a739-qocs6tk6.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"0407590efc901f0bee678d0409e6f09f-priv.portal.hcp.westus2.azmk8s.io\",\n + \ \"privateFQDN\": \"cliakstest-clitestk5ocodrck-79a739-1vl9k6rg.c034f331-7173-47d5-afaf-5ec70a11871b.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/366b95a9-b40f-4f65-862c-e6ffe2d2a69c\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.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: - - '4954' + - '4625' content-type: - application/json date: - - Fri, 16 Jun 2023 16:04:10 GMT + - Thu, 29 Jun 2023 11:58:25 GMT expires: - '-1' pragma: @@ -1815,8 +2192,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -1824,17 +2201,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d90ff488-5df2-4fe1-bf57-3bf6c2d31687?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Fri, 16 Jun 2023 16:04:13 GMT + - Thu, 29 Jun 2023 11:58:26 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/d90ff488-5df2-4fe1-bf57-3bf6c2d31687?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_private_dns_zone.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_private_dns_zone.yaml index 8d0b911cfe3..4181432b7bf 100644 --- 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.49.0 azsdk-python-mgmt-privatedns/1.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-mgmt-privatedns/1.0.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTtjYTY1NGIzYy02NjQzLTQzZGMtOWY2Ni0zMTdlMWU1YTVkMWVfOGVjYWRmYzktZDFhMy00ZWE0LWI4NDQtMGQ5Zjg3ZTRkN2M4?api-version=2018-09-01 + - https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/privateDnsOperationStatuses/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTtiNzk4NTM5NS01MGMxLTQ4MTItODRmNC00YjYwYTE5ZTkwNjhfNzlhNzM5MGQtM2E4NS00MzJkLTlmNmYtYTExYTcwM2M4Yjgz?api-version=2018-09-01 cache-control: - private content-length: @@ -35,9 +35,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 Jun 2023 16:04:22 GMT + - Thu, 29 Jun 2023 11:42:59 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/privateDnsOperationResults/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTtjYTY1NGIzYy02NjQzLTQzZGMtOWY2Ni0zMTdlMWU1YTVkMWVfOGVjYWRmYzktZDFhMy00ZWE0LWI4NDQtMGQ5Zjg3ZTRkN2M4?api-version=2018-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/privateDnsOperationResults/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTtiNzk4NTM5NS01MGMxLTQ4MTItODRmNC00YjYwYTE5ZTkwNjhfNzlhNzM5MGQtM2E4NS00MzJkLTlmNmYtYTExYTcwM2M4Yjgz?api-version=2018-09-01 server: - Microsoft-IIS/10.0 strict-transport-security: @@ -67,15 +67,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-mgmt-privatedns/1.0.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/privateDnsOperationStatuses/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTtiNzk4NTM5NS01MGMxLTQ4MTItODRmNC00YjYwYTE5ZTkwNjhfNzlhNzM5MGQtM2E4NS00MzJkLTlmNmYtYTExYTcwM2M4Yjgz?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 + - https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/privateDnsOperationStatuses/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTtiNzk4NTM5NS01MGMxLTQ4MTItODRmNC00YjYwYTE5ZTkwNjhfNzlhNzM5MGQtM2E4NS00MzJkLTlmNmYtYTExYTcwM2M4Yjgz?api-version=2018-09-01 cache-control: - private content-length: @@ -83,9 +83,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 Jun 2023 16:04:22 GMT + - Thu, 29 Jun 2023 11:42:59 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/privateDnsOperationResults/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTtjYTY1NGIzYy02NjQzLTQzZGMtOWY2Ni0zMTdlMWU1YTVkMWVfOGVjYWRmYzktZDFhMy00ZWE0LWI4NDQtMGQ5Zjg3ZTRkN2M4?api-version=2018-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/privateDnsOperationResults/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTtiNzk4NTM5NS01MGMxLTQ4MTItODRmNC00YjYwYTE5ZTkwNjhfNzlhNzM5MGQtM2E4NS00MzJkLTlmNmYtYTExYTcwM2M4Yjgz?api-version=2018-09-01 server: - Microsoft-IIS/10.0 strict-transport-security: @@ -115,9 +115,9 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-mgmt-privatedns/1.0.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/privateDnsOperationStatuses/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTtiNzk4NTM5NS01MGMxLTQ4MTItODRmNC00YjYwYTE5ZTkwNjhfNzlhNzM5MGQtM2E4NS00MzJkLTlmNmYtYTExYTcwM2M4Yjgz?api-version=2018-09-01 response: body: string: '{"status":"Succeeded"}' @@ -129,7 +129,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 Jun 2023 16:04:52 GMT + - Thu, 29 Jun 2023 11:43:29 GMT server: - Microsoft-IIS/10.0 strict-transport-security: @@ -163,12 +163,12 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-mgmt-privatedns/1.0.0 Python/3.8.10 (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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":"eeb6abef-680b-4161-9980-ba0dc3eaded8","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":"32828c26-e6a6-42fa-80fd-d3a5594ac96e","location":"global","properties":{"maxNumberOfRecordSets":25000,"maxNumberOfVirtualNetworkLinks":1000,"maxNumberOfVirtualNetworkLinksWithRegistration":100,"numberOfRecordSets":1,"numberOfVirtualNetworkLinks":0,"numberOfVirtualNetworkLinksWithRegistration":0,"provisioningState":"Succeeded"}}' headers: cache-control: - private @@ -177,9 +177,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 Jun 2023 16:04:52 GMT + - Thu, 29 Jun 2023 11:43:29 GMT etag: - - eeb6abef-680b-4161-9980-ba0dc3eaded8 + - 32828c26-e6a6-42fa-80fd-d3a5594ac96e server: - Microsoft-IIS/10.0 strict-transport-security: @@ -213,12 +213,12 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1039-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_private_dns_zone","date":"2023-06-16T16:04:16Z","module":"acs"},"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-29T11:42:56Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -227,15 +227,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 Jun 2023 16:04:53 GMT + - Thu, 29 Jun 2023 11:43:29 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -259,7 +257,7 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-msi/7.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-msi/7.0.0 Python/3.8.10 (Linux-5.15.0-1039-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/cliakstest000003?api-version=2023-01-31 response: @@ -273,7 +271,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 Jun 2023 16:04:56 GMT + - Thu, 29 Jun 2023 11:43:32 GMT expires: - '-1' location: @@ -303,8 +301,8 @@ interactions: ParameterSetName: - --assignee-object-id --role --scope --assignee-principal-type User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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: @@ -320,7 +318,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 Jun 2023 16:04:57 GMT + - Thu, 29 Jun 2023 11:43:32 GMT expires: - '-1' pragma: @@ -359,13 +357,13 @@ interactions: ParameterSetName: - --assignee-object-id --role --scope --assignee-principal-type User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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-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"}' + 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-29T11:43:33.3255934Z","updatedOn":"2023-06-29T11:43:33.6835991Z","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"}' headers: cache-control: - no-cache @@ -374,7 +372,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 Jun 2023 16:05:01 GMT + - Thu, 29 Jun 2023 11:43:34 GMT expires: - '-1' pragma: @@ -404,8 +402,8 @@ interactions: --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -421,7 +419,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 Jun 2023 16:05:02 GMT + - Thu, 29 Jun 2023 11:43:34 GMT expires: - '-1' pragma: @@ -451,12 +449,12 @@ interactions: --enable-private-cluster --private-dns-zone --enable-managed-identity --assign-identity --ssh-key-value User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1039-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_private_dns_zone","date":"2023-06-16T16:04:16Z","module":"acs"},"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-29T11:42:56Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -465,7 +463,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 Jun 2023 16:05:03 GMT + - Thu, 29 Jun 2023 11:43:35 GMT expires: - '-1' pragma: @@ -489,12 +487,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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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"}, + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "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: @@ -506,7 +504,7 @@ interactions: Connection: - keep-alive Content-Length: - - '2187' + - '1858' Content-Type: - application/json ParameterSetName: @@ -514,70 +512,68 @@ interactions: --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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 \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-9of2rnrw.hcp.westus2.azmk8s.io\",\n + \ \"fqdnSubdomain\": \"cliakstest000004\",\n \"azurePortalFQDN\": \"27f796feefd4104329964da4e6af9b11-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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"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/d2300ad0-27e3-4f62-a1f4-84759164ff0c?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f2fa3392-7294-4d66-992e-4b50a9e7ddc6?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4309' + - '3980' content-type: - application/json date: - - Fri, 16 Jun 2023 16:05:12 GMT + - Thu, 29 Jun 2023 11:43:41 GMT expires: - '-1' pragma: @@ -609,23 +605,273 @@ interactions: --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f2fa3392-7294-4d66-992e-4b50a9e7ddc6?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"9233faf2-9472-664d-992e-4b50a9e7ddc6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:43:41.770936Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:43: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 --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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f2fa3392-7294-4d66-992e-4b50a9e7ddc6?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"9233faf2-9472-664d-992e-4b50a9e7ddc6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:43:41.770936Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:44: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 --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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f2fa3392-7294-4d66-992e-4b50a9e7ddc6?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"9233faf2-9472-664d-992e-4b50a9e7ddc6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:43:41.770936Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:44: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 --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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f2fa3392-7294-4d66-992e-4b50a9e7ddc6?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"9233faf2-9472-664d-992e-4b50a9e7ddc6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:43:41.770936Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:45: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 --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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f2fa3392-7294-4d66-992e-4b50a9e7ddc6?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"9233faf2-9472-664d-992e-4b50a9e7ddc6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:43:41.770936Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:45: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 --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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f2fa3392-7294-4d66-992e-4b50a9e7ddc6?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 }" + string: "{\n \"name\": \"9233faf2-9472-664d-992e-4b50a9e7ddc6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:43:41.770936Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Fri, 16 Jun 2023 16:05:12 GMT + - Thu, 29 Jun 2023 11:46:12 GMT expires: - '-1' pragma: @@ -659,23 +905,23 @@ interactions: --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f2fa3392-7294-4d66-992e-4b50a9e7ddc6?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 }" + string: "{\n \"name\": \"9233faf2-9472-664d-992e-4b50a9e7ddc6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:43:41.770936Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Fri, 16 Jun 2023 16:05:42 GMT + - Thu, 29 Jun 2023 11:46:42 GMT expires: - '-1' pragma: @@ -709,23 +955,23 @@ interactions: --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f2fa3392-7294-4d66-992e-4b50a9e7ddc6?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 }" + string: "{\n \"name\": \"9233faf2-9472-664d-992e-4b50a9e7ddc6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:43:41.770936Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Fri, 16 Jun 2023 16:06:13 GMT + - Thu, 29 Jun 2023 11:47:12 GMT expires: - '-1' pragma: @@ -759,23 +1005,371 @@ interactions: --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f2fa3392-7294-4d66-992e-4b50a9e7ddc6?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"9233faf2-9472-664d-992e-4b50a9e7ddc6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:43:41.770936Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11: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: + - '*/*' + 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f2fa3392-7294-4d66-992e-4b50a9e7ddc6?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"9233faf2-9472-664d-992e-4b50a9e7ddc6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:43:41.770936Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:48: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 --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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f2fa3392-7294-4d66-992e-4b50a9e7ddc6?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"9233faf2-9472-664d-992e-4b50a9e7ddc6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:43:41.770936Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:48: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 --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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f2fa3392-7294-4d66-992e-4b50a9e7ddc6?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"9233faf2-9472-664d-992e-4b50a9e7ddc6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:43:41.770936Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:49: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 --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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f2fa3392-7294-4d66-992e-4b50a9e7ddc6?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"9233faf2-9472-664d-992e-4b50a9e7ddc6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:43:41.770936Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:49: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 --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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f2fa3392-7294-4d66-992e-4b50a9e7ddc6?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"9233faf2-9472-664d-992e-4b50a9e7ddc6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:43:41.770936Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:50: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 --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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f2fa3392-7294-4d66-992e-4b50a9e7ddc6?api-version=2016-03-30 + response: + body: + string: '{"error":{"code":"BadGatewayConnection","message":"The network connectivity + issue encountered for ''Microsoft.ContainerService''; cannot fulfill the request."}}' + headers: + cache-control: + - no-cache + connection: + - close + content-length: + - '158' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 29 Jun 2023 11:51:03 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - service + status: + code: 502 + message: Bad Gateway +- 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f2fa3392-7294-4d66-992e-4b50a9e7ddc6?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 }" + string: "{\n \"name\": \"9233faf2-9472-664d-992e-4b50a9e7ddc6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:43:41.770936Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Fri, 16 Jun 2023 16:06:43 GMT + - Thu, 29 Jun 2023 11:51:02 GMT expires: - '-1' pragma: @@ -809,23 +1403,23 @@ interactions: --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f2fa3392-7294-4d66-992e-4b50a9e7ddc6?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 }" + string: "{\n \"name\": \"9233faf2-9472-664d-992e-4b50a9e7ddc6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:43:41.770936Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Fri, 16 Jun 2023 16:07:13 GMT + - Thu, 29 Jun 2023 11:51:32 GMT expires: - '-1' pragma: @@ -859,23 +1453,23 @@ interactions: --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f2fa3392-7294-4d66-992e-4b50a9e7ddc6?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 }" + string: "{\n \"name\": \"9233faf2-9472-664d-992e-4b50a9e7ddc6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:43:41.770936Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Fri, 16 Jun 2023 16:07:43 GMT + - Thu, 29 Jun 2023 11:52:03 GMT expires: - '-1' pragma: @@ -909,23 +1503,23 @@ interactions: --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f2fa3392-7294-4d66-992e-4b50a9e7ddc6?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 }" + string: "{\n \"name\": \"9233faf2-9472-664d-992e-4b50a9e7ddc6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:43:41.770936Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Fri, 16 Jun 2023 16:08:20 GMT + - Thu, 29 Jun 2023 11:52:33 GMT expires: - '-1' pragma: @@ -959,23 +1553,23 @@ interactions: --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f2fa3392-7294-4d66-992e-4b50a9e7ddc6?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 }" + string: "{\n \"name\": \"9233faf2-9472-664d-992e-4b50a9e7ddc6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:43:41.770936Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Fri, 16 Jun 2023 16:08:50 GMT + - Thu, 29 Jun 2023 11:53:03 GMT expires: - '-1' pragma: @@ -1009,23 +1603,23 @@ interactions: --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f2fa3392-7294-4d66-992e-4b50a9e7ddc6?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 }" + string: "{\n \"name\": \"9233faf2-9472-664d-992e-4b50a9e7ddc6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:43:41.770936Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Fri, 16 Jun 2023 16:09:20 GMT + - Thu, 29 Jun 2023 11:53:33 GMT expires: - '-1' pragma: @@ -1059,23 +1653,23 @@ interactions: --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f2fa3392-7294-4d66-992e-4b50a9e7ddc6?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 }" + string: "{\n \"name\": \"9233faf2-9472-664d-992e-4b50a9e7ddc6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:43:41.770936Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Fri, 16 Jun 2023 16:09:50 GMT + - Thu, 29 Jun 2023 11:54:03 GMT expires: - '-1' pragma: @@ -1109,23 +1703,23 @@ interactions: --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f2fa3392-7294-4d66-992e-4b50a9e7ddc6?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 }" + string: "{\n \"name\": \"9233faf2-9472-664d-992e-4b50a9e7ddc6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:43:41.770936Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Fri, 16 Jun 2023 16:10:21 GMT + - Thu, 29 Jun 2023 11:54:33 GMT expires: - '-1' pragma: @@ -1159,23 +1753,23 @@ interactions: --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f2fa3392-7294-4d66-992e-4b50a9e7ddc6?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 }" + string: "{\n \"name\": \"9233faf2-9472-664d-992e-4b50a9e7ddc6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:43:41.770936Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Fri, 16 Jun 2023 16:10:51 GMT + - Thu, 29 Jun 2023 11:55:04 GMT expires: - '-1' pragma: @@ -1209,23 +1803,23 @@ interactions: --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f2fa3392-7294-4d66-992e-4b50a9e7ddc6?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 }" + string: "{\n \"name\": \"9233faf2-9472-664d-992e-4b50a9e7ddc6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:43:41.770936Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Fri, 16 Jun 2023 16:11:21 GMT + - Thu, 29 Jun 2023 11:55:34 GMT expires: - '-1' pragma: @@ -1259,24 +1853,24 @@ interactions: --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f2fa3392-7294-4d66-992e-4b50a9e7ddc6?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"9233faf2-9472-664d-992e-4b50a9e7ddc6\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:43:41.770936Z\",\n \"endTime\": + \"2023-06-29T11:55:52.7221855Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '169' content-type: - application/json date: - - Fri, 16 Jun 2023 16:11:51 GMT + - Thu, 29 Jun 2023 11:56:04 GMT expires: - '-1' pragma: @@ -1310,74 +1904,70 @@ interactions: --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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 \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-9of2rnrw.hcp.westus2.azmk8s.io\",\n + \ \"fqdnSubdomain\": \"cliakstest000004\",\n \"azurePortalFQDN\": \"27f796feefd4104329964da4e6af9b11-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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/c9b91484-50d8-4209-b26f-39d59e979a48\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.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: - - '5215' + - '4886' content-type: - application/json date: - - Fri, 16 Jun 2023 16:11:52 GMT + - Thu, 29 Jun 2023 11:56:04 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 index 5b7221a0487..1b446d9c26e 100644 --- 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 Jun 2023 16:11:57 GMT + - Thu, 29 Jun 2023 11:42:40 GMT expires: - '-1' pragma: @@ -60,12 +60,12 @@ interactions: - --resource-group --name --nodepool-name --generate-ssh-keys --vm-set-type --node-count -o User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1039-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_run_command","date":"2023-06-16T16:11:55Z","module":"acs"},"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-29T11:42:39Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -74,7 +74,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 Jun 2023 16:11:57 GMT + - Thu, 29 Jun 2023 11:42:40 GMT expires: - '-1' pragma: @@ -90,18 +90,18 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cmdtestyc2-clitestvbdcyimze-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cmdtest6uw-clitestnkuqk3eao-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": "c000003"}], "linuxProfile": {"adminUsername": - "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": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvqZgpUon4sp6urK+P7vD2Fj/JQOvgDRIZ+Ra2mI7FQ2JoOPwMOmRI1v0qUX9W9d6JghSeGhLMXASYFUKSY60zefmF49Ha35P2mrJPa86e/ZpWluIn+NiZRpiO3EdEqIl5+7iAvp5aWJoSDGm+ZmwQsafOMwhx+4EV6/gbjAnpimkblwTSQm8YJVfyBEpDsL1R6ySdWVv3GwD+VVZkF0rO9KYwq0gnWiXWxGRVLj/Mh4PmzUBSEdOR3K5PossfqMtRcGJMfV0Eukrez7F+lJTaLqOVMpyFTB5aCOf7b92oMzPvH6zgsfSblbWdwywAxNBtbSxc4N7iL0weVyw1FPLV"}]}}, + "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,70 +112,67 @@ interactions: Connection: - keep-alive Content-Length: - - '1584' + - '1386' Content-Type: - application/json ParameterSetName: - --resource-group --name --nodepool-name --generate-ssh-keys --vm-set-type --node-count -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/cmdtest000002?api-version=2023-05-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.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 }" + 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\": + \"cmdtest6uw-clitestnkuqk3eao-79a739\",\n \"fqdn\": \"cmdtest6uw-clitestnkuqk3eao-79a739-7aeb0p2z.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cmdtest6uw-clitestnkuqk3eao-79a739-7aeb0p2z.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvqZgpUon4sp6urK+P7vD2Fj/JQOvgDRIZ+Ra2mI7FQ2JoOPwMOmRI1v0qUX9W9d6JghSeGhLMXASYFUKSY60zefmF49Ha35P2mrJPa86e/ZpWluIn+NiZRpiO3EdEqIl5+7iAvp5aWJoSDGm+ZmwQsafOMwhx+4EV6/gbjAnpimkblwTSQm8YJVfyBEpDsL1R6ySdWVv3GwD+VVZkF0rO9KYwq0gnWiXWxGRVLj/Mh4PmzUBSEdOR3K5PossfqMtRcGJMfV0Eukrez7F+lJTaLqOVMpyFTB5aCOf7b92oMzPvH6zgsfSblbWdwywAxNBtbSxc4N7iL0weVyw1FPLV\"\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/6f163a61-60bf-4351-9745-133af6a830af?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5d662d95-cf50-4ad4-96b0-07f882b93694?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3420' + - '3222' content-type: - application/json date: - - Fri, 16 Jun 2023 16:12:06 GMT + - Thu, 29 Jun 2023 11:42:47 GMT expires: - '-1' pragma: @@ -187,7 +184,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -206,14 +203,210 @@ interactions: - --resource-group --name --nodepool-name --generate-ssh-keys --vm-set-type --node-count -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5d662d95-cf50-4ad4-96b0-07f882b93694?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"952d665d-50cf-d44a-96b0-07f882b93694\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:42:46.7395386Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:42: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 --nodepool-name --generate-ssh-keys --vm-set-type + --node-count -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5d662d95-cf50-4ad4-96b0-07f882b93694?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"952d665d-50cf-d44a-96b0-07f882b93694\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:42:46.7395386Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11: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 create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --nodepool-name --generate-ssh-keys --vm-set-type + --node-count -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5d662d95-cf50-4ad4-96b0-07f882b93694?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"952d665d-50cf-d44a-96b0-07f882b93694\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:42:46.7395386Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:43: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 --nodepool-name --generate-ssh-keys --vm-set-type + --node-count -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5d662d95-cf50-4ad4-96b0-07f882b93694?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"952d665d-50cf-d44a-96b0-07f882b93694\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:42:46.7395386Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:44: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 --nodepool-name --generate-ssh-keys --vm-set-type + --node-count -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5d662d95-cf50-4ad4-96b0-07f882b93694?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"613a166f-bf60-5143-9745-133af6a830af\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T16:12:05.6087442Z\"\n }" + string: "{\n \"name\": \"952d665d-50cf-d44a-96b0-07f882b93694\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:42:46.7395386Z\"\n }" headers: cache-control: - no-cache @@ -222,7 +415,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 16:12:06 GMT + - Thu, 29 Jun 2023 11:44:47 GMT expires: - '-1' pragma: @@ -255,14 +448,14 @@ interactions: - --resource-group --name --nodepool-name --generate-ssh-keys --vm-set-type --node-count -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5d662d95-cf50-4ad4-96b0-07f882b93694?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"613a166f-bf60-5143-9745-133af6a830af\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T16:12:05.6087442Z\"\n }" + string: "{\n \"name\": \"952d665d-50cf-d44a-96b0-07f882b93694\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:42:46.7395386Z\"\n }" headers: cache-control: - no-cache @@ -271,7 +464,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 16:12:36 GMT + - Thu, 29 Jun 2023 11:45:17 GMT expires: - '-1' pragma: @@ -304,14 +497,14 @@ interactions: - --resource-group --name --nodepool-name --generate-ssh-keys --vm-set-type --node-count -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5d662d95-cf50-4ad4-96b0-07f882b93694?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"613a166f-bf60-5143-9745-133af6a830af\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T16:12:05.6087442Z\"\n }" + string: "{\n \"name\": \"952d665d-50cf-d44a-96b0-07f882b93694\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:42:46.7395386Z\"\n }" headers: cache-control: - no-cache @@ -320,7 +513,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 16:13:06 GMT + - Thu, 29 Jun 2023 11:45:47 GMT expires: - '-1' pragma: @@ -353,14 +546,14 @@ interactions: - --resource-group --name --nodepool-name --generate-ssh-keys --vm-set-type --node-count -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5d662d95-cf50-4ad4-96b0-07f882b93694?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"613a166f-bf60-5143-9745-133af6a830af\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T16:12:05.6087442Z\"\n }" + string: "{\n \"name\": \"952d665d-50cf-d44a-96b0-07f882b93694\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:42:46.7395386Z\"\n }" headers: cache-control: - no-cache @@ -369,7 +562,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 16:13:36 GMT + - Thu, 29 Jun 2023 11:46:17 GMT expires: - '-1' pragma: @@ -402,14 +595,14 @@ interactions: - --resource-group --name --nodepool-name --generate-ssh-keys --vm-set-type --node-count -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5d662d95-cf50-4ad4-96b0-07f882b93694?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"613a166f-bf60-5143-9745-133af6a830af\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T16:12:05.6087442Z\"\n }" + string: "{\n \"name\": \"952d665d-50cf-d44a-96b0-07f882b93694\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:42:46.7395386Z\"\n }" headers: cache-control: - no-cache @@ -418,7 +611,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 16:14:06 GMT + - Thu, 29 Jun 2023 11:46:48 GMT expires: - '-1' pragma: @@ -451,14 +644,14 @@ interactions: - --resource-group --name --nodepool-name --generate-ssh-keys --vm-set-type --node-count -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5d662d95-cf50-4ad4-96b0-07f882b93694?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"613a166f-bf60-5143-9745-133af6a830af\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T16:12:05.6087442Z\"\n }" + string: "{\n \"name\": \"952d665d-50cf-d44a-96b0-07f882b93694\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:42:46.7395386Z\"\n }" headers: cache-control: - no-cache @@ -467,7 +660,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 16:14:36 GMT + - Thu, 29 Jun 2023 11:47:18 GMT expires: - '-1' pragma: @@ -500,15 +693,15 @@ interactions: - --resource-group --name --nodepool-name --generate-ssh-keys --vm-set-type --node-count -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5d662d95-cf50-4ad4-96b0-07f882b93694?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"952d665d-50cf-d44a-96b0-07f882b93694\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:42:46.7395386Z\",\n \"endTime\": + \"2023-06-29T11:47:38.7358195Z\"\n }" headers: cache-control: - no-cache @@ -517,7 +710,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 16:17:31 GMT + - Thu, 29 Jun 2023 11:47:48 GMT expires: - '-1' pragma: @@ -550,66 +743,62 @@ interactions: - --resource-group --name --nodepool-name --generate-ssh-keys --vm-set-type --node-count -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-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.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 }" + 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\": + \"cmdtest6uw-clitestnkuqk3eao-79a739\",\n \"fqdn\": \"cmdtest6uw-clitestnkuqk3eao-79a739-7aeb0p2z.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cmdtest6uw-clitestnkuqk3eao-79a739-7aeb0p2z.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvqZgpUon4sp6urK+P7vD2Fj/JQOvgDRIZ+Ra2mI7FQ2JoOPwMOmRI1v0qUX9W9d6JghSeGhLMXASYFUKSY60zefmF49Ha35P2mrJPa86e/ZpWluIn+NiZRpiO3EdEqIl5+7iAvp5aWJoSDGm+ZmwQsafOMwhx+4EV6/gbjAnpimkblwTSQm8YJVfyBEpDsL1R6ySdWVv3GwD+VVZkF0rO9KYwq0gnWiXWxGRVLj/Mh4PmzUBSEdOR3K5PossfqMtRcGJMfV0Eukrez7F+lJTaLqOVMpyFTB5aCOf7b92oMzPvH6zgsfSblbWdwywAxNBtbSxc4N7iL0weVyw1FPLV\"\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/1dce4211-17bf-4178-96bc-e1f4967172b2\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\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: - - '4064' + - '3866' content-type: - application/json date: - - Fri, 16 Jun 2023 16:17:32 GMT + - Thu, 29 Jun 2023 11:47:49 GMT expires: - '-1' pragma: @@ -641,66 +830,62 @@ interactions: ParameterSetName: - -g -n -o -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-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.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 }" + 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\": + \"cmdtest6uw-clitestnkuqk3eao-79a739\",\n \"fqdn\": \"cmdtest6uw-clitestnkuqk3eao-79a739-7aeb0p2z.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cmdtest6uw-clitestnkuqk3eao-79a739-7aeb0p2z.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvqZgpUon4sp6urK+P7vD2Fj/JQOvgDRIZ+Ra2mI7FQ2JoOPwMOmRI1v0qUX9W9d6JghSeGhLMXASYFUKSY60zefmF49Ha35P2mrJPa86e/ZpWluIn+NiZRpiO3EdEqIl5+7iAvp5aWJoSDGm+ZmwQsafOMwhx+4EV6/gbjAnpimkblwTSQm8YJVfyBEpDsL1R6ySdWVv3GwD+VVZkF0rO9KYwq0gnWiXWxGRVLj/Mh4PmzUBSEdOR3K5PossfqMtRcGJMfV0Eukrez7F+lJTaLqOVMpyFTB5aCOf7b92oMzPvH6zgsfSblbWdwywAxNBtbSxc4N7iL0weVyw1FPLV\"\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/1dce4211-17bf-4178-96bc-e1f4967172b2\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\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: - - '4064' + - '3866' content-type: - application/json date: - - Fri, 16 Jun 2023 16:17:34 GMT + - Thu, 29 Jun 2023 11:47:50 GMT expires: - '-1' pragma: @@ -736,8 +921,8 @@ interactions: ParameterSetName: - -g -n -o -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/cmdtest000002/runCommand?api-version=2023-05-01 response: @@ -749,11 +934,11 @@ interactions: content-length: - '0' date: - - Fri, 16 Jun 2023 16:17:35 GMT + - Thu, 29 Jun 2023 11:47:51 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclusters/cmdtest000002/commandResults/a366ff400a51466199123f687a2d6313?api-version=2023-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclusters/cmdtest000002/commandResults/300ac3fddbb444308fa05d36a3002ef3?api-version=2023-05-01 pragma: - no-cache server: @@ -781,14 +966,14 @@ interactions: ParameterSetName: - -g -n -o -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/a366ff400a51466199123f687a2d6313?api-version=2023-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclusters/cmdtest000002/commandResults/300ac3fddbb444308fa05d36a3002ef3?api-version=2023-05-01 response: body: - string: "{\n \"id\": \"a366ff400a51466199123f687a2d6313\",\n \"properties\"\ - : {\n \"provisioningState\": \"Running\"\n }\n }" + string: "{\n \"id\": \"300ac3fddbb444308fa05d36a3002ef3\",\n \"properties\": + {\n \"provisioningState\": \"Running\"\n }\n }" headers: cache-control: - no-cache @@ -797,11 +982,11 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 16:17:36 GMT + - Thu, 29 Jun 2023 11:47:51 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclusters/cmdtest000002/commandResults/a366ff400a51466199123f687a2d6313?api-version=2023-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclusters/cmdtest000002/commandResults/300ac3fddbb444308fa05d36a3002ef3?api-version=2023-05-01 pragma: - no-cache server: @@ -827,40 +1012,40 @@ interactions: ParameterSetName: - -g -n -o -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/a366ff400a51466199123f687a2d6313?api-version=2023-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclusters/cmdtest000002/commandResults/300ac3fddbb444308fa05d36a3002ef3?api-version=2023-05-01 response: body: - 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 }" + string: "{\n \"id\": \"300ac3fddbb444308fa05d36a3002ef3\",\n \"properties\": + {\n \"provisioningState\": \"Succeeded\",\n \"exitCode\": 0,\n \"startedAt\": + \"2023-06-29T11:47:54Z\",\n \"finishedAt\": \"2023-06-29T11:47:55Z\",\n + \ \"logs\": \"NAMESPACE NAME READY + \ STATUS RESTARTS AGE\\naks-command command-300ac3fddbb444308fa05d36a3002ef3 + \ 1/1 Running 0 4s\\nkube-system azure-ip-masq-agent-6fbdh + \ 1/1 Running 0 2m59s\\nkube-system cloud-node-manager-vzltl + \ 1/1 Running 0 2m59s\\nkube-system coredns-autoscaler-69b7556b86-cj4zt + \ 1/1 Running 0 3m24s\\nkube-system coredns-fb6b9d95f-m8jj6 + \ 1/1 Running 0 3m24s\\nkube-system coredns-fb6b9d95f-srtcb + \ 1/1 Running 0 106s\\nkube-system csi-azuredisk-node-t5qwp + \ 3/3 Running 0 2m59s\\nkube-system csi-azurefile-node-fpth5 + \ 3/3 Running 0 2m59s\\nkube-system konnectivity-agent-6fbdcc6d99-6hnbb + \ 1/1 Running 0 3m23s\\nkube-system konnectivity-agent-6fbdcc6d99-vckm8 + \ 1/1 Running 0 3m23s\\nkube-system kube-proxy-pm268 + \ 1/1 Running 0 2m59s\\nkube-system + \ metrics-server-67db6db9b5-glsdk 2/2 Running 0 101s\\nkube-system + \ metrics-server-67db6db9b5-t562h 2/2 Running 0 101s\\n\"\n + \ }\n }" headers: cache-control: - no-cache content-length: - - '1517' + - '1514' content-type: - application/json date: - - Fri, 16 Jun 2023 16:17:41 GMT + - Thu, 29 Jun 2023 11:47:56 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 9cd9cadf7fc..1ae63dfc2df 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 17 Jun 2023 16:07:29 GMT + - Thu, 29 Jun 2023 11:37:36 GMT expires: - '-1' pragma: @@ -58,12 +58,12 @@ interactions: ParameterSetName: - --resource-group --name --generate-ssh-keys User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1039-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_stop_and_start","date":"2023-06-17T16:07:27Z","module":"acs"},"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-29T11:37:36Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -72,7 +72,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 17 Jun 2023 16:07:29 GMT + - Thu, 29 Jun 2023 11:37:37 GMT expires: - '-1' pragma: @@ -88,18 +88,18 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestppruyplz5-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestpbo7l4i6t-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 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": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvqZgpUon4sp6urK+P7vD2Fj/JQOvgDRIZ+Ra2mI7FQ2JoOPwMOmRI1v0qUX9W9d6JghSeGhLMXASYFUKSY60zefmF49Ha35P2mrJPa86e/ZpWluIn+NiZRpiO3EdEqIl5+7iAvp5aWJoSDGm+ZmwQsafOMwhx+4EV6/gbjAnpimkblwTSQm8YJVfyBEpDsL1R6ySdWVv3GwD+VVZkF0rO9KYwq0gnWiXWxGRVLj/Mh4PmzUBSEdOR3K5PossfqMtRcGJMfV0Eukrez7F+lJTaLqOVMpyFTB5aCOf7b92oMzPvH6zgsfSblbWdwywAxNBtbSxc4N7iL0weVyw1FPLV"}]}}, + "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 @@ -110,69 +110,66 @@ interactions: Connection: - keep-alive Content-Length: - - '1586' + - '1388' Content-Type: - application/json ParameterSetName: - --resource-group --name --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestpbo7l4i6t-79a739\",\n \"fqdn\": \"cliakstest-clitestpbo7l4i6t-79a739-g1xg8e11.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestpbo7l4i6t-79a739-g1xg8e11.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvqZgpUon4sp6urK+P7vD2Fj/JQOvgDRIZ+Ra2mI7FQ2JoOPwMOmRI1v0qUX9W9d6JghSeGhLMXASYFUKSY60zefmF49Ha35P2mrJPa86e/ZpWluIn+NiZRpiO3EdEqIl5+7iAvp5aWJoSDGm+ZmwQsafOMwhx+4EV6/gbjAnpimkblwTSQm8YJVfyBEpDsL1R6ySdWVv3GwD+VVZkF0rO9KYwq0gnWiXWxGRVLj/Mh4PmzUBSEdOR3K5PossfqMtRcGJMfV0Eukrez7F+lJTaLqOVMpyFTB5aCOf7b92oMzPvH6zgsfSblbWdwywAxNBtbSxc4N7iL0weVyw1FPLV\"\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/1d087091-d423-4e85-9442-d5f5d37fc6e5?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e66090b-d65a-4fe0-8b85-adb2ec60bd7a?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3431' + - '3233' content-type: - application/json date: - - Sat, 17 Jun 2023 16:07:36 GMT + - Thu, 29 Jun 2023 11:37:42 GMT expires: - '-1' pragma: @@ -184,7 +181,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -202,23 +199,23 @@ interactions: ParameterSetName: - --resource-group --name --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e66090b-d65a-4fe0-8b85-adb2ec60bd7a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9170081d-23d4-854e-9442-d5f5d37fc6e5\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-17T16:07:36.5819684Z\"\n }" + string: "{\n \"name\": \"0b09660e-5ad6-e04f-8b85-adb2ec60bd7a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:37:42.613603Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Sat, 17 Jun 2023 16:07:36 GMT + - Thu, 29 Jun 2023 11:37:43 GMT expires: - '-1' pragma: @@ -250,23 +247,23 @@ interactions: ParameterSetName: - --resource-group --name --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e66090b-d65a-4fe0-8b85-adb2ec60bd7a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9170081d-23d4-854e-9442-d5f5d37fc6e5\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-17T16:07:36.5819684Z\"\n }" + string: "{\n \"name\": \"0b09660e-5ad6-e04f-8b85-adb2ec60bd7a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:37:42.613603Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Sat, 17 Jun 2023 16:08:07 GMT + - Thu, 29 Jun 2023 11:38:13 GMT expires: - '-1' pragma: @@ -298,23 +295,23 @@ interactions: ParameterSetName: - --resource-group --name --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e66090b-d65a-4fe0-8b85-adb2ec60bd7a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9170081d-23d4-854e-9442-d5f5d37fc6e5\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-17T16:07:36.5819684Z\"\n }" + string: "{\n \"name\": \"0b09660e-5ad6-e04f-8b85-adb2ec60bd7a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:37:42.613603Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Sat, 17 Jun 2023 16:08:37 GMT + - Thu, 29 Jun 2023 11:38:43 GMT expires: - '-1' pragma: @@ -346,23 +343,23 @@ interactions: ParameterSetName: - --resource-group --name --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e66090b-d65a-4fe0-8b85-adb2ec60bd7a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9170081d-23d4-854e-9442-d5f5d37fc6e5\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-17T16:07:36.5819684Z\"\n }" + string: "{\n \"name\": \"0b09660e-5ad6-e04f-8b85-adb2ec60bd7a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:37:42.613603Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Sat, 17 Jun 2023 16:09:07 GMT + - Thu, 29 Jun 2023 11:39:12 GMT expires: - '-1' pragma: @@ -394,23 +391,23 @@ interactions: ParameterSetName: - --resource-group --name --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e66090b-d65a-4fe0-8b85-adb2ec60bd7a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9170081d-23d4-854e-9442-d5f5d37fc6e5\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-17T16:07:36.5819684Z\"\n }" + string: "{\n \"name\": \"0b09660e-5ad6-e04f-8b85-adb2ec60bd7a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:37:42.613603Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Sat, 17 Jun 2023 16:09:37 GMT + - Thu, 29 Jun 2023 11:39:43 GMT expires: - '-1' pragma: @@ -442,24 +439,23 @@ interactions: ParameterSetName: - --resource-group --name --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e66090b-d65a-4fe0-8b85-adb2ec60bd7a?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"0b09660e-5ad6-e04f-8b85-adb2ec60bd7a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:37:42.613603Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '125' content-type: - application/json date: - - Sat, 17 Jun 2023 17:07:23 GMT + - Thu, 29 Jun 2023 11:40:13 GMT expires: - '-1' pragma: @@ -491,69 +487,23 @@ interactions: ParameterSetName: - --resource-group --name --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e66090b-d65a-4fe0-8b85-adb2ec60bd7a?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.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\ - \ }" + string: "{\n \"name\": \"0b09660e-5ad6-e04f-8b85-adb2ec60bd7a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:37:42.613603Z\"\n }" headers: cache-control: - no-cache content-length: - - '4416' + - '125' content-type: - application/json date: - - Sat, 17 Jun 2023 17:07:24 GMT + - Thu, 29 Jun 2023 11:40:43 GMT expires: - '-1' pragma: @@ -575,51 +525,98 @@ interactions: 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.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e66090b-d65a-4fe0-8b85-adb2ec60bd7a?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"0b09660e-5ad6-e04f-8b85-adb2ec60bd7a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:37:42.613603Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: - application/json + date: + - Thu, 29 Jun 2023 11:41: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 stop + - aks create Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - --resource-group --name + - --resource-group --name --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: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/stop?api-version=2023-05-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e66090b-d65a-4fe0-8b85-adb2ec60bd7a?api-version=2016-03-30 response: body: - string: '' + string: "{\n \"name\": \"0b09660e-5ad6-e04f-8b85-adb2ec60bd7a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:37:42.613603Z\"\n }" headers: - azure-asyncoperation: - - 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' + - '125' + content-type: + - application/json date: - - Sat, 17 Jun 2023 17:07:26 GMT + - Thu, 29 Jun 2023 11:41:43 GMT expires: - '-1' - location: - - 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: - 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: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -628,29 +625,29 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks stop + - aks create Connection: - keep-alive ParameterSetName: - - --resource-group --name + - --resource-group --name --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e66090b-d65a-4fe0-8b85-adb2ec60bd7a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"13974364-e30d-0c44-b2ee-86e82a8aa3c7\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-17T17:07:26.6534341Z\"\n }" + string: "{\n \"name\": \"0b09660e-5ad6-e04f-8b85-adb2ec60bd7a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:37:42.613603Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Sat, 17 Jun 2023 17:07:26 GMT + - Thu, 29 Jun 2023 11:42:14 GMT expires: - '-1' pragma: @@ -676,30 +673,29 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks stop + - aks create Connection: - keep-alive ParameterSetName: - - --resource-group --name + - --resource-group --name --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e66090b-d65a-4fe0-8b85-adb2ec60bd7a?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"0b09660e-5ad6-e04f-8b85-adb2ec60bd7a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:37:42.613603Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '125' content-type: - application/json date: - - Sat, 17 Jun 2023 18:06:54 GMT + - Thu, 29 Jun 2023 11:42:44 GMT expires: - '-1' pragma: @@ -725,41 +721,134 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks stop + - aks create Connection: - keep-alive ParameterSetName: - - --resource-group --name + - --resource-group --name --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e66090b-d65a-4fe0-8b85-adb2ec60bd7a?api-version=2016-03-30 response: body: - string: '' + string: "{\n \"name\": \"0b09660e-5ad6-e04f-8b85-adb2ec60bd7a\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:37:42.613603Z\",\n \"endTime\": + \"2023-06-29T11:43:10.330587Z\"\n }" headers: cache-control: - no-cache + content-length: + - '168' content-type: - application/json date: - - Sat, 17 Jun 2023 18:06:54 GMT + - Thu, 29 Jun 2023 11:43:14 GMT expires: - '-1' - location: - - 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: - nginx strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff status: - code: 204 - message: No Content + 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.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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-clitestpbo7l4i6t-79a739\",\n \"fqdn\": \"cliakstest-clitestpbo7l4i6t-79a739-g1xg8e11.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestpbo7l4i6t-79a739-g1xg8e11.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvqZgpUon4sp6urK+P7vD2Fj/JQOvgDRIZ+Ra2mI7FQ2JoOPwMOmRI1v0qUX9W9d6JghSeGhLMXASYFUKSY60zefmF49Ha35P2mrJPa86e/ZpWluIn+NiZRpiO3EdEqIl5+7iAvp5aWJoSDGm+ZmwQsafOMwhx+4EV6/gbjAnpimkblwTSQm8YJVfyBEpDsL1R6ySdWVv3GwD+VVZkF0rO9KYwq0gnWiXWxGRVLj/Mh4PmzUBSEdOR3K5PossfqMtRcGJMfV0Eukrez7F+lJTaLqOVMpyFTB5aCOf7b92oMzPvH6zgsfSblbWdwywAxNBtbSxc4N7iL0weVyw1FPLV\"\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/e5a9c2c7-5945-441a-b4a8-0f0298648fc3\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: + - '3886' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:43: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: @@ -768,7 +857,7 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks start + - aks stop Connection: - keep-alive Content-Length: @@ -776,26 +865,26 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/start?api-version=2023-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/stop?api-version=2023-05-01 response: body: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/72e66432-9987-418a-ac89-fa4eb51446f0?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Sat, 17 Jun 2023 18:06:55 GMT + - Thu, 29 Jun 2023 11:43:16 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/72e66432-9987-418a-ac89-fa4eb51446f0?api-version=2016-03-30 pragma: - no-cache server: @@ -817,24 +906,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks start + - aks stop 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/72e66432-9987-418a-ac89-fa4eb51446f0?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"3264e672-8799-8a41-ac89-fa4eb51446f0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:43:16.3176965Z\",\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 @@ -843,7 +932,7 @@ interactions: content-type: - application/json date: - - Sat, 17 Jun 2023 18:06:55 GMT + - Thu, 29 Jun 2023 11:43:16 GMT expires: - '-1' pragma: @@ -869,25 +958,128 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks start + - aks stop + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/72e66432-9987-418a-ac89-fa4eb51446f0?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"3264e672-8799-8a41-ac89-fa4eb51446f0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:43:16.3176965Z\",\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: + - '374' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:43: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 stop + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/72e66432-9987-418a-ac89-fa4eb51446f0?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"3264e672-8799-8a41-ac89-fa4eb51446f0\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:43:16.3176965Z\",\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: + - '374' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:44: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 stop 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/72e66432-9987-418a-ac89-fa4eb51446f0?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"3264e672-8799-8a41-ac89-fa4eb51446f0\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:43:16.3176965Z\",\n \"endTime\": + \"2023-06-29T11:44:38.9689052Z\",\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 @@ -896,7 +1088,724 @@ interactions: content-type: - application/json date: - - Sat, 17 Jun 2023 19:44:16 GMT + - Thu, 29 Jun 2023 11:44: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 stop + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/72e66432-9987-418a-ac89-fa4eb51446f0?api-version=2016-03-30 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:44:46 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/72e66432-9987-418a-ac89-fa4eb51446f0?api-version=2016-03-30 + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks start + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --resource-group --name + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/start?api-version=2023-05-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c177a843-28ad-42e7-bd3b-758f63016a18?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 29 Jun 2023 11:44:47 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/c177a843-28ad-42e7-bd3b-758f63016a18?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-writes: + - '1199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks start + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c177a843-28ad-42e7-bd3b-758f63016a18?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"43a877c1-ad28-e742-bd3b-758f63016a18\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:44:48.1147994Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:44: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 start + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c177a843-28ad-42e7-bd3b-758f63016a18?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"43a877c1-ad28-e742-bd3b-758f63016a18\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:44:48.1147994Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:45: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 start + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c177a843-28ad-42e7-bd3b-758f63016a18?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"43a877c1-ad28-e742-bd3b-758f63016a18\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:44:48.1147994Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:45: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 start + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c177a843-28ad-42e7-bd3b-758f63016a18?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"43a877c1-ad28-e742-bd3b-758f63016a18\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:44:48.1147994Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:46: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 start + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c177a843-28ad-42e7-bd3b-758f63016a18?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"43a877c1-ad28-e742-bd3b-758f63016a18\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:44:48.1147994Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:46: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 start + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c177a843-28ad-42e7-bd3b-758f63016a18?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"43a877c1-ad28-e742-bd3b-758f63016a18\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:44:48.1147994Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:47: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 start + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c177a843-28ad-42e7-bd3b-758f63016a18?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"43a877c1-ad28-e742-bd3b-758f63016a18\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:44:48.1147994Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:47: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 start + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c177a843-28ad-42e7-bd3b-758f63016a18?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"43a877c1-ad28-e742-bd3b-758f63016a18\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:44:48.1147994Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:48: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 start + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c177a843-28ad-42e7-bd3b-758f63016a18?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"43a877c1-ad28-e742-bd3b-758f63016a18\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:44:48.1147994Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:48: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 start + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c177a843-28ad-42e7-bd3b-758f63016a18?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"43a877c1-ad28-e742-bd3b-758f63016a18\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:44:48.1147994Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:49: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 start + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c177a843-28ad-42e7-bd3b-758f63016a18?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"43a877c1-ad28-e742-bd3b-758f63016a18\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:44:48.1147994Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:49: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 start + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c177a843-28ad-42e7-bd3b-758f63016a18?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"43a877c1-ad28-e742-bd3b-758f63016a18\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:44:48.1147994Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:50: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 start + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c177a843-28ad-42e7-bd3b-758f63016a18?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"43a877c1-ad28-e742-bd3b-758f63016a18\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:44:48.1147994Z\",\n \"endTime\": + \"2023-06-29T11:50:45.375291Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '169' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:50:49 GMT expires: - '-1' pragma: @@ -928,10 +1837,10 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/c177a843-28ad-42e7-bd3b-758f63016a18?api-version=2016-03-30 response: body: string: '' @@ -941,11 +1850,11 @@ interactions: content-type: - application/json date: - - Sat, 17 Jun 2023 19:44:16 GMT + - Thu, 29 Jun 2023 11:50:49 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/c177a843-28ad-42e7-bd3b-758f63016a18?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 57d5a307d1f..1fa96dac046 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,8 +13,8 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 29 Apr 2023 11:35:40 GMT + - Thu, 29 Jun 2023 11:51:34 GMT expires: - '-1' pragma: @@ -58,21 +58,21 @@ interactions: ParameterSetName: - --resource-group --name --service-principal --client-secret --ssh-key-value 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/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1039-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_update_labels","date":"2023-04-29T11:35:40Z"},"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-06-29T11:51:33Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '337' + - '352' content-type: - application/json; charset=utf-8 date: - - Sat, 29 Apr 2023 11:35:40 GMT + - Thu, 29 Jun 2023 11:51:35 GMT expires: - '-1' pragma: @@ -88,20 +88,19 @@ interactions: message: OK - request: body: '{"location": "westus2", "properties": {"kubernetesVersion": "", "dnsPrefix": - "cliakstest-clitestcfckpohck-79a739", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-cliteste2gg5uqac-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 AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT 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", - "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,14 +111,14 @@ interactions: Connection: - keep-alive Content-Length: - - '1523' + - '1486' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -129,8 +128,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-clitestcfckpohck-79a739\",\n \"fqdn\": \"cliakstest-clitestcfckpohck-79a739-8cisynif.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestcfckpohck-79a739-8cisynif.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-cliteste2gg5uqac-79a739\",\n \"fqdn\": \"cliakstest-cliteste2gg5uqac-79a739-2hbb10vn.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-cliteste2gg5uqac-79a739-2hbb10vn.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n @@ -140,37 +139,37 @@ interactions: \"1.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 + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT azcli_aks_live_test@example.com\\n\"\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\": + \ \"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 \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": + \"10.0.0.10\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": + {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": + {\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/ad6924fe-0d0f-4729-8d0b-b168a2d81e2d?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/026b65fd-a460-4883-950b-61b25879474a?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3145' + - '3106' content-type: - application/json date: - - Sat, 29 Apr 2023 11:35:44 GMT + - Thu, 29 Jun 2023 11:51:40 GMT expires: - '-1' pragma: @@ -200,14 +199,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/026b65fd-a460-4883-950b-61b25879474a?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 }" + string: "{\n \"name\": \"fd656b02-60a4-8348-950b-61b25879474a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:51:41.1937943Z\"\n }" headers: cache-control: - no-cache @@ -216,7 +215,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:35:44 GMT + - Thu, 29 Jun 2023 11:51:40 GMT expires: - '-1' pragma: @@ -248,14 +247,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/026b65fd-a460-4883-950b-61b25879474a?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 }" + string: "{\n \"name\": \"fd656b02-60a4-8348-950b-61b25879474a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:51:41.1937943Z\"\n }" headers: cache-control: - no-cache @@ -264,7 +263,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:36:14 GMT + - Thu, 29 Jun 2023 11:52:11 GMT expires: - '-1' pragma: @@ -296,14 +295,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/026b65fd-a460-4883-950b-61b25879474a?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 }" + string: "{\n \"name\": \"fd656b02-60a4-8348-950b-61b25879474a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:51:41.1937943Z\"\n }" headers: cache-control: - no-cache @@ -312,7 +311,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:36:44 GMT + - Thu, 29 Jun 2023 11:52:42 GMT expires: - '-1' pragma: @@ -344,14 +343,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/026b65fd-a460-4883-950b-61b25879474a?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 }" + string: "{\n \"name\": \"fd656b02-60a4-8348-950b-61b25879474a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:51:41.1937943Z\"\n }" headers: cache-control: - no-cache @@ -360,7 +359,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:37:14 GMT + - Thu, 29 Jun 2023 11:53:12 GMT expires: - '-1' pragma: @@ -392,14 +391,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/026b65fd-a460-4883-950b-61b25879474a?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 }" + string: "{\n \"name\": \"fd656b02-60a4-8348-950b-61b25879474a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:51:41.1937943Z\"\n }" headers: cache-control: - no-cache @@ -408,7 +407,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:37:44 GMT + - Thu, 29 Jun 2023 11:53:42 GMT expires: - '-1' pragma: @@ -440,14 +439,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/026b65fd-a460-4883-950b-61b25879474a?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 }" + string: "{\n \"name\": \"fd656b02-60a4-8348-950b-61b25879474a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:51:41.1937943Z\"\n }" headers: cache-control: - no-cache @@ -456,7 +455,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:38:14 GMT + - Thu, 29 Jun 2023 11:54:12 GMT expires: - '-1' pragma: @@ -488,14 +487,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/026b65fd-a460-4883-950b-61b25879474a?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 }" + string: "{\n \"name\": \"fd656b02-60a4-8348-950b-61b25879474a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:51:41.1937943Z\"\n }" headers: cache-control: - no-cache @@ -504,7 +503,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:38:44 GMT + - Thu, 29 Jun 2023 11:54:42 GMT expires: - '-1' pragma: @@ -536,14 +535,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/026b65fd-a460-4883-950b-61b25879474a?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 }" + string: "{\n \"name\": \"fd656b02-60a4-8348-950b-61b25879474a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:51:41.1937943Z\"\n }" headers: cache-control: - no-cache @@ -552,7 +551,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:39:14 GMT + - Thu, 29 Jun 2023 11:55:11 GMT expires: - '-1' pragma: @@ -584,14 +583,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/026b65fd-a460-4883-950b-61b25879474a?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 }" + string: "{\n \"name\": \"fd656b02-60a4-8348-950b-61b25879474a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:51:41.1937943Z\"\n }" headers: cache-control: - no-cache @@ -600,7 +599,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:39:44 GMT + - Thu, 29 Jun 2023 11:55:43 GMT expires: - '-1' pragma: @@ -632,159 +631,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/026b65fd-a460-4883-950b-61b25879474a?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: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\": - \"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 }" + string: "{\n \"name\": \"fd656b02-60a4-8348-950b-61b25879474a\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:51:41.1937943Z\",\n \"endTime\": + \"2023-06-29T11:56:03.8146526Z\"\n }" headers: cache-control: - no-cache @@ -793,7 +648,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:41:45 GMT + - Thu, 29 Jun 2023 11:56:12 GMT expires: - '-1' pragma: @@ -825,8 +680,8 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -836,8 +691,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-clitestcfckpohck-79a739\",\n \"fqdn\": \"cliakstest-clitestcfckpohck-79a739-8cisynif.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestcfckpohck-79a739-8cisynif.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-cliteste2gg5uqac-79a739\",\n \"fqdn\": \"cliakstest-cliteste2gg5uqac-79a739-2hbb10vn.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-cliteste2gg5uqac-79a739-2hbb10vn.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n @@ -847,37 +702,36 @@ interactions: \"1.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 + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT azcli_aks_live_test@example.com\\n\"\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\": + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\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 \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/8cdf4680-ad85-4280-b56b-cd117d7f95b5\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3409' + - '3370' content-type: - application/json date: - - Sat, 29 Apr 2023 11:41:46 GMT + - Thu, 29 Jun 2023 11:56:13 GMT expires: - '-1' pragma: @@ -909,8 +763,8 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -920,8 +774,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-clitestcfckpohck-79a739\",\n \"fqdn\": \"cliakstest-clitestcfckpohck-79a739-8cisynif.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestcfckpohck-79a739-8cisynif.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-cliteste2gg5uqac-79a739\",\n \"fqdn\": \"cliakstest-cliteste2gg5uqac-79a739-2hbb10vn.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-cliteste2gg5uqac-79a739-2hbb10vn.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n @@ -931,37 +785,36 @@ interactions: \"1.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 + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT azcli_aks_live_test@example.com\\n\"\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\": + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\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 \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/8cdf4680-ad85-4280-b56b-cd117d7f95b5\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3409' + - '3370' content-type: - application/json date: - - Sat, 29 Apr 2023 11:41:46 GMT + - Thu, 29 Jun 2023 11:56:13 GMT expires: - '-1' pragma: @@ -981,7 +834,7 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "properties": - {"kubernetesVersion": "1.25.6", "dnsPrefix": "cliakstest-clitestcfckpohck-79a739", + {"kubernetesVersion": "1.25.6", "dnsPrefix": "cliakstest-cliteste2gg5uqac-79a739", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", @@ -989,14 +842,13 @@ interactions: {"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 AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT 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/a4ecc658-c165-4bfc-89a4-daa665163278"}]}, + "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/8cdf4680-ad85-4280-b56b-cd117d7f95b5"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {}, "workloadAutoScalerProfile": {}}}' @@ -1010,14 +862,14 @@ interactions: Connection: - keep-alive Content-Length: - - '2143' + - '2106' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -1027,8 +879,8 @@ interactions: \"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-clitestcfckpohck-79a739\",\n \"fqdn\": \"cliakstest-clitestcfckpohck-79a739-8cisynif.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestcfckpohck-79a739-8cisynif.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-cliteste2gg5uqac-79a739\",\n \"fqdn\": \"cliakstest-cliteste2gg5uqac-79a739-2hbb10vn.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-cliteste2gg5uqac-79a739-2hbb10vn.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n @@ -1039,39 +891,38 @@ interactions: \ \"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-202304.10.0\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT azcli_aks_live_test@example.com\\n\"\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\": + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\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 \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/8cdf4680-ad85-4280-b56b-cd117d7f95b5\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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/1cb4a4c6-cea1-45cb-b0b5-54b8eef41c59?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/203d9d50-9c9c-4454-817d-dcc6cd273d42?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3487' + - '3448' content-type: - application/json date: - - Sat, 29 Apr 2023 11:41:50 GMT + - Thu, 29 Jun 2023 11:56:18 GMT expires: - '-1' pragma: @@ -1087,7 +938,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 200 message: OK @@ -1105,14 +956,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/203d9d50-9c9c-4454-817d-dcc6cd273d42?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c6a4b41c-a1ce-cb45-b0b5-54b8eef41c59\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-29T11:41:51.1412916Z\"\n }" + string: "{\n \"name\": \"509d3d20-9c9c-5444-817d-dcc6cd273d42\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:56:18.8822364Z\"\n }" headers: cache-control: - no-cache @@ -1121,7 +972,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:41:51 GMT + - Thu, 29 Jun 2023 11:56:18 GMT expires: - '-1' pragma: @@ -1153,14 +1004,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/203d9d50-9c9c-4454-817d-dcc6cd273d42?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c6a4b41c-a1ce-cb45-b0b5-54b8eef41c59\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-29T11:41:51.1412916Z\"\n }" + string: "{\n \"name\": \"509d3d20-9c9c-5444-817d-dcc6cd273d42\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:56:18.8822364Z\"\n }" headers: cache-control: - no-cache @@ -1169,7 +1020,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:42:21 GMT + - Thu, 29 Jun 2023 11:56:49 GMT expires: - '-1' pragma: @@ -1201,14 +1052,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/203d9d50-9c9c-4454-817d-dcc6cd273d42?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c6a4b41c-a1ce-cb45-b0b5-54b8eef41c59\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-29T11:41:51.1412916Z\"\n }" + string: "{\n \"name\": \"509d3d20-9c9c-5444-817d-dcc6cd273d42\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:56:18.8822364Z\"\n }" headers: cache-control: - no-cache @@ -1217,7 +1068,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:42:50 GMT + - Thu, 29 Jun 2023 11:57:19 GMT expires: - '-1' pragma: @@ -1249,15 +1100,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/203d9d50-9c9c-4454-817d-dcc6cd273d42?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 }" + string: "{\n \"name\": \"509d3d20-9c9c-5444-817d-dcc6cd273d42\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:56:18.8822364Z\",\n \"endTime\": + \"2023-06-29T11:57:39.5233454Z\"\n }" headers: cache-control: - no-cache @@ -1266,7 +1117,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:43:21 GMT + - Thu, 29 Jun 2023 11:57:49 GMT expires: - '-1' pragma: @@ -1298,8 +1149,8 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -1309,8 +1160,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-clitestcfckpohck-79a739\",\n \"fqdn\": \"cliakstest-clitestcfckpohck-79a739-8cisynif.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestcfckpohck-79a739-8cisynif.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-cliteste2gg5uqac-79a739\",\n \"fqdn\": \"cliakstest-cliteste2gg5uqac-79a739-2hbb10vn.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-cliteste2gg5uqac-79a739-2hbb10vn.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n @@ -1321,37 +1172,36 @@ interactions: \ \"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-202304.10.0\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT azcli_aks_live_test@example.com\\n\"\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\": + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\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 \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/8cdf4680-ad85-4280-b56b-cd117d7f95b5\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3489' + - '3450' content-type: - application/json date: - - Sat, 29 Apr 2023 11:43:21 GMT + - Thu, 29 Jun 2023 11:57:50 GMT expires: - '-1' pragma: @@ -1383,8 +1233,8 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -1394,8 +1244,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-clitestcfckpohck-79a739\",\n \"fqdn\": \"cliakstest-clitestcfckpohck-79a739-8cisynif.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestcfckpohck-79a739-8cisynif.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-cliteste2gg5uqac-79a739\",\n \"fqdn\": \"cliakstest-cliteste2gg5uqac-79a739-2hbb10vn.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-cliteste2gg5uqac-79a739-2hbb10vn.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n @@ -1406,37 +1256,36 @@ interactions: \ \"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-202304.10.0\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT azcli_aks_live_test@example.com\\n\"\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\": + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\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 \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/8cdf4680-ad85-4280-b56b-cd117d7f95b5\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3489' + - '3450' content-type: - application/json date: - - Sat, 29 Apr 2023 11:43:22 GMT + - Thu, 29 Jun 2023 11:57:51 GMT expires: - '-1' pragma: @@ -1456,7 +1305,7 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "properties": - {"kubernetesVersion": "1.25.6", "dnsPrefix": "cliakstest-clitestcfckpohck-79a739", + {"kubernetesVersion": "1.25.6", "dnsPrefix": "cliakstest-cliteste2gg5uqac-79a739", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", @@ -1464,14 +1313,13 @@ interactions: {"code": "Running"}, "enableNodePublicIP": false, "nodeLabels": {}, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT 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/a4ecc658-c165-4bfc-89a4-daa665163278"}]}, + "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/8cdf4680-ad85-4280-b56b-cd117d7f95b5"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {}, "workloadAutoScalerProfile": {}}}' @@ -1485,14 +1333,14 @@ interactions: Connection: - keep-alive Content-Length: - - '2105' + - '2068' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -1502,8 +1350,8 @@ interactions: \"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-clitestcfckpohck-79a739\",\n \"fqdn\": \"cliakstest-clitestcfckpohck-79a739-8cisynif.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestcfckpohck-79a739-8cisynif.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-cliteste2gg5uqac-79a739\",\n \"fqdn\": \"cliakstest-cliteste2gg5uqac-79a739-2hbb10vn.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-cliteste2gg5uqac-79a739-2hbb10vn.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n @@ -1513,39 +1361,38 @@ interactions: \"1.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 + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT azcli_aks_live_test@example.com\\n\"\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\": + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\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 \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/8cdf4680-ad85-4280-b56b-cd117d7f95b5\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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/f66409ff-8167-4829-8564-51d67b0c5927?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b9a63a24-897b-4a9d-a3df-1a5162752119?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3407' + - '3368' content-type: - application/json date: - - Sat, 29 Apr 2023 11:43:28 GMT + - Thu, 29 Jun 2023 11:57:55 GMT expires: - '-1' pragma: @@ -1561,7 +1408,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1199' status: code: 200 message: OK @@ -1579,14 +1426,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b9a63a24-897b-4a9d-a3df-1a5162752119?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 }" + string: "{\n \"name\": \"243aa6b9-7b89-9d4a-a3df-1a5162752119\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:57:56.4450207Z\"\n }" headers: cache-control: - no-cache @@ -1595,7 +1442,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:43:29 GMT + - Thu, 29 Jun 2023 11:57:55 GMT expires: - '-1' pragma: @@ -1627,14 +1474,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b9a63a24-897b-4a9d-a3df-1a5162752119?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 }" + string: "{\n \"name\": \"243aa6b9-7b89-9d4a-a3df-1a5162752119\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:57:56.4450207Z\"\n }" headers: cache-control: - no-cache @@ -1643,7 +1490,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:43:59 GMT + - Thu, 29 Jun 2023 11:58:26 GMT expires: - '-1' pragma: @@ -1675,14 +1522,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b9a63a24-897b-4a9d-a3df-1a5162752119?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 }" + string: "{\n \"name\": \"243aa6b9-7b89-9d4a-a3df-1a5162752119\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:57:56.4450207Z\"\n }" headers: cache-control: - no-cache @@ -1691,7 +1538,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:44:29 GMT + - Thu, 29 Jun 2023 11:58:56 GMT expires: - '-1' pragma: @@ -1723,24 +1570,24 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b9a63a24-897b-4a9d-a3df-1a5162752119?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"243aa6b9-7b89-9d4a-a3df-1a5162752119\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:57:56.4450207Z\",\n \"endTime\": + \"2023-06-29T11:59:16.088638Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '169' content-type: - application/json date: - - Sat, 29 Apr 2023 11:44:58 GMT + - Thu, 29 Jun 2023 11:59:26 GMT expires: - '-1' pragma: @@ -1772,8 +1619,8 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -1783,8 +1630,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-clitestcfckpohck-79a739\",\n \"fqdn\": \"cliakstest-clitestcfckpohck-79a739-8cisynif.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestcfckpohck-79a739-8cisynif.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-cliteste2gg5uqac-79a739\",\n \"fqdn\": \"cliakstest-cliteste2gg5uqac-79a739-2hbb10vn.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-cliteste2gg5uqac-79a739-2hbb10vn.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n @@ -1794,37 +1641,36 @@ interactions: \"1.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 + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT azcli_aks_live_test@example.com\\n\"\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\": + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\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 \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/8cdf4680-ad85-4280-b56b-cd117d7f95b5\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3409' + - '3370' content-type: - application/json date: - - Sat, 29 Apr 2023 11:44:59 GMT + - Thu, 29 Jun 2023 11:59:27 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 27258b9e58c..ffa3601d6a7 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 Jun 2023 18:18:53 GMT + - Thu, 29 Jun 2023 11:50:52 GMT expires: - '-1' pragma: @@ -58,21 +58,21 @@ interactions: ParameterSetName: - --resource-group --name --service-principal --client-secret --ssh-key-value User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1039-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":"westeurope","tags":{"product":"azurecli","cause":"automation","test":"test_aks_update_to_msi_cluster","date":"2023-06-16T18:18:45Z","module":"acs"},"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_to_msi_cluster","date":"2023-06-29T11:50:51Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '363' + - '360' content-type: - application/json; charset=utf-8 date: - - Fri, 16 Jun 2023 18:18:53 GMT + - Thu, 29 Jun 2023 11:50:52 GMT expires: - '-1' pragma: @@ -87,16 +87,16 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westeurope", "properties": {"kubernetesVersion": "", "dnsPrefix": - "cliakstest-clitestzc5eolkio-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + body: '{"location": "westus2", "properties": {"kubernetesVersion": "", "dnsPrefix": + "cliakstest-clitestmhs4zykak-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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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", + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": @@ -111,32 +111,65 @@ interactions: Connection: - keep-alive Content-Length: - - '1818' + - '1486' 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-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 }" + 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-clitestmhs4zykak-79a739\",\n \"fqdn\": \"cliakstest-clitestmhs4zykak-79a739-2zigrfvj.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestmhs4zykak-79a739-2zigrfvj.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"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/8b022e19-9042-4feb-ae1a-5e2de1cc8a57?api-version=2016-03-30 cache-control: - no-cache content-length: - - '313' + - '3106' content-type: - application/json date: - - Fri, 16 Jun 2023 18:18:59 GMT + - Thu, 29 Jun 2023 11:50:57 GMT expires: - '-1' pragma: @@ -150,125 +183,39 @@ interactions: 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-05-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: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 + code: 201 + message: Created - 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": {}}}' + body: null 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-05-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8b022e19-9042-4feb-ae1a-5e2de1cc8a57?api-version=2016-03-30 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 }" + string: "{\n \"name\": \"192e028b-4290-eb4f-ae1a-5e2de1cc8a57\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:50:58.1311402Z\"\n }" headers: cache-control: - no-cache content-length: - - '313' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 18:19:14 GMT + - Thu, 29 Jun 2023 11:50:58 GMT expires: - '-1' pragma: @@ -277,64 +224,46 @@ 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: - - '1197' status: - code: 404 - message: Not Found + code: 200 + message: OK - 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": {}}}' + body: null 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-05-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8b022e19-9042-4feb-ae1a-5e2de1cc8a57?api-version=2016-03-30 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 }" + string: "{\n \"name\": \"192e028b-4290-eb4f-ae1a-5e2de1cc8a57\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:50:58.1311402Z\"\n }" headers: cache-control: - no-cache content-length: - - '313' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 18:19:22 GMT + - Thu, 29 Jun 2023 11:51:28 GMT expires: - '-1' pragma: @@ -343,64 +272,46 @@ 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: - - '1196' status: - code: 404 - message: Not Found + code: 200 + message: OK - 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": {}}}' + body: null 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-05-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8b022e19-9042-4feb-ae1a-5e2de1cc8a57?api-version=2016-03-30 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 }" + string: "{\n \"name\": \"192e028b-4290-eb4f-ae1a-5e2de1cc8a57\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:50:58.1311402Z\"\n }" headers: cache-control: - no-cache content-length: - - '313' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 18:19:30 GMT + - Thu, 29 Jun 2023 11:51:59 GMT expires: - '-1' pragma: @@ -409,99 +320,46 @@ 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: 404 - message: Not Found + code: 200 + message: OK - 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": {}}}' + body: null 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-05-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8b022e19-9042-4feb-ae1a-5e2de1cc8a57?api-version=2016-03-30 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 }" + string: "{\n \"name\": \"192e028b-4290-eb4f-ae1a-5e2de1cc8a57\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:50:58.1311402Z\"\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' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 18:19:38 GMT + - Thu, 29 Jun 2023 11:52:29 GMT expires: - '-1' pragma: @@ -510,13 +368,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: - - '1194' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -531,14 +391,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8b022e19-9042-4feb-ae1a-5e2de1cc8a57?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f198fbc0-8bc1-a64d-8bcb-3e9597122dee\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T18:19:38.9301375Z\"\n }" + string: "{\n \"name\": \"192e028b-4290-eb4f-ae1a-5e2de1cc8a57\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:50:58.1311402Z\"\n }" headers: cache-control: - no-cache @@ -547,7 +407,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 18:19:39 GMT + - Thu, 29 Jun 2023 11:52:59 GMT expires: - '-1' pragma: @@ -579,14 +439,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8b022e19-9042-4feb-ae1a-5e2de1cc8a57?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f198fbc0-8bc1-a64d-8bcb-3e9597122dee\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T18:19:38.9301375Z\"\n }" + string: "{\n \"name\": \"192e028b-4290-eb4f-ae1a-5e2de1cc8a57\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:50:58.1311402Z\"\n }" headers: cache-control: - no-cache @@ -595,7 +455,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 18:20:29 GMT + - Thu, 29 Jun 2023 11:53:29 GMT expires: - '-1' pragma: @@ -627,14 +487,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8b022e19-9042-4feb-ae1a-5e2de1cc8a57?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f198fbc0-8bc1-a64d-8bcb-3e9597122dee\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T18:19:38.9301375Z\"\n }" + string: "{\n \"name\": \"192e028b-4290-eb4f-ae1a-5e2de1cc8a57\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:50:58.1311402Z\"\n }" headers: cache-control: - no-cache @@ -643,7 +503,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 18:20:59 GMT + - Thu, 29 Jun 2023 11:53:58 GMT expires: - '-1' pragma: @@ -675,14 +535,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8b022e19-9042-4feb-ae1a-5e2de1cc8a57?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f198fbc0-8bc1-a64d-8bcb-3e9597122dee\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T18:19:38.9301375Z\"\n }" + string: "{\n \"name\": \"192e028b-4290-eb4f-ae1a-5e2de1cc8a57\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:50:58.1311402Z\"\n }" headers: cache-control: - no-cache @@ -691,7 +551,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 18:21:29 GMT + - Thu, 29 Jun 2023 11:54:29 GMT expires: - '-1' pragma: @@ -723,14 +583,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8b022e19-9042-4feb-ae1a-5e2de1cc8a57?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f198fbc0-8bc1-a64d-8bcb-3e9597122dee\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T18:19:38.9301375Z\"\n }" + string: "{\n \"name\": \"192e028b-4290-eb4f-ae1a-5e2de1cc8a57\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:50:58.1311402Z\"\n }" headers: cache-control: - no-cache @@ -739,7 +599,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 18:21:59 GMT + - Thu, 29 Jun 2023 11:54:59 GMT expires: - '-1' pragma: @@ -771,14 +631,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8b022e19-9042-4feb-ae1a-5e2de1cc8a57?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f198fbc0-8bc1-a64d-8bcb-3e9597122dee\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T18:19:38.9301375Z\"\n }" + string: "{\n \"name\": \"192e028b-4290-eb4f-ae1a-5e2de1cc8a57\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:50:58.1311402Z\"\n }" headers: cache-control: - no-cache @@ -787,7 +647,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 18:22:29 GMT + - Thu, 29 Jun 2023 11:55:29 GMT expires: - '-1' pragma: @@ -819,15 +679,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8b022e19-9042-4feb-ae1a-5e2de1cc8a57?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"192e028b-4290-eb4f-ae1a-5e2de1cc8a57\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:50:58.1311402Z\",\n \"endTime\": + \"2023-06-29T11:55:51.7890753Z\"\n }" headers: cache-control: - no-cache @@ -836,7 +696,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 18:23:15 GMT + - Thu, 29 Jun 2023 11:55:59 GMT expires: - '-1' pragma: @@ -868,61 +728,58 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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\": \"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 }" + 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-clitestmhs4zykak-79a739\",\n \"fqdn\": \"cliakstest-clitestmhs4zykak-79a739-2zigrfvj.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestmhs4zykak-79a739-2zigrfvj.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"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/23f7a3f4-a666-428c-9394-0897b2ae79b9\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3714' + - '3370' content-type: - application/json date: - - Fri, 16 Jun 2023 18:23:15 GMT + - Thu, 29 Jun 2023 11:56:00 GMT expires: - '-1' pragma: @@ -954,61 +811,58 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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\": \"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 }" + 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-clitestmhs4zykak-79a739\",\n \"fqdn\": \"cliakstest-clitestmhs4zykak-79a739-2zigrfvj.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestmhs4zykak-79a739-2zigrfvj.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"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/23f7a3f4-a666-428c-9394-0897b2ae79b9\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\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: - - '3714' + - '3370' content-type: - application/json date: - - Fri, 16 Jun 2023 18:23:18 GMT + - Thu, 29 Jun 2023 11:56:01 GMT expires: - '-1' pragma: @@ -1027,23 +881,22 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westeurope", "sku": {"name": "Base", "tier": "Free"}, "identity": + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": - "cliakstest-clitestzc5eolkio-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-clitestmhs4zykak-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.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_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"}]}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", + "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/23f7a3f4-a666-428c-9394-0897b2ae79b9"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {}, "workloadAutoScalerProfile": {}}}' @@ -1057,71 +910,68 @@ interactions: Connection: - keep-alive Content-Length: - - '2465' + - '2090' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-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\": \"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 }" + 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.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": + \"cliakstest-clitestmhs4zykak-79a739\",\n \"fqdn\": \"cliakstest-clitestmhs4zykak-79a739-2zigrfvj.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestmhs4zykak-79a739-2zigrfvj.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"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/23f7a3f4-a666-428c-9394-0897b2ae79b9\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": + {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": + true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": + {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": + false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": + {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"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/westeurope/operations/000d653f-0ed2-4682-8c53-d3255ff93a05?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e6141415-5258-4a98-8dfc-de42a9df2e9e?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3873' + - '3529' content-type: - application/json date: - - Fri, 16 Jun 2023 18:23:26 GMT + - Thu, 29 Jun 2023 11:56:07 GMT expires: - '-1' pragma: @@ -1155,14 +1005,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e6141415-5258-4a98-8dfc-de42a9df2e9e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3f650d00-d20e-8246-8c53-d3255ff93a05\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T18:23:24.6799578Z\"\n }" + string: "{\n \"name\": \"151414e6-5852-984a-8dfc-de42a9df2e9e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:56:06.8196978Z\"\n }" headers: cache-control: - no-cache @@ -1171,7 +1021,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 18:23:26 GMT + - Thu, 29 Jun 2023 11:56:07 GMT expires: - '-1' pragma: @@ -1203,14 +1053,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e6141415-5258-4a98-8dfc-de42a9df2e9e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3f650d00-d20e-8246-8c53-d3255ff93a05\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T18:23:24.6799578Z\"\n }" + string: "{\n \"name\": \"151414e6-5852-984a-8dfc-de42a9df2e9e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:56:06.8196978Z\"\n }" headers: cache-control: - no-cache @@ -1219,7 +1069,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 18:23:56 GMT + - Thu, 29 Jun 2023 11:56:37 GMT expires: - '-1' pragma: @@ -1251,14 +1101,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e6141415-5258-4a98-8dfc-de42a9df2e9e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3f650d00-d20e-8246-8c53-d3255ff93a05\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T18:23:24.6799578Z\"\n }" + string: "{\n \"name\": \"151414e6-5852-984a-8dfc-de42a9df2e9e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:56:06.8196978Z\"\n }" headers: cache-control: - no-cache @@ -1267,7 +1117,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 18:24:26 GMT + - Thu, 29 Jun 2023 11:57:08 GMT expires: - '-1' pragma: @@ -1299,14 +1149,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e6141415-5258-4a98-8dfc-de42a9df2e9e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3f650d00-d20e-8246-8c53-d3255ff93a05\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T18:23:24.6799578Z\"\n }" + string: "{\n \"name\": \"151414e6-5852-984a-8dfc-de42a9df2e9e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:56:06.8196978Z\"\n }" headers: cache-control: - no-cache @@ -1315,7 +1165,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 18:24:56 GMT + - Thu, 29 Jun 2023 11:57:37 GMT expires: - '-1' pragma: @@ -1347,14 +1197,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e6141415-5258-4a98-8dfc-de42a9df2e9e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3f650d00-d20e-8246-8c53-d3255ff93a05\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T18:23:24.6799578Z\"\n }" + string: "{\n \"name\": \"151414e6-5852-984a-8dfc-de42a9df2e9e\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:56:06.8196978Z\"\n }" headers: cache-control: - no-cache @@ -1363,7 +1213,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 18:25:27 GMT + - Thu, 29 Jun 2023 11:58:07 GMT expires: - '-1' pragma: @@ -1395,15 +1245,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e6141415-5258-4a98-8dfc-de42a9df2e9e?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"151414e6-5852-984a-8dfc-de42a9df2e9e\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:56:06.8196978Z\",\n \"endTime\": + \"2023-06-29T11:58:18.2101982Z\"\n }" headers: cache-control: - no-cache @@ -1412,7 +1262,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 18:25:57 GMT + - Thu, 29 Jun 2023 11:58:37 GMT expires: - '-1' pragma: @@ -1444,66 +1294,63 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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\": \"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 }" + 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-clitestmhs4zykak-79a739\",\n \"fqdn\": \"cliakstest-clitestmhs4zykak-79a739-2zigrfvj.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestmhs4zykak-79a739-2zigrfvj.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_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 + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"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/23f7a3f4-a666-428c-9394-0897b2ae79b9\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\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: - - '4267' + - '3920' content-type: - application/json date: - - Fri, 16 Jun 2023 18:25:58 GMT + - Thu, 29 Jun 2023 11:58:38 GMT expires: - '-1' pragma: @@ -1537,8 +1384,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -1546,17 +1393,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/48e39f6f-90b1-4a33-b181-d3282a7e1d88?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Fri, 16 Jun 2023 18:25:58 GMT + - Thu, 29 Jun 2023 11:58:39 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/48e39f6f-90b1-4a33-b181-d3282a7e1d88?api-version=2016-03-30 pragma: - no-cache server: @@ -1566,7 +1413,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_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 36628b9cf1e..aa00a53654b 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 Jun 2023 18:26:06 GMT + - Thu, 29 Jun 2023 11:56:08 GMT expires: - '-1' pragma: @@ -47,19 +47,20 @@ interactions: message: Not Found - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest6xff4iy5r-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestmoqoypn4j-79a739", "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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "securityProfile": + {"imageCleaner": {"enabled": true, "intervalHours": 168}}, "storageProfile": + {}}}' headers: AKSHTTPCustomFeatures: - Microsoft.ContainerService/EnableImageCleanerPreview @@ -72,71 +73,69 @@ interactions: Connection: - keep-alive Content-Length: - - '1829' + - '1500' 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestmoqoypn4j-79a739\",\n \"fqdn\": \"cliakstest-clitestmoqoypn4j-79a739-xy1dqy2m.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestmoqoypn4j-79a739-xy1dqy2m.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/e7930fc6-516c-4f88-abab-cd4361b91474?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/379d0a0c-c59f-4e37-8d8b-0754a6155197?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3676' + - '3347' content-type: - application/json date: - - Fri, 16 Jun 2023 18:26:13 GMT + - Thu, 29 Jun 2023 11:56:14 GMT expires: - '-1' pragma: @@ -167,14 +166,14 @@ interactions: - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner --ssh-key-value --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/379d0a0c-c59f-4e37-8d8b-0754a6155197?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c60f93e7-6c51-884f-abab-cd4361b91474\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T18:26:13.6907355Z\"\n }" + string: "{\n \"name\": \"0c0a9d37-9fc5-374e-8d8b-0754a6155197\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:56:14.8041222Z\"\n }" headers: cache-control: - no-cache @@ -183,7 +182,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 18:26:14 GMT + - Thu, 29 Jun 2023 11:56:14 GMT expires: - '-1' pragma: @@ -216,24 +215,23 @@ interactions: - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner --ssh-key-value --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/379d0a0c-c59f-4e37-8d8b-0754a6155197?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"0c0a9d37-9fc5-374e-8d8b-0754a6155197\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:56:14.8041222Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 18:36:05 GMT + - Thu, 29 Jun 2023 11:56:45 GMT expires: - '-1' pragma: @@ -266,67 +264,23 @@ interactions: - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner --ssh-key-value --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/379d0a0c-c59f-4e37-8d8b-0754a6155197?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\": \"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 }" + string: "{\n \"name\": \"0c0a9d37-9fc5-374e-8d8b-0754a6155197\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:56:14.8041222Z\"\n }" headers: cache-control: - no-cache content-length: - - '4329' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 18:36:07 GMT + - Thu, 29 Jun 2023 11:57:15 GMT expires: - '-1' pragma: @@ -348,77 +302,83 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/379d0a0c-c59f-4e37-8d8b-0754a6155197?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"0c0a9d37-9fc5-374e-8d8b-0754a6155197\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:56:14.8041222Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: - application/json + date: + - Thu, 29 Jun 2023 11:57: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 + - aks create Connection: - keep-alive ParameterSetName: - - --resource-group --name --image-cleaner-interval-hours --aks-custom-headers + - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner + --ssh-key-value --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/379d0a0c-c59f-4e37-8d8b-0754a6155197?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\": \"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 }" + string: "{\n \"name\": \"0c0a9d37-9fc5-374e-8d8b-0754a6155197\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:56:14.8041222Z\"\n }" headers: cache-control: - no-cache content-length: - - '4329' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 18:36:08 GMT + - Thu, 29 Jun 2023 11:58:16 GMT expires: - '-1' pragma: @@ -437,66 +397,135 @@ interactions: code: 200 message: OK - request: - 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": - {}}}' + body: null 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.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/379d0a0c-c59f-4e37-8d8b-0754a6155197?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"0c0a9d37-9fc5-374e-8d8b-0754a6155197\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:56:14.8041222Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: - application/json + date: + - Thu, 29 Jun 2023 11:58: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 update + - aks create Connection: - keep-alive - Content-Length: - - '2866' - Content-Type: + ParameterSetName: + - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner + --ssh-key-value --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/379d0a0c-c59f-4e37-8d8b-0754a6155197?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"0c0a9d37-9fc5-374e-8d8b-0754a6155197\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:56:14.8041222Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: - application/json + date: + - Thu, 29 Jun 2023 11:59: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 --image-cleaner-interval-hours --aks-custom-headers + - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner + --ssh-key-value --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: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-05-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/379d0a0c-c59f-4e37-8d8b-0754a6155197?api-version=2016-03-30 response: body: - string: "{\n \"code\": \"GetSKUStoreError\",\n \"message\": \"Internal server\ - \ error\"\n }" + string: "{\n \"name\": \"0c0a9d37-9fc5-374e-8d8b-0754a6155197\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:56:14.8041222Z\"\n }" headers: cache-control: - no-cache - connection: - - close content-length: - - '71' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 18:37:08 GMT + - Thu, 29 Jun 2023 11:59:45 GMT expires: - '-1' pragma: @@ -505,33 +534,506 @@ 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 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.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/379d0a0c-c59f-4e37-8d8b-0754a6155197?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"0c0a9d37-9fc5-374e-8d8b-0754a6155197\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:56:14.8041222Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 12:00: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 - x-ms-failure-cause: - - service - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: - code: 500 - message: Internal Server Error + 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.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/379d0a0c-c59f-4e37-8d8b-0754a6155197?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"0c0a9d37-9fc5-374e-8d8b-0754a6155197\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:56:14.8041222Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 12:00: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 + --ssh-key-value --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/379d0a0c-c59f-4e37-8d8b-0754a6155197?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"0c0a9d37-9fc5-374e-8d8b-0754a6155197\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:56:14.8041222Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 12:01: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.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/379d0a0c-c59f-4e37-8d8b-0754a6155197?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"0c0a9d37-9fc5-374e-8d8b-0754a6155197\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:56:14.8041222Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 12:01: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 + --ssh-key-value --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/379d0a0c-c59f-4e37-8d8b-0754a6155197?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"0c0a9d37-9fc5-374e-8d8b-0754a6155197\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:56:14.8041222Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 12:02: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.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/379d0a0c-c59f-4e37-8d8b-0754a6155197?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"0c0a9d37-9fc5-374e-8d8b-0754a6155197\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:56:14.8041222Z\",\n \"endTime\": + \"2023-06-29T12:02:42.97927Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '168' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 12:02: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 + --ssh-key-value --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-clitestmoqoypn4j-79a739\",\n \"fqdn\": \"cliakstest-clitestmoqoypn4j-79a739-xy1dqy2m.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestmoqoypn4j-79a739-xy1dqy2m.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/db257fb5-1928-4d41-8989-a28d900ce792\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: + - '4000' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 12:02: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: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --image-cleaner-interval-hours --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-clitestmoqoypn4j-79a739\",\n \"fqdn\": \"cliakstest-clitestmoqoypn4j-79a739-xy1dqy2m.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestmoqoypn4j-79a739-xy1dqy2m.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/db257fb5-1928-4d41-8989-a28d900ce792\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: + - '4000' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 12:02: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: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": - "cliakstest-clitest6xff4iy5r-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": + "cliakstest-clitestmoqoypn4j-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.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"}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_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"}]}, + "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": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/db257fb5-1928-4d41-8989-a28d900ce792"}]}, "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"}}, @@ -550,75 +1052,72 @@ interactions: Connection: - keep-alive Content-Length: - - '2866' + - '2500' Content-Type: - application/json ParameterSetName: - --resource-group --name --image-cleaner-interval-hours --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestmoqoypn4j-79a739\",\n \"fqdn\": \"cliakstest-clitestmoqoypn4j-79a739-xy1dqy2m.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestmoqoypn4j-79a739-xy1dqy2m.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/db257fb5-1928-4d41-8989-a28d900ce792\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b5991ed5-edb3-429f-ab83-941fd82dbfda?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4326' + - '3997' content-type: - application/json date: - - Fri, 16 Jun 2023 18:37:15 GMT + - Thu, 29 Jun 2023 12:02:53 GMT expires: - '-1' pragma: @@ -652,14 +1151,14 @@ interactions: ParameterSetName: - --resource-group --name --image-cleaner-interval-hours --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b5991ed5-edb3-429f-ab83-941fd82dbfda?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"194aa5ce-5274-9749-9553-cd6fa5edc8a9\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T18:37:15.1764413Z\"\n }" + string: "{\n \"name\": \"d51e99b5-b3ed-9f42-ab83-941fd82dbfda\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:02:52.8518945Z\"\n }" headers: cache-control: - no-cache @@ -668,7 +1167,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 18:37:15 GMT + - Thu, 29 Jun 2023 12:02:54 GMT expires: - '-1' pragma: @@ -700,14 +1199,14 @@ interactions: ParameterSetName: - --resource-group --name --image-cleaner-interval-hours --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b5991ed5-edb3-429f-ab83-941fd82dbfda?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"194aa5ce-5274-9749-9553-cd6fa5edc8a9\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T18:37:15.1764413Z\"\n }" + string: "{\n \"name\": \"d51e99b5-b3ed-9f42-ab83-941fd82dbfda\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:02:52.8518945Z\"\n }" headers: cache-control: - no-cache @@ -716,7 +1215,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 18:37:45 GMT + - Thu, 29 Jun 2023 12:03:23 GMT expires: - '-1' pragma: @@ -748,14 +1247,14 @@ interactions: ParameterSetName: - --resource-group --name --image-cleaner-interval-hours --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b5991ed5-edb3-429f-ab83-941fd82dbfda?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"194aa5ce-5274-9749-9553-cd6fa5edc8a9\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T18:37:15.1764413Z\"\n }" + string: "{\n \"name\": \"d51e99b5-b3ed-9f42-ab83-941fd82dbfda\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:02:52.8518945Z\"\n }" headers: cache-control: - no-cache @@ -764,7 +1263,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 18:38:16 GMT + - Thu, 29 Jun 2023 12:03:53 GMT expires: - '-1' pragma: @@ -796,14 +1295,14 @@ interactions: ParameterSetName: - --resource-group --name --image-cleaner-interval-hours --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b5991ed5-edb3-429f-ab83-941fd82dbfda?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"194aa5ce-5274-9749-9553-cd6fa5edc8a9\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T18:37:15.1764413Z\"\n }" + string: "{\n \"name\": \"d51e99b5-b3ed-9f42-ab83-941fd82dbfda\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:02:52.8518945Z\"\n }" headers: cache-control: - no-cache @@ -812,7 +1311,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 18:38:46 GMT + - Thu, 29 Jun 2023 12:04:24 GMT expires: - '-1' pragma: @@ -844,15 +1343,15 @@ interactions: ParameterSetName: - --resource-group --name --image-cleaner-interval-hours --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b5991ed5-edb3-429f-ab83-941fd82dbfda?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"d51e99b5-b3ed-9f42-ab83-941fd82dbfda\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T12:02:52.8518945Z\",\n \"endTime\": + \"2023-06-29T12:04:37.6778994Z\"\n }" headers: cache-control: - no-cache @@ -861,7 +1360,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 18:39:16 GMT + - Thu, 29 Jun 2023 12:04:54 GMT expires: - '-1' pragma: @@ -893,67 +1392,64 @@ interactions: ParameterSetName: - --resource-group --name --image-cleaner-interval-hours --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-clitestmoqoypn4j-79a739\",\n \"fqdn\": \"cliakstest-clitestmoqoypn4j-79a739-xy1dqy2m.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestmoqoypn4j-79a739-xy1dqy2m.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/db257fb5-1928-4d41-8989-a28d900ce792\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4328' + - '3999' content-type: - application/json date: - - Fri, 16 Jun 2023 18:39:17 GMT + - Thu, 29 Jun 2023 12:04:54 GMT expires: - '-1' pragma: @@ -985,67 +1481,64 @@ interactions: ParameterSetName: - --resource-group --name --disable-image-cleaner --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-clitestmoqoypn4j-79a739\",\n \"fqdn\": \"cliakstest-clitestmoqoypn4j-79a739-xy1dqy2m.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestmoqoypn4j-79a739-xy1dqy2m.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/db257fb5-1928-4d41-8989-a28d900ce792\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4328' + - '3999' content-type: - application/json date: - - Fri, 16 Jun 2023 18:39:19 GMT + - Thu, 29 Jun 2023 12:04:56 GMT expires: - '-1' pragma: @@ -1066,21 +1559,20 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": - "cliakstest-clitest6xff4iy5r-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": + "cliakstest-clitestmoqoypn4j-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.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"}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_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"}]}, + "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": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/db257fb5-1928-4d41-8989-a28d900ce792"}]}, "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"}}, @@ -1099,75 +1591,72 @@ interactions: Connection: - keep-alive Content-Length: - - '2867' + - '2501' Content-Type: - application/json ParameterSetName: - --resource-group --name --disable-image-cleaner --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestmoqoypn4j-79a739\",\n \"fqdn\": \"cliakstest-clitestmoqoypn4j-79a739-xy1dqy2m.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestmoqoypn4j-79a739-xy1dqy2m.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/db257fb5-1928-4d41-8989-a28d900ce792\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d2be3dd2-41a7-4fea-a7d5-ec667da724c5?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4327' + - '3998' content-type: - application/json date: - - Fri, 16 Jun 2023 18:39:24 GMT + - Thu, 29 Jun 2023 12:05:01 GMT expires: - '-1' pragma: @@ -1201,14 +1690,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-image-cleaner --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d2be3dd2-41a7-4fea-a7d5-ec667da724c5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b3d66e25-8d07-1547-8842-4079df2e302e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T18:39:23.9269131Z\"\n }" + string: "{\n \"name\": \"d23dbed2-a741-ea4f-a7d5-ec667da724c5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:05:00.4615027Z\"\n }" headers: cache-control: - no-cache @@ -1217,7 +1706,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 18:39:24 GMT + - Thu, 29 Jun 2023 12:05:01 GMT expires: - '-1' pragma: @@ -1249,14 +1738,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-image-cleaner --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d2be3dd2-41a7-4fea-a7d5-ec667da724c5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b3d66e25-8d07-1547-8842-4079df2e302e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T18:39:23.9269131Z\"\n }" + string: "{\n \"name\": \"d23dbed2-a741-ea4f-a7d5-ec667da724c5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:05:00.4615027Z\"\n }" headers: cache-control: - no-cache @@ -1265,7 +1754,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 18:39:55 GMT + - Thu, 29 Jun 2023 12:05:31 GMT expires: - '-1' pragma: @@ -1297,14 +1786,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-image-cleaner --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d2be3dd2-41a7-4fea-a7d5-ec667da724c5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b3d66e25-8d07-1547-8842-4079df2e302e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T18:39:23.9269131Z\"\n }" + string: "{\n \"name\": \"d23dbed2-a741-ea4f-a7d5-ec667da724c5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:05:00.4615027Z\"\n }" headers: cache-control: - no-cache @@ -1313,7 +1802,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 18:40:25 GMT + - Thu, 29 Jun 2023 12:06:01 GMT expires: - '-1' pragma: @@ -1345,14 +1834,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-image-cleaner --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d2be3dd2-41a7-4fea-a7d5-ec667da724c5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b3d66e25-8d07-1547-8842-4079df2e302e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T18:39:23.9269131Z\"\n }" + string: "{\n \"name\": \"d23dbed2-a741-ea4f-a7d5-ec667da724c5\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:05:00.4615027Z\"\n }" headers: cache-control: - no-cache @@ -1361,7 +1850,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 18:40:55 GMT + - Thu, 29 Jun 2023 12:06:31 GMT expires: - '-1' pragma: @@ -1393,15 +1882,15 @@ interactions: ParameterSetName: - --resource-group --name --disable-image-cleaner --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d2be3dd2-41a7-4fea-a7d5-ec667da724c5?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"d23dbed2-a741-ea4f-a7d5-ec667da724c5\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T12:05:00.4615027Z\",\n \"endTime\": + \"2023-06-29T12:06:41.6802673Z\"\n }" headers: cache-control: - no-cache @@ -1410,7 +1899,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 18:41:25 GMT + - Thu, 29 Jun 2023 12:07:01 GMT expires: - '-1' pragma: @@ -1442,67 +1931,64 @@ interactions: ParameterSetName: - --resource-group --name --disable-image-cleaner --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-clitestmoqoypn4j-79a739\",\n \"fqdn\": \"cliakstest-clitestmoqoypn4j-79a739-xy1dqy2m.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestmoqoypn4j-79a739-xy1dqy2m.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/db257fb5-1928-4d41-8989-a28d900ce792\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4329' + - '4000' content-type: - application/json date: - - Fri, 16 Jun 2023 18:41:26 GMT + - Thu, 29 Jun 2023 12:07:02 GMT expires: - '-1' pragma: 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 index 069397af140..2edca08fc68 100644 --- 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,8 +13,8 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 29 Apr 2023 11:38:51 GMT + - Thu, 29 Jun 2023 11:52:49 GMT expires: - '-1' pragma: @@ -46,19 +46,19 @@ interactions: message: Not Found - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestiab2dj4ub-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestvsiwlgusi-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 AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT 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": {}}}' + "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {}}}' headers: Accept: - application/json @@ -69,14 +69,14 @@ interactions: Connection: - keep-alive Content-Length: - - '1459' + - '1422' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -86,8 +86,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-clitestiab2dj4ub-79a739\",\n \"fqdn\": \"cliakstest-clitestiab2dj4ub-79a739-tmx3t761.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestiab2dj4ub-79a739-tmx3t761.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-clitestvsiwlgusi-79a739\",\n \"fqdn\": \"cliakstest-clitestvsiwlgusi-79a739-lbp7ppx1.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestvsiwlgusi-79a739-lbp7ppx1.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n @@ -97,39 +97,39 @@ interactions: \"1.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 + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT azcli_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 - \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \ \"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 \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \"10.0.0.10\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": + [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n + \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": + 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": + {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": + {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": + true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n + \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": + \"SystemAssigned\",\n \"principalId\":\"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/fd6ee89d-a766-4e65-9fe2-e85fabe22983?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8a4d6cfa-9a1a-4592-9b5b-43d6aed150e9?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3306' + - '3267' content-type: - application/json date: - - Sat, 29 Apr 2023 11:38:55 GMT + - Thu, 29 Jun 2023 11:52:55 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,23 +159,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8a4d6cfa-9a1a-4592-9b5b-43d6aed150e9?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 }" + string: "{\n \"name\": \"fa6c4d8a-1a9a-9245-9b5b-43d6aed150e9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:52:55.522112Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Sat, 29 Apr 2023 11:38:55 GMT + - Thu, 29 Jun 2023 11:52:55 GMT expires: - '-1' pragma: @@ -207,23 +207,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8a4d6cfa-9a1a-4592-9b5b-43d6aed150e9?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 }" + string: "{\n \"name\": \"fa6c4d8a-1a9a-9245-9b5b-43d6aed150e9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:52:55.522112Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Sat, 29 Apr 2023 11:39:25 GMT + - Thu, 29 Jun 2023 11:53:25 GMT expires: - '-1' pragma: @@ -255,23 +255,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8a4d6cfa-9a1a-4592-9b5b-43d6aed150e9?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 }" + string: "{\n \"name\": \"fa6c4d8a-1a9a-9245-9b5b-43d6aed150e9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:52:55.522112Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Sat, 29 Apr 2023 11:39:55 GMT + - Thu, 29 Jun 2023 11:53:55 GMT expires: - '-1' pragma: @@ -303,23 +303,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8a4d6cfa-9a1a-4592-9b5b-43d6aed150e9?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 }" + string: "{\n \"name\": \"fa6c4d8a-1a9a-9245-9b5b-43d6aed150e9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:52:55.522112Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Sat, 29 Apr 2023 11:40:25 GMT + - Thu, 29 Jun 2023 11:54:25 GMT expires: - '-1' pragma: @@ -351,23 +351,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8a4d6cfa-9a1a-4592-9b5b-43d6aed150e9?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 }" + string: "{\n \"name\": \"fa6c4d8a-1a9a-9245-9b5b-43d6aed150e9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:52:55.522112Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Sat, 29 Apr 2023 11:40:56 GMT + - Thu, 29 Jun 2023 11:54:55 GMT expires: - '-1' pragma: @@ -399,23 +399,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8a4d6cfa-9a1a-4592-9b5b-43d6aed150e9?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 }" + string: "{\n \"name\": \"fa6c4d8a-1a9a-9245-9b5b-43d6aed150e9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:52:55.522112Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Sat, 29 Apr 2023 11:41:26 GMT + - Thu, 29 Jun 2023 11:55:26 GMT expires: - '-1' pragma: @@ -447,23 +447,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8a4d6cfa-9a1a-4592-9b5b-43d6aed150e9?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 }" + string: "{\n \"name\": \"fa6c4d8a-1a9a-9245-9b5b-43d6aed150e9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:52:55.522112Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Sat, 29 Apr 2023 11:41:56 GMT + - Thu, 29 Jun 2023 11:55:56 GMT expires: - '-1' pragma: @@ -495,23 +495,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8a4d6cfa-9a1a-4592-9b5b-43d6aed150e9?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 }" + string: "{\n \"name\": \"fa6c4d8a-1a9a-9245-9b5b-43d6aed150e9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:52:55.522112Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Sat, 29 Apr 2023 11:42:26 GMT + - Thu, 29 Jun 2023 11:56:26 GMT expires: - '-1' pragma: @@ -543,23 +543,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8a4d6cfa-9a1a-4592-9b5b-43d6aed150e9?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 }" + string: "{\n \"name\": \"fa6c4d8a-1a9a-9245-9b5b-43d6aed150e9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:52:55.522112Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Sat, 29 Apr 2023 11:42:56 GMT + - Thu, 29 Jun 2023 11:56:56 GMT expires: - '-1' pragma: @@ -591,23 +591,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8a4d6cfa-9a1a-4592-9b5b-43d6aed150e9?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 }" + string: "{\n \"name\": \"fa6c4d8a-1a9a-9245-9b5b-43d6aed150e9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:52:55.522112Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Sat, 29 Apr 2023 11:43:26 GMT + - Thu, 29 Jun 2023 11:57:26 GMT expires: - '-1' pragma: @@ -639,24 +639,71 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8a4d6cfa-9a1a-4592-9b5b-43d6aed150e9?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 }" + string: "{\n \"name\": \"fa6c4d8a-1a9a-9245-9b5b-43d6aed150e9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:52:55.522112Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '125' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:57: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 --ssh-key-value --output + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8a4d6cfa-9a1a-4592-9b5b-43d6aed150e9?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"fa6c4d8a-1a9a-9245-9b5b-43d6aed150e9\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:52:55.522112Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' content-type: - application/json date: - - Sat, 29 Apr 2023 11:43:57 GMT + - Thu, 29 Jun 2023 11:58:27 GMT expires: - '-1' pragma: @@ -688,8 +735,57 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8a4d6cfa-9a1a-4592-9b5b-43d6aed150e9?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"fa6c4d8a-1a9a-9245-9b5b-43d6aed150e9\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:52:55.522112Z\",\n \"endTime\": + \"2023-06-29T11:58:51.9574444Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '169' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:58: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 --ssh-key-value --output + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -699,8 +795,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-clitestiab2dj4ub-79a739\",\n \"fqdn\": \"cliakstest-clitestiab2dj4ub-79a739-tmx3t761.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestiab2dj4ub-79a739-tmx3t761.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-clitestvsiwlgusi-79a739\",\n \"fqdn\": \"cliakstest-clitestvsiwlgusi-79a739-lbp7ppx1.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestvsiwlgusi-79a739-lbp7ppx1.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n @@ -710,24 +806,23 @@ interactions: \"1.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 + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT azcli_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 - \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\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 \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/fb82df00-91a5-4eff-91b5-babaaa351368\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"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 + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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\": @@ -741,11 +836,11 @@ interactions: cache-control: - no-cache content-length: - - '3959' + - '3920' content-type: - application/json date: - - Sat, 29 Apr 2023 11:43:57 GMT + - Thu, 29 Jun 2023 11:58:58 GMT expires: - '-1' pragma: @@ -777,8 +872,8 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -788,8 +883,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-clitestiab2dj4ub-79a739\",\n \"fqdn\": \"cliakstest-clitestiab2dj4ub-79a739-tmx3t761.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestiab2dj4ub-79a739-tmx3t761.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-clitestvsiwlgusi-79a739\",\n \"fqdn\": \"cliakstest-clitestvsiwlgusi-79a739-lbp7ppx1.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestvsiwlgusi-79a739-lbp7ppx1.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n @@ -799,24 +894,23 @@ interactions: \"1.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 + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT azcli_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 - \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\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 \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/fb82df00-91a5-4eff-91b5-babaaa351368\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"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 + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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\": @@ -830,11 +924,11 @@ interactions: cache-control: - no-cache content-length: - - '3959' + - '3920' content-type: - application/json date: - - Sat, 29 Apr 2023 11:43:57 GMT + - Thu, 29 Jun 2023 11:58:59 GMT expires: - '-1' pragma: @@ -855,21 +949,20 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": - "cliakstest-clitestiab2dj4ub-79a739", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-clitestvsiwlgusi-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.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT 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/5bab91fb-536b-4171-8e38-8f7303b407a5"}]}, + "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/fb82df00-91a5-4eff-91b5-babaaa351368"}]}, "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"}}, @@ -887,14 +980,14 @@ interactions: Connection: - keep-alive Content-Length: - - '2508' + - '2471' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -904,8 +997,8 @@ interactions: \"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-clitestiab2dj4ub-79a739\",\n \"fqdn\": \"cliakstest-clitestiab2dj4ub-79a739-tmx3t761.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestiab2dj4ub-79a739-tmx3t761.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-clitestvsiwlgusi-79a739\",\n \"fqdn\": \"cliakstest-clitestvsiwlgusi-79a739-lbp7ppx1.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestvsiwlgusi-79a739-lbp7ppx1.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n @@ -915,24 +1008,23 @@ interactions: \"1.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 + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT azcli_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 - \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\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 \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/fb82df00-91a5-4eff-91b5-babaaa351368\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"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 + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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\": @@ -945,15 +1037,15 @@ interactions: \"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/8ba6f78a-73d4-4010-9887-8c704b855b2d?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/703474f2-35d3-43d1-933c-fb112f7e244d?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4002' + - '3963' content-type: - application/json date: - - Sat, 29 Apr 2023 11:44:01 GMT + - Thu, 29 Jun 2023 11:59:04 GMT expires: - '-1' pragma: @@ -969,7 +1061,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' status: code: 200 message: OK @@ -987,14 +1079,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/703474f2-35d3-43d1-933c-fb112f7e244d?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 }" + string: "{\n \"name\": \"f2743470-d335-d143-933c-fb112f7e244d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:59:03.0545404Z\"\n }" headers: cache-control: - no-cache @@ -1003,7 +1095,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:44:01 GMT + - Thu, 29 Jun 2023 11:59:04 GMT expires: - '-1' pragma: @@ -1035,14 +1127,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/703474f2-35d3-43d1-933c-fb112f7e244d?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 }" + string: "{\n \"name\": \"f2743470-d335-d143-933c-fb112f7e244d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:59:03.0545404Z\"\n }" headers: cache-control: - no-cache @@ -1051,7 +1143,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:44:31 GMT + - Thu, 29 Jun 2023 11:59:34 GMT expires: - '-1' pragma: @@ -1083,14 +1175,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/703474f2-35d3-43d1-933c-fb112f7e244d?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 }" + string: "{\n \"name\": \"f2743470-d335-d143-933c-fb112f7e244d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:59:03.0545404Z\"\n }" headers: cache-control: - no-cache @@ -1099,7 +1191,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:45:02 GMT + - Thu, 29 Jun 2023 12:00:03 GMT expires: - '-1' pragma: @@ -1131,14 +1223,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/703474f2-35d3-43d1-933c-fb112f7e244d?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 }" + string: "{\n \"name\": \"f2743470-d335-d143-933c-fb112f7e244d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:59:03.0545404Z\"\n }" headers: cache-control: - no-cache @@ -1147,7 +1239,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:45:32 GMT + - Thu, 29 Jun 2023 12:00:34 GMT expires: - '-1' pragma: @@ -1179,14 +1271,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/703474f2-35d3-43d1-933c-fb112f7e244d?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 }" + string: "{\n \"name\": \"f2743470-d335-d143-933c-fb112f7e244d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:59:03.0545404Z\"\n }" headers: cache-control: - no-cache @@ -1195,7 +1287,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:46:02 GMT + - Thu, 29 Jun 2023 12:01:04 GMT expires: - '-1' pragma: @@ -1227,14 +1319,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/703474f2-35d3-43d1-933c-fb112f7e244d?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 }" + string: "{\n \"name\": \"f2743470-d335-d143-933c-fb112f7e244d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:59:03.0545404Z\"\n }" headers: cache-control: - no-cache @@ -1243,7 +1335,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:46:31 GMT + - Thu, 29 Jun 2023 12:01:34 GMT expires: - '-1' pragma: @@ -1275,24 +1367,24 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/703474f2-35d3-43d1-933c-fb112f7e244d?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 }" + string: "{\n \"name\": \"f2743470-d335-d143-933c-fb112f7e244d\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:59:03.0545404Z\",\n \"endTime\": + \"2023-06-29T12:01:55.0338524Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '170' content-type: - application/json date: - - Sat, 29 Apr 2023 11:47:01 GMT + - Thu, 29 Jun 2023 12:02:05 GMT expires: - '-1' pragma: @@ -1324,8 +1416,8 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -1335,8 +1427,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-clitestiab2dj4ub-79a739\",\n \"fqdn\": \"cliakstest-clitestiab2dj4ub-79a739-tmx3t761.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestiab2dj4ub-79a739-tmx3t761.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-clitestvsiwlgusi-79a739\",\n \"fqdn\": \"cliakstest-clitestvsiwlgusi-79a739-lbp7ppx1.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestvsiwlgusi-79a739-lbp7ppx1.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n @@ -1346,24 +1438,23 @@ interactions: \"1.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 + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT azcli_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 - \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\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 \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/fb82df00-91a5-4eff-91b5-babaaa351368\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"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 + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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\": @@ -1378,11 +1469,11 @@ interactions: cache-control: - no-cache content-length: - - '4004' + - '3965' content-type: - application/json date: - - Sat, 29 Apr 2023 11:47:02 GMT + - Thu, 29 Jun 2023 12:02:05 GMT expires: - '-1' pragma: @@ -1414,8 +1505,8 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -1425,8 +1516,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-clitestiab2dj4ub-79a739\",\n \"fqdn\": \"cliakstest-clitestiab2dj4ub-79a739-tmx3t761.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestiab2dj4ub-79a739-tmx3t761.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-clitestvsiwlgusi-79a739\",\n \"fqdn\": \"cliakstest-clitestvsiwlgusi-79a739-lbp7ppx1.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestvsiwlgusi-79a739-lbp7ppx1.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n @@ -1436,24 +1527,23 @@ interactions: \"1.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 + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT azcli_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 - \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\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 \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/fb82df00-91a5-4eff-91b5-babaaa351368\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"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 + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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\": @@ -1468,11 +1558,11 @@ interactions: cache-control: - no-cache content-length: - - '4004' + - '3965' content-type: - application/json date: - - Sat, 29 Apr 2023 11:47:03 GMT + - Thu, 29 Jun 2023 12:02:06 GMT expires: - '-1' pragma: @@ -1493,21 +1583,20 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": - "cliakstest-clitestiab2dj4ub-79a739", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-clitestvsiwlgusi-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.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT 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/5bab91fb-536b-4171-8e38-8f7303b407a5"}]}, + "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/fb82df00-91a5-4eff-91b5-babaaa351368"}]}, "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"}}, @@ -1523,14 +1612,14 @@ interactions: Connection: - keep-alive Content-Length: - - '2509' + - '2472' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -1540,8 +1629,8 @@ interactions: \"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-clitestiab2dj4ub-79a739\",\n \"fqdn\": \"cliakstest-clitestiab2dj4ub-79a739-tmx3t761.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestiab2dj4ub-79a739-tmx3t761.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-clitestvsiwlgusi-79a739\",\n \"fqdn\": \"cliakstest-clitestvsiwlgusi-79a739-lbp7ppx1.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestvsiwlgusi-79a739-lbp7ppx1.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n @@ -1551,24 +1640,23 @@ interactions: \"1.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 + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT azcli_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 - \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\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 \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/fb82df00-91a5-4eff-91b5-babaaa351368\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"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 + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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\": @@ -1581,15 +1669,15 @@ interactions: \"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/c3b4a7d0-8a21-4fa3-b198-dd595d44cc49?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f031aa1c-2cbe-463c-aaa7-d970492bd06a?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4003' + - '3964' content-type: - application/json date: - - Sat, 29 Apr 2023 11:47:07 GMT + - Thu, 29 Jun 2023 12:02:11 GMT expires: - '-1' pragma: @@ -1605,7 +1693,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' status: code: 200 message: OK @@ -1623,23 +1711,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f031aa1c-2cbe-463c-aaa7-d970492bd06a?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 }" + string: "{\n \"name\": \"1caa31f0-be2c-3c46-aaa7-d970492bd06a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:02:10.539364Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Sat, 29 Apr 2023 11:47:07 GMT + - Thu, 29 Jun 2023 12:02:12 GMT expires: - '-1' pragma: @@ -1671,23 +1759,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f031aa1c-2cbe-463c-aaa7-d970492bd06a?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 }" + string: "{\n \"name\": \"1caa31f0-be2c-3c46-aaa7-d970492bd06a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:02:10.539364Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Sat, 29 Apr 2023 11:47:37 GMT + - Thu, 29 Jun 2023 12:02:42 GMT expires: - '-1' pragma: @@ -1719,23 +1807,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f031aa1c-2cbe-463c-aaa7-d970492bd06a?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 }" + string: "{\n \"name\": \"1caa31f0-be2c-3c46-aaa7-d970492bd06a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:02:10.539364Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Sat, 29 Apr 2023 11:48:07 GMT + - Thu, 29 Jun 2023 12:03:11 GMT expires: - '-1' pragma: @@ -1767,23 +1855,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f031aa1c-2cbe-463c-aaa7-d970492bd06a?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 }" + string: "{\n \"name\": \"1caa31f0-be2c-3c46-aaa7-d970492bd06a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:02:10.539364Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Sat, 29 Apr 2023 11:48:38 GMT + - Thu, 29 Jun 2023 12:03:42 GMT expires: - '-1' pragma: @@ -1815,24 +1903,24 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f031aa1c-2cbe-463c-aaa7-d970492bd06a?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"1caa31f0-be2c-3c46-aaa7-d970492bd06a\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T12:02:10.539364Z\",\n \"endTime\": + \"2023-06-29T12:03:56.8994679Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '169' content-type: - application/json date: - - Sat, 29 Apr 2023 11:49:08 GMT + - Thu, 29 Jun 2023 12:04:12 GMT expires: - '-1' pragma: @@ -1864,8 +1952,8 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -1875,8 +1963,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-clitestiab2dj4ub-79a739\",\n \"fqdn\": \"cliakstest-clitestiab2dj4ub-79a739-tmx3t761.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestiab2dj4ub-79a739-tmx3t761.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-clitestvsiwlgusi-79a739\",\n \"fqdn\": \"cliakstest-clitestvsiwlgusi-79a739-lbp7ppx1.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestvsiwlgusi-79a739-lbp7ppx1.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n @@ -1886,24 +1974,23 @@ interactions: \"1.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 + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT azcli_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 - \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\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 \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/fb82df00-91a5-4eff-91b5-babaaa351368\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"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 + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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\": @@ -1918,11 +2005,11 @@ interactions: cache-control: - no-cache content-length: - - '4005' + - '3966' content-type: - application/json date: - - Sat, 29 Apr 2023 11:49:08 GMT + - Thu, 29 Jun 2023 12:04:13 GMT expires: - '-1' pragma: @@ -1956,8 +2043,8 @@ interactions: ParameterSetName: - --resource-group --name --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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -1965,17 +2052,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/04bfc734-9093-4886-942a-53312b761d86?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Sat, 29 Apr 2023 11:49:09 GMT + - Thu, 29 Jun 2023 12:04:14 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/04bfc734-9093-4886-942a-53312b761d86?api-version=2016-03-30 pragma: - no-cache server: @@ -1985,7 +2072,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14995' + - '14997' 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 index 3383fa19af6..d2802dec9ce 100644 --- 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 Jun 2023 19:14:15 GMT + - Thu, 29 Jun 2023 11:56:41 GMT expires: - '-1' pragma: @@ -45,19 +45,20 @@ interactions: code: 404 message: Not Found - request: - body: '{"location": "centraluseuap", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestx2dvvg2f4-8ecadf", + body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestb6yynh5jj-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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {}}}' headers: Accept: - application/json @@ -68,69 +69,67 @@ interactions: Connection: - keep-alive Content-Length: - - '1757' + - '1422' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --enable-managed-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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - 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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestb6yynh5jj-79a739\",\n \"fqdn\": \"cliakstest-clitestb6yynh5jj-79a739-z6gh9o2v.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestb6yynh5jj-79a739-z6gh9o2v.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/centraluseuap/operations/17619f34-a058-4329-b5c4-93c79b819220?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e99c94bf-fce4-4e10-883b-bf5f4b17147f?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3620' + - '3267' content-type: - application/json date: - - Fri, 16 Jun 2023 19:14:19 GMT + - Thu, 29 Jun 2023 11:56:46 GMT expires: - '-1' pragma: @@ -142,7 +141,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -160,14 +159,14 @@ interactions: ParameterSetName: - --resource-group --name --location --enable-managed-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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/17619f34-a058-4329-b5c4-93c79b819220?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e99c94bf-fce4-4e10-883b-bf5f4b17147f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"349f6117-58a0-2943-b5c4-93c79b819220\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T19:14:19.9487618Z\"\n }" + string: "{\n \"name\": \"bf949ce9-e4fc-104e-883b-bf5f4b17147f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:56:46.3666771Z\"\n }" headers: cache-control: - no-cache @@ -176,7 +175,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:14:20 GMT + - Thu, 29 Jun 2023 11:56:46 GMT expires: - '-1' pragma: @@ -208,14 +207,14 @@ interactions: ParameterSetName: - --resource-group --name --location --enable-managed-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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/17619f34-a058-4329-b5c4-93c79b819220?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e99c94bf-fce4-4e10-883b-bf5f4b17147f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"349f6117-58a0-2943-b5c4-93c79b819220\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T19:14:19.9487618Z\"\n }" + string: "{\n \"name\": \"bf949ce9-e4fc-104e-883b-bf5f4b17147f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:56:46.3666771Z\"\n }" headers: cache-control: - no-cache @@ -224,7 +223,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:14:50 GMT + - Thu, 29 Jun 2023 11:57:16 GMT expires: - '-1' pragma: @@ -256,14 +255,14 @@ interactions: ParameterSetName: - --resource-group --name --location --enable-managed-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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/17619f34-a058-4329-b5c4-93c79b819220?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e99c94bf-fce4-4e10-883b-bf5f4b17147f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"349f6117-58a0-2943-b5c4-93c79b819220\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T19:14:19.9487618Z\"\n }" + string: "{\n \"name\": \"bf949ce9-e4fc-104e-883b-bf5f4b17147f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:56:46.3666771Z\"\n }" headers: cache-control: - no-cache @@ -272,7 +271,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:15:20 GMT + - Thu, 29 Jun 2023 11:57:47 GMT expires: - '-1' pragma: @@ -304,14 +303,14 @@ interactions: ParameterSetName: - --resource-group --name --location --enable-managed-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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/17619f34-a058-4329-b5c4-93c79b819220?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e99c94bf-fce4-4e10-883b-bf5f4b17147f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"349f6117-58a0-2943-b5c4-93c79b819220\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T19:14:19.9487618Z\"\n }" + string: "{\n \"name\": \"bf949ce9-e4fc-104e-883b-bf5f4b17147f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:56:46.3666771Z\"\n }" headers: cache-control: - no-cache @@ -320,7 +319,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:15:50 GMT + - Thu, 29 Jun 2023 11:58:17 GMT expires: - '-1' pragma: @@ -352,14 +351,14 @@ interactions: ParameterSetName: - --resource-group --name --location --enable-managed-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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/17619f34-a058-4329-b5c4-93c79b819220?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e99c94bf-fce4-4e10-883b-bf5f4b17147f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"349f6117-58a0-2943-b5c4-93c79b819220\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T19:14:19.9487618Z\"\n }" + string: "{\n \"name\": \"bf949ce9-e4fc-104e-883b-bf5f4b17147f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:56:46.3666771Z\"\n }" headers: cache-control: - no-cache @@ -368,7 +367,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:16:20 GMT + - Thu, 29 Jun 2023 11:58:47 GMT expires: - '-1' pragma: @@ -400,14 +399,14 @@ interactions: ParameterSetName: - --resource-group --name --location --enable-managed-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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/17619f34-a058-4329-b5c4-93c79b819220?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e99c94bf-fce4-4e10-883b-bf5f4b17147f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"349f6117-58a0-2943-b5c4-93c79b819220\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T19:14:19.9487618Z\"\n }" + string: "{\n \"name\": \"bf949ce9-e4fc-104e-883b-bf5f4b17147f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:56:46.3666771Z\"\n }" headers: cache-control: - no-cache @@ -416,7 +415,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:16:51 GMT + - Thu, 29 Jun 2023 11:59:17 GMT expires: - '-1' pragma: @@ -448,15 +447,351 @@ interactions: ParameterSetName: - --resource-group --name --location --enable-managed-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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/17619f34-a058-4329-b5c4-93c79b819220?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e99c94bf-fce4-4e10-883b-bf5f4b17147f?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"bf949ce9-e4fc-104e-883b-bf5f4b17147f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:56:46.3666771Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:59: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 --enable-managed-identity --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e99c94bf-fce4-4e10-883b-bf5f4b17147f?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"bf949ce9-e4fc-104e-883b-bf5f4b17147f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:56:46.3666771Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 12:00: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 --enable-managed-identity --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e99c94bf-fce4-4e10-883b-bf5f4b17147f?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"bf949ce9-e4fc-104e-883b-bf5f4b17147f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:56:46.3666771Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 12:00: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 --enable-managed-identity --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e99c94bf-fce4-4e10-883b-bf5f4b17147f?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"bf949ce9-e4fc-104e-883b-bf5f4b17147f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:56:46.3666771Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 12:01: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 --enable-managed-identity --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e99c94bf-fce4-4e10-883b-bf5f4b17147f?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"bf949ce9-e4fc-104e-883b-bf5f4b17147f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:56:46.3666771Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 12:01: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 --enable-managed-identity --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e99c94bf-fce4-4e10-883b-bf5f4b17147f?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"bf949ce9-e4fc-104e-883b-bf5f4b17147f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:56:46.3666771Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 12:02: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 --enable-managed-identity --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e99c94bf-fce4-4e10-883b-bf5f4b17147f?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"bf949ce9-e4fc-104e-883b-bf5f4b17147f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:56:46.3666771Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 12:02: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 --enable-managed-identity --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e99c94bf-fce4-4e10-883b-bf5f4b17147f?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"bf949ce9-e4fc-104e-883b-bf5f4b17147f\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:56:46.3666771Z\",\n \"endTime\": + \"2023-06-29T12:03:07.5880044Z\"\n }" headers: cache-control: - no-cache @@ -465,7 +800,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:23:23 GMT + - Thu, 29 Jun 2023 12:03:18 GMT expires: - '-1' pragma: @@ -497,66 +832,63 @@ interactions: ParameterSetName: - --resource-group --name --location --enable-managed-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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - 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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-clitestb6yynh5jj-79a739\",\n \"fqdn\": \"cliakstest-clitestb6yynh5jj-79a739-z6gh9o2v.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestb6yynh5jj-79a739-z6gh9o2v.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/220aa2e4-ba64-493c-8264-64354686749c\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4285' + - '3920' content-type: - application/json date: - - Fri, 16 Jun 2023 19:23:23 GMT + - Thu, 29 Jun 2023 12:03:19 GMT expires: - '-1' pragma: @@ -588,66 +920,63 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - 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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-clitestb6yynh5jj-79a739\",\n \"fqdn\": \"cliakstest-clitestb6yynh5jj-79a739-z6gh9o2v.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestb6yynh5jj-79a739-z6gh9o2v.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/220aa2e4-ba64-493c-8264-64354686749c\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4285' + - '3920' content-type: - application/json date: - - Fri, 16 Jun 2023 19:23:24 GMT + - Thu, 29 Jun 2023 12:03:20 GMT expires: - '-1' pragma: @@ -666,26 +995,24 @@ interactions: code: 200 message: OK - request: - 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"}]}, + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": + "cliakstest-clitestb6yynh5jj-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.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": + false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", + "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/220aa2e4-ba64-493c-8264-64354686749c"}]}, "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", + ["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": {}}}' @@ -701,75 +1028,72 @@ interactions: Connection: - keep-alive Content-Length: - - '2835' + - '2445' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - 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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitestb6yynh5jj-79a739\",\n \"fqdn\": \"cliakstest-clitestb6yynh5jj-79a739-z6gh9o2v.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestb6yynh5jj-79a739-z6gh9o2v.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/220aa2e4-ba64-493c-8264-64354686749c\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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/5d8468d2-adcb-4356-a23d-711adf78b941/\"\n + \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": + \"SystemAssigned\",\n \"principalId\":\"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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/93faa633-78e3-452b-8c15-7516e37482d6?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4422' + - '4051' content-type: - application/json date: - - Fri, 16 Jun 2023 19:23:27 GMT + - Thu, 29 Jun 2023 12:03:24 GMT expires: - '-1' pragma: @@ -785,7 +1109,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -803,14 +1127,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/1bc0caea-f148-4fa6-8ef6-c84eddd20a98?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/93faa633-78e3-452b-8c15-7516e37482d6?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 }" + string: "{\n \"name\": \"33a6fa93-e378-2b45-8c15-7516e37482d6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:03:24.3519981Z\"\n }" headers: cache-control: - no-cache @@ -819,7 +1143,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:23:28 GMT + - Thu, 29 Jun 2023 12:03:24 GMT expires: - '-1' pragma: @@ -851,14 +1175,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/1bc0caea-f148-4fa6-8ef6-c84eddd20a98?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/93faa633-78e3-452b-8c15-7516e37482d6?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 }" + string: "{\n \"name\": \"33a6fa93-e378-2b45-8c15-7516e37482d6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:03:24.3519981Z\"\n }" headers: cache-control: - no-cache @@ -867,7 +1191,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:23:58 GMT + - Thu, 29 Jun 2023 12:03:54 GMT expires: - '-1' pragma: @@ -899,14 +1223,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/1bc0caea-f148-4fa6-8ef6-c84eddd20a98?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/93faa633-78e3-452b-8c15-7516e37482d6?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 }" + string: "{\n \"name\": \"33a6fa93-e378-2b45-8c15-7516e37482d6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:03:24.3519981Z\"\n }" headers: cache-control: - no-cache @@ -915,7 +1239,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:24:28 GMT + - Thu, 29 Jun 2023 12:04:24 GMT expires: - '-1' pragma: @@ -947,14 +1271,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/1bc0caea-f148-4fa6-8ef6-c84eddd20a98?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/93faa633-78e3-452b-8c15-7516e37482d6?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 }" + string: "{\n \"name\": \"33a6fa93-e378-2b45-8c15-7516e37482d6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:03:24.3519981Z\"\n }" headers: cache-control: - no-cache @@ -963,7 +1287,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:24:59 GMT + - Thu, 29 Jun 2023 12:04:54 GMT expires: - '-1' pragma: @@ -995,14 +1319,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/1bc0caea-f148-4fa6-8ef6-c84eddd20a98?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/93faa633-78e3-452b-8c15-7516e37482d6?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 }" + string: "{\n \"name\": \"33a6fa93-e378-2b45-8c15-7516e37482d6\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:03:24.3519981Z\"\n }" headers: cache-control: - no-cache @@ -1011,7 +1335,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:25:29 GMT + - Thu, 29 Jun 2023 12:05:25 GMT expires: - '-1' pragma: @@ -1043,15 +1367,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/1bc0caea-f148-4fa6-8ef6-c84eddd20a98?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/93faa633-78e3-452b-8c15-7516e37482d6?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"33a6fa93-e378-2b45-8c15-7516e37482d6\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T12:03:24.3519981Z\",\n \"endTime\": + \"2023-06-29T12:05:33.5575822Z\"\n }" headers: cache-control: - no-cache @@ -1060,7 +1384,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:25:59 GMT + - Thu, 29 Jun 2023 12:05:55 GMT expires: - '-1' pragma: @@ -1092,67 +1416,64 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - 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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-clitestb6yynh5jj-79a739\",\n \"fqdn\": \"cliakstest-clitestb6yynh5jj-79a739-z6gh9o2v.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestb6yynh5jj-79a739-z6gh9o2v.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/220aa2e4-ba64-493c-8264-64354686749c\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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/5d8468d2-adcb-4356-a23d-711adf78b941/\"\n + \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": + \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4424' + - '4053' content-type: - application/json date: - - Fri, 16 Jun 2023 19:25:59 GMT + - Thu, 29 Jun 2023 12:05:56 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 index 6f156e91be0..a20efb088fb 100644 --- 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -32,7 +32,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 Jun 2023 19:26:03 GMT + - Thu, 29 Jun 2023 11:58:29 GMT expires: - '-1' pragma: @@ -55,11 +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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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": {}}}' headers: Accept: - application/json @@ -70,7 +71,7 @@ interactions: Connection: - keep-alive Content-Length: - - '1736' + - '1407' Content-Type: - application/json ParameterSetName: @@ -78,63 +79,61 @@ interactions: --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-n0dlzon7.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-n0dlzon7.portal.hcp.westus2.azmk8s.io\",\n + \ \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"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/bc8f7162-376c-4777-8212-8abfa0a4c80e?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7c057898-3a58-42ab-9780-acb8cdc19915?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3582' + - '3253' content-type: - application/json date: - - Fri, 16 Jun 2023 19:26:10 GMT + - Thu, 29 Jun 2023 11:58:34 GMT expires: - '-1' pragma: @@ -146,7 +145,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -166,23 +165,23 @@ interactions: --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7c057898-3a58-42ab-9780-acb8cdc19915?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"62718fbc-6c37-7747-8212-8abfa0a4c80e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T19:26:10.4647954Z\"\n }" + string: "{\n \"name\": \"9878057c-583a-ab42-9780-acb8cdc19915\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:58:34.898245Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Fri, 16 Jun 2023 19:26:10 GMT + - Thu, 29 Jun 2023 11:58:35 GMT expires: - '-1' pragma: @@ -216,23 +215,23 @@ interactions: --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7c057898-3a58-42ab-9780-acb8cdc19915?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"62718fbc-6c37-7747-8212-8abfa0a4c80e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T19:26:10.4647954Z\"\n }" + string: "{\n \"name\": \"9878057c-583a-ab42-9780-acb8cdc19915\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:58:34.898245Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Fri, 16 Jun 2023 19:26:40 GMT + - Thu, 29 Jun 2023 11:59:04 GMT expires: - '-1' pragma: @@ -266,23 +265,23 @@ interactions: --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7c057898-3a58-42ab-9780-acb8cdc19915?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"62718fbc-6c37-7747-8212-8abfa0a4c80e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T19:26:10.4647954Z\"\n }" + string: "{\n \"name\": \"9878057c-583a-ab42-9780-acb8cdc19915\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:58:34.898245Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Fri, 16 Jun 2023 19:27:11 GMT + - Thu, 29 Jun 2023 11:59:34 GMT expires: - '-1' pragma: @@ -316,23 +315,23 @@ interactions: --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7c057898-3a58-42ab-9780-acb8cdc19915?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"62718fbc-6c37-7747-8212-8abfa0a4c80e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T19:26:10.4647954Z\"\n }" + string: "{\n \"name\": \"9878057c-583a-ab42-9780-acb8cdc19915\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:58:34.898245Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Fri, 16 Jun 2023 19:27:41 GMT + - Thu, 29 Jun 2023 12:00:05 GMT expires: - '-1' pragma: @@ -366,23 +365,23 @@ interactions: --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7c057898-3a58-42ab-9780-acb8cdc19915?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"62718fbc-6c37-7747-8212-8abfa0a4c80e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T19:26:10.4647954Z\"\n }" + string: "{\n \"name\": \"9878057c-583a-ab42-9780-acb8cdc19915\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:58:34.898245Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Fri, 16 Jun 2023 19:28:10 GMT + - Thu, 29 Jun 2023 12:00:35 GMT expires: - '-1' pragma: @@ -416,23 +415,23 @@ interactions: --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7c057898-3a58-42ab-9780-acb8cdc19915?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"62718fbc-6c37-7747-8212-8abfa0a4c80e\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T19:26:10.4647954Z\"\n }" + string: "{\n \"name\": \"9878057c-583a-ab42-9780-acb8cdc19915\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:58:34.898245Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Fri, 16 Jun 2023 19:28:41 GMT + - Thu, 29 Jun 2023 12:01:05 GMT expires: - '-1' pragma: @@ -466,24 +465,23 @@ interactions: --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7c057898-3a58-42ab-9780-acb8cdc19915?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"9878057c-583a-ab42-9780-acb8cdc19915\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:58:34.898245Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '125' content-type: - application/json date: - - Fri, 16 Jun 2023 19:29:11 GMT + - Thu, 29 Jun 2023 12:01:35 GMT expires: - '-1' pragma: @@ -517,65 +515,23 @@ interactions: --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7c057898-3a58-42ab-9780-acb8cdc19915?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-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 }" + string: "{\n \"name\": \"9878057c-583a-ab42-9780-acb8cdc19915\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:58:34.898245Z\"\n }" headers: cache-control: - no-cache content-length: - - '4235' + - '125' content-type: - application/json date: - - Fri, 16 Jun 2023 19:29:12 GMT + - Thu, 29 Jun 2023 12:02:06 GMT expires: - '-1' pragma: @@ -597,44 +553,35 @@ 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 --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7c057898-3a58-42ab-9780-acb8cdc19915?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.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ - : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\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 }" + string: "{\n \"name\": \"9878057c-583a-ab42-9780-acb8cdc19915\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:58:34.898245Z\"\n }" headers: cache-control: - no-cache content-length: - - '1036' + - '125' content-type: - application/json date: - - Fri, 16 Jun 2023 19:29:13 GMT + - Thu, 29 Jun 2023 12:02:36 GMT expires: - '-1' pragma: @@ -653,58 +600,38 @@ 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 --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: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2023-05-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7c057898-3a58-42ab-9780-acb8cdc19915?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\": \"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 }" + string: "{\n \"name\": \"9878057c-583a-ab42-9780-acb8cdc19915\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:58:34.898245Z\"\n }" headers: - azure-asyncoperation: - - 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: - - '988' + - '125' content-type: - application/json date: - - Fri, 16 Jun 2023 19:29:19 GMT + - Thu, 29 Jun 2023 12:03:06 GMT expires: - '-1' pragma: @@ -713,13 +640,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: - - '1199' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -728,29 +657,32 @@ interactions: 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 --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7c057898-3a58-42ab-9780-acb8cdc19915?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 }" + string: "{\n \"name\": \"9878057c-583a-ab42-9780-acb8cdc19915\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:58:34.898245Z\",\n \"endTime\": + \"2023-06-29T12:03:20.229948Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '168' content-type: - application/json date: - - Fri, 16 Jun 2023 19:29:20 GMT + - Thu, 29 Jun 2023 12:03:36 GMT expires: - '-1' pragma: @@ -776,29 +708,72 @@ interactions: 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 --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-05-01 response: body: - string: "{\n \"name\": \"9f680e92-d2a4-2546-8c7e-e6c5919a862b\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T19:29:20.371575Z\"\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-n0dlzon7.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-n0dlzon7.portal.hcp.westus2.azmk8s.io\",\n + \ \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"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/e79b7805-b008-4941-98a0-d85a3e939679\"\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: - - '125' + - '3906' content-type: - application/json date: - - Fri, 16 Jun 2023 19:29:50 GMT + - Thu, 29 Jun 2023 12:03:36 GMT expires: - '-1' pragma: @@ -820,7 +795,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -830,23 +805,34 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2023-05-01 response: body: - string: "{\n \"name\": \"9f680e92-d2a4-2546-8c7e-e6c5919a862b\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T19:29:20.371575Z\"\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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n + }" headers: cache-control: - no-cache content-length: - - '125' + - '1036' content-type: - application/json date: - - Fri, 16 Jun 2023 19:30:19 GMT + - Thu, 29 Jun 2023 12:03:38 GMT expires: - '-1' pragma: @@ -864,6 +850,73 @@ interactions: status: 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}}' + 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.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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-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/1266d33f-4b23-42ca-9263-a1935a59ffef?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '983' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 12:03:43 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: @@ -878,23 +931,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1266d33f-4b23-42ca-9263-a1935a59ffef?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 }" + string: "{\n \"name\": \"3fd36612-234b-ca42-9263-a1935a59ffef\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:03:43.4613523Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 19:30:50 GMT + - Thu, 29 Jun 2023 12:03:43 GMT expires: - '-1' pragma: @@ -926,23 +979,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1266d33f-4b23-42ca-9263-a1935a59ffef?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 }" + string: "{\n \"name\": \"3fd36612-234b-ca42-9263-a1935a59ffef\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:03:43.4613523Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 19:31:20 GMT + - Thu, 29 Jun 2023 12:04:13 GMT expires: - '-1' pragma: @@ -974,23 +1027,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1266d33f-4b23-42ca-9263-a1935a59ffef?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 }" + string: "{\n \"name\": \"3fd36612-234b-ca42-9263-a1935a59ffef\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:03:43.4613523Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 19:31:50 GMT + - Thu, 29 Jun 2023 12:04:43 GMT expires: - '-1' pragma: @@ -1022,23 +1075,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1266d33f-4b23-42ca-9263-a1935a59ffef?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 }" + string: "{\n \"name\": \"3fd36612-234b-ca42-9263-a1935a59ffef\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:03:43.4613523Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 19:32:20 GMT + - Thu, 29 Jun 2023 12:05:14 GMT expires: - '-1' pragma: @@ -1070,23 +1123,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1266d33f-4b23-42ca-9263-a1935a59ffef?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 }" + string: "{\n \"name\": \"3fd36612-234b-ca42-9263-a1935a59ffef\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:03:43.4613523Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 19:32:51 GMT + - Thu, 29 Jun 2023 12:05:44 GMT expires: - '-1' pragma: @@ -1118,23 +1171,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1266d33f-4b23-42ca-9263-a1935a59ffef?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 }" + string: "{\n \"name\": \"3fd36612-234b-ca42-9263-a1935a59ffef\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:03:43.4613523Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 19:33:21 GMT + - Thu, 29 Jun 2023 12:06:14 GMT expires: - '-1' pragma: @@ -1166,23 +1219,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1266d33f-4b23-42ca-9263-a1935a59ffef?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 }" + string: "{\n \"name\": \"3fd36612-234b-ca42-9263-a1935a59ffef\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:03:43.4613523Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 19:33:51 GMT + - Thu, 29 Jun 2023 12:06:44 GMT expires: - '-1' pragma: @@ -1214,23 +1267,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1266d33f-4b23-42ca-9263-a1935a59ffef?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 }" + string: "{\n \"name\": \"3fd36612-234b-ca42-9263-a1935a59ffef\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:03:43.4613523Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 19:34:22 GMT + - Thu, 29 Jun 2023 12:07:14 GMT expires: - '-1' pragma: @@ -1262,23 +1315,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1266d33f-4b23-42ca-9263-a1935a59ffef?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 }" + string: "{\n \"name\": \"3fd36612-234b-ca42-9263-a1935a59ffef\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:03:43.4613523Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 19:34:52 GMT + - Thu, 29 Jun 2023 12:07:45 GMT expires: - '-1' pragma: @@ -1310,23 +1363,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1266d33f-4b23-42ca-9263-a1935a59ffef?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 }" + string: "{\n \"name\": \"3fd36612-234b-ca42-9263-a1935a59ffef\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:03:43.4613523Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 19:35:21 GMT + - Thu, 29 Jun 2023 12:08:15 GMT expires: - '-1' pragma: @@ -1358,24 +1411,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1266d33f-4b23-42ca-9263-a1935a59ffef?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 }" + string: "{\n \"name\": \"3fd36612-234b-ca42-9263-a1935a59ffef\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:03:43.4613523Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 19:35:52 GMT + - Thu, 29 Jun 2023 12:08:44 GMT expires: - '-1' pragma: @@ -1407,34 +1459,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/npwin?api-version=2023-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1266d33f-4b23-42ca-9263-a1935a59ffef?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.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 }" + string: "{\n \"name\": \"3fd36612-234b-ca42-9263-a1935a59ffef\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:03:43.4613523Z\"\n }" headers: cache-control: - no-cache content-length: - - '989' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 19:35:53 GMT + - Thu, 29 Jun 2023 12:09:14 GMT expires: - '-1' pragma: @@ -1456,86 +1497,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-windows-gmsa --yes --aks-custom-headers + - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1266d33f-4b23-42ca-9263-a1935a59ffef?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-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 }" + string: "{\n \"name\": \"3fd36612-234b-ca42-9263-a1935a59ffef\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:03:43.4613523Z\"\n }" headers: cache-control: - no-cache content-length: - - '5016' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 19:35:55 GMT + - Thu, 29 Jun 2023 12:09:44 GMT expires: - '-1' pragma: @@ -1554,127 +1542,37 @@ interactions: code: 200 message: OK - request: - 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.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", "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"}}, - "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {}, - "workloadAutoScalerProfile": {}}}' + body: null headers: - AKSHTTPCustomFeatures: - - Microsoft.ContainerService/AKSWindowsGmsaPreview Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - aks update + - aks nodepool add Connection: - keep-alive - Content-Length: - - '3365' - Content-Type: - - application/json ParameterSetName: - - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers + - --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: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-05-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1266d33f-4b23-42ca-9263-a1935a59ffef?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\": \"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 }" + string: "{\n \"name\": \"3fd36612-234b-ca42-9263-a1935a59ffef\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T12:03:43.4613523Z\",\n \"endTime\": + \"2023-06-29T12:09:47.6889955Z\"\n }" headers: - azure-asyncoperation: - - 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: - - '5114' + - '170' content-type: - application/json date: - - Fri, 16 Jun 2023 19:36:00 GMT + - Thu, 29 Jun 2023 12:10:16 GMT expires: - '-1' pragma: @@ -1689,8 +1587,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: code: 200 message: OK @@ -1702,29 +1598,39 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks update + - aks nodepool add Connection: - keep-alive ParameterSetName: - - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers + - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2023-05-01 response: body: - string: "{\n \"name\": \"cab97258-2211-8b46-9272-984a11f16bfc\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T19:36:00.0287951Z\"\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-20348.1787.230614\",\n \"upgradeSettings\": + {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '126' + - '984' content-type: - application/json date: - - Fri, 16 Jun 2023 19:36:01 GMT + - Thu, 29 Jun 2023 12:10:16 GMT expires: - '-1' pragma: @@ -1746,7 +1652,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -1756,23 +1662,74 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-05-01 response: body: - string: "{\n \"name\": \"cab97258-2211-8b46-9272-984a11f16bfc\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T19:36:00.0287951Z\"\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-n0dlzon7.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-n0dlzon7.portal.hcp.westus2.azmk8s.io\",\n + \ \"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.19.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-20348.1787.230614\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"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/e79b7805-b008-4941-98a0-d85a3e939679\"\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: - - '126' + - '4682' content-type: - application/json date: - - Fri, 16 Jun 2023 19:36:31 GMT + - Thu, 29 Jun 2023 12:10:17 GMT expires: - '-1' pragma: @@ -1791,36 +1748,125 @@ 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": + 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 AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "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/e79b7805-b008-4941-98a0-d85a3e939679"}]}, + "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: + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/AKSWindowsGmsaPreview Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - aks update Connection: - keep-alive + Content-Length: + - '2999' + Content-Type: + - application/json 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 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"name\": \"cab97258-2211-8b46-9272-984a11f16bfc\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T19:36:00.0287951Z\"\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-n0dlzon7.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-n0dlzon7.portal.hcp.westus2.azmk8s.io\",\n + \ \"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.19.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-20348.1787.230614\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 + \ \"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/e79b7805-b008-4941-98a0-d85a3e939679\"\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/cff596ed-d127-45f9-be90-c26998a337dd?api-version=2016-03-30 cache-control: - no-cache content-length: - - '126' + - '4780' content-type: - application/json date: - - Fri, 16 Jun 2023 19:37:01 GMT + - Thu, 29 Jun 2023 12:10:22 GMT expires: - '-1' pragma: @@ -1835,6 +1881,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK @@ -1852,14 +1900,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cff596ed-d127-45f9-be90-c26998a337dd?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 }" + string: "{\n \"name\": \"ed96f5cf-27d1-f945-be90-c26998a337dd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:10:21.9310733Z\"\n }" headers: cache-control: - no-cache @@ -1868,7 +1916,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:37:31 GMT + - Thu, 29 Jun 2023 12:10:22 GMT expires: - '-1' pragma: @@ -1900,14 +1948,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cff596ed-d127-45f9-be90-c26998a337dd?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 }" + string: "{\n \"name\": \"ed96f5cf-27d1-f945-be90-c26998a337dd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:10:21.9310733Z\"\n }" headers: cache-control: - no-cache @@ -1916,7 +1964,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:38:01 GMT + - Thu, 29 Jun 2023 12:10:52 GMT expires: - '-1' pragma: @@ -1948,14 +1996,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cff596ed-d127-45f9-be90-c26998a337dd?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 }" + string: "{\n \"name\": \"ed96f5cf-27d1-f945-be90-c26998a337dd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:10:21.9310733Z\"\n }" headers: cache-control: - no-cache @@ -1964,7 +2012,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:38:31 GMT + - Thu, 29 Jun 2023 12:11:22 GMT expires: - '-1' pragma: @@ -1996,14 +2044,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cff596ed-d127-45f9-be90-c26998a337dd?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 }" + string: "{\n \"name\": \"ed96f5cf-27d1-f945-be90-c26998a337dd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:10:21.9310733Z\"\n }" headers: cache-control: - no-cache @@ -2012,7 +2060,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:39:01 GMT + - Thu, 29 Jun 2023 12:11:53 GMT expires: - '-1' pragma: @@ -2044,14 +2092,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cff596ed-d127-45f9-be90-c26998a337dd?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 }" + string: "{\n \"name\": \"ed96f5cf-27d1-f945-be90-c26998a337dd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:10:21.9310733Z\"\n }" headers: cache-control: - no-cache @@ -2060,7 +2108,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:39:31 GMT + - Thu, 29 Jun 2023 12:12:23 GMT expires: - '-1' pragma: @@ -2092,14 +2140,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cff596ed-d127-45f9-be90-c26998a337dd?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 }" + string: "{\n \"name\": \"ed96f5cf-27d1-f945-be90-c26998a337dd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:10:21.9310733Z\"\n }" headers: cache-control: - no-cache @@ -2108,7 +2156,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:40:02 GMT + - Thu, 29 Jun 2023 12:12:53 GMT expires: - '-1' pragma: @@ -2140,14 +2188,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cff596ed-d127-45f9-be90-c26998a337dd?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 }" + string: "{\n \"name\": \"ed96f5cf-27d1-f945-be90-c26998a337dd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:10:21.9310733Z\"\n }" headers: cache-control: - no-cache @@ -2156,7 +2204,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:40:32 GMT + - Thu, 29 Jun 2023 12:13:23 GMT expires: - '-1' pragma: @@ -2188,14 +2236,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cff596ed-d127-45f9-be90-c26998a337dd?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 }" + string: "{\n \"name\": \"ed96f5cf-27d1-f945-be90-c26998a337dd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:10:21.9310733Z\"\n }" headers: cache-control: - no-cache @@ -2204,7 +2252,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:41:02 GMT + - Thu, 29 Jun 2023 12:13:53 GMT expires: - '-1' pragma: @@ -2236,14 +2284,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cff596ed-d127-45f9-be90-c26998a337dd?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 }" + string: "{\n \"name\": \"ed96f5cf-27d1-f945-be90-c26998a337dd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:10:21.9310733Z\"\n }" headers: cache-control: - no-cache @@ -2252,7 +2300,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:41:33 GMT + - Thu, 29 Jun 2023 12:14:23 GMT expires: - '-1' pragma: @@ -2284,14 +2332,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cff596ed-d127-45f9-be90-c26998a337dd?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 }" + string: "{\n \"name\": \"ed96f5cf-27d1-f945-be90-c26998a337dd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:10:21.9310733Z\"\n }" headers: cache-control: - no-cache @@ -2300,7 +2348,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:42:04 GMT + - Thu, 29 Jun 2023 12:14:54 GMT expires: - '-1' pragma: @@ -2332,14 +2380,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cff596ed-d127-45f9-be90-c26998a337dd?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 }" + string: "{\n \"name\": \"ed96f5cf-27d1-f945-be90-c26998a337dd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:10:21.9310733Z\"\n }" headers: cache-control: - no-cache @@ -2348,7 +2396,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:42:34 GMT + - Thu, 29 Jun 2023 12:15:24 GMT expires: - '-1' pragma: @@ -2380,14 +2428,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cff596ed-d127-45f9-be90-c26998a337dd?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 }" + string: "{\n \"name\": \"ed96f5cf-27d1-f945-be90-c26998a337dd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:10:21.9310733Z\"\n }" headers: cache-control: - no-cache @@ -2396,7 +2444,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:43:04 GMT + - Thu, 29 Jun 2023 12:15:53 GMT expires: - '-1' pragma: @@ -2428,14 +2476,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cff596ed-d127-45f9-be90-c26998a337dd?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 }" + string: "{\n \"name\": \"ed96f5cf-27d1-f945-be90-c26998a337dd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:10:21.9310733Z\"\n }" headers: cache-control: - no-cache @@ -2444,7 +2492,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:43:34 GMT + - Thu, 29 Jun 2023 12:16:23 GMT expires: - '-1' pragma: @@ -2476,14 +2524,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cff596ed-d127-45f9-be90-c26998a337dd?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 }" + string: "{\n \"name\": \"ed96f5cf-27d1-f945-be90-c26998a337dd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:10:21.9310733Z\"\n }" headers: cache-control: - no-cache @@ -2492,7 +2540,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:44:05 GMT + - Thu, 29 Jun 2023 12:16:55 GMT expires: - '-1' pragma: @@ -2524,14 +2572,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cff596ed-d127-45f9-be90-c26998a337dd?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 }" + string: "{\n \"name\": \"ed96f5cf-27d1-f945-be90-c26998a337dd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:10:21.9310733Z\"\n }" headers: cache-control: - no-cache @@ -2540,7 +2588,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:44:35 GMT + - Thu, 29 Jun 2023 12:17:25 GMT expires: - '-1' pragma: @@ -2572,14 +2620,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cff596ed-d127-45f9-be90-c26998a337dd?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 }" + string: "{\n \"name\": \"ed96f5cf-27d1-f945-be90-c26998a337dd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:10:21.9310733Z\"\n }" headers: cache-control: - no-cache @@ -2588,7 +2636,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:45:05 GMT + - Thu, 29 Jun 2023 12:17:55 GMT expires: - '-1' pragma: @@ -2620,14 +2668,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cff596ed-d127-45f9-be90-c26998a337dd?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 }" + string: "{\n \"name\": \"ed96f5cf-27d1-f945-be90-c26998a337dd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:10:21.9310733Z\"\n }" headers: cache-control: - no-cache @@ -2636,7 +2684,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:45:35 GMT + - Thu, 29 Jun 2023 12:18:24 GMT expires: - '-1' pragma: @@ -2668,14 +2716,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cff596ed-d127-45f9-be90-c26998a337dd?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 }" + string: "{\n \"name\": \"ed96f5cf-27d1-f945-be90-c26998a337dd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:10:21.9310733Z\"\n }" headers: cache-control: - no-cache @@ -2684,7 +2732,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:46:05 GMT + - Thu, 29 Jun 2023 12:18:54 GMT expires: - '-1' pragma: @@ -2716,14 +2764,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cff596ed-d127-45f9-be90-c26998a337dd?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 }" + string: "{\n \"name\": \"ed96f5cf-27d1-f945-be90-c26998a337dd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:10:21.9310733Z\"\n }" headers: cache-control: - no-cache @@ -2732,7 +2780,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:46:35 GMT + - Thu, 29 Jun 2023 12:19:24 GMT expires: - '-1' pragma: @@ -2764,14 +2812,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cff596ed-d127-45f9-be90-c26998a337dd?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 }" + string: "{\n \"name\": \"ed96f5cf-27d1-f945-be90-c26998a337dd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:10:21.9310733Z\"\n }" headers: cache-control: - no-cache @@ -2780,7 +2828,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:47:05 GMT + - Thu, 29 Jun 2023 12:19:55 GMT expires: - '-1' pragma: @@ -2812,14 +2860,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cff596ed-d127-45f9-be90-c26998a337dd?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 }" + string: "{\n \"name\": \"ed96f5cf-27d1-f945-be90-c26998a337dd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:10:21.9310733Z\"\n }" headers: cache-control: - no-cache @@ -2828,7 +2876,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:47:36 GMT + - Thu, 29 Jun 2023 12:20:25 GMT expires: - '-1' pragma: @@ -2860,14 +2908,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cff596ed-d127-45f9-be90-c26998a337dd?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 }" + string: "{\n \"name\": \"ed96f5cf-27d1-f945-be90-c26998a337dd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:10:21.9310733Z\"\n }" headers: cache-control: - no-cache @@ -2876,7 +2924,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:48:06 GMT + - Thu, 29 Jun 2023 12:20:55 GMT expires: - '-1' pragma: @@ -2908,14 +2956,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cff596ed-d127-45f9-be90-c26998a337dd?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 }" + string: "{\n \"name\": \"ed96f5cf-27d1-f945-be90-c26998a337dd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:10:21.9310733Z\"\n }" headers: cache-control: - no-cache @@ -2924,7 +2972,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:48:36 GMT + - Thu, 29 Jun 2023 12:21:25 GMT expires: - '-1' pragma: @@ -2956,14 +3004,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cff596ed-d127-45f9-be90-c26998a337dd?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 }" + string: "{\n \"name\": \"ed96f5cf-27d1-f945-be90-c26998a337dd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:10:21.9310733Z\"\n }" headers: cache-control: - no-cache @@ -2972,7 +3020,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:49:06 GMT + - Thu, 29 Jun 2023 12:21:55 GMT expires: - '-1' pragma: @@ -3004,14 +3052,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cff596ed-d127-45f9-be90-c26998a337dd?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 }" + string: "{\n \"name\": \"ed96f5cf-27d1-f945-be90-c26998a337dd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:10:21.9310733Z\"\n }" headers: cache-control: - no-cache @@ -3020,7 +3068,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:49:37 GMT + - Thu, 29 Jun 2023 12:22:25 GMT expires: - '-1' pragma: @@ -3052,15 +3100,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cff596ed-d127-45f9-be90-c26998a337dd?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"ed96f5cf-27d1-f945-be90-c26998a337dd\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T12:10:21.9310733Z\",\n \"endTime\": + \"2023-06-29T12:22:50.6652272Z\"\n }" headers: cache-control: - no-cache @@ -3069,7 +3117,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:50:08 GMT + - Thu, 29 Jun 2023 12:22:56 GMT expires: - '-1' pragma: @@ -3101,78 +3149,76 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-n0dlzon7.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-n0dlzon7.portal.hcp.westus2.azmk8s.io\",\n + \ \"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.19.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-20348.1787.230614\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 + \ \"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/e79b7805-b008-4941-98a0-d85a3e939679\"\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: - - '5114' + - '4780' content-type: - application/json date: - - Fri, 16 Jun 2023 19:50:09 GMT + - Thu, 29 Jun 2023 12:22:57 GMT expires: - '-1' pragma: @@ -3204,47 +3250,46 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-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.1787.230614\"\ - ,\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.19.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-20348.1787.230614\",\n \"upgradeSettings\": + {},\n \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '2090' + - '2085' content-type: - application/json date: - - Fri, 16 Jun 2023 19:50:12 GMT + - Thu, 29 Jun 2023 12:22:58 GMT expires: - '-1' pragma: @@ -3278,8 +3323,8 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/cliakstest000001/agentPools/npwin?api-version=2023-05-01 response: @@ -3287,17 +3332,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/67fbccd6-bf58-40fa-bc7e-e128c3569502?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Fri, 16 Jun 2023 19:50:12 GMT + - Thu, 29 Jun 2023 12:22:58 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/67fbccd6-bf58-40fa-bc7e-e128c3569502?api-version=2016-03-30 pragma: - no-cache server: @@ -3327,8 +3372,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/cliakstest000001?api-version=2023-05-01 response: @@ -3336,17 +3381,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6b399f90-8392-44d4-a19e-a4adcaa7b843?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Fri, 16 Jun 2023 19:50:20 GMT + - Thu, 29 Jun 2023 12:23:04 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/6b399f90-8392-44d4-a19e-a4adcaa7b843?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_with_windows_password.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_update_with_windows_password.yaml index ad28394e739..41560208e96 100644 --- 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -32,7 +32,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 Jun 2023 19:50:31 GMT + - Thu, 29 Jun 2023 11:58:43 GMT expires: - '-1' pragma: @@ -55,11 +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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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": + {}}}' headers: Accept: - application/json @@ -70,7 +71,7 @@ interactions: Connection: - keep-alive Content-Length: - - '1725' + - '1396' Content-Type: - application/json ParameterSetName: @@ -78,63 +79,61 @@ interactions: --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-8reppuar.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-8reppuar.portal.hcp.westus2.azmk8s.io\",\n + \ \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"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/f20d2777-b9ea-4ffb-add1-ce7f4678f606?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8dcbdff7-b1b0-4fd3-9ccb-6d469c461239?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3582' + - '3253' content-type: - application/json date: - - Fri, 16 Jun 2023 19:50:38 GMT + - Thu, 29 Jun 2023 11:58:49 GMT expires: - '-1' pragma: @@ -146,7 +145,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -166,14 +165,164 @@ interactions: --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8dcbdff7-b1b0-4fd3-9ccb-6d469c461239?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f7dfcb8d-b0b1-d34f-9ccb-6d469c461239\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:58:49.195183Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:58: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 + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8dcbdff7-b1b0-4fd3-9ccb-6d469c461239?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f7dfcb8d-b0b1-d34f-9ccb-6d469c461239\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:58:49.195183Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11:59: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 --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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8dcbdff7-b1b0-4fd3-9ccb-6d469c461239?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f7dfcb8d-b0b1-d34f-9ccb-6d469c461239\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:58:49.195183Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 11: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: + - 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8dcbdff7-b1b0-4fd3-9ccb-6d469c461239?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"77270df2-eab9-fb4f-add1-ce7f4678f606\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T19:50:38.515323Z\"\n }" + string: "{\n \"name\": \"f7dfcb8d-b0b1-d34f-9ccb-6d469c461239\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:58:49.195183Z\"\n }" headers: cache-control: - no-cache @@ -182,7 +331,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:50:38 GMT + - Thu, 29 Jun 2023 12:00:20 GMT expires: - '-1' pragma: @@ -216,14 +365,14 @@ interactions: --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8dcbdff7-b1b0-4fd3-9ccb-6d469c461239?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"77270df2-eab9-fb4f-add1-ce7f4678f606\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T19:50:38.515323Z\"\n }" + string: "{\n \"name\": \"f7dfcb8d-b0b1-d34f-9ccb-6d469c461239\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:58:49.195183Z\"\n }" headers: cache-control: - no-cache @@ -232,7 +381,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:51:08 GMT + - Thu, 29 Jun 2023 12:00:50 GMT expires: - '-1' pragma: @@ -266,14 +415,14 @@ interactions: --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8dcbdff7-b1b0-4fd3-9ccb-6d469c461239?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"77270df2-eab9-fb4f-add1-ce7f4678f606\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T19:50:38.515323Z\"\n }" + string: "{\n \"name\": \"f7dfcb8d-b0b1-d34f-9ccb-6d469c461239\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:58:49.195183Z\"\n }" headers: cache-control: - no-cache @@ -282,7 +431,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:51:38 GMT + - Thu, 29 Jun 2023 12:01:20 GMT expires: - '-1' pragma: @@ -316,14 +465,14 @@ interactions: --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8dcbdff7-b1b0-4fd3-9ccb-6d469c461239?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"77270df2-eab9-fb4f-add1-ce7f4678f606\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T19:50:38.515323Z\"\n }" + string: "{\n \"name\": \"f7dfcb8d-b0b1-d34f-9ccb-6d469c461239\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:58:49.195183Z\"\n }" headers: cache-control: - no-cache @@ -332,7 +481,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:52:08 GMT + - Thu, 29 Jun 2023 12:01:50 GMT expires: - '-1' pragma: @@ -366,14 +515,14 @@ interactions: --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8dcbdff7-b1b0-4fd3-9ccb-6d469c461239?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"77270df2-eab9-fb4f-add1-ce7f4678f606\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T19:50:38.515323Z\"\n }" + string: "{\n \"name\": \"f7dfcb8d-b0b1-d34f-9ccb-6d469c461239\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:58:49.195183Z\"\n }" headers: cache-control: - no-cache @@ -382,7 +531,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:52:39 GMT + - Thu, 29 Jun 2023 12:02:20 GMT expires: - '-1' pragma: @@ -416,14 +565,14 @@ interactions: --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8dcbdff7-b1b0-4fd3-9ccb-6d469c461239?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"77270df2-eab9-fb4f-add1-ce7f4678f606\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T19:50:38.515323Z\"\n }" + string: "{\n \"name\": \"f7dfcb8d-b0b1-d34f-9ccb-6d469c461239\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:58:49.195183Z\"\n }" headers: cache-control: - no-cache @@ -432,7 +581,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:53:09 GMT + - Thu, 29 Jun 2023 12:02:50 GMT expires: - '-1' pragma: @@ -466,14 +615,14 @@ interactions: --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8dcbdff7-b1b0-4fd3-9ccb-6d469c461239?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"77270df2-eab9-fb4f-add1-ce7f4678f606\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T19:50:38.515323Z\"\n }" + string: "{\n \"name\": \"f7dfcb8d-b0b1-d34f-9ccb-6d469c461239\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:58:49.195183Z\"\n }" headers: cache-control: - no-cache @@ -482,7 +631,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:53:39 GMT + - Thu, 29 Jun 2023 12:03:20 GMT expires: - '-1' pragma: @@ -516,14 +665,14 @@ interactions: --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8dcbdff7-b1b0-4fd3-9ccb-6d469c461239?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"77270df2-eab9-fb4f-add1-ce7f4678f606\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T19:50:38.515323Z\"\n }" + string: "{\n \"name\": \"f7dfcb8d-b0b1-d34f-9ccb-6d469c461239\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:58:49.195183Z\"\n }" headers: cache-control: - no-cache @@ -532,7 +681,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:54:09 GMT + - Thu, 29 Jun 2023 12:03:50 GMT expires: - '-1' pragma: @@ -566,15 +715,15 @@ interactions: --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8dcbdff7-b1b0-4fd3-9ccb-6d469c461239?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 }" + string: "{\n \"name\": \"f7dfcb8d-b0b1-d34f-9ccb-6d469c461239\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:58:49.195183Z\",\n \"endTime\": + \"2023-06-29T12:04:09.2095036Z\"\n }" headers: cache-control: - no-cache @@ -583,7 +732,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:54:39 GMT + - Thu, 29 Jun 2023 12:04:20 GMT expires: - '-1' pragma: @@ -617,65 +766,64 @@ interactions: --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-8reppuar.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-8reppuar.portal.hcp.westus2.azmk8s.io\",\n + \ \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"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/913267e1-4a9f-439b-bc1b-5585732fd2fb\"\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: - - '4235' + - '3906' content-type: - application/json date: - - Fri, 16 Jun 2023 19:54:40 GMT + - Thu, 29 Jun 2023 12:04:21 GMT expires: - '-1' pragma: @@ -707,25 +855,25 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-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 }" + 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.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n + }" headers: cache-control: - no-cache @@ -734,7 +882,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:54:42 GMT + - Thu, 29 Jun 2023 12:04:23 GMT expires: - '-1' pragma: @@ -775,36 +923,35 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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-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/f7701f74-6ce1-40b1-b2a0-44e3f5ebead7?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0668fc6d-e7fb-4f9c-bace-30bf6824337f?api-version=2016-03-30 cache-control: - no-cache content-length: - - '988' + - '983' content-type: - application/json date: - - Fri, 16 Jun 2023 19:54:48 GMT + - Thu, 29 Jun 2023 12:04:27 GMT expires: - '-1' pragma: @@ -834,14 +981,158 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0668fc6d-e7fb-4f9c-bace-30bf6824337f?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"6dfc6806-fbe7-9c4f-bace-30bf6824337f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:04:27.4770618Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 12:04: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 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0668fc6d-e7fb-4f9c-bace-30bf6824337f?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"6dfc6806-fbe7-9c4f-bace-30bf6824337f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:04:27.4770618Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 12:04: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 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0668fc6d-e7fb-4f9c-bace-30bf6824337f?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"6dfc6806-fbe7-9c4f-bace-30bf6824337f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:04:27.4770618Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 12:05: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 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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0668fc6d-e7fb-4f9c-bace-30bf6824337f?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 }" + string: "{\n \"name\": \"6dfc6806-fbe7-9c4f-bace-30bf6824337f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:04:27.4770618Z\"\n }" headers: cache-control: - no-cache @@ -850,7 +1141,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:54:48 GMT + - Thu, 29 Jun 2023 12:05:58 GMT expires: - '-1' pragma: @@ -882,14 +1173,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0668fc6d-e7fb-4f9c-bace-30bf6824337f?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 }" + string: "{\n \"name\": \"6dfc6806-fbe7-9c4f-bace-30bf6824337f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:04:27.4770618Z\"\n }" headers: cache-control: - no-cache @@ -898,7 +1189,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:55:17 GMT + - Thu, 29 Jun 2023 12:06:27 GMT expires: - '-1' pragma: @@ -930,14 +1221,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0668fc6d-e7fb-4f9c-bace-30bf6824337f?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 }" + string: "{\n \"name\": \"6dfc6806-fbe7-9c4f-bace-30bf6824337f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:04:27.4770618Z\"\n }" headers: cache-control: - no-cache @@ -946,7 +1237,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:55:47 GMT + - Thu, 29 Jun 2023 12:06:57 GMT expires: - '-1' pragma: @@ -978,14 +1269,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0668fc6d-e7fb-4f9c-bace-30bf6824337f?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 }" + string: "{\n \"name\": \"6dfc6806-fbe7-9c4f-bace-30bf6824337f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:04:27.4770618Z\"\n }" headers: cache-control: - no-cache @@ -994,7 +1285,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:56:18 GMT + - Thu, 29 Jun 2023 12:07:27 GMT expires: - '-1' pragma: @@ -1026,14 +1317,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0668fc6d-e7fb-4f9c-bace-30bf6824337f?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 }" + string: "{\n \"name\": \"6dfc6806-fbe7-9c4f-bace-30bf6824337f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:04:27.4770618Z\"\n }" headers: cache-control: - no-cache @@ -1042,7 +1333,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:56:48 GMT + - Thu, 29 Jun 2023 12:07:57 GMT expires: - '-1' pragma: @@ -1074,14 +1365,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0668fc6d-e7fb-4f9c-bace-30bf6824337f?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 }" + string: "{\n \"name\": \"6dfc6806-fbe7-9c4f-bace-30bf6824337f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:04:27.4770618Z\"\n }" headers: cache-control: - no-cache @@ -1090,7 +1381,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:57:19 GMT + - Thu, 29 Jun 2023 12:08:28 GMT expires: - '-1' pragma: @@ -1122,14 +1413,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0668fc6d-e7fb-4f9c-bace-30bf6824337f?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 }" + string: "{\n \"name\": \"6dfc6806-fbe7-9c4f-bace-30bf6824337f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:04:27.4770618Z\"\n }" headers: cache-control: - no-cache @@ -1138,7 +1429,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:57:49 GMT + - Thu, 29 Jun 2023 12:08:58 GMT expires: - '-1' pragma: @@ -1170,14 +1461,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0668fc6d-e7fb-4f9c-bace-30bf6824337f?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 }" + string: "{\n \"name\": \"6dfc6806-fbe7-9c4f-bace-30bf6824337f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:04:27.4770618Z\"\n }" headers: cache-control: - no-cache @@ -1186,7 +1477,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:58:18 GMT + - Thu, 29 Jun 2023 12:09:28 GMT expires: - '-1' pragma: @@ -1218,14 +1509,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0668fc6d-e7fb-4f9c-bace-30bf6824337f?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 }" + string: "{\n \"name\": \"6dfc6806-fbe7-9c4f-bace-30bf6824337f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:04:27.4770618Z\"\n }" headers: cache-control: - no-cache @@ -1234,7 +1525,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:58:49 GMT + - Thu, 29 Jun 2023 12:09:59 GMT expires: - '-1' pragma: @@ -1266,14 +1557,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0668fc6d-e7fb-4f9c-bace-30bf6824337f?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 }" + string: "{\n \"name\": \"6dfc6806-fbe7-9c4f-bace-30bf6824337f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:04:27.4770618Z\"\n }" headers: cache-control: - no-cache @@ -1282,7 +1573,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:59:20 GMT + - Thu, 29 Jun 2023 12:10:28 GMT expires: - '-1' pragma: @@ -1314,14 +1605,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0668fc6d-e7fb-4f9c-bace-30bf6824337f?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 }" + string: "{\n \"name\": \"6dfc6806-fbe7-9c4f-bace-30bf6824337f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:04:27.4770618Z\"\n }" headers: cache-control: - no-cache @@ -1330,7 +1621,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 19:59:50 GMT + - Thu, 29 Jun 2023 12:10:58 GMT expires: - '-1' pragma: @@ -1362,14 +1653,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0668fc6d-e7fb-4f9c-bace-30bf6824337f?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 }" + string: "{\n \"name\": \"6dfc6806-fbe7-9c4f-bace-30bf6824337f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:04:27.4770618Z\"\n }" headers: cache-control: - no-cache @@ -1378,7 +1669,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 20:00:20 GMT + - Thu, 29 Jun 2023 12:11:29 GMT expires: - '-1' pragma: @@ -1410,15 +1701,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0668fc6d-e7fb-4f9c-bace-30bf6824337f?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"6dfc6806-fbe7-9c4f-bace-30bf6824337f\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T12:04:27.4770618Z\",\n \"endTime\": + \"2023-06-29T12:11:55.7532683Z\"\n }" headers: cache-control: - no-cache @@ -1427,7 +1718,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 20:00:51 GMT + - Thu, 29 Jun 2023 12:11:59 GMT expires: - '-1' pragma: @@ -1459,34 +1750,33 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/npwin?api-version=2023-05-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.1787.230614\",\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-20348.1787.230614\",\n \"upgradeSettings\": + {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '989' + - '984' content-type: - application/json date: - - Fri, 16 Jun 2023 20:00:52 GMT + - Thu, 29 Jun 2023 12:12:00 GMT expires: - '-1' pragma: @@ -1518,76 +1808,74 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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: - - '5016' - content-type: - - application/json - date: - - Fri, 16 Jun 2023 20:00:53 GMT + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-8reppuar.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-8reppuar.portal.hcp.westus2.azmk8s.io\",\n + \ \"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.19.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-20348.1787.230614\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"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/913267e1-4a9f-439b-bc1b-5585732fd2fb\"\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: + - '4682' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 12:12:01 GMT expires: - '-1' pragma: @@ -1621,15 +1909,15 @@ interactions: "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", "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"}]}, + {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "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/913267e1-4a9f-439b-bc1b-5585732fd2fb"}]}, "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"}}, @@ -1645,84 +1933,82 @@ interactions: Connection: - keep-alive Content-Length: - - '3362' + - '2996' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-8reppuar.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-8reppuar.portal.hcp.westus2.azmk8s.io\",\n + \ \"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.19.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-20348.1787.230614\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"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/913267e1-4a9f-439b-bc1b-5585732fd2fb\"\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/729c6f38-1797-4bd2-8a42-6ca2b7bf536f?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2c31d528-8e58-43d1-a705-457fa4c64976?api-version=2016-03-30 cache-control: - no-cache content-length: - - '5013' + - '4679' content-type: - application/json date: - - Fri, 16 Jun 2023 20:00:59 GMT + - Thu, 29 Jun 2023 12:12:06 GMT expires: - '-1' pragma: @@ -1756,23 +2042,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2c31d528-8e58-43d1-a705-457fa4c64976?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 }" + string: "{\n \"name\": \"28d5312c-588e-d143-a705-457fa4c64976\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:12:05.6658118Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 20:00:59 GMT + - Thu, 29 Jun 2023 12:12:06 GMT expires: - '-1' pragma: @@ -1804,23 +2090,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2c31d528-8e58-43d1-a705-457fa4c64976?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 }" + string: "{\n \"name\": \"28d5312c-588e-d143-a705-457fa4c64976\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:12:05.6658118Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 20:01:29 GMT + - Thu, 29 Jun 2023 12:12:36 GMT expires: - '-1' pragma: @@ -1852,23 +2138,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2c31d528-8e58-43d1-a705-457fa4c64976?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 }" + string: "{\n \"name\": \"28d5312c-588e-d143-a705-457fa4c64976\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:12:05.6658118Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 20:01:59 GMT + - Thu, 29 Jun 2023 12:13:06 GMT expires: - '-1' pragma: @@ -1900,23 +2186,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2c31d528-8e58-43d1-a705-457fa4c64976?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 }" + string: "{\n \"name\": \"28d5312c-588e-d143-a705-457fa4c64976\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:12:05.6658118Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 20:02:30 GMT + - Thu, 29 Jun 2023 12:13:37 GMT expires: - '-1' pragma: @@ -1948,23 +2234,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2c31d528-8e58-43d1-a705-457fa4c64976?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 }" + string: "{\n \"name\": \"28d5312c-588e-d143-a705-457fa4c64976\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:12:05.6658118Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 20:03:00 GMT + - Thu, 29 Jun 2023 12:14:07 GMT expires: - '-1' pragma: @@ -1996,23 +2282,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2c31d528-8e58-43d1-a705-457fa4c64976?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 }" + string: "{\n \"name\": \"28d5312c-588e-d143-a705-457fa4c64976\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:12:05.6658118Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 20:03:30 GMT + - Thu, 29 Jun 2023 12:14:37 GMT expires: - '-1' pragma: @@ -2044,23 +2330,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2c31d528-8e58-43d1-a705-457fa4c64976?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 }" + string: "{\n \"name\": \"28d5312c-588e-d143-a705-457fa4c64976\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:12:05.6658118Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 20:04:00 GMT + - Thu, 29 Jun 2023 12:15:07 GMT expires: - '-1' pragma: @@ -2092,23 +2378,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2c31d528-8e58-43d1-a705-457fa4c64976?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 }" + string: "{\n \"name\": \"28d5312c-588e-d143-a705-457fa4c64976\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:12:05.6658118Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 20:04:31 GMT + - Thu, 29 Jun 2023 12:15:37 GMT expires: - '-1' pragma: @@ -2140,23 +2426,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2c31d528-8e58-43d1-a705-457fa4c64976?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 }" + string: "{\n \"name\": \"28d5312c-588e-d143-a705-457fa4c64976\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:12:05.6658118Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 20:05:01 GMT + - Thu, 29 Jun 2023 12:16:07 GMT expires: - '-1' pragma: @@ -2188,23 +2474,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2c31d528-8e58-43d1-a705-457fa4c64976?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 }" + string: "{\n \"name\": \"28d5312c-588e-d143-a705-457fa4c64976\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:12:05.6658118Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 20:05:31 GMT + - Thu, 29 Jun 2023 12:16:38 GMT expires: - '-1' pragma: @@ -2236,23 +2522,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2c31d528-8e58-43d1-a705-457fa4c64976?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 }" + string: "{\n \"name\": \"28d5312c-588e-d143-a705-457fa4c64976\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:12:05.6658118Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 20:06:01 GMT + - Thu, 29 Jun 2023 12:17:08 GMT expires: - '-1' pragma: @@ -2284,23 +2570,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2c31d528-8e58-43d1-a705-457fa4c64976?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 }" + string: "{\n \"name\": \"28d5312c-588e-d143-a705-457fa4c64976\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:12:05.6658118Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 20:06:31 GMT + - Thu, 29 Jun 2023 12:17:38 GMT expires: - '-1' pragma: @@ -2332,23 +2618,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2c31d528-8e58-43d1-a705-457fa4c64976?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 }" + string: "{\n \"name\": \"28d5312c-588e-d143-a705-457fa4c64976\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:12:05.6658118Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 20:07:01 GMT + - Thu, 29 Jun 2023 12:18:08 GMT expires: - '-1' pragma: @@ -2380,23 +2666,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2c31d528-8e58-43d1-a705-457fa4c64976?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 }" + string: "{\n \"name\": \"28d5312c-588e-d143-a705-457fa4c64976\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:12:05.6658118Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 20:07:32 GMT + - Thu, 29 Jun 2023 12:18:38 GMT expires: - '-1' pragma: @@ -2428,23 +2714,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2c31d528-8e58-43d1-a705-457fa4c64976?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 }" + string: "{\n \"name\": \"28d5312c-588e-d143-a705-457fa4c64976\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:12:05.6658118Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 20:08:02 GMT + - Thu, 29 Jun 2023 12:19:08 GMT expires: - '-1' pragma: @@ -2476,23 +2762,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2c31d528-8e58-43d1-a705-457fa4c64976?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 }" + string: "{\n \"name\": \"28d5312c-588e-d143-a705-457fa4c64976\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:12:05.6658118Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 20:08:32 GMT + - Thu, 29 Jun 2023 12:19:38 GMT expires: - '-1' pragma: @@ -2524,23 +2810,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2c31d528-8e58-43d1-a705-457fa4c64976?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 }" + string: "{\n \"name\": \"28d5312c-588e-d143-a705-457fa4c64976\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:12:05.6658118Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 20:09:02 GMT + - Thu, 29 Jun 2023 12:20:08 GMT expires: - '-1' pragma: @@ -2572,23 +2858,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2c31d528-8e58-43d1-a705-457fa4c64976?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 }" + string: "{\n \"name\": \"28d5312c-588e-d143-a705-457fa4c64976\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:12:05.6658118Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 20:09:33 GMT + - Thu, 29 Jun 2023 12:20:39 GMT expires: - '-1' pragma: @@ -2620,23 +2906,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2c31d528-8e58-43d1-a705-457fa4c64976?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 }" + string: "{\n \"name\": \"28d5312c-588e-d143-a705-457fa4c64976\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:12:05.6658118Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 20:10:03 GMT + - Thu, 29 Jun 2023 12:21:09 GMT expires: - '-1' pragma: @@ -2668,23 +2954,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2c31d528-8e58-43d1-a705-457fa4c64976?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 }" + string: "{\n \"name\": \"28d5312c-588e-d143-a705-457fa4c64976\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:12:05.6658118Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 20:10:33 GMT + - Thu, 29 Jun 2023 12:21:40 GMT expires: - '-1' pragma: @@ -2716,23 +3002,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2c31d528-8e58-43d1-a705-457fa4c64976?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 }" + string: "{\n \"name\": \"28d5312c-588e-d143-a705-457fa4c64976\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:12:05.6658118Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 20:11:03 GMT + - Thu, 29 Jun 2023 12:22:10 GMT expires: - '-1' pragma: @@ -2764,23 +3050,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2c31d528-8e58-43d1-a705-457fa4c64976?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 }" + string: "{\n \"name\": \"28d5312c-588e-d143-a705-457fa4c64976\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:12:05.6658118Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 20:11:33 GMT + - Thu, 29 Jun 2023 12:22:40 GMT expires: - '-1' pragma: @@ -2812,23 +3098,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2c31d528-8e58-43d1-a705-457fa4c64976?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 }" + string: "{\n \"name\": \"28d5312c-588e-d143-a705-457fa4c64976\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:12:05.6658118Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 20:12:03 GMT + - Thu, 29 Jun 2023 12:23:10 GMT expires: - '-1' pragma: @@ -2860,23 +3146,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2c31d528-8e58-43d1-a705-457fa4c64976?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 }" + string: "{\n \"name\": \"28d5312c-588e-d143-a705-457fa4c64976\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:12:05.6658118Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 20:12:34 GMT + - Thu, 29 Jun 2023 12:23:40 GMT expires: - '-1' pragma: @@ -2908,23 +3194,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2c31d528-8e58-43d1-a705-457fa4c64976?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 }" + string: "{\n \"name\": \"28d5312c-588e-d143-a705-457fa4c64976\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:12:05.6658118Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 20:13:04 GMT + - Thu, 29 Jun 2023 12:24:10 GMT expires: - '-1' pragma: @@ -2956,23 +3242,23 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2c31d528-8e58-43d1-a705-457fa4c64976?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 }" + string: "{\n \"name\": \"28d5312c-588e-d143-a705-457fa4c64976\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:12:05.6658118Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 20:13:34 GMT + - Thu, 29 Jun 2023 12:24:40 GMT expires: - '-1' pragma: @@ -3004,24 +3290,24 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2c31d528-8e58-43d1-a705-457fa4c64976?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"28d5312c-588e-d143-a705-457fa4c64976\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T12:12:05.6658118Z\",\n \"endTime\": + \"2023-06-29T12:24:53.9939376Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '170' content-type: - application/json date: - - Fri, 16 Jun 2023 20:14:05 GMT + - Thu, 29 Jun 2023 12:25:10 GMT expires: - '-1' pragma: @@ -3053,76 +3339,74 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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: - - '5016' - content-type: - - application/json - date: - - Fri, 16 Jun 2023 20:14:06 GMT + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-8reppuar.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliaksdns000002-8reppuar.portal.hcp.westus2.azmk8s.io\",\n + \ \"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.19.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-20348.1787.230614\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": + {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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 \"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/913267e1-4a9f-439b-bc1b-5585732fd2fb\"\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: + - '4682' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 12:25:11 GMT expires: - '-1' pragma: @@ -3154,47 +3438,46 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-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.1787.230614\"\ - ,\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.19.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-20348.1787.230614\",\n \"upgradeSettings\": + {},\n \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '2090' + - '2085' content-type: - application/json date: - - Fri, 16 Jun 2023 20:14:06 GMT + - Thu, 29 Jun 2023 12:25:12 GMT expires: - '-1' pragma: @@ -3228,8 +3511,8 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/cliakstest000001/agentPools/npwin?api-version=2023-05-01 response: @@ -3237,17 +3520,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/00cb139f-5652-4e9a-bb9f-8675ded389ee?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Fri, 16 Jun 2023 20:14:08 GMT + - Thu, 29 Jun 2023 12:25:13 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/00cb139f-5652-4e9a-bb9f-8675ded389ee?api-version=2016-03-30 pragma: - no-cache server: @@ -3257,7 +3540,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' status: code: 202 message: Accepted @@ -3277,8 +3560,8 @@ interactions: ParameterSetName: - -g -n --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/cliakstest000001?api-version=2023-05-01 response: @@ -3286,17 +3569,17 @@ interactions: string: '' headers: azure-asyncoperation: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9a55bbbd-6f9d-40cf-b15a-5fd220728af8?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Fri, 16 Jun 2023 20:14:15 GMT + - Thu, 29 Jun 2023 12:25:19 GMT expires: - '-1' location: - - 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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/9a55bbbd-6f9d-40cf-b15a-5fd220728af8?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_with_workload_identity.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_update_with_workload_identity.yaml index 905b6a4bce2..f8dd5c579e5 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 Jun 2023 20:14:20 GMT + - Thu, 29 Jun 2023 11:59:29 GMT expires: - '-1' pragma: @@ -46,18 +46,18 @@ interactions: code: 404 message: Not Found - request: - body: '{"location": "centraluseuap", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest22d6y6qui-8ecadf", + body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest6a2szkfxe-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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+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", + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: @@ -72,71 +72,69 @@ interactions: Connection: - keep-alive Content-Length: - - '1797' + - '1462' 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - 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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitest6a2szkfxe-79a739\",\n \"fqdn\": \"cliakstest-clitest6a2szkfxe-79a739-bxc0ya8w.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest6a2szkfxe-79a739-bxc0ya8w.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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\": true,\n + \ \"issuerURL\": \"https://westus2.oic.prod-aks.azure.com/72f988bf-86f1-41af-91ab-2d7cd011db47/d85c7db7-4528-42ec-89b8-25b54f7d8b2f/\"\n + \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": + \"SystemAssigned\",\n \"principalId\":\"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/23db4d11-22dc-4540-97b1-6ec598a52707?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b3b8c72e-b7ed-4ef0-82f3-790d67194b4b?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3759' + - '3400' content-type: - application/json date: - - Fri, 16 Jun 2023 20:14:25 GMT + - Thu, 29 Jun 2023 11:59:43 GMT expires: - '-1' pragma: @@ -148,7 +146,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1196' status: code: 201 message: Created @@ -167,14 +165,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --ssh-key-value --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/23db4d11-22dc-4540-97b1-6ec598a52707?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b3b8c72e-b7ed-4ef0-82f3-790d67194b4b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"114ddb23-dc22-4045-97b1-6ec598a52707\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T20:14:25.3394606Z\"\n }" + string: "{\n \"name\": \"2ec7b8b3-edb7-f04e-82f3-790d67194b4b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:59:43.7109254Z\"\n }" headers: cache-control: - no-cache @@ -183,7 +181,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 20:14:25 GMT + - Thu, 29 Jun 2023 11:59:43 GMT expires: - '-1' pragma: @@ -216,14 +214,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --ssh-key-value --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/23db4d11-22dc-4540-97b1-6ec598a52707?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b3b8c72e-b7ed-4ef0-82f3-790d67194b4b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"114ddb23-dc22-4045-97b1-6ec598a52707\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T20:14:25.3394606Z\"\n }" + string: "{\n \"name\": \"2ec7b8b3-edb7-f04e-82f3-790d67194b4b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:59:43.7109254Z\"\n }" headers: cache-control: - no-cache @@ -232,7 +230,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 20:14:56 GMT + - Thu, 29 Jun 2023 12:00:14 GMT expires: - '-1' pragma: @@ -265,14 +263,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --ssh-key-value --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/23db4d11-22dc-4540-97b1-6ec598a52707?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b3b8c72e-b7ed-4ef0-82f3-790d67194b4b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"114ddb23-dc22-4045-97b1-6ec598a52707\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T20:14:25.3394606Z\"\n }" + string: "{\n \"name\": \"2ec7b8b3-edb7-f04e-82f3-790d67194b4b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:59:43.7109254Z\"\n }" headers: cache-control: - no-cache @@ -281,7 +279,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 20:15:25 GMT + - Thu, 29 Jun 2023 12:00:44 GMT expires: - '-1' pragma: @@ -314,14 +312,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --ssh-key-value --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/23db4d11-22dc-4540-97b1-6ec598a52707?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b3b8c72e-b7ed-4ef0-82f3-790d67194b4b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"114ddb23-dc22-4045-97b1-6ec598a52707\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T20:14:25.3394606Z\"\n }" + string: "{\n \"name\": \"2ec7b8b3-edb7-f04e-82f3-790d67194b4b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:59:43.7109254Z\"\n }" headers: cache-control: - no-cache @@ -330,7 +328,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 20:15:55 GMT + - Thu, 29 Jun 2023 12:01:13 GMT expires: - '-1' pragma: @@ -363,14 +361,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --ssh-key-value --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/23db4d11-22dc-4540-97b1-6ec598a52707?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b3b8c72e-b7ed-4ef0-82f3-790d67194b4b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"114ddb23-dc22-4045-97b1-6ec598a52707\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T20:14:25.3394606Z\"\n }" + string: "{\n \"name\": \"2ec7b8b3-edb7-f04e-82f3-790d67194b4b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:59:43.7109254Z\"\n }" headers: cache-control: - no-cache @@ -379,7 +377,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 20:16:25 GMT + - Thu, 29 Jun 2023 12:01:44 GMT expires: - '-1' pragma: @@ -412,14 +410,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --ssh-key-value --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/23db4d11-22dc-4540-97b1-6ec598a52707?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b3b8c72e-b7ed-4ef0-82f3-790d67194b4b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"114ddb23-dc22-4045-97b1-6ec598a52707\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T20:14:25.3394606Z\"\n }" + string: "{\n \"name\": \"2ec7b8b3-edb7-f04e-82f3-790d67194b4b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:59:43.7109254Z\"\n }" headers: cache-control: - no-cache @@ -428,7 +426,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 20:16:55 GMT + - Thu, 29 Jun 2023 12:02:14 GMT expires: - '-1' pragma: @@ -461,14 +459,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --ssh-key-value --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/23db4d11-22dc-4540-97b1-6ec598a52707?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b3b8c72e-b7ed-4ef0-82f3-790d67194b4b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"114ddb23-dc22-4045-97b1-6ec598a52707\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T20:14:25.3394606Z\"\n }" + string: "{\n \"name\": \"2ec7b8b3-edb7-f04e-82f3-790d67194b4b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:59:43.7109254Z\"\n }" headers: cache-control: - no-cache @@ -477,7 +475,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 20:17:25 GMT + - Thu, 29 Jun 2023 12:02:44 GMT expires: - '-1' pragma: @@ -510,24 +508,23 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --ssh-key-value --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/23db4d11-22dc-4540-97b1-6ec598a52707?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b3b8c72e-b7ed-4ef0-82f3-790d67194b4b?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"2ec7b8b3-edb7-f04e-82f3-790d67194b4b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:59:43.7109254Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 20:17:56 GMT + - Thu, 29 Jun 2023 12:03:14 GMT expires: - '-1' pragma: @@ -560,67 +557,23 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --ssh-key-value --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b3b8c72e-b7ed-4ef0-82f3-790d67194b4b?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\": \"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 }" + string: "{\n \"name\": \"2ec7b8b3-edb7-f04e-82f3-790d67194b4b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:59:43.7109254Z\"\n }" headers: cache-control: - no-cache content-length: - - '4424' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 20:17:57 GMT + - Thu, 29 Jun 2023 12:03:44 GMT expires: - '-1' pragma: @@ -642,77 +595,34 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - aks update + - aks create Connection: - keep-alive ParameterSetName: - - --resource-group --name --enable-workload-identity --aks-custom-headers + - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer + --ssh-key-value --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b3b8c72e-b7ed-4ef0-82f3-790d67194b4b?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\": \"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 }" + string: "{\n \"name\": \"2ec7b8b3-edb7-f04e-82f3-790d67194b4b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:59:43.7109254Z\"\n }" headers: cache-control: - no-cache content-length: - - '4424' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 20:17:58 GMT + - Thu, 29 Jun 2023 12:04:14 GMT expires: - '-1' pragma: @@ -731,111 +641,86 @@ interactions: code: 200 message: OK - request: - 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": {}}}' + body: null headers: - AKSHTTPCustomFeatures: - - Microsoft.ContainerService/EnableWorkloadIdentityPreview,Microsoft.ContainerService/EnableOIDCIssuerPreview Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - aks update + - aks create Connection: - keep-alive - Content-Length: - - '2872' - Content-Type: + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer + --ssh-key-value --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b3b8c72e-b7ed-4ef0-82f3-790d67194b4b?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"2ec7b8b3-edb7-f04e-82f3-790d67194b4b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:59:43.7109254Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: - application/json + date: + - Thu, 29 Jun 2023 12: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: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive ParameterSetName: - - --resource-group --name --enable-workload-identity --aks-custom-headers + - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer + --ssh-key-value --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: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-05-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b3b8c72e-b7ed-4ef0-82f3-790d67194b4b?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\": \"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 }" + string: "{\n \"name\": \"2ec7b8b3-edb7-f04e-82f3-790d67194b4b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:59:43.7109254Z\"\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: - - '4479' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 20:18:01 GMT + - Thu, 29 Jun 2023 12:05:15 GMT expires: - '-1' pragma: @@ -850,8 +735,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: code: 200 message: OK @@ -863,20 +746,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks update + - aks create Connection: - keep-alive ParameterSetName: - - --resource-group --name --enable-workload-identity --aks-custom-headers + - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer + --ssh-key-value --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/bcabd567-8f08-498d-8843-f9d4da820c14?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b3b8c72e-b7ed-4ef0-82f3-790d67194b4b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"67d5abbc-088f-8d49-8843-f9d4da820c14\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T20:18:01.5143246Z\"\n }" + string: "{\n \"name\": \"2ec7b8b3-edb7-f04e-82f3-790d67194b4b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:59:43.7109254Z\"\n }" headers: cache-control: - no-cache @@ -885,7 +769,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 20:18:01 GMT + - Thu, 29 Jun 2023 12:05:46 GMT expires: - '-1' pragma: @@ -911,20 +795,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks update + - aks create Connection: - keep-alive ParameterSetName: - - --resource-group --name --enable-workload-identity --aks-custom-headers + - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer + --ssh-key-value --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/bcabd567-8f08-498d-8843-f9d4da820c14?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b3b8c72e-b7ed-4ef0-82f3-790d67194b4b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"67d5abbc-088f-8d49-8843-f9d4da820c14\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T20:18:01.5143246Z\"\n }" + string: "{\n \"name\": \"2ec7b8b3-edb7-f04e-82f3-790d67194b4b\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T11:59:43.7109254Z\"\n }" headers: cache-control: - no-cache @@ -933,7 +818,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 20:18:31 GMT + - Thu, 29 Jun 2023 12:06:16 GMT expires: - '-1' pragma: @@ -959,29 +844,210 @@ 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.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b3b8c72e-b7ed-4ef0-82f3-790d67194b4b?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"2ec7b8b3-edb7-f04e-82f3-790d67194b4b\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T11:59:43.7109254Z\",\n \"endTime\": + \"2023-06-29T12:06:38.8321716Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 12:06: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 --enable-managed-identity --enable-oidc-issuer + --ssh-key-value --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-clitest6a2szkfxe-79a739\",\n \"fqdn\": \"cliakstest-clitest6a2szkfxe-79a739-bxc0ya8w.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest6a2szkfxe-79a739-bxc0ya8w.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/d586ed76-c592-46c5-ad6d-d967400f545a\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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/d85c7db7-4528-42ec-89b8-25b54f7d8b2f/\"\n + \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": + \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '4053' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 12:06: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: + - 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.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/bcabd567-8f08-498d-8843-f9d4da820c14?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-05-01 response: body: - string: "{\n \"name\": \"67d5abbc-088f-8d49-8843-f9d4da820c14\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T20:18:01.5143246Z\"\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-clitest6a2szkfxe-79a739\",\n \"fqdn\": \"cliakstest-clitest6a2szkfxe-79a739-bxc0ya8w.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest6a2szkfxe-79a739-bxc0ya8w.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/d586ed76-c592-46c5-ad6d-d967400f545a\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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/d85c7db7-4528-42ec-89b8-25b54f7d8b2f/\"\n + \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": + \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"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' + - '4053' content-type: - application/json date: - - Fri, 16 Jun 2023 20:19:02 GMT + - Thu, 29 Jun 2023 12:06:47 GMT expires: - '-1' pragma: @@ -999,6 +1065,126 @@ interactions: status: code: 200 message: OK +- request: + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": + "cliakstest-clitest6a2szkfxe-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.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": + false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", + "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/d586ed76-c592-46c5-ad6d-d967400f545a"}]}, + "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": {}}}' + headers: + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/EnableWorkloadIdentityPreview,Microsoft.ContainerService/EnableOIDCIssuerPreview + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + Content-Length: + - '2482' + Content-Type: + - application/json + ParameterSetName: + - --resource-group --name --enable-workload-identity --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitest6a2szkfxe-79a739\",\n \"fqdn\": \"cliakstest-clitest6a2szkfxe-79a739-bxc0ya8w.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest6a2szkfxe-79a739-bxc0ya8w.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/d586ed76-c592-46c5-ad6d-d967400f545a\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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/d85c7db7-4528-42ec-89b8-25b54f7d8b2f/\"\n + \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": + \"SystemAssigned\",\n \"principalId\":\"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/9f566db5-d600-4c3e-a322-66022e10ee6a?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '4108' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 12:06: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 + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 200 + message: OK - request: body: null headers: @@ -1013,27 +1199,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-workload-identity --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/bcabd567-8f08-498d-8843-f9d4da820c14?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9f566db5-d600-4c3e-a322-66022e10ee6a?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"b56d569f-00d6-3e4c-a322-66022e10ee6a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:06:52.0397945Z\"\n }" headers: cache-control: - no-cache - connection: - - close content-length: - - '217' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 20:19:35 GMT + - Thu, 29 Jun 2023 12:06:52 GMT expires: - '-1' pragma: @@ -1042,13 +1224,15 @@ 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: 500 - message: Internal Server Error + code: 200 + message: OK - request: body: null headers: @@ -1063,14 +1247,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-workload-identity --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/bcabd567-8f08-498d-8843-f9d4da820c14?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9f566db5-d600-4c3e-a322-66022e10ee6a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"67d5abbc-088f-8d49-8843-f9d4da820c14\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T20:18:01.5143246Z\"\n }" + string: "{\n \"name\": \"b56d569f-00d6-3e4c-a322-66022e10ee6a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:06:52.0397945Z\"\n }" headers: cache-control: - no-cache @@ -1079,7 +1263,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 20:19:36 GMT + - Thu, 29 Jun 2023 12:07:22 GMT expires: - '-1' pragma: @@ -1111,14 +1295,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-workload-identity --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/bcabd567-8f08-498d-8843-f9d4da820c14?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9f566db5-d600-4c3e-a322-66022e10ee6a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"67d5abbc-088f-8d49-8843-f9d4da820c14\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T20:18:01.5143246Z\"\n }" + string: "{\n \"name\": \"b56d569f-00d6-3e4c-a322-66022e10ee6a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:06:52.0397945Z\"\n }" headers: cache-control: - no-cache @@ -1127,7 +1311,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 20:20:06 GMT + - Thu, 29 Jun 2023 12:07:53 GMT expires: - '-1' pragma: @@ -1159,14 +1343,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-workload-identity --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/bcabd567-8f08-498d-8843-f9d4da820c14?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9f566db5-d600-4c3e-a322-66022e10ee6a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"67d5abbc-088f-8d49-8843-f9d4da820c14\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T20:18:01.5143246Z\"\n }" + string: "{\n \"name\": \"b56d569f-00d6-3e4c-a322-66022e10ee6a\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:06:52.0397945Z\"\n }" headers: cache-control: - no-cache @@ -1175,7 +1359,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 20:20:36 GMT + - Thu, 29 Jun 2023 12:08:23 GMT expires: - '-1' pragma: @@ -1207,24 +1391,24 @@ interactions: ParameterSetName: - --resource-group --name --enable-workload-identity --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/bcabd567-8f08-498d-8843-f9d4da820c14?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9f566db5-d600-4c3e-a322-66022e10ee6a?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"b56d569f-00d6-3e4c-a322-66022e10ee6a\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T12:06:52.0397945Z\",\n \"endTime\": + \"2023-06-29T12:08:33.763594Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '169' content-type: - application/json date: - - Fri, 16 Jun 2023 20:21:07 GMT + - Thu, 29 Jun 2023 12:08:52 GMT expires: - '-1' pragma: @@ -1256,68 +1440,65 @@ interactions: ParameterSetName: - --resource-group --name --enable-workload-identity --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - 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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-clitest6a2szkfxe-79a739\",\n \"fqdn\": \"cliakstest-clitest6a2szkfxe-79a739-bxc0ya8w.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest6a2szkfxe-79a739-bxc0ya8w.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/d586ed76-c592-46c5-ad6d-d967400f545a\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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/d85c7db7-4528-42ec-89b8-25b54f7d8b2f/\"\n + \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": + \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4481' + - '4110' content-type: - application/json date: - - Fri, 16 Jun 2023 20:21:07 GMT + - Thu, 29 Jun 2023 12:08:54 GMT expires: - '-1' pragma: @@ -1349,68 +1530,65 @@ interactions: ParameterSetName: - --resource-group --name --disable-workload-identity --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - 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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-clitest6a2szkfxe-79a739\",\n \"fqdn\": \"cliakstest-clitest6a2szkfxe-79a739-bxc0ya8w.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest6a2szkfxe-79a739-bxc0ya8w.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/d586ed76-c592-46c5-ad6d-d967400f545a\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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/d85c7db7-4528-42ec-89b8-25b54f7d8b2f/\"\n + \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": + \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4481' + - '4110' content-type: - application/json date: - - Fri, 16 Jun 2023 20:21:09 GMT + - Thu, 29 Jun 2023 12:08:55 GMT expires: - '-1' pragma: @@ -1429,26 +1607,24 @@ interactions: code: 200 message: OK - request: - 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"}]}, + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": + "cliakstest-clitest6a2szkfxe-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.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": + false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", + "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/d586ed76-c592-46c5-ad6d-d967400f545a"}]}, "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", + ["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": {}}}' @@ -1464,76 +1640,73 @@ interactions: Connection: - keep-alive Content-Length: - - '2873' + - '2483' Content-Type: - application/json ParameterSetName: - --resource-group --name --disable-workload-identity --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - 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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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-clitest6a2szkfxe-79a739\",\n \"fqdn\": \"cliakstest-clitest6a2szkfxe-79a739-bxc0ya8w.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest6a2szkfxe-79a739-bxc0ya8w.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/d586ed76-c592-46c5-ad6d-d967400f545a\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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/d85c7db7-4528-42ec-89b8-25b54f7d8b2f/\"\n + \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": + \"SystemAssigned\",\n \"principalId\":\"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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/97f22670-ac21-42d8-aaab-38fced1ce54c?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4480' + - '4109' content-type: - application/json date: - - Fri, 16 Jun 2023 20:21:13 GMT + - Thu, 29 Jun 2023 12:09:00 GMT expires: - '-1' pragma: @@ -1567,14 +1740,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-workload-identity --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/2ed1cd3b-d7bf-4cc0-82c4-14a506d7d7ee?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/97f22670-ac21-42d8-aaab-38fced1ce54c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3bcdd12e-bfd7-c04c-82c4-14a506d7d7ee\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T20:21:12.9032828Z\"\n }" + string: "{\n \"name\": \"7026f297-21ac-d842-aaab-38fced1ce54c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:08:59.6014011Z\"\n }" headers: cache-control: - no-cache @@ -1583,7 +1756,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 20:21:13 GMT + - Thu, 29 Jun 2023 12:09:00 GMT expires: - '-1' pragma: @@ -1615,14 +1788,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-workload-identity --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/2ed1cd3b-d7bf-4cc0-82c4-14a506d7d7ee?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/97f22670-ac21-42d8-aaab-38fced1ce54c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3bcdd12e-bfd7-c04c-82c4-14a506d7d7ee\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T20:21:12.9032828Z\"\n }" + string: "{\n \"name\": \"7026f297-21ac-d842-aaab-38fced1ce54c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:08:59.6014011Z\"\n }" headers: cache-control: - no-cache @@ -1631,7 +1804,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 20:21:43 GMT + - Thu, 29 Jun 2023 12:09:30 GMT expires: - '-1' pragma: @@ -1663,14 +1836,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-workload-identity --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/2ed1cd3b-d7bf-4cc0-82c4-14a506d7d7ee?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/97f22670-ac21-42d8-aaab-38fced1ce54c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3bcdd12e-bfd7-c04c-82c4-14a506d7d7ee\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T20:21:12.9032828Z\"\n }" + string: "{\n \"name\": \"7026f297-21ac-d842-aaab-38fced1ce54c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:08:59.6014011Z\"\n }" headers: cache-control: - no-cache @@ -1679,7 +1852,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 20:22:13 GMT + - Thu, 29 Jun 2023 12:10:00 GMT expires: - '-1' pragma: @@ -1711,14 +1884,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-workload-identity --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/2ed1cd3b-d7bf-4cc0-82c4-14a506d7d7ee?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/97f22670-ac21-42d8-aaab-38fced1ce54c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3bcdd12e-bfd7-c04c-82c4-14a506d7d7ee\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T20:21:12.9032828Z\"\n }" + string: "{\n \"name\": \"7026f297-21ac-d842-aaab-38fced1ce54c\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:08:59.6014011Z\"\n }" headers: cache-control: - no-cache @@ -1727,7 +1900,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 20:22:43 GMT + - Thu, 29 Jun 2023 12:10:31 GMT expires: - '-1' pragma: @@ -1759,24 +1932,24 @@ interactions: ParameterSetName: - --resource-group --name --disable-workload-identity --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/2ed1cd3b-d7bf-4cc0-82c4-14a506d7d7ee?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/97f22670-ac21-42d8-aaab-38fced1ce54c?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"7026f297-21ac-d842-aaab-38fced1ce54c\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T12:08:59.6014011Z\",\n \"endTime\": + \"2023-06-29T12:10:47.428494Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '169' content-type: - application/json date: - - Fri, 16 Jun 2023 20:23:13 GMT + - Thu, 29 Jun 2023 12:11:00 GMT expires: - '-1' pragma: @@ -1808,68 +1981,65 @@ interactions: ParameterSetName: - --resource-group --name --disable-workload-identity --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - 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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"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-clitest6a2szkfxe-79a739\",\n \"fqdn\": \"cliakstest-clitest6a2szkfxe-79a739-bxc0ya8w.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest6a2szkfxe-79a739-bxc0ya8w.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/d586ed76-c592-46c5-ad6d-d967400f545a\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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/d85c7db7-4528-42ec-89b8-25b54f7d8b2f/\"\n + \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": + \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": + {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4482' + - '4111' content-type: - application/json date: - - Fri, 16 Jun 2023 20:23:13 GMT + - Thu, 29 Jun 2023 12:11:01 GMT expires: - '-1' pragma: 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 index 448d8edc42f..fb3516ff15c 100644 --- 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,36 +13,39 @@ interactions: ParameterSetName: - -l --query User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/kubernetesVersions?api-version=2023-05-01 response: body: - 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 }" + string: "{\n \"values\": [\n {\n \"version\": \"1.27\",\n \"capabilities\": + {\n \"supportPlan\": [\n \"KubernetesOfficial\",\n \"AKSLongTermSupport\"\n + \ ]\n },\n \"patchVersions\": {\n \"1.27.1\": {\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.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 \"1.27.1\"\n + \ ]\n },\n \"1.26.3\": {\n \"upgrades\": [\n \"1.27.1\"\n + \ ]\n }\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '957' + - '1218' content-type: - application/json date: - - Fri, 16 Jun 2023 20:23:18 GMT + - Thu, 29 Jun 2023 12:04:18 GMT expires: - '-1' pragma: @@ -75,8 +78,8 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --kubernetes-version -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -92,7 +95,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 Jun 2023 20:23:18 GMT + - Thu, 29 Jun 2023 12:04:18 GMT expires: - '-1' pragma: @@ -121,12 +124,12 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --kubernetes-version -o User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1039-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_upgrade_kubernetes_version_nodepool","date":"2023-06-16T20:23:16Z","module":"acs"},"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-29T12:04:17Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -135,7 +138,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 16 Jun 2023 20:23:18 GMT + - Thu, 29 Jun 2023 12:04:18 GMT expires: - '-1' pragma: @@ -151,18 +154,19 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "1.26.3", "dnsPrefix": "cliakstest-clitest5ng7x5jyb-8ecadf", + {"kubernetesVersion": "1.27.1", "dnsPrefix": "cliakstest-clitestajf2oofiq-79a739", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "orchestratorVersion": "1.26.3", "upgradeSettings": {}, "enableNodePublicIP": + "mode": "System", "orchestratorVersion": "1.27.1", "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": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + 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", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {}}}' headers: Accept: - application/json @@ -173,70 +177,68 @@ interactions: Connection: - keep-alive Content-Length: - - '1763' + - '1434' Content-Type: - application/json ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value --kubernetes-version -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-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.27.1\",\n \"currentKubernetesVersion\": \"1.27.1\",\n \"dnsPrefix\": + \"cliakstest-clitestajf2oofiq-79a739\",\n \"fqdn\": \"cliakstest-clitestajf2oofiq-79a739-o19bspaq.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestajf2oofiq-79a739-o19bspaq.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.27.1\",\n \"currentOrchestratorVersion\": + \"1.27.1\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/95b75310-de0d-4712-ade8-831dfeb7a965?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/07cf164c-73f7-4866-be7d-4862eacb6680?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3596' + - '3267' content-type: - application/json date: - - Fri, 16 Jun 2023 20:23:25 GMT + - Thu, 29 Jun 2023 12:04:24 GMT expires: - '-1' pragma: @@ -248,7 +250,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -267,23 +269,23 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --kubernetes-version -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/07cf164c-73f7-4866-be7d-4862eacb6680?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1053b795-0dde-1247-ade8-831dfeb7a965\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T20:23:25.8793952Z\"\n }" + string: "{\n \"name\": \"4c16cf07-f773-6648-be7d-4862eacb6680\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:04:24.305156Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Fri, 16 Jun 2023 20:23:26 GMT + - Thu, 29 Jun 2023 12:04:24 GMT expires: - '-1' pragma: @@ -316,23 +318,23 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --kubernetes-version -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/07cf164c-73f7-4866-be7d-4862eacb6680?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1053b795-0dde-1247-ade8-831dfeb7a965\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T20:23:25.8793952Z\"\n }" + string: "{\n \"name\": \"4c16cf07-f773-6648-be7d-4862eacb6680\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:04:24.305156Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Fri, 16 Jun 2023 20:23:56 GMT + - Thu, 29 Jun 2023 12:04:54 GMT expires: - '-1' pragma: @@ -365,23 +367,23 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --kubernetes-version -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/07cf164c-73f7-4866-be7d-4862eacb6680?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1053b795-0dde-1247-ade8-831dfeb7a965\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T20:23:25.8793952Z\"\n }" + string: "{\n \"name\": \"4c16cf07-f773-6648-be7d-4862eacb6680\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:04:24.305156Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Fri, 16 Jun 2023 20:24:26 GMT + - Thu, 29 Jun 2023 12:05:25 GMT expires: - '-1' pragma: @@ -414,23 +416,23 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --kubernetes-version -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/07cf164c-73f7-4866-be7d-4862eacb6680?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1053b795-0dde-1247-ade8-831dfeb7a965\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T20:23:25.8793952Z\"\n }" + string: "{\n \"name\": \"4c16cf07-f773-6648-be7d-4862eacb6680\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:04:24.305156Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Fri, 16 Jun 2023 20:24:56 GMT + - Thu, 29 Jun 2023 12:05:54 GMT expires: - '-1' pragma: @@ -463,23 +465,23 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --kubernetes-version -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/07cf164c-73f7-4866-be7d-4862eacb6680?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1053b795-0dde-1247-ade8-831dfeb7a965\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T20:23:25.8793952Z\"\n }" + string: "{\n \"name\": \"4c16cf07-f773-6648-be7d-4862eacb6680\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:04:24.305156Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Fri, 16 Jun 2023 20:25:27 GMT + - Thu, 29 Jun 2023 12:06:24 GMT expires: - '-1' pragma: @@ -512,23 +514,23 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --kubernetes-version -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/07cf164c-73f7-4866-be7d-4862eacb6680?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1053b795-0dde-1247-ade8-831dfeb7a965\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T20:23:25.8793952Z\"\n }" + string: "{\n \"name\": \"4c16cf07-f773-6648-be7d-4862eacb6680\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:04:24.305156Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Fri, 16 Jun 2023 20:25:57 GMT + - Thu, 29 Jun 2023 12:06:55 GMT expires: - '-1' pragma: @@ -561,23 +563,23 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --kubernetes-version -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/07cf164c-73f7-4866-be7d-4862eacb6680?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1053b795-0dde-1247-ade8-831dfeb7a965\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T20:23:25.8793952Z\"\n }" + string: "{\n \"name\": \"4c16cf07-f773-6648-be7d-4862eacb6680\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:04:24.305156Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Fri, 16 Jun 2023 20:26:27 GMT + - Thu, 29 Jun 2023 12:07:25 GMT expires: - '-1' pragma: @@ -610,24 +612,220 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --kubernetes-version -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/07cf164c-73f7-4866-be7d-4862eacb6680?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"4c16cf07-f773-6648-be7d-4862eacb6680\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:04:24.305156Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '125' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 12:07: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 --vm-set-type --node-count --ssh-key-value --kubernetes-version + -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/07cf164c-73f7-4866-be7d-4862eacb6680?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"4c16cf07-f773-6648-be7d-4862eacb6680\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:04:24.305156Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 12:08: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 create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --vm-set-type --node-count --ssh-key-value --kubernetes-version + -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/07cf164c-73f7-4866-be7d-4862eacb6680?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"4c16cf07-f773-6648-be7d-4862eacb6680\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:04:24.305156Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 12:08: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 --vm-set-type --node-count --ssh-key-value --kubernetes-version + -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/07cf164c-73f7-4866-be7d-4862eacb6680?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"4c16cf07-f773-6648-be7d-4862eacb6680\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:04:24.305156Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 12:09: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 create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --vm-set-type --node-count --ssh-key-value --kubernetes-version + -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/07cf164c-73f7-4866-be7d-4862eacb6680?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"4c16cf07-f773-6648-be7d-4862eacb6680\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T12:04:24.305156Z\",\n \"endTime\": + \"2023-06-29T12:09:44.5415824Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '169' content-type: - application/json date: - - Fri, 16 Jun 2023 20:26:57 GMT + - Thu, 29 Jun 2023 12:09:56 GMT expires: - '-1' pragma: @@ -660,66 +858,63 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --kubernetes-version -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"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 }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n + \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": + \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": + \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": + \"1.27.1\",\n \"currentKubernetesVersion\": \"1.27.1\",\n \"dnsPrefix\": + \"cliakstest-clitestajf2oofiq-79a739\",\n \"fqdn\": \"cliakstest-clitestajf2oofiq-79a739-o19bspaq.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestajf2oofiq-79a739-o19bspaq.portal.hcp.westus2.azmk8s.io\",\n + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": + 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": + \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n + \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": + \"Running\"\n },\n \"orchestratorVersion\": \"1.27.1\",\n \"currentOrchestratorVersion\": + \"1.27.1\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": + \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT + azcli_aks_live_test@example.com\\n\"\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/b378f0e2-1dba-494a-91f2-51ba95f29030\"\n + \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + [\n \"10.0.0.0/16\"\n ],\n \"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: - - '4249' + - '3920' content-type: - application/json date: - - Fri, 16 Jun 2023 20:26:57 GMT + - Thu, 29 Jun 2023 12:09:57 GMT expires: - '-1' pragma: @@ -751,25 +946,25 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --node-count --kubernetes-version User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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?api-version=2023-05-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.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 }" + 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.27.1\",\n \"currentOrchestratorVersion\": \"1.27.1\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": + \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n + }" headers: cache-control: - no-cache @@ -778,7 +973,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 20:26:59 GMT + - Thu, 29 Jun 2023 12:09:58 GMT expires: - '-1' pragma: @@ -799,7 +994,7 @@ interactions: - request: body: '{"properties": {"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "scaleDownMode": "Delete", - "type": "VirtualMachineScaleSets", "mode": "User", "orchestratorVersion": "1.25.6", + "type": "VirtualMachineScaleSets", "mode": "User", "orchestratorVersion": "1.26.3", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false}}' @@ -819,28 +1014,27 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --node-count --kubernetes-version User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.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.19.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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cabef1a6-07d5-4a24-9134-52ede1575883?api-version=2016-03-30 cache-control: - no-cache content-length: @@ -848,7 +1042,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 20:27:04 GMT + - Thu, 29 Jun 2023 12:10:02 GMT expires: - '-1' pragma: @@ -860,7 +1054,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 201 message: Created @@ -878,14 +1072,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --node-count --kubernetes-version User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cabef1a6-07d5-4a24-9134-52ede1575883?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0a4055d2-0c83-3f42-91dd-d2c987f2c8dd\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T20:27:04.9736692Z\"\n }" + string: "{\n \"name\": \"a6f1beca-d507-244a-9134-52ede1575883\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:10:02.8685647Z\"\n }" headers: cache-control: - no-cache @@ -894,7 +1088,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 20:27:04 GMT + - Thu, 29 Jun 2023 12:10:02 GMT expires: - '-1' pragma: @@ -926,14 +1120,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --node-count --kubernetes-version User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cabef1a6-07d5-4a24-9134-52ede1575883?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0a4055d2-0c83-3f42-91dd-d2c987f2c8dd\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T20:27:04.9736692Z\"\n }" + string: "{\n \"name\": \"a6f1beca-d507-244a-9134-52ede1575883\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:10:02.8685647Z\"\n }" headers: cache-control: - no-cache @@ -942,7 +1136,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 20:27:35 GMT + - Thu, 29 Jun 2023 12:10:32 GMT expires: - '-1' pragma: @@ -974,14 +1168,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --node-count --kubernetes-version User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cabef1a6-07d5-4a24-9134-52ede1575883?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0a4055d2-0c83-3f42-91dd-d2c987f2c8dd\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T20:27:04.9736692Z\"\n }" + string: "{\n \"name\": \"a6f1beca-d507-244a-9134-52ede1575883\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:10:02.8685647Z\"\n }" headers: cache-control: - no-cache @@ -990,7 +1184,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 20:28:05 GMT + - Thu, 29 Jun 2023 12:11:02 GMT expires: - '-1' pragma: @@ -1022,14 +1216,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --node-count --kubernetes-version User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cabef1a6-07d5-4a24-9134-52ede1575883?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0a4055d2-0c83-3f42-91dd-d2c987f2c8dd\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2023-06-16T20:27:04.9736692Z\"\n }" + string: "{\n \"name\": \"a6f1beca-d507-244a-9134-52ede1575883\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:10:02.8685647Z\"\n }" headers: cache-control: - no-cache @@ -1038,7 +1232,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 20:28:35 GMT + - Thu, 29 Jun 2023 12:11:32 GMT expires: - '-1' pragma: @@ -1070,24 +1264,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --node-count --kubernetes-version User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) method: GET - 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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cabef1a6-07d5-4a24-9134-52ede1575883?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"a6f1beca-d507-244a-9134-52ede1575883\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:10:02.8685647Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 20:29:05 GMT + - Thu, 29 Jun 2023 12:12:03 GMT expires: - '-1' pragma: @@ -1119,34 +1312,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --node-count --kubernetes-version User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/c000002?api-version=2023-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cabef1a6-07d5-4a24-9134-52ede1575883?api-version=2016-03-30 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.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 }" + string: "{\n \"name\": \"a6f1beca-d507-244a-9134-52ede1575883\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:10:02.8685647Z\"\n }" headers: cache-control: - no-cache content-length: - - '978' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 20:29:05 GMT + - Thu, 29 Jun 2023 12:12:33 GMT expires: - '-1' pragma: @@ -1168,45 +1350,81 @@ interactions: body: null headers: Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name -n --node-count --kubernetes-version + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cabef1a6-07d5-4a24-9134-52ede1575883?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"a6f1beca-d507-244a-9134-52ede1575883\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:10:02.8685647Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: - application/json + date: + - Thu, 29 Jun 2023 12:13: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 nodepool upgrade + - aks nodepool add Connection: - keep-alive ParameterSetName: - - --resource-group --cluster-name --nodepool-name --kubernetes-version --yes - --no-wait + - --resource-group --cluster-name -n --node-count --kubernetes-version User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 - (macOS-13.4-arm64-arm-64bit) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/c000002?api-version=2023-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cabef1a6-07d5-4a24-9134-52ede1575883?api-version=2016-03-30 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.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 }" + string: "{\n \"name\": \"a6f1beca-d507-244a-9134-52ede1575883\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:10:02.8685647Z\"\n }" headers: cache-control: - no-cache content-length: - - '978' + - '126' content-type: - application/json date: - - Fri, 16 Jun 2023 20:29:07 GMT + - Thu, 29 Jun 2023 12:13:33 GMT expires: - '-1' pragma: @@ -1225,10 +1443,512 @@ 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, "scaleDownMode": "Delete", - "type": "VirtualMachineScaleSets", "mode": "User", "orchestratorVersion": "1.26.3", + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name -n --node-count --kubernetes-version + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cabef1a6-07d5-4a24-9134-52ede1575883?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"a6f1beca-d507-244a-9134-52ede1575883\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:10:02.8685647Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 12:14: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 nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name -n --node-count --kubernetes-version + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cabef1a6-07d5-4a24-9134-52ede1575883?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"a6f1beca-d507-244a-9134-52ede1575883\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:10:02.8685647Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 12:14: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 nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name -n --node-count --kubernetes-version + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cabef1a6-07d5-4a24-9134-52ede1575883?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"a6f1beca-d507-244a-9134-52ede1575883\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:10:02.8685647Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 12:15: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 nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name -n --node-count --kubernetes-version + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cabef1a6-07d5-4a24-9134-52ede1575883?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"a6f1beca-d507-244a-9134-52ede1575883\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:10:02.8685647Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 12:15: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 nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name -n --node-count --kubernetes-version + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cabef1a6-07d5-4a24-9134-52ede1575883?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"a6f1beca-d507-244a-9134-52ede1575883\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:10:02.8685647Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 12:16: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 -n --node-count --kubernetes-version + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cabef1a6-07d5-4a24-9134-52ede1575883?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"a6f1beca-d507-244a-9134-52ede1575883\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:10:02.8685647Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 12:16: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 -n --node-count --kubernetes-version + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cabef1a6-07d5-4a24-9134-52ede1575883?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"a6f1beca-d507-244a-9134-52ede1575883\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:10:02.8685647Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 12:17: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 -n --node-count --kubernetes-version + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cabef1a6-07d5-4a24-9134-52ede1575883?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"a6f1beca-d507-244a-9134-52ede1575883\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T12:10:02.8685647Z\",\n \"endTime\": + \"2023-06-29T12:17:32.7765398Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 12:17: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 -n --node-count --kubernetes-version + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/c000002?api-version=2023-05-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.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '978' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 12: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: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool upgrade + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --nodepool-name --kubernetes-version --yes + --no-wait + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/c000002?api-version=2023-05-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.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.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '978' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 12:17: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: '{"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.27.1", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false}}' @@ -1249,28 +1969,27 @@ interactions: - --resource-group --cluster-name --nodepool-name --kubernetes-version --yes --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-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.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 }" + 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.27.1\",\n \"currentOrchestratorVersion\": \"1.27.1\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": + false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.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/e098f5d7-ce77-4fd2-a877-3dc79d0c29e9?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2a6ae558-8823-4ff1-867e-71fb9842ce3f?api-version=2016-03-30 cache-control: - no-cache content-length: @@ -1278,7 +1997,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 20:29:12 GMT + - Thu, 29 Jun 2023 12:17:40 GMT expires: - '-1' pragma: @@ -1312,25 +2031,24 @@ interactions: ParameterSetName: - --resource-group --cluster-name -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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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/c000002?api-version=2023-05-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.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 }" + 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.27.1\",\n \"currentOrchestratorVersion\": \"1.27.1\",\n \"enableNodePublicIP\": + false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": + false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache @@ -1339,7 +2057,7 @@ interactions: content-type: - application/json date: - - Fri, 16 Jun 2023 20:29:13 GMT + - Thu, 29 Jun 2023 12:17:41 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 index 07e5035a5f4..3e58d43410c 100644 --- 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,8 +14,8 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 29 Apr 2023 11:47:40 GMT + - Thu, 29 Jun 2023 12:07:05 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.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/23.1.0b2 Python/3.8.10 (Linux-5.15.0-1039-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_managed_aad_enable_azure_rbac","date":"2023-04-29T11:47:40Z"},"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-06-29T12:07:04Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '349' + - '364' content-type: - application/json; charset=utf-8 date: - - Sat, 29 Apr 2023 11:47:40 GMT + - Thu, 29 Jun 2023 12:07:04 GMT expires: - '-1' pragma: @@ -90,20 +90,20 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest5t3hgz6ks-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestrcoop4qkc-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 AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT 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": false, "storageProfile": {}}}' + "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": + false, "storageProfile": {}}}' headers: Accept: - application/json @@ -114,15 +114,15 @@ interactions: Connection: - keep-alive Content-Length: - - '1583' + - '1546' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -132,8 +132,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-clitest5t3hgz6ks-79a739\",\n \"fqdn\": \"cliakstest-clitest5t3hgz6ks-79a739-n52xpdnu.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest5t3hgz6ks-79a739-n52xpdnu.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-clitestrcoop4qkc-79a739\",\n \"fqdn\": \"cliakstest-clitestrcoop4qkc-79a739-1msmuffm.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestrcoop4qkc-79a739-1msmuffm.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n @@ -143,42 +143,42 @@ interactions: \"1.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 + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT azcli_aks_live_test@example.com\\n\"\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\": + \ \"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 \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"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\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n + \"10.0.0.10\",\n \"outboundType\": \"loadBalancer\",\n \"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\": false,\n \"securityProfile\": {},\n \"storageProfile\": + {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": + {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": + true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n + \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": + \"SystemAssigned\",\n \"principalId\":\"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/b0817501-0e5c-4fad-a8b0-5279025b90a1?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a88d30dc-b34e-4187-bc0b-6a48cdc52429?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3541' + - '3502' content-type: - application/json date: - - Sat, 29 Apr 2023 11:47:45 GMT + - Thu, 29 Jun 2023 12:07:10 GMT expires: - '-1' pragma: @@ -190,7 +190,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' status: code: 201 message: Created @@ -209,14 +209,259 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a88d30dc-b34e-4187-bc0b-6a48cdc52429?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"dc308da8-4eb3-8741-bc0b-6a48cdc52429\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:07:10.8367815Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 12:07: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 --vm-set-type --node-count --ssh-key-value --enable-aad + --aad-admin-group-object-ids -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a88d30dc-b34e-4187-bc0b-6a48cdc52429?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"dc308da8-4eb3-8741-bc0b-6a48cdc52429\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:07:10.8367815Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 12:07: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 --vm-set-type --node-count --ssh-key-value --enable-aad + --aad-admin-group-object-ids -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a88d30dc-b34e-4187-bc0b-6a48cdc52429?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"dc308da8-4eb3-8741-bc0b-6a48cdc52429\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:07:10.8367815Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 12:08: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 --vm-set-type --node-count --ssh-key-value --enable-aad + --aad-admin-group-object-ids -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a88d30dc-b34e-4187-bc0b-6a48cdc52429?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"dc308da8-4eb3-8741-bc0b-6a48cdc52429\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:07:10.8367815Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 12:08: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 --vm-set-type --node-count --ssh-key-value --enable-aad + --aad-admin-group-object-ids -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a88d30dc-b34e-4187-bc0b-6a48cdc52429?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"dc308da8-4eb3-8741-bc0b-6a48cdc52429\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:07:10.8367815Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 29 Jun 2023 12:09: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 --enable-aad + --aad-admin-group-object-ids -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a88d30dc-b34e-4187-bc0b-6a48cdc52429?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 }" + string: "{\n \"name\": \"dc308da8-4eb3-8741-bc0b-6a48cdc52429\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:07:10.8367815Z\"\n }" headers: cache-control: - no-cache @@ -225,7 +470,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:47:45 GMT + - Thu, 29 Jun 2023 12:09:42 GMT expires: - '-1' pragma: @@ -258,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.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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a88d30dc-b34e-4187-bc0b-6a48cdc52429?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 }" + string: "{\n \"name\": \"dc308da8-4eb3-8741-bc0b-6a48cdc52429\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:07:10.8367815Z\"\n }" headers: cache-control: - no-cache @@ -274,7 +519,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:48:15 GMT + - Thu, 29 Jun 2023 12:10:12 GMT expires: - '-1' pragma: @@ -307,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.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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a88d30dc-b34e-4187-bc0b-6a48cdc52429?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 }" + string: "{\n \"name\": \"dc308da8-4eb3-8741-bc0b-6a48cdc52429\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:07:10.8367815Z\"\n }" headers: cache-control: - no-cache @@ -323,7 +568,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:48:45 GMT + - Thu, 29 Jun 2023 12:10:42 GMT expires: - '-1' pragma: @@ -356,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.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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a88d30dc-b34e-4187-bc0b-6a48cdc52429?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 }" + string: "{\n \"name\": \"dc308da8-4eb3-8741-bc0b-6a48cdc52429\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:07:10.8367815Z\"\n }" headers: cache-control: - no-cache @@ -372,7 +617,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:49:15 GMT + - Thu, 29 Jun 2023 12:11:12 GMT expires: - '-1' pragma: @@ -405,14 +650,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.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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a88d30dc-b34e-4187-bc0b-6a48cdc52429?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 }" + string: "{\n \"name\": \"dc308da8-4eb3-8741-bc0b-6a48cdc52429\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:07:10.8367815Z\"\n }" headers: cache-control: - no-cache @@ -421,7 +666,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:49:45 GMT + - Thu, 29 Jun 2023 12:11:42 GMT expires: - '-1' pragma: @@ -454,14 +699,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.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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a88d30dc-b34e-4187-bc0b-6a48cdc52429?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 }" + string: "{\n \"name\": \"dc308da8-4eb3-8741-bc0b-6a48cdc52429\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:07:10.8367815Z\"\n }" headers: cache-control: - no-cache @@ -470,7 +715,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:50:15 GMT + - Thu, 29 Jun 2023 12:12:12 GMT expires: - '-1' pragma: @@ -503,14 +748,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.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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a88d30dc-b34e-4187-bc0b-6a48cdc52429?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 }" + string: "{\n \"name\": \"dc308da8-4eb3-8741-bc0b-6a48cdc52429\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:07:10.8367815Z\"\n }" headers: cache-control: - no-cache @@ -519,7 +764,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:50:45 GMT + - Thu, 29 Jun 2023 12:12:42 GMT expires: - '-1' pragma: @@ -552,14 +797,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.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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a88d30dc-b34e-4187-bc0b-6a48cdc52429?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 }" + string: "{\n \"name\": \"dc308da8-4eb3-8741-bc0b-6a48cdc52429\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:07:10.8367815Z\"\n }" headers: cache-control: - no-cache @@ -568,7 +813,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:51:15 GMT + - Thu, 29 Jun 2023 12:13:13 GMT expires: - '-1' pragma: @@ -601,14 +846,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.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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a88d30dc-b34e-4187-bc0b-6a48cdc52429?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 }" + string: "{\n \"name\": \"dc308da8-4eb3-8741-bc0b-6a48cdc52429\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:07:10.8367815Z\"\n }" headers: cache-control: - no-cache @@ -617,7 +862,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:51:45 GMT + - Thu, 29 Jun 2023 12:13:43 GMT expires: - '-1' pragma: @@ -650,14 +895,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.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/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a88d30dc-b34e-4187-bc0b-6a48cdc52429?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 }" + string: "{\n \"name\": \"dc308da8-4eb3-8741-bc0b-6a48cdc52429\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:07:10.8367815Z\"\n }" headers: cache-control: - no-cache @@ -666,7 +911,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:52:16 GMT + - Thu, 29 Jun 2023 12:14:13 GMT expires: - '-1' pragma: @@ -699,15 +944,15 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a88d30dc-b34e-4187-bc0b-6a48cdc52429?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 }" + string: "{\n \"name\": \"dc308da8-4eb3-8741-bc0b-6a48cdc52429\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T12:07:10.8367815Z\",\n \"endTime\": + \"2023-06-29T12:14:38.1962863Z\"\n }" headers: cache-control: - no-cache @@ -716,7 +961,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:52:46 GMT + - Thu, 29 Jun 2023 12:14:43 GMT expires: - '-1' pragma: @@ -749,8 +994,8 @@ interactions: - --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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -760,8 +1005,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-clitest5t3hgz6ks-79a739\",\n \"fqdn\": \"cliakstest-clitest5t3hgz6ks-79a739-n52xpdnu.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest5t3hgz6ks-79a739-n52xpdnu.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-clitestrcoop4qkc-79a739\",\n \"fqdn\": \"cliakstest-clitestrcoop4qkc-79a739-1msmuffm.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestrcoop4qkc-79a739-1msmuffm.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n @@ -771,27 +1016,26 @@ interactions: \"1.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 + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT azcli_aks_live_test@example.com\\n\"\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\": + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\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 \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/426fa31b-4270-4aeb-ba79-f9395ab983aa\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"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_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"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_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": @@ -805,11 +1049,11 @@ interactions: cache-control: - no-cache content-length: - - '4194' + - '4155' content-type: - application/json date: - - Sat, 29 Apr 2023 11:52:47 GMT + - Thu, 29 Jun 2023 12:14:44 GMT expires: - '-1' pragma: @@ -841,8 +1085,8 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -852,8 +1096,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-clitest5t3hgz6ks-79a739\",\n \"fqdn\": \"cliakstest-clitest5t3hgz6ks-79a739-n52xpdnu.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest5t3hgz6ks-79a739-n52xpdnu.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-clitestrcoop4qkc-79a739\",\n \"fqdn\": \"cliakstest-clitestrcoop4qkc-79a739-1msmuffm.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestrcoop4qkc-79a739-1msmuffm.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n @@ -863,27 +1107,26 @@ interactions: \"1.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 + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT azcli_aks_live_test@example.com\\n\"\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\": + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\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 \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/426fa31b-4270-4aeb-ba79-f9395ab983aa\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"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_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"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_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": @@ -897,11 +1140,11 @@ interactions: cache-control: - no-cache content-length: - - '4194' + - '4155' content-type: - application/json date: - - Sat, 29 Apr 2023 11:52:48 GMT + - Thu, 29 Jun 2023 12:14:45 GMT expires: - '-1' pragma: @@ -922,21 +1165,20 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": - "cliakstest-clitest5t3hgz6ks-79a739", "agentPoolProfiles": [{"count": 1, "vmSize": + "cliakstest-clitestrcoop4qkc-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.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT 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/8e1e8210-a718-400b-ada3-30d870ad9517"}]}, + "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/426fa31b-4270-4aeb-ba79-f9395ab983aa"}]}, "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"}, @@ -954,14 +1196,14 @@ interactions: Connection: - keep-alive Content-Length: - - '2658' + - '2621' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -971,8 +1213,8 @@ interactions: \"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-clitest5t3hgz6ks-79a739\",\n \"fqdn\": \"cliakstest-clitest5t3hgz6ks-79a739-n52xpdnu.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest5t3hgz6ks-79a739-n52xpdnu.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-clitestrcoop4qkc-79a739\",\n \"fqdn\": \"cliakstest-clitestrcoop4qkc-79a739-1msmuffm.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestrcoop4qkc-79a739-1msmuffm.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n @@ -982,27 +1224,26 @@ interactions: \"1.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 + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT azcli_aks_live_test@example.com\\n\"\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\": + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\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 \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/426fa31b-4270-4aeb-ba79-f9395ab983aa\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"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\": 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_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"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\": 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_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": @@ -1014,15 +1255,15 @@ 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/550bf973-1033-40ab-819d-59d7873352dd?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c789f87e-d9d9-4083-9fd8-91e7f2838482?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4191' + - '4152' content-type: - application/json date: - - Sat, 29 Apr 2023 11:52:51 GMT + - Thu, 29 Jun 2023 12:14:49 GMT expires: - '-1' pragma: @@ -1038,7 +1279,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1196' status: code: 200 message: OK @@ -1056,14 +1297,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c789f87e-d9d9-4083-9fd8-91e7f2838482?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"73f90b55-3310-ab40-819d-59d7873352dd\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-29T11:52:51.6153556Z\"\n }" + string: "{\n \"name\": \"7ef889c7-d9d9-8340-9fd8-91e7f2838482\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:14:49.7444299Z\"\n }" headers: cache-control: - no-cache @@ -1072,7 +1313,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:52:51 GMT + - Thu, 29 Jun 2023 12:14:49 GMT expires: - '-1' pragma: @@ -1104,14 +1345,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c789f87e-d9d9-4083-9fd8-91e7f2838482?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"73f90b55-3310-ab40-819d-59d7873352dd\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-29T11:52:51.6153556Z\"\n }" + string: "{\n \"name\": \"7ef889c7-d9d9-8340-9fd8-91e7f2838482\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:14:49.7444299Z\"\n }" headers: cache-control: - no-cache @@ -1120,7 +1361,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:53:21 GMT + - Thu, 29 Jun 2023 12:15:20 GMT expires: - '-1' pragma: @@ -1152,14 +1393,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c789f87e-d9d9-4083-9fd8-91e7f2838482?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"73f90b55-3310-ab40-819d-59d7873352dd\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-29T11:52:51.6153556Z\"\n }" + string: "{\n \"name\": \"7ef889c7-d9d9-8340-9fd8-91e7f2838482\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:14:49.7444299Z\"\n }" headers: cache-control: - no-cache @@ -1168,7 +1409,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:53:51 GMT + - Thu, 29 Jun 2023 12:15:50 GMT expires: - '-1' pragma: @@ -1200,14 +1441,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c789f87e-d9d9-4083-9fd8-91e7f2838482?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"73f90b55-3310-ab40-819d-59d7873352dd\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-29T11:52:51.6153556Z\"\n }" + string: "{\n \"name\": \"7ef889c7-d9d9-8340-9fd8-91e7f2838482\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:14:49.7444299Z\"\n }" headers: cache-control: - no-cache @@ -1216,7 +1457,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:54:21 GMT + - Thu, 29 Jun 2023 12:16:20 GMT expires: - '-1' pragma: @@ -1248,14 +1489,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c789f87e-d9d9-4083-9fd8-91e7f2838482?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"73f90b55-3310-ab40-819d-59d7873352dd\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-29T11:52:51.6153556Z\"\n }" + string: "{\n \"name\": \"7ef889c7-d9d9-8340-9fd8-91e7f2838482\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:14:49.7444299Z\"\n }" headers: cache-control: - no-cache @@ -1264,7 +1505,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:54:51 GMT + - Thu, 29 Jun 2023 12:16:50 GMT expires: - '-1' pragma: @@ -1296,14 +1537,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c789f87e-d9d9-4083-9fd8-91e7f2838482?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"73f90b55-3310-ab40-819d-59d7873352dd\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-29T11:52:51.6153556Z\"\n }" + string: "{\n \"name\": \"7ef889c7-d9d9-8340-9fd8-91e7f2838482\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:14:49.7444299Z\"\n }" headers: cache-control: - no-cache @@ -1312,7 +1553,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:55:21 GMT + - Thu, 29 Jun 2023 12:17:20 GMT expires: - '-1' pragma: @@ -1344,15 +1585,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c789f87e-d9d9-4083-9fd8-91e7f2838482?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 }" + string: "{\n \"name\": \"7ef889c7-d9d9-8340-9fd8-91e7f2838482\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T12:14:49.7444299Z\",\n \"endTime\": + \"2023-06-29T12:17:50.3751764Z\"\n }" headers: cache-control: - no-cache @@ -1361,7 +1602,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:55:51 GMT + - Thu, 29 Jun 2023 12:17:50 GMT expires: - '-1' pragma: @@ -1393,8 +1634,8 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -1404,8 +1645,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-clitest5t3hgz6ks-79a739\",\n \"fqdn\": \"cliakstest-clitest5t3hgz6ks-79a739-n52xpdnu.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest5t3hgz6ks-79a739-n52xpdnu.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-clitestrcoop4qkc-79a739\",\n \"fqdn\": \"cliakstest-clitestrcoop4qkc-79a739-1msmuffm.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestrcoop4qkc-79a739-1msmuffm.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n @@ -1415,27 +1656,26 @@ interactions: \"1.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 + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT azcli_aks_live_test@example.com\\n\"\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\": + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\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 \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/426fa31b-4270-4aeb-ba79-f9395ab983aa\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"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\": 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_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"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\": 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_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": @@ -1449,11 +1689,11 @@ interactions: cache-control: - no-cache content-length: - - '4193' + - '4154' content-type: - application/json date: - - Sat, 29 Apr 2023 11:55:52 GMT + - Thu, 29 Jun 2023 12:17:51 GMT expires: - '-1' pragma: @@ -1485,8 +1725,8 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -1496,8 +1736,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-clitest5t3hgz6ks-79a739\",\n \"fqdn\": \"cliakstest-clitest5t3hgz6ks-79a739-n52xpdnu.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest5t3hgz6ks-79a739-n52xpdnu.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-clitestrcoop4qkc-79a739\",\n \"fqdn\": \"cliakstest-clitestrcoop4qkc-79a739-1msmuffm.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestrcoop4qkc-79a739-1msmuffm.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n @@ -1507,27 +1747,26 @@ interactions: \"1.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 + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT azcli_aks_live_test@example.com\\n\"\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\": + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\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 \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/426fa31b-4270-4aeb-ba79-f9395ab983aa\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"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\": 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_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"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\": 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_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": @@ -1541,11 +1780,11 @@ interactions: cache-control: - no-cache content-length: - - '4193' + - '4154' content-type: - application/json date: - - Sat, 29 Apr 2023 11:55:53 GMT + - Thu, 29 Jun 2023 12:17:53 GMT expires: - '-1' pragma: @@ -1566,21 +1805,20 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": - "cliakstest-clitest5t3hgz6ks-79a739", "agentPoolProfiles": [{"count": 1, "vmSize": + "cliakstest-clitestrcoop4qkc-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.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT 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/8e1e8210-a718-400b-ada3-30d870ad9517"}]}, + "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/426fa31b-4270-4aeb-ba79-f9395ab983aa"}]}, "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"}, @@ -1598,14 +1836,14 @@ interactions: Connection: - keep-alive Content-Length: - - '2659' + - '2622' Content-Type: - application/json 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -1615,8 +1853,8 @@ interactions: \"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-clitest5t3hgz6ks-79a739\",\n \"fqdn\": \"cliakstest-clitest5t3hgz6ks-79a739-n52xpdnu.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest5t3hgz6ks-79a739-n52xpdnu.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-clitestrcoop4qkc-79a739\",\n \"fqdn\": \"cliakstest-clitestrcoop4qkc-79a739-1msmuffm.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestrcoop4qkc-79a739-1msmuffm.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n @@ -1626,27 +1864,26 @@ interactions: \"1.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 + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT azcli_aks_live_test@example.com\\n\"\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\": + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\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 \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/426fa31b-4270-4aeb-ba79-f9395ab983aa\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"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_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"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_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": @@ -1658,15 +1895,15 @@ 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/9c6c0098-7473-408c-aa2c-2155098cf59f?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d84bfa2d-2098-4b6f-af15-f411be8e0b79?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4192' + - '4153' content-type: - application/json date: - - Sat, 29 Apr 2023 11:55:57 GMT + - Thu, 29 Jun 2023 12:17:57 GMT expires: - '-1' pragma: @@ -1682,7 +1919,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -1700,14 +1937,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d84bfa2d-2098-4b6f-af15-f411be8e0b79?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 }" + string: "{\n \"name\": \"2dfa4bd8-9820-6f4b-af15-f411be8e0b79\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:17:56.8229395Z\"\n }" headers: cache-control: - no-cache @@ -1716,7 +1953,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:55:57 GMT + - Thu, 29 Jun 2023 12:17:57 GMT expires: - '-1' pragma: @@ -1748,14 +1985,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d84bfa2d-2098-4b6f-af15-f411be8e0b79?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 }" + string: "{\n \"name\": \"2dfa4bd8-9820-6f4b-af15-f411be8e0b79\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:17:56.8229395Z\"\n }" headers: cache-control: - no-cache @@ -1764,7 +2001,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:56:27 GMT + - Thu, 29 Jun 2023 12:18:27 GMT expires: - '-1' pragma: @@ -1796,14 +2033,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d84bfa2d-2098-4b6f-af15-f411be8e0b79?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 }" + string: "{\n \"name\": \"2dfa4bd8-9820-6f4b-af15-f411be8e0b79\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:17:56.8229395Z\"\n }" headers: cache-control: - no-cache @@ -1812,7 +2049,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:56:57 GMT + - Thu, 29 Jun 2023 12:18:57 GMT expires: - '-1' pragma: @@ -1844,14 +2081,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d84bfa2d-2098-4b6f-af15-f411be8e0b79?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 }" + string: "{\n \"name\": \"2dfa4bd8-9820-6f4b-af15-f411be8e0b79\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:17:56.8229395Z\"\n }" headers: cache-control: - no-cache @@ -1860,7 +2097,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:57:27 GMT + - Thu, 29 Jun 2023 12:19:27 GMT expires: - '-1' pragma: @@ -1892,14 +2129,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d84bfa2d-2098-4b6f-af15-f411be8e0b79?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 }" + string: "{\n \"name\": \"2dfa4bd8-9820-6f4b-af15-f411be8e0b79\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:17:56.8229395Z\"\n }" headers: cache-control: - no-cache @@ -1908,7 +2145,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:57:58 GMT + - Thu, 29 Jun 2023 12:19:58 GMT expires: - '-1' pragma: @@ -1940,14 +2177,14 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d84bfa2d-2098-4b6f-af15-f411be8e0b79?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 }" + string: "{\n \"name\": \"2dfa4bd8-9820-6f4b-af15-f411be8e0b79\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-06-29T12:17:56.8229395Z\"\n }" headers: cache-control: - no-cache @@ -1956,7 +2193,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:58:27 GMT + - Thu, 29 Jun 2023 12:20:27 GMT expires: - '-1' pragma: @@ -1988,15 +2225,15 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-azure-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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d84bfa2d-2098-4b6f-af15-f411be8e0b79?api-version=2016-03-30 response: body: - 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 }" + string: "{\n \"name\": \"2dfa4bd8-9820-6f4b-af15-f411be8e0b79\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-06-29T12:17:56.8229395Z\",\n \"endTime\": + \"2023-06-29T12:20:57.5146357Z\"\n }" headers: cache-control: - no-cache @@ -2005,7 +2242,7 @@ interactions: content-type: - application/json date: - - Sat, 29 Apr 2023 11:58:58 GMT + - Thu, 29 Jun 2023 12:20:57 GMT expires: - '-1' pragma: @@ -2037,8 +2274,8 @@ interactions: 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) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/24.0.0 Python/3.8.10 + (Linux-5.15.0-1039-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-05-01 response: @@ -2048,8 +2285,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-clitest5t3hgz6ks-79a739\",\n \"fqdn\": \"cliakstest-clitest5t3hgz6ks-79a739-n52xpdnu.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest5t3hgz6ks-79a739-n52xpdnu.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-clitestrcoop4qkc-79a739\",\n \"fqdn\": \"cliakstest-clitestrcoop4qkc-79a739-1msmuffm.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestrcoop4qkc-79a739-1msmuffm.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n @@ -2059,27 +2296,26 @@ interactions: \"1.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 + \"AKSUbuntu-2204gen2containerd-202306.19.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw4P22/hE86EX0l2HMO+M6Gw+CW6O4Yl84NLjVqF7NtK8xwQKcZwGeIwNBv/HxJ0uMJlOCG1ZMPPvSZHDp07QvAjYKKryIkIGilxLUh4fNOEQiZqAXB2badERUdwLRB4f6kHc0vb35GHw3tlyjjDjvQTO7UgZQxnbipxyrJAYfMHxfXjST1tvmln3v87WvBGsY2hr1Iqx/gMO3AIqaNoJntl1sIeAcg8xXdYW3PP6N1gYToFsDxsQZU2rfefIRDniuP4fYy2J4shtEAkyzv1BlOBJGHBqCzyrhXVqFElLSFV99QhLUi43zXL4Ge1QKJBztH/q48ohMBt3WenkP2KsT azcli_aks_live_test@example.com\\n\"\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\": + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\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 \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/426fa31b-4270-4aeb-ba79-f9395ab983aa\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"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_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n + \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": + \"loadBalancer\",\n \"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_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": @@ -2093,11 +2329,11 @@ interactions: cache-control: - no-cache content-length: - - '4194' + - '4155' content-type: - application/json date: - - Sat, 29 Apr 2023 11:58:58 GMT + - Thu, 29 Jun 2023 12:20:58 GMT expires: - '-1' pragma: